diff --git a/projects/erp-hgrid/src/app/app.config.ts b/projects/erp-hgrid/src/app/app.config.ts index 198422a..db9f39d 100644 --- a/projects/erp-hgrid/src/app/app.config.ts +++ b/projects/erp-hgrid/src/app/app.config.ts @@ -1,6 +1,7 @@ +import { provideHttpClient, withFetch } from '@angular/common/http'; import { ApplicationConfig } from '@angular/core'; import { provideClientHydration } from '@angular/platform-browser'; import { provideAnimationsAsync } from '@angular/platform-browser/animations/async'; export const appConfig: ApplicationConfig = { - providers: [provideClientHydration(), provideAnimationsAsync()] }; + providers: [provideClientHydration(), provideAnimationsAsync(), provideHttpClient(withFetch())] }; diff --git a/projects/erp-hgrid/src/app/data/erpData.ts b/projects/erp-hgrid/src/app/data/erpData.ts deleted file mode 100644 index 7922e91..0000000 --- a/projects/erp-hgrid/src/app/data/erpData.ts +++ /dev/null @@ -1,12415 +0,0 @@ -import { OrderStatus, TemplateDataModel } from "./dataModels"; -import { TREND_DATA } from "./productOrdersTrendsData"; - -export const InventoryList: TemplateDataModel[] = [ - { - sku: "SKU1001", - imageUrl: "products/adidas-sports-shoes-4762266_1920.jpg", - productName: "Adidas Sports Shoes", - category: "Footwear", - rating: 3.5, - grossPrice: 49.99, - netPrice: 53.24, - salesTrendData: TREND_DATA[0], - orders: [ - { - orderId: 1234, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "New York", - zipCode: 10001, - streetName: "5th Avenue", - streetNumber: "501B", - } - }, - { - orderId: 2345, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-02", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Canada", - city: "Toronto", - zipCode: 23456, - streetName: "Yonge Street", - streetNumber: "300C", - } - }, - { - orderId: 3456, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-02", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 75001, - streetName: "Rue de Rivoli", - streetNumber: "10A", - } - }, - { - orderId: 4567, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-02", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 10115, - streetName: "Unter den Linden", - streetNumber: "25D", - } - }, - { - orderId: 5678, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Italy", - city: "Rome", - zipCode: 54321, - streetName: "Via del Corso", - streetNumber: "100A", - } - }, - { - orderId: 6789, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Brazil", - city: "São Paulo", - zipCode: 65432, - streetName: "Avenida Paulista", - streetNumber: "200B", - } - }, - { - orderId: 7890, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 98765, - streetName: "Marine Drive", - streetNumber: "150B", - } - }, - { - orderId: 8901, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "London", - zipCode: 34567, - streetName: "Oxford Street", - streetNumber: "200C", - } - }, - { - orderId: 9012, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Japan", - city: "Tokyo", - zipCode: 56789, - streetName: "Shinjuku Street", - streetNumber: "50D", - } - } - ] - }, - { - sku: "SKU1002", - imageUrl: "products/Android-Tablet-11inch-Depositphotos_41379049_L.jpg", - productName: "Android Tablet 11 inch", - category: "Electronics", - rating: 1.5, - grossPrice: 111.99, - netPrice: 127.79, - salesTrendData: TREND_DATA[1], - orders: [ - { - orderId: 3668, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 42853, - streetName: "King's Road", - streetNumber: "97C", - } - }, - { - orderId: 9088, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Finland", - city: "Helsinki", - zipCode: 48272, - streetName: "Queen Street", - streetNumber: "271B", - } - }, - { - orderId: 2986, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Brazil", - city: "São Paulo", - zipCode: 66311, - streetName: "Queen Street", - streetNumber: "381A", - } - }, - { - orderId: 5508, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 82134, - streetName: "High Street", - streetNumber: "199C", - } - }, - { - orderId: 2306, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Italy", - city: "Rome", - zipCode: 60751, - streetName: "Main Street", - streetNumber: "289D", - } - }, - { - orderId: 6001, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-02", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Netherlands", - city: "Amsterdam", - zipCode: 11840, - streetName: "High Street", - streetNumber: "381B", - } - }, - { - orderId: 5064, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-02", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Romania", - city: "Bucharest", - zipCode: 84647, - streetName: "Sunset Blvd", - streetNumber: "98D", - } - }, - { - orderId: 8908, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-02", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Finland", - city: "Helsinki", - zipCode: 12744, - streetName: "Market Street", - streetNumber: "245D", - } - }, - { - orderId: 3992, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Finland", - city: "Helsinki", - zipCode: 92963, - streetName: "Sunset Blvd", - streetNumber: "98A", - } - }, - { - orderId: 7454, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Finland", - city: "Helsinki", - zipCode: 69822, - streetName: "Broadway", - streetNumber: "378A", - } - }, - { - orderId: 7439, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-02", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Denmark", - city: "Copenhagen", - zipCode: 81197, - streetName: "High Street", - streetNumber: "77C", - } - }, - { - orderId: 7884, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-02", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 74221, - streetName: "King's Road", - streetNumber: "104B", - } - }, - { - orderId: 1217, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "United Kingdom", - city: "London", - zipCode: 80946, - streetName: "Broadway", - streetNumber: "232A", - } - }, - { - orderId: 2222, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Greece", - city: "Athens", - zipCode: 25316, - streetName: "Queen Street", - streetNumber: "117C", - } - }, - { - orderId: 2341, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Netherlands", - city: "Amsterdam", - zipCode: 85226, - streetName: "Market Street", - streetNumber: "174C", - } - }, - { - orderId: 6504, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Finland", - city: "Helsinki", - zipCode: 22228, - streetName: "Sunset Blvd", - streetNumber: "107D", - } - }, - { - orderId: 3384, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Romania", - city: "Bucharest", - zipCode: 95317, - streetName: "Market Street", - streetNumber: "436B", - } - }, - { - orderId: 5184, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 67622, - streetName: "Market Street", - streetNumber: "167C", - } - }, - { - orderId: 8824, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Japan", - city: "Tokyo", - zipCode: 51645, - streetName: "Queen Street", - streetNumber: "381B", - } - }, - { - orderId: 6498, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 98659, - streetName: "Market Street", - streetNumber: "382D", - } - }, - { - orderId: 5649, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 22221, - streetName: "King's Road", - streetNumber: "1D", - } - }, - { - orderId: 9539, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Netherlands", - city: "Amsterdam", - zipCode: 11251, - streetName: "King's Road", - streetNumber: "184C", - } - }, - { - orderId: 3984, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Canada", - city: "Toronto", - zipCode: 66743, - streetName: "Broadway", - streetNumber: "386D", - } - }, - { - orderId: 4042, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Brazil", - city: "São Paulo", - zipCode: 99082, - streetName: "Broadway", - streetNumber: "388D", - } - }, - { - orderId: 1922, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Finland", - city: "Helsinki", - zipCode: 15493, - streetName: "High Street", - streetNumber: "66A", - } - }, - { - orderId: 8364, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 68614, - streetName: "King's Road", - streetNumber: "244A", - } - }, - { - orderId: 4856, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Japan", - city: "Tokyo", - zipCode: 53175, - streetName: "King's Road", - streetNumber: "305A", - } - }, - { - orderId: 3730, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Netherlands", - city: "Amsterdam", - zipCode: 12081, - streetName: "Market Street", - streetNumber: "367D", - } - }, - { - orderId: 2312, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Italy", - city: "Rome", - zipCode: 69350, - streetName: "King's Road", - streetNumber: "4C", - } - }, - { - orderId: 6716, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Italy", - city: "Rome", - zipCode: 54889, - streetName: "Main Street", - streetNumber: "148D", - } - }, - { - orderId: 8911, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 86283, - streetName: "Market Street", - streetNumber: "95B", - } - }, - { - orderId: 9728, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Canada", - city: "Toronto", - zipCode: 63241, - streetName: "Broadway", - streetNumber: "418A", - } - }, - { - orderId: 3961, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Belgium", - city: "Brussels", - zipCode: 57995, - streetName: "Main Street", - streetNumber: "128C", - } - }, - { - orderId: 4159, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Romania", - city: "Bucharest", - zipCode: 72211, - streetName: "Queen Street", - streetNumber: "29B", - } - }, - { - orderId: 7266, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "China", - city: "Beijing", - zipCode: 74156, - streetName: "Queen Street", - streetNumber: "312A", - } - }, - { - orderId: 9165, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Canada", - city: "Toronto", - zipCode: 29440, - streetName: "King's Road", - streetNumber: "237C", - } - }, - { - orderId: 5787, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "China", - city: "Beijing", - zipCode: 76065, - streetName: "Sunset Blvd", - streetNumber: "97A", - } - }, - { - orderId: 3379, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Greece", - city: "Athens", - zipCode: 45400, - streetName: "Queen Street", - streetNumber: "84A", - } - } - ] - }, - { - sku: "SKU1003", - imageUrl: "products/Apple-Magic-Mouse-Depositphotos_2984466_L.jpg", - productName: "Apple Magic Mouse", - category: "Accessories", - rating: 3.5, - grossPrice: 119.99, - netPrice: 127.79, - salesTrendData: TREND_DATA[2], - orders: [ - { - orderId: 6636, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Italy", - city: "Rome", - zipCode: 90156, - streetName: "High Street", - streetNumber: "127B", - } - }, - { - orderId: 1757, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Denmark", - city: "Copenhagen", - zipCode: 24877, - streetName: "High Street", - streetNumber: "217B", - } - }, - { - orderId: 9540, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 10185, - streetName: "Market Street", - streetNumber: "294C", - } - }, - { - orderId: 5072, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Poland", - city: "Warsaw", - zipCode: 98568, - streetName: "Market Street", - streetNumber: "97A", - } - }, - { - orderId: 6883, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 54673, - streetName: "Sunset Blvd", - streetNumber: "118D", - } - }, - { - orderId: 5508, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 56840, - streetName: "High Street", - streetNumber: "307A", - } - }, - { - orderId: 7779, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Japan", - city: "Tokyo", - zipCode: 31900, - streetName: "Market Street", - streetNumber: "117A", - } - }, - { - orderId: 3356, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Canada", - city: "Toronto", - zipCode: 57467, - streetName: "King's Road", - streetNumber: "132D", - } - }, - { - orderId: 7814, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 19866, - streetName: "High Street", - streetNumber: "31B", - } - }, - { - orderId: 7978, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Netherlands", - city: "Amsterdam", - zipCode: 67201, - streetName: "Broadway", - streetNumber: "74D", - } - }, - { - orderId: 9865, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Belgium", - city: "Brussels", - zipCode: 42714, - streetName: "Sunset Blvd", - streetNumber: "173D", - } - }, - { - orderId: 2538, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 25553, - streetName: "Market Street", - streetNumber: "471D", - } - } - ] - }, - { - sku: "SKU1004", - imageUrl: "products/ballpoint-pen-273656_1920.jpg", - productName: "Ballpoint Pen", - category: "Office Supplies", - rating: 5, - grossPrice: 13.99, - netPrice: 14.9, - salesTrendData: TREND_DATA[3], - orders: [ - { - orderId: 1367, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-05", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 93345, - streetName: "Street 47", - streetNumber: "404A", - } - }, - { - orderId: 6198, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "2024-12-08", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 12710, - streetName: "Street 47", - streetNumber: "33B", - } - }, - { - orderId: 2070, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-27", - dateShipped: "2024-12-30", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 55326, - streetName: "Street 15", - streetNumber: "398C", - } - }, - { - orderId: 7536, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-11", - dateShipped: "2024-12-14", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 67187, - streetName: "Street 40", - streetNumber: "68A", - } - }, - { - orderId: 5478, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-05", - dateShipped: "2024-12-17", - dateDelivered: "2024-12-23" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 36934, - streetName: "Street 32", - streetNumber: "462C", - } - }, - { - orderId: 3333, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-05", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Brisbane", - zipCode: 69061, - streetName: "Street 42", - streetNumber: "979A", - } - }, - { - orderId: 8446, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-18", - dateShipped: "2024-12-21", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 40350, - streetName: "Street 38", - streetNumber: "343B", - } - }, - { - orderId: 1720, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-02", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 27471, - streetName: "Street 50", - streetNumber: "895B", - } - }, - { - orderId: 9331, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-25", - dateShipped: "2024-12-28", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 13811, - streetName: "Street 29", - streetNumber: "816A", - } - }, - { - orderId: 3556, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 13264, - streetName: "Street 5", - streetNumber: "490B", - } - }, - { - orderId: 7227, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-15", - dateShipped: "2024-12-26", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Munich", - zipCode: 30240, - streetName: "Street 18", - streetNumber: "606C", - } - }, - { - orderId: 3204, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-08", - dateShipped: "2024-12-11", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 23659, - streetName: "Street 31", - streetNumber: "422C", - } - }, - { - orderId: 9396, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-26", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 90690, - streetName: "Street 28", - streetNumber: "233A", - } - }, - { - orderId: 4507, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-17", - dateShipped: "2024-12-20", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 82167, - streetName: "Street 37", - streetNumber: "661B", - } - }, - { - orderId: 3512, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-26", - dateShipped: "2024-12-29", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Brisbane", - zipCode: 10198, - streetName: "Street 41", - streetNumber: "888C", - } - }, - { - orderId: 2045, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-03", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Lyon", - zipCode: 64248, - streetName: "Street 30", - streetNumber: "963C", - } - }, - { - orderId: 9911, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-02", - dateShipped: "2024-12-05", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Marseille", - zipCode: 96708, - streetName: "Street 46", - streetNumber: "923B", - } - }, - { - orderId: 8937, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-05", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Brisbane", - zipCode: 13581, - streetName: "Street 2", - streetNumber: "345A", - } - }, - { - orderId: 4707, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 28725, - streetName: "Street 5", - streetNumber: "432A", - } - }, - { - orderId: 3482, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-08", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 84535, - streetName: "Street 43", - streetNumber: "741A", - } - } - ] - }, - { - sku: "SKU1005", - imageUrl: "products/Barcode-reader-Depositphotos_9927983_L.jpg", - productName: "Barcode Reader", - category: "Electronics", - rating: 2, - grossPrice: 31.48, - netPrice: 33.53, - salesTrendData: TREND_DATA[4], - orders: [ - { - orderId: 3988, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-25", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "New York", - zipCode: 90688, - streetName: "Street 33", - streetNumber: "717B", - } - }, - { - orderId: 1482, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-10", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Munich", - zipCode: 34472, - streetName: "Street 2", - streetNumber: "415A", - } - }, - { - orderId: 5765, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 62158, - streetName: "Street 24", - streetNumber: "419A", - } - }, - { - orderId: 3864, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-02", - dateShipped: "2024-12-11", - dateDelivered: "2024-12-12" - }, - orderInformation: { - country: "France", - city: "Lyon", - zipCode: 57141, - streetName: "Street 40", - streetNumber: "839C", - } - }, - { - orderId: 3396, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-09", - dateShipped: "2024-12-12", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 95678, - streetName: "Street 14", - streetNumber: "297C", - } - } - ] - }, - { - sku: "SKU1006", - imageUrl: "products/Barcode-readers-Depositphotos_10803475_L.jpg", - productName: "Barcode Readers Pack", - category: "Electronics", - rating: 4.44, - grossPrice: 56.33, - netPrice: 59.99, - salesTrendData: TREND_DATA[5], - orders: [ - { - orderId: 9976, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-17", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 45797, - streetName: "Street 36", - streetNumber: "49B", - } - }, - { - orderId: 5062, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-10", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 62471, - streetName: "Street 18", - streetNumber: "34C", - } - }, - { - orderId: 4640, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-21", - dateShipped: "2024-12-24", - dateDelivered: "2024-12-26" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 77658, - streetName: "Street 34", - streetNumber: "635C", - } - }, - { - orderId: 4810, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-04", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "London", - zipCode: 57877, - streetName: "Street 40", - streetNumber: "451A", - } - }, - { - orderId: 4241, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-20", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 53308, - streetName: "Street 29", - streetNumber: "538A", - } - }, - { - orderId: 9070, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-10", - dateShipped: "2024-12-14", - dateDelivered: "2024-12-20" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 39952, - streetName: "Street 15", - streetNumber: "830A", - } - }, - { - orderId: 7654, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-21", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "London", - zipCode: 89167, - streetName: "Street 24", - streetNumber: "282C", - } - }, - { - orderId: 7647, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-16", - dateShipped: "2024-12-19", - dateDelivered: "2024-12-21" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 29077, - streetName: "Street 37", - streetNumber: "784A", - } - }, - { - orderId: 5360, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-23", - dateShipped: "2024-12-26", - dateDelivered: "2024-12-27" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 57993, - streetName: "Street 25", - streetNumber: "445A", - } - }, - { - orderId: 4032, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-17", - dateShipped: "2024-12-20", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 25933, - streetName: "Street 4", - streetNumber: "888C", - } - }, - { - orderId: 3391, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-20", - dateShipped: "2024-12-23", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 61583, - streetName: "Street 24", - streetNumber: "110B", - } - }, - { - orderId: 6604, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-14", - dateShipped: "2024-12-17", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 60545, - streetName: "Street 3", - streetNumber: "882C", - } - }, - { - orderId: 6012, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-16", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 55210, - streetName: "Street 32", - streetNumber: "769B", - } - }, - { - orderId: 4584, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-08", - dateShipped: "2024-12-11", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Brisbane", - zipCode: 28512, - streetName: "Street 24", - streetNumber: "20C", - } - } - ] - }, - { - sku: "SKU1007", - imageUrl: "products/Black-espresso-maker-Depositphotos_166033946_L.jpg", - productName: "Black Espresso Maker", - category: "Home Appliances", - rating: 3.5, - grossPrice: 109.99, - netPrice: 117.14, - salesTrendData: TREND_DATA[6], - orders: [ - { - orderId: 4922, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-12", - dateShipped: "2024-12-28", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 31660, - streetName: "Street 31", - streetNumber: "847A", - } - }, - { - orderId: 4303, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-21", - dateShipped: "2024-12-24", - dateDelivered: "2024-12-25" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 80912, - streetName: "Street 36", - streetNumber: "187B", - } - }, - { - orderId: 3985, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-09", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 64528, - streetName: "Street 30", - streetNumber: "733C", - } - }, - { - orderId: 8594, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-11", - dateShipped: "2024-12-14", - dateDelivered: "2024-12-26" - }, - orderInformation: { - country: "Australia", - city: "Melbourne", - zipCode: 56481, - streetName: "Street 22", - streetNumber: "718A", - } - }, - { - orderId: 7481, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-04", - dateShipped: "2024-12-07", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Marseille", - zipCode: 65465, - streetName: "Street 39", - streetNumber: "566C", - } - }, - { - orderId: 3509, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-20", - dateShipped: "2024-12-23", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 25704, - streetName: "Street 23", - streetNumber: "283C", - } - }, - { - orderId: 5440, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-27", - dateShipped: "2024-12-30", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Munich", - zipCode: 50026, - streetName: "Street 11", - streetNumber: "145A", - } - } - ] - }, - { - sku: "SKU1008", - imageUrl: "products/Canon_Depositphotos_1793394_L.jpg", - productName: "Canon Photo Camera", - category: "Photography", - rating: 2.95, - grossPrice: 119.99, - netPrice: 127.79, - salesTrendData: TREND_DATA[7], - orders: [ - { - orderId: 8235, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-24", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 48193, - streetName: "Street 28", - streetNumber: "927C", - } - }, - { - orderId: 1643, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-14", - dateShipped: "2024-12-17", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 64564, - streetName: "Street 1", - streetNumber: "101A", - } - }, - { - orderId: 1786, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-02", - dateShipped: "2024-12-12", - dateDelivered: "2024-12-22" - }, - orderInformation: { - country: "France", - city: "Lyon", - zipCode: 25197, - streetName: "Street 36", - streetNumber: "689B", - } - }, - { - orderId: 9206, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "2024-12-27", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 77659, - streetName: "Street 48", - streetNumber: "298C", - } - }, - { - orderId: 9578, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-25", - dateShipped: "2024-12-28", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 43864, - streetName: "Street 25", - streetNumber: "886A", - } - }, - { - orderId: 1032, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-17", - dateShipped: "2024-12-24", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 44788, - streetName: "Street 10", - streetNumber: "286C", - } - }, - { - orderId: 6207, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-19", - dateShipped: "2024-12-22", - dateDelivered: "2024-12-23" - }, - orderInformation: { - country: "Australia", - city: "Brisbane", - zipCode: 55589, - streetName: "Street 16", - streetNumber: "476C", - } - }, - { - orderId: 3624, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-12", - dateShipped: "2024-12-18", - dateDelivered: "2024-12-22" - }, - orderInformation: { - country: "France", - city: "Marseille", - zipCode: 13725, - streetName: "Street 39", - streetNumber: "596A", - } - }, - { - orderId: 7800, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-18", - dateShipped: "2024-12-21", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "New York", - zipCode: 24178, - streetName: "Street 36", - streetNumber: "411C", - } - }, - { - orderId: 5870, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-16", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 61522, - streetName: "Street 10", - streetNumber: "989A", - } - }, - { - orderId: 4421, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-04", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 90362, - streetName: "Street 35", - streetNumber: "936B", - } - }, - { - orderId: 5625, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-12", - dateShipped: "2024-12-25", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 13065, - streetName: "Street 6", - streetNumber: "842A", - } - }, - { - orderId: 8127, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-23", - dateDelivered: "2024-12-25" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 29470, - streetName: "Street 29", - streetNumber: "309B", - } - }, - { - orderId: 9174, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-16", - dateShipped: "2024-12-19", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 89980, - streetName: "Street 19", - streetNumber: "272C", - } - }, - { - orderId: 4493, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-10", - dateShipped: "2024-12-13", - dateDelivered: "2024-12-26" - }, - orderInformation: { - country: "France", - city: "Marseille", - zipCode: 36154, - streetName: "Street 41", - streetNumber: "809C", - } - }, - { - orderId: 5009, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 24916, - streetName: "Street 18", - streetNumber: "566C", - } - }, - { - orderId: 1558, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-11", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Brisbane", - zipCode: 90965, - streetName: "Street 6", - streetNumber: "964B", - } - }, - { - orderId: 3924, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-24", - dateShipped: "2024-12-27", - dateDelivered: "2024-12-29" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 98612, - streetName: "Street 24", - streetNumber: "690C", - } - }, - { - orderId: 9712, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-15", - dateShipped: "2024-12-18", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 72475, - streetName: "Street 40", - streetNumber: "650A", - } - }, - { - orderId: 8561, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-27", - dateShipped: "2024-12-30", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "New York", - zipCode: 32513, - streetName: "Street 25", - streetNumber: "978B", - } - }, - { - orderId: 7830, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-12", - dateShipped: "2024-12-13", - dateDelivered: "2024-12-16" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 69174, - streetName: "Street 24", - streetNumber: "332C", - } - }, - { - orderId: 5213, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "2024-12-27", - dateDelivered: "2024-12-29" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 74616, - streetName: "Street 43", - streetNumber: "207A", - } - }, - { - orderId: 8044, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-26", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 24632, - streetName: "Street 25", - streetNumber: "955B", - } - }, - { - orderId: 1811, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-04", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 15521, - streetName: "Street 30", - streetNumber: "317B", - } - }, - { - orderId: 4143, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-04", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Marseille", - zipCode: 71557, - streetName: "Street 15", - streetNumber: "920C", - } - }, - { - orderId: 8851, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-20", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 72193, - streetName: "Street 11", - streetNumber: "674A", - } - }, - { - orderId: 1463, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "2024-12-11", - dateDelivered: "2024-12-13" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 88176, - streetName: "Street 50", - streetNumber: "3A", - } - }, - { - orderId: 5092, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-28", - dateShipped: "2024-12-31", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Melbourne", - zipCode: 62414, - streetName: "Street 41", - streetNumber: "953A", - } - } - ] - }, - { - sku: "SKU1009", - imageUrl: "products/climbing-boots-2558324_1920.jpg", - productName: "Climbing Boots", - category: "Footwear", - rating: 3.5, - grossPrice: 129.99, - netPrice: 138.44, - salesTrendData: TREND_DATA[8], - orders: [ - { - orderId: 7944, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "2024-12-20", - dateDelivered: "2024-12-22" - }, - orderInformation: { - country: "United Kingdom", - city: "London", - zipCode: 21662, - streetName: "Street 47", - streetNumber: "44B", - } - }, - { - orderId: 7125, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-21", - dateShipped: "2024-12-22", - dateDelivered: "2024-12-23" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 90760, - streetName: "Street 22", - streetNumber: "673A", - } - }, - { - orderId: 1422, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-26", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 61832, - streetName: "Street 25", - streetNumber: "567A", - } - }, - { - orderId: 9538, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-16", - dateShipped: "2024-12-17", - dateDelivered: "2024-12-19" - }, - orderInformation: { - country: "France", - city: "Marseille", - zipCode: 24503, - streetName: "Street 45", - streetNumber: "119A", - } - }, - { - orderId: 1636, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-22", - dateShipped: "2024-12-25", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 68399, - streetName: "Street 2", - streetNumber: "633C", - } - }, - { - orderId: 4791, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 14988, - streetName: "Street 37", - streetNumber: "484A", - } - }, - { - orderId: 2516, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-17", - dateShipped: "2024-12-20", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 77388, - streetName: "Street 43", - streetNumber: "136C", - } - }, - { - orderId: 7434, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-18", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 73213, - streetName: "Street 49", - streetNumber: "794C", - } - }, - { - orderId: 5352, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-21", - dateShipped: "2024-12-24", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 57275, - streetName: "Street 24", - streetNumber: "234A", - } - }, - { - orderId: 7485, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-09", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 79583, - streetName: "Street 18", - streetNumber: "755A", - } - } - ] - }, - { - sku: "SKU1010", - imageUrl: "products/Crivit_jacket-2899728_1920-2.jpg", - productName: "Crivit Jacket", - category: "Clothing", - rating: 2, - grossPrice: 62.99, - netPrice: 67.08, - salesTrendData: TREND_DATA[9], - orders: [ - { - orderId: 8610, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-24", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 27505, - streetName: "Street 10", - streetNumber: "563B", - } - }, - { - orderId: 3826, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-12", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Brisbane", - zipCode: 93375, - streetName: "Street 17", - streetNumber: "78C", - } - }, - { - orderId: 2466, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-15", - dateShipped: "2024-12-24", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Marseille", - zipCode: 62807, - streetName: "Street 28", - streetNumber: "938C", - } - }, - { - orderId: 8572, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-06", - dateShipped: "2024-12-21", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 73766, - streetName: "Street 3", - streetNumber: "909C", - } - }, - { - orderId: 6930, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-16", - dateShipped: "2024-12-24", - dateDelivered: "2024-12-27" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 36571, - streetName: "Street 5", - streetNumber: "720C", - } - }, - { - orderId: 3676, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-06", - dateShipped: "2024-12-09", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Chicago", - zipCode: 62595, - streetName: "Street 45", - streetNumber: "798A", - } - }, - { - orderId: 4534, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-17", - dateShipped: "2024-12-20", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 28594, - streetName: "Street 12", - streetNumber: "252A", - } - }, - { - orderId: 3791, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-24", - dateShipped: "2024-12-27", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 36641, - streetName: "Street 3", - streetNumber: "716B", - } - }, - { - orderId: 3334, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-17", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 70091, - streetName: "Street 38", - streetNumber: "471C", - } - }, - { - orderId: 3153, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-15", - dateShipped: "2024-12-22", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "London", - zipCode: 28881, - streetName: "Street 31", - streetNumber: "286B", - } - } - ] - }, - { - sku: "SKU1011", - imageUrl: "products/Down-Winter-Jacket-Depositphotos_58152061_L.jpg", - productName: "Down Winter Jacket", - category: "Clothing", - rating: 3.5, - grossPrice: 68.98, - netPrice: 73.46, - salesTrendData: TREND_DATA[10], - orders: [ - { - orderId: 7443, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-06", - dateShipped: "2024-12-24", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Chicago", - zipCode: 22399, - streetName: "Street 37", - streetNumber: "15B", - } - }, - { - orderId: 3912, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-14", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 69481, - streetName: "Street 28", - streetNumber: "930B", - } - }, - { - orderId: 3934, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-10", - dateShipped: "2024-12-12", - dateDelivered: "2024-12-19" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 31863, - streetName: "Street 35", - streetNumber: "331C", - } - }, - { - orderId: 3976, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-22", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 47952, - streetName: "Street 34", - streetNumber: "510C", - } - }, - { - orderId: 8593, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-22", - dateShipped: "2024-12-25", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Melbourne", - zipCode: 31080, - streetName: "Street 36", - streetNumber: "455C", - } - }, - { - orderId: 4771, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-20", - dateShipped: "2024-12-23", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Chicago", - zipCode: 92086, - streetName: "Street 46", - streetNumber: "988A", - } - }, - { - orderId: 2767, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-05", - dateShipped: "2024-12-19", - dateDelivered: "2024-12-25" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 18884, - streetName: "Street 18", - streetNumber: "125C", - } - }, - { - orderId: 2706, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-16", - dateDelivered: "2024-12-18" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 58190, - streetName: "Street 41", - streetNumber: "747A", - } - }, - { - orderId: 7416, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-12", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 48132, - streetName: "Street 22", - streetNumber: "167C", - } - } - ] - }, - { - sku: "SKU1012", - imageUrl: "products/dyson_hairdryer_Depositphotos_653422044_L.jpg", - productName: "Dyson Hairdryer Purple", - category: "Home Appliances", - rating: 1.95, - grossPrice: 119.99, - netPrice: 127.79, - salesTrendData: TREND_DATA[11], - orders: [ - { - orderId: 6652, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-11", - dateShipped: "2024-12-14", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 75331, - streetName: "Street 15", - streetNumber: "767A", - } - }, - { - orderId: 2521, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-16", - dateShipped: "2024-12-19", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 64266, - streetName: "Street 26", - streetNumber: "934B", - } - }, - { - orderId: 2535, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-18", - dateShipped: "2024-12-21", - dateDelivered: "2024-12-24" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 16147, - streetName: "Street 33", - streetNumber: "673A", - } - }, - { - orderId: 9916, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-15", - dateShipped: "2024-12-18", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 12465, - streetName: "Street 6", - streetNumber: "709A", - } - }, - { - orderId: 8230, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-02", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Brisbane", - zipCode: 53012, - streetName: "Street 50", - streetNumber: "810C", - } - }, - { - orderId: 2420, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-11", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 57310, - streetName: "Street 44", - streetNumber: "922B", - } - }, - { - orderId: 1921, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-27", - dateShipped: "2024-12-30", - dateDelivered: "2025-01-01" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 52783, - streetName: "Street 36", - streetNumber: "231A", - } - }, - { - orderId: 2259, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-26", - dateShipped: "2024-12-29", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "New York", - zipCode: 90045, - streetName: "Street 23", - streetNumber: "461A", - } - }, - { - orderId: 7327, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-04", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 62629, - streetName: "Street 7", - streetNumber: "740A", - } - }, - { - orderId: 2897, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "2024-12-10", - dateDelivered: "2024-12-29" - }, - orderInformation: { - country: "France", - city: "Marseille", - zipCode: 64364, - streetName: "Street 27", - streetNumber: "87A", - } - }, - { - orderId: 3625, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-10", - dateShipped: "2024-12-26", - dateDelivered: "2024-12-28" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 15440, - streetName: "Street 19", - streetNumber: "147B", - } - }, - { - orderId: 4623, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-16", - dateShipped: "2024-12-23", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 42093, - streetName: "Street 4", - streetNumber: "26A", - } - }, - { - orderId: 8901, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-18", - dateDelivered: "2024-12-20" - }, - orderInformation: { - country: "United States", - city: "Chicago", - zipCode: 30378, - streetName: "Street 47", - streetNumber: "674A", - } - }, - { - orderId: 5637, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-27", - dateShipped: "2024-12-30", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Chicago", - zipCode: 59151, - streetName: "Street 30", - streetNumber: "924B", - } - }, - { - orderId: 1445, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-04", - dateShipped: "2024-12-07", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 95591, - streetName: "Street 41", - streetNumber: "541A", - } - }, - { - orderId: 6701, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-03", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 55370, - streetName: "Street 22", - streetNumber: "916A", - } - }, - { - orderId: 7463, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-12", - dateShipped: "2024-12-19", - dateDelivered: "2024-12-21" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 66758, - streetName: "Street 17", - streetNumber: "599C", - } - }, - { - orderId: 9730, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-03", - dateShipped: "2024-12-24", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Munich", - zipCode: 17616, - streetName: "Street 43", - streetNumber: "688C", - } - } - ] - }, - { - sku: "SKU1013", - imageUrl: "products/dyson_hairdryer_Depositphotos_751409932_L.jpg", - productName: "Dyson Hairdryer Gold", - category: "Home Appliances", - rating: 4.7, - grossPrice: 159.99, - netPrice: 170.39, - salesTrendData: TREND_DATA[12], - orders: [ - { - orderId: 9561, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-25", - dateDelivered: "2024-12-27" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 91387, - streetName: "Street 28", - streetNumber: "582B", - } - }, - { - orderId: 8125, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-16", - dateShipped: "2024-12-19", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Lyon", - zipCode: 66151, - streetName: "Street 8", - streetNumber: "840A", - } - }, - { - orderId: 4099, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-27", - dateShipped: "2024-12-29", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Marseille", - zipCode: 96467, - streetName: "Street 6", - streetNumber: "175A", - } - }, - { - orderId: 8574, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-16", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 78201, - streetName: "Street 6", - streetNumber: "90B", - } - }, - { - orderId: 4715, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-26", - dateShipped: "2024-12-29", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Lyon", - zipCode: 80238, - streetName: "Street 4", - streetNumber: "132B", - } - }, - { - orderId: 8293, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-19", - dateDelivered: "2024-12-21" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 26324, - streetName: "Street 33", - streetNumber: "199B", - } - }, - { - orderId: 9076, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-16", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 11926, - streetName: "Street 39", - streetNumber: "681C", - } - }, - { - orderId: 4983, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-21", - dateShipped: "2024-12-28", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 32182, - streetName: "Street 17", - streetNumber: "759C", - } - }, - { - orderId: 6099, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-21", - dateShipped: "2024-12-24", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 60858, - streetName: "Street 36", - streetNumber: "897B", - } - }, - { - orderId: 4264, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-16", - dateDelivered: "2024-12-18" - }, - orderInformation: { - country: "Australia", - city: "Melbourne", - zipCode: 70966, - streetName: "Street 4", - streetNumber: "42B", - } - }, - { - orderId: 8253, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-16", - dateDelivered: "2024-12-26" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 30896, - streetName: "Street 50", - streetNumber: "565A", - } - }, - { - orderId: 2983, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-10", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 19822, - streetName: "Street 32", - streetNumber: "147A", - } - }, - { - orderId: 5742, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-25", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 52866, - streetName: "Street 39", - streetNumber: "19C", - } - }, - { - orderId: 9410, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-22", - dateShipped: "2024-12-25", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Marseille", - zipCode: 48901, - streetName: "Street 22", - streetNumber: "979C", - } - }, - { - orderId: 8172, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-19", - dateShipped: "2024-12-22", - dateDelivered: "2024-12-24" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 29242, - streetName: "Street 13", - streetNumber: "208B", - } - }, - { - orderId: 7632, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-23", - dateShipped: "2024-12-26", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 21401, - streetName: "Street 20", - streetNumber: "360C", - } - }, - { - orderId: 9684, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-17", - dateShipped: "2024-12-20", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "London", - zipCode: 67334, - streetName: "Street 40", - streetNumber: "250A", - } - }, - { - orderId: 7610, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-20", - dateShipped: "2024-12-23", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "London", - zipCode: 61914, - streetName: "Street 33", - streetNumber: "374B", - } - }, - { - orderId: 9776, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-06", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Melbourne", - zipCode: 53088, - streetName: "Street 7", - streetNumber: "726B", - } - }, - { - orderId: 5449, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-05", - dateShipped: "2024-12-11", - dateDelivered: "2024-12-29" - }, - orderInformation: { - country: "Australia", - city: "Melbourne", - zipCode: 68754, - streetName: "Street 49", - streetNumber: "852B", - } - }, - { - orderId: 4074, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-25", - dateShipped: "2024-12-28", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 62569, - streetName: "Street 1", - streetNumber: "557B", - } - }, - { - orderId: 6561, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-19", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 80236, - streetName: "Street 22", - streetNumber: "182B", - } - }, - { - orderId: 4630, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-10", - dateShipped: "2024-12-19", - dateDelivered: "2024-12-21" - }, - orderInformation: { - country: "Australia", - city: "Melbourne", - zipCode: 42584, - streetName: "Street 37", - streetNumber: "883C", - } - } - ] - }, - { - sku: "SKU1014", - imageUrl: "products/dyson_vacuum_appliance-2255_1920.jpg", - productName: "Dyson Vacuum Cleaner", - category: "Home Appliances", - rating: 4.5, - grossPrice: 465, - netPrice: 495.23, - salesTrendData: TREND_DATA[13], - orders: [ - { - orderId: 2287, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-11", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 42881, - streetName: "Street 38", - streetNumber: "366B", - } - }, - { - orderId: 2776, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-22", - dateShipped: "2024-12-25", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 40163, - streetName: "Street 4", - streetNumber: "800A", - } - }, - { - orderId: 6417, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-28", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 95499, - streetName: "Street 36", - streetNumber: "576A", - } - }, - { - orderId: 7110, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "2024-12-10", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 10032, - streetName: "Street 47", - streetNumber: "848C", - } - }, - { - orderId: 5102, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-16", - dateDelivered: "2024-12-20" - }, - orderInformation: { - country: "United States", - city: "New York", - zipCode: 97615, - streetName: "Street 18", - streetNumber: "232B", - } - }, - { - orderId: 5524, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-23", - dateShipped: "2024-12-26", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 22032, - streetName: "Street 30", - streetNumber: "346B", - } - } - ] - }, - { - sku: "SKU1015", - imageUrl: "products/earphone-2640990_1920.jpg", - productName: "Earphones Black", - category: "Accessories", - rating: 4.1, - grossPrice: 59.99, - netPrice: 63.89, - salesTrendData: TREND_DATA[14], - orders: [ - { - orderId: 6975, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-19", - dateShipped: "2024-12-29", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 35865, - streetName: "Street 26", - streetNumber: "522C", - } - }, - { - orderId: 1891, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-06", - dateShipped: "2024-12-22", - dateDelivered: "2024-12-30" - }, - orderInformation: { - country: "United Kingdom", - city: "London", - zipCode: 36767, - streetName: "Street 7", - streetNumber: "940C", - } - }, - { - orderId: 4289, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-24", - dateShipped: "2024-12-25", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Brisbane", - zipCode: 47835, - streetName: "Street 17", - streetNumber: "419A", - } - }, - { - orderId: 8229, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-12", - dateShipped: "2024-12-15", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Melbourne", - zipCode: 85925, - streetName: "Street 3", - streetNumber: "770B", - } - }, - { - orderId: 9112, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "2024-12-10", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 93388, - streetName: "Street 28", - streetNumber: "761B", - } - }, - { - orderId: 7250, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-16", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 71586, - streetName: "Street 2", - streetNumber: "998A", - } - }, - { - orderId: 8168, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-19", - dateShipped: "2024-12-22", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 90446, - streetName: "Street 47", - streetNumber: "891B", - } - }, - { - orderId: 3975, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-19", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 59128, - streetName: "Street 25", - streetNumber: "440A", - } - }, - { - orderId: 9222, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-16", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 50312, - streetName: "Street 11", - streetNumber: "544A", - } - }, - { - orderId: 5077, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-05", - dateShipped: "2024-12-09", - dateDelivered: "2024-12-13" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 84053, - streetName: "Street 3", - streetNumber: "388A", - } - }, - { - orderId: 2800, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-08", - dateShipped: "2024-12-11", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 95270, - streetName: "Street 42", - streetNumber: "726A", - } - }, - { - orderId: 3284, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-20", - dateShipped: "2024-12-23", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Marseille", - zipCode: 20613, - streetName: "Street 6", - streetNumber: "335A", - } - }, - { - orderId: 8060, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-02", - dateShipped: "2024-12-10", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Munich", - zipCode: 90375, - streetName: "Street 39", - streetNumber: "439B", - } - }, - { - orderId: 4043, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-05", - dateShipped: "2024-12-08", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Melbourne", - zipCode: 12756, - streetName: "Street 50", - streetNumber: "811A", - } - }, - { - orderId: 9002, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-19", - dateShipped: "2024-12-22", - dateDelivered: "2024-12-26" - }, - orderInformation: { - country: "France", - city: "Lyon", - zipCode: 74206, - streetName: "Street 49", - streetNumber: "531C", - } - } - ] - }, - { - sku: "SKU1016", - imageUrl: "products/EPSON_printer-1516580_1920-2.jpg", - productName: "Epson Laser Printer", - category: "Electronics", - rating: 5, - grossPrice: 199.99, - netPrice: 212.99, - salesTrendData: TREND_DATA[9], - orders: [ - { - orderId: 9046, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-21", - dateShipped: "2024-12-24", - dateDelivered: "2024-12-26" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 88056, - streetName: "Street 31", - streetNumber: "863C", - } - }, - { - orderId: 5568, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-10", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 32539, - streetName: "Street 16", - streetNumber: "453A", - } - }, - { - orderId: 6837, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-20", - dateShipped: "2024-12-23", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 51789, - streetName: "Street 21", - streetNumber: "912C", - } - }, - { - orderId: 2939, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "2024-12-10", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 75943, - streetName: "Street 10", - streetNumber: "21A", - } - }, - { - orderId: 1498, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-06", - dateShipped: "2024-12-09", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 91277, - streetName: "Street 40", - streetNumber: "671A", - } - }, - { - orderId: 1572, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-19", - dateShipped: "2024-12-22", - dateDelivered: "2024-12-24" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 58801, - streetName: "Street 48", - streetNumber: "855A", - } - }, - { - orderId: 2335, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-21", - dateShipped: "2024-12-24", - dateDelivered: "2024-12-26" - }, - orderInformation: { - country: "United States", - city: "Chicago", - zipCode: 59822, - streetName: "Street 5", - streetNumber: "212A", - } - }, - { - orderId: 2112, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-12", - dateShipped: "2024-12-21", - dateDelivered: "2024-12-23" - }, - orderInformation: { - country: "Germany", - city: "Munich", - zipCode: 95627, - streetName: "Street 47", - streetNumber: "438A", - } - }, - { - orderId: 5538, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-23", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 67887, - streetName: "Street 16", - streetNumber: "341C", - } - }, - { - orderId: 3407, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-02", - dateShipped: "2024-12-20", - dateDelivered: "2024-12-22" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 99025, - streetName: "Street 20", - streetNumber: "413A", - } - } - ] - }, - { - sku: "SKU1017", - imageUrl: "products/Gaggia-coffee-machine-Depositphotos_171399082_L.jpg", - productName: "Gaggia Coffee Machine", - category: "Home Appliances", - rating: 4, - grossPrice: 499, - netPrice: 531.44, - salesTrendData: TREND_DATA[1], - orders: [ - { - orderId: 3668, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 42853, - streetName: "King's Road", - streetNumber: "97C", - } - }, - { - orderId: 9088, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Finland", - city: "Helsinki", - zipCode: 48272, - streetName: "Queen Street", - streetNumber: "271B", - } - }, - { - orderId: 2986, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Brazil", - city: "São Paulo", - zipCode: 66311, - streetName: "Queen Street", - streetNumber: "381A", - } - }, - { - orderId: 5508, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 82134, - streetName: "High Street", - streetNumber: "199C", - } - }, - { - orderId: 2306, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Italy", - city: "Rome", - zipCode: 60751, - streetName: "Main Street", - streetNumber: "289D", - } - }, - { - orderId: 6001, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Netherlands", - city: "Amsterdam", - zipCode: 11840, - streetName: "High Street", - streetNumber: "381B", - } - }, - { - orderId: 5064, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Romania", - city: "Bucharest", - zipCode: 84647, - streetName: "Sunset Blvd", - streetNumber: "98D", - } - }, - { - orderId: 8908, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Finland", - city: "Helsinki", - zipCode: 12744, - streetName: "Market Street", - streetNumber: "245D", - } - }, - { - orderId: 3992, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Finland", - city: "Helsinki", - zipCode: 92963, - streetName: "Sunset Blvd", - streetNumber: "98A", - } - }, - { - orderId: 7454, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Finland", - city: "Helsinki", - zipCode: 69822, - streetName: "Broadway", - streetNumber: "378A", - } - }, - { - orderId: 7439, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Denmark", - city: "Copenhagen", - zipCode: 81197, - streetName: "High Street", - streetNumber: "77C", - } - }, - { - orderId: 7884, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 74221, - streetName: "King's Road", - streetNumber: "104B", - } - }, - { - orderId: 1217, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "United Kingdom", - city: "London", - zipCode: 80946, - streetName: "Broadway", - streetNumber: "232A", - } - }, - { - orderId: 2222, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Greece", - city: "Athens", - zipCode: 25316, - streetName: "Queen Street", - streetNumber: "117C", - } - }, - { - orderId: 2341, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Netherlands", - city: "Amsterdam", - zipCode: 85226, - streetName: "Market Street", - streetNumber: "174C", - } - }, - { - orderId: 6504, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Finland", - city: "Helsinki", - zipCode: 22228, - streetName: "Sunset Blvd", - streetNumber: "107D", - } - }, - { - orderId: 3384, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Romania", - city: "Bucharest", - zipCode: 95317, - streetName: "Market Street", - streetNumber: "436B", - } - }, - { - orderId: 5184, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 67622, - streetName: "Market Street", - streetNumber: "167C", - } - }, - { - orderId: 8824, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Japan", - city: "Tokyo", - zipCode: 51645, - streetName: "Queen Street", - streetNumber: "381B", - } - }, - { - orderId: 6498, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 98659, - streetName: "Market Street", - streetNumber: "382D", - } - }, - { - orderId: 5649, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 22221, - streetName: "King's Road", - streetNumber: "1D", - } - }, - { - orderId: 9539, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Netherlands", - city: "Amsterdam", - zipCode: 11251, - streetName: "King's Road", - streetNumber: "184C", - } - }, - { - orderId: 3984, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Canada", - city: "Toronto", - zipCode: 66743, - streetName: "Broadway", - streetNumber: "386D", - } - }, - { - orderId: 4042, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Brazil", - city: "São Paulo", - zipCode: 99082, - streetName: "Broadway", - streetNumber: "388D", - } - }, - { - orderId: 1922, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Finland", - city: "Helsinki", - zipCode: 15493, - streetName: "High Street", - streetNumber: "66A", - } - }, - { - orderId: 8364, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 68614, - streetName: "King's Road", - streetNumber: "244A", - } - }, - { - orderId: 4856, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Japan", - city: "Tokyo", - zipCode: 53175, - streetName: "King's Road", - streetNumber: "305A", - } - }, - { - orderId: 3730, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Netherlands", - city: "Amsterdam", - zipCode: 12081, - streetName: "Market Street", - streetNumber: "367D", - } - }, - { - orderId: 2312, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Italy", - city: "Rome", - zipCode: 69350, - streetName: "King's Road", - streetNumber: "4C", - } - }, - { - orderId: 6716, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Italy", - city: "Rome", - zipCode: 54889, - streetName: "Main Street", - streetNumber: "148D", - } - }, - { - orderId: 8911, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 86283, - streetName: "Market Street", - streetNumber: "95B", - } - }, - { - orderId: 9728, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Canada", - city: "Toronto", - zipCode: 63241, - streetName: "Broadway", - streetNumber: "418A", - } - }, - { - orderId: 3961, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Belgium", - city: "Brussels", - zipCode: 57995, - streetName: "Main Street", - streetNumber: "128C", - } - }, - { - orderId: 4159, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Romania", - city: "Bucharest", - zipCode: 72211, - streetName: "Queen Street", - streetNumber: "29B", - } - }, - { - orderId: 7266, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "China", - city: "Beijing", - zipCode: 74156, - streetName: "Queen Street", - streetNumber: "312A", - } - }, - { - orderId: 9165, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Canada", - city: "Toronto", - zipCode: 29440, - streetName: "King's Road", - streetNumber: "237C", - } - }, - { - orderId: 5787, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "China", - city: "Beijing", - zipCode: 76065, - streetName: "Sunset Blvd", - streetNumber: "97A", - } - }, - { - orderId: 3379, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Greece", - city: "Athens", - zipCode: 45400, - streetName: "Queen Street", - streetNumber: "84A", - } - } - ] - }, - { - sku: "SKU1018", - imageUrl: "products/HP_laptop_black-5141242_1920.jpg", - productName: "HP Laptop 15 inch", - category: "Electronics", - rating: 3.95, - grossPrice: 349, - netPrice: 371.69, - salesTrendData: TREND_DATA[0], - orders: [ - { - orderId: 9494, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-23", - dateShipped: "2024-12-26", - dateDelivered: "2024-12-28" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 91450, - streetName: "Street 7", - streetNumber: "200C", - } - }, - { - orderId: 1227, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-16", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "New York", - zipCode: 97901, - streetName: "Street 18", - streetNumber: "78A", - } - }, - { - orderId: 6851, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-11", - dateShipped: "2024-12-14", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 82888, - streetName: "Street 44", - streetNumber: "340A", - } - }, - { - orderId: 5647, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-16", - dateDelivered: "2024-12-29" - }, - orderInformation: { - country: "Germany", - city: "Munich", - zipCode: 86191, - streetName: "Street 46", - streetNumber: "2A", - } - }, - { - orderId: 3651, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-02", - dateShipped: "2024-12-05", - dateDelivered: "2024-12-14" - }, - orderInformation: { - country: "France", - city: "Lyon", - zipCode: 34426, - streetName: "Street 20", - streetNumber: "482B", - } - }, - { - orderId: 3704, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-14", - dateShipped: "2024-12-15", - dateDelivered: "2024-12-17" - }, - orderInformation: { - country: "United States", - city: "Chicago", - zipCode: 99385, - streetName: "Street 36", - streetNumber: "279C", - } - }, - { - orderId: 3696, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-16", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 79567, - streetName: "Street 23", - streetNumber: "677A", - } - }, - { - orderId: 5334, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-26", - dateShipped: "2024-12-29", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 90686, - streetName: "Street 15", - streetNumber: "251C", - } - }, - { - orderId: 2110, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-10", - dateShipped: "2024-12-13", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 85309, - streetName: "Street 47", - streetNumber: "63C", - } - } - ] - }, - { - sku: "SKU1019", - imageUrl: "products/iPad-Pro-Depositphotos_241726176_L.jpg", - productName: "iPad Pro 12.9 inch", - category: "Electronics", - rating: 3.2, - grossPrice: 448, - netPrice: 477.12, - salesTrendData: TREND_DATA[7], - orders: [ - { - orderId: 8235, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-24", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 48193, - streetName: "Street 28", - streetNumber: "927C", - } - }, - { - orderId: 1643, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-14", - dateShipped: "2024-12-17", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 64564, - streetName: "Street 1", - streetNumber: "101A", - } - }, - { - orderId: 1786, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-02", - dateShipped: "2024-12-12", - dateDelivered: "2024-12-22" - }, - orderInformation: { - country: "France", - city: "Lyon", - zipCode: 25197, - streetName: "Street 36", - streetNumber: "689B", - } - }, - { - orderId: 9206, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "2024-12-27", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 77659, - streetName: "Street 48", - streetNumber: "298C", - } - }, - { - orderId: 9578, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-25", - dateShipped: "2024-12-28", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 43864, - streetName: "Street 25", - streetNumber: "886A", - } - }, - { - orderId: 1032, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-17", - dateShipped: "2024-12-24", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 44788, - streetName: "Street 10", - streetNumber: "286C", - } - }, - { - orderId: 6207, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-19", - dateShipped: "2024-12-22", - dateDelivered: "2024-12-23" - }, - orderInformation: { - country: "Australia", - city: "Brisbane", - zipCode: 55589, - streetName: "Street 16", - streetNumber: "476C", - } - }, - { - orderId: 3624, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-12", - dateShipped: "2024-12-18", - dateDelivered: "2024-12-22" - }, - orderInformation: { - country: "France", - city: "Marseille", - zipCode: 13725, - streetName: "Street 39", - streetNumber: "596A", - } - }, - { - orderId: 7800, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-18", - dateShipped: "2024-12-21", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "New York", - zipCode: 24178, - streetName: "Street 36", - streetNumber: "411C", - } - }, - { - orderId: 5870, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-16", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 61522, - streetName: "Street 10", - streetNumber: "989A", - } - }, - { - orderId: 4421, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-04", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 90362, - streetName: "Street 35", - streetNumber: "936B", - } - }, - { - orderId: 5625, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-12", - dateShipped: "2024-12-25", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 13065, - streetName: "Street 6", - streetNumber: "842A", - } - }, - { - orderId: 8127, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-23", - dateDelivered: "2024-12-25" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 29470, - streetName: "Street 29", - streetNumber: "309B", - } - }, - { - orderId: 9174, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-16", - dateShipped: "2024-12-19", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 89980, - streetName: "Street 19", - streetNumber: "272C", - } - }, - { - orderId: 4493, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-10", - dateShipped: "2024-12-13", - dateDelivered: "2024-12-26" - }, - orderInformation: { - country: "France", - city: "Marseille", - zipCode: 36154, - streetName: "Street 41", - streetNumber: "809C", - } - }, - { - orderId: 5009, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 24916, - streetName: "Street 18", - streetNumber: "566C", - } - }, - { - orderId: 1558, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-11", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Brisbane", - zipCode: 90965, - streetName: "Street 6", - streetNumber: "964B", - } - }, - { - orderId: 3924, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-24", - dateShipped: "2024-12-27", - dateDelivered: "2024-12-29" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 98612, - streetName: "Street 24", - streetNumber: "690C", - } - }, - { - orderId: 9712, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-15", - dateShipped: "2024-12-18", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 72475, - streetName: "Street 40", - streetNumber: "650A", - } - }, - { - orderId: 8561, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-27", - dateShipped: "2024-12-30", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "New York", - zipCode: 32513, - streetName: "Street 25", - streetNumber: "978B", - } - }, - { - orderId: 7830, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-12", - dateShipped: "2024-12-13", - dateDelivered: "2024-12-16" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 69174, - streetName: "Street 24", - streetNumber: "332C", - } - }, - { - orderId: 5213, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "2024-12-27", - dateDelivered: "2024-12-29" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 74616, - streetName: "Street 43", - streetNumber: "207A", - } - }, - { - orderId: 8044, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-26", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 24632, - streetName: "Street 25", - streetNumber: "955B", - } - }, - { - orderId: 1811, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-04", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 15521, - streetName: "Street 30", - streetNumber: "317B", - } - }, - { - orderId: 4143, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-04", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Marseille", - zipCode: 71557, - streetName: "Street 15", - streetNumber: "920C", - } - }, - { - orderId: 8851, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-20", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 72193, - streetName: "Street 11", - streetNumber: "674A", - } - }, - { - orderId: 1463, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "2024-12-11", - dateDelivered: "2024-12-13" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 88176, - streetName: "Street 50", - streetNumber: "3A", - } - }, - { - orderId: 5092, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-28", - dateShipped: "2024-12-31", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Melbourne", - zipCode: 62414, - streetName: "Street 41", - streetNumber: "953A", - } - } - ] - }, - { - sku: "SKU1020", - imageUrl: "products/iphone-X-2854322_1920.jpg", - productName: "iPhone X 256 GB", - category: "Electronics", - rating: 3, - grossPrice: 1026, - netPrice: 1092.69, - salesTrendData: TREND_DATA[3], - orders: [ - { - orderId: 1367, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-05", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 93345, - streetName: "Street 47", - streetNumber: "404A", - } - }, - { - orderId: 6198, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "2024-12-08", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 12710, - streetName: "Street 47", - streetNumber: "33B", - } - }, - { - orderId: 2070, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-27", - dateShipped: "2024-12-30", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 55326, - streetName: "Street 15", - streetNumber: "398C", - } - }, - { - orderId: 7536, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-11", - dateShipped: "2024-12-14", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 67187, - streetName: "Street 40", - streetNumber: "68A", - } - }, - { - orderId: 5478, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-05", - dateShipped: "2024-12-17", - dateDelivered: "2024-12-23" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 36934, - streetName: "Street 32", - streetNumber: "462C", - } - }, - { - orderId: 3333, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-05", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Brisbane", - zipCode: 69061, - streetName: "Street 42", - streetNumber: "979A", - } - }, - { - orderId: 8446, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-18", - dateShipped: "2024-12-21", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 40350, - streetName: "Street 38", - streetNumber: "343B", - } - }, - { - orderId: 1720, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-02", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 27471, - streetName: "Street 50", - streetNumber: "895B", - } - }, - { - orderId: 9331, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-25", - dateShipped: "2024-12-28", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 13811, - streetName: "Street 29", - streetNumber: "816A", - } - }, - { - orderId: 3556, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 13264, - streetName: "Street 5", - streetNumber: "490B", - } - }, - { - orderId: 7227, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-15", - dateShipped: "2024-12-26", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Munich", - zipCode: 30240, - streetName: "Street 18", - streetNumber: "606C", - } - }, - { - orderId: 3204, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-08", - dateShipped: "2024-12-11", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 23659, - streetName: "Street 31", - streetNumber: "422C", - } - }, - { - orderId: 9396, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-26", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 90690, - streetName: "Street 28", - streetNumber: "233A", - } - }, - { - orderId: 4507, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-17", - dateShipped: "2024-12-20", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 82167, - streetName: "Street 37", - streetNumber: "661B", - } - }, - { - orderId: 3512, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-26", - dateShipped: "2024-12-29", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Brisbane", - zipCode: 10198, - streetName: "Street 41", - streetNumber: "888C", - } - }, - { - orderId: 2045, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-03", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Lyon", - zipCode: 64248, - streetName: "Street 30", - streetNumber: "963C", - } - }, - { - orderId: 9911, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-02", - dateShipped: "2024-12-05", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Marseille", - zipCode: 96708, - streetName: "Street 46", - streetNumber: "923B", - } - }, - { - orderId: 8937, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-05", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Brisbane", - zipCode: 13581, - streetName: "Street 2", - streetNumber: "345A", - } - }, - { - orderId: 4707, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 28725, - streetName: "Street 5", - streetNumber: "432A", - } - }, - { - orderId: 3482, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-08", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 84535, - streetName: "Street 43", - streetNumber: "741A", - } - } - ] - }, - { - sku: "SKU1021", - imageUrl: "products/JBL_speaker-5800162_1920-2.jpg", - productName: "JBL Speaker", - category: "Electronics", - rating: 1.88, - grossPrice: 89.95, - netPrice: 95.8, - salesTrendData: TREND_DATA[2], - orders: [ - { - orderId: 6636, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Italy", - city: "Rome", - zipCode: 90156, - streetName: "High Street", - streetNumber: "127B", - } - }, - { - orderId: 1757, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Denmark", - city: "Copenhagen", - zipCode: 24877, - streetName: "High Street", - streetNumber: "217B", - } - }, - { - orderId: 9540, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 10185, - streetName: "Market Street", - streetNumber: "294C", - } - }, - { - orderId: 5072, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Poland", - city: "Warsaw", - zipCode: 98568, - streetName: "Market Street", - streetNumber: "97A", - } - }, - { - orderId: 6883, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 54673, - streetName: "Sunset Blvd", - streetNumber: "118D", - } - }, - { - orderId: 5508, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 56840, - streetName: "High Street", - streetNumber: "307A", - } - }, - { - orderId: 7779, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Japan", - city: "Tokyo", - zipCode: 31900, - streetName: "Market Street", - streetNumber: "117A", - } - }, - { - orderId: 3356, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Canada", - city: "Toronto", - zipCode: 57467, - streetName: "King's Road", - streetNumber: "132D", - } - }, - { - orderId: 7814, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 19866, - streetName: "High Street", - streetNumber: "31B", - } - }, - { - orderId: 7978, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Netherlands", - city: "Amsterdam", - zipCode: 67201, - streetName: "Broadway", - streetNumber: "74D", - } - }, - { - orderId: 9865, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Belgium", - city: "Brussels", - zipCode: 42714, - streetName: "Sunset Blvd", - streetNumber: "173D", - } - }, - { - orderId: 2538, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 25553, - streetName: "Market Street", - streetNumber: "471D", - } - } - ] - }, - { - sku: "SKU1022", - imageUrl: "products/Kitchen-Multicooker-Depositphotos_35751187_L.jpg", - productName: "Kitchen Multicooker", - category: "Home Appliances", - rating: 4.89, - grossPrice: 39.99, - netPrice: 42.59, - salesTrendData: TREND_DATA[2], - orders: [ - { - orderId: 6636, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Italy", - city: "Rome", - zipCode: 90156, - streetName: "High Street", - streetNumber: "127B", - } - }, - { - orderId: 1757, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Denmark", - city: "Copenhagen", - zipCode: 24877, - streetName: "High Street", - streetNumber: "217B", - } - }, - { - orderId: 9540, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 10185, - streetName: "Market Street", - streetNumber: "294C", - } - }, - { - orderId: 5072, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Poland", - city: "Warsaw", - zipCode: 98568, - streetName: "Market Street", - streetNumber: "97A", - } - }, - { - orderId: 6883, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 54673, - streetName: "Sunset Blvd", - streetNumber: "118D", - } - }, - { - orderId: 5508, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 56840, - streetName: "High Street", - streetNumber: "307A", - } - }, - { - orderId: 7779, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Japan", - city: "Tokyo", - zipCode: 31900, - streetName: "Market Street", - streetNumber: "117A", - } - }, - { - orderId: 3356, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Canada", - city: "Toronto", - zipCode: 57467, - streetName: "King's Road", - streetNumber: "132D", - } - }, - { - orderId: 7814, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 19866, - streetName: "High Street", - streetNumber: "31B", - } - }, - { - orderId: 7978, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Netherlands", - city: "Amsterdam", - zipCode: 67201, - streetName: "Broadway", - streetNumber: "74D", - } - }, - { - orderId: 9865, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Belgium", - city: "Brussels", - zipCode: 42714, - streetName: "Sunset Blvd", - streetNumber: "173D", - } - }, - { - orderId: 2538, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 25553, - streetName: "Market Street", - streetNumber: "471D", - } - } - ] - }, - { - sku: "SKU1023", - imageUrl: "products/laptop_Depositphotos_2996767_L.jpg", - productName: "Laptop 13 inch", - category: "Electronics", - rating: 3.5, - grossPrice: 315, - netPrice: 335.48, - salesTrendData: TREND_DATA[0], - orders: [ - { - orderId: 1234, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "New York", - zipCode: 10001, - streetName: "5th Avenue", - streetNumber: "501B", - } - }, - { - orderId: 2345, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Canada", - city: "Toronto", - zipCode: 23456, - streetName: "Yonge Street", - streetNumber: "300C", - } - }, - { - orderId: 3456, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 75001, - streetName: "Rue de Rivoli", - streetNumber: "10A", - } - }, - { - orderId: 4567, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 10115, - streetName: "Unter den Linden", - streetNumber: "25D", - } - }, - { - orderId: 5678, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Italy", - city: "Rome", - zipCode: 54321, - streetName: "Via del Corso", - streetNumber: "100A", - } - }, - { - orderId: 6789, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Brazil", - city: "São Paulo", - zipCode: 65432, - streetName: "Avenida Paulista", - streetNumber: "200B", - } - }, - { - orderId: 7890, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 98765, - streetName: "Marine Drive", - streetNumber: "150B", - } - }, - { - orderId: 8901, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "London", - zipCode: 34567, - streetName: "Oxford Street", - streetNumber: "200C", - } - }, - { - orderId: 9012, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Japan", - city: "Tokyo", - zipCode: 56789, - streetName: "Shinjuku Street", - streetNumber: "50D", - } - } - ] - }, - { - sku: "SKU1024", - imageUrl: "products/laptop_Depositphotos_6271974_L.jpg", - productName: "Laptop Workstation 15 inch", - category: "Electronics", - rating: 5, - grossPrice: 699, - netPrice: 744.44, - salesTrendData: TREND_DATA[14], - orders: [ - { - orderId: 6975, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-19", - dateShipped: "2024-12-29", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 35865, - streetName: "Street 26", - streetNumber: "522C", - } - }, - { - orderId: 1891, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-06", - dateShipped: "2024-12-22", - dateDelivered: "2024-12-30" - }, - orderInformation: { - country: "United Kingdom", - city: "London", - zipCode: 36767, - streetName: "Street 7", - streetNumber: "940C", - } - }, - { - orderId: 4289, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-24", - dateShipped: "2024-12-25", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Brisbane", - zipCode: 47835, - streetName: "Street 17", - streetNumber: "419A", - } - }, - { - orderId: 8229, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-12", - dateShipped: "2024-12-15", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Melbourne", - zipCode: 85925, - streetName: "Street 3", - streetNumber: "770B", - } - }, - { - orderId: 9112, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "2024-12-10", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 93388, - streetName: "Street 28", - streetNumber: "761B", - } - }, - { - orderId: 7250, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-16", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 71586, - streetName: "Street 2", - streetNumber: "998A", - } - }, - { - orderId: 8168, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-19", - dateShipped: "2024-12-22", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 90446, - streetName: "Street 47", - streetNumber: "891B", - } - }, - { - orderId: 3975, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-19", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 59128, - streetName: "Street 25", - streetNumber: "440A", - } - }, - { - orderId: 9222, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-16", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 50312, - streetName: "Street 11", - streetNumber: "544A", - } - }, - { - orderId: 5077, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-05", - dateShipped: "2024-12-09", - dateDelivered: "2024-12-13" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 84053, - streetName: "Street 3", - streetNumber: "388A", - } - }, - { - orderId: 2800, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-08", - dateShipped: "2024-12-11", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 95270, - streetName: "Street 42", - streetNumber: "726A", - } - }, - { - orderId: 3284, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-20", - dateShipped: "2024-12-23", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Marseille", - zipCode: 20613, - streetName: "Street 6", - streetNumber: "335A", - } - }, - { - orderId: 8060, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-02", - dateShipped: "2024-12-10", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Munich", - zipCode: 90375, - streetName: "Street 39", - streetNumber: "439B", - } - }, - { - orderId: 4043, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-05", - dateShipped: "2024-12-08", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Melbourne", - zipCode: 12756, - streetName: "Street 50", - streetNumber: "811A", - } - }, - { - orderId: 9002, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-19", - dateShipped: "2024-12-22", - dateDelivered: "2024-12-26" - }, - orderInformation: { - country: "France", - city: "Lyon", - zipCode: 74206, - streetName: "Street 49", - streetNumber: "531C", - } - } - ] - }, - { - sku: "SKU1025", - imageUrl: "products/Macbook_Depositphotos_205657722_L-2.jpg", - productName: "MacBook Pro 15 inch", - category: "Electronics", - rating: 3.5, - grossPrice: 1211.53, - netPrice: 1290.28, - salesTrendData: TREND_DATA[1], - orders: [ - { - orderId: 3668, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 42853, - streetName: "King's Road", - streetNumber: "97C", - } - }, - { - orderId: 9088, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Finland", - city: "Helsinki", - zipCode: 48272, - streetName: "Queen Street", - streetNumber: "271B", - } - }, - { - orderId: 2986, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Brazil", - city: "São Paulo", - zipCode: 66311, - streetName: "Queen Street", - streetNumber: "381A", - } - }, - { - orderId: 5508, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 82134, - streetName: "High Street", - streetNumber: "199C", - } - }, - { - orderId: 2306, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Italy", - city: "Rome", - zipCode: 60751, - streetName: "Main Street", - streetNumber: "289D", - } - }, - { - orderId: 6001, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Netherlands", - city: "Amsterdam", - zipCode: 11840, - streetName: "High Street", - streetNumber: "381B", - } - }, - { - orderId: 5064, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Romania", - city: "Bucharest", - zipCode: 84647, - streetName: "Sunset Blvd", - streetNumber: "98D", - } - }, - { - orderId: 8908, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Finland", - city: "Helsinki", - zipCode: 12744, - streetName: "Market Street", - streetNumber: "245D", - } - }, - { - orderId: 3992, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Finland", - city: "Helsinki", - zipCode: 92963, - streetName: "Sunset Blvd", - streetNumber: "98A", - } - }, - { - orderId: 7454, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Finland", - city: "Helsinki", - zipCode: 69822, - streetName: "Broadway", - streetNumber: "378A", - } - }, - { - orderId: 7439, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Denmark", - city: "Copenhagen", - zipCode: 81197, - streetName: "High Street", - streetNumber: "77C", - } - }, - { - orderId: 7884, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 74221, - streetName: "King's Road", - streetNumber: "104B", - } - }, - { - orderId: 1217, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "United Kingdom", - city: "London", - zipCode: 80946, - streetName: "Broadway", - streetNumber: "232A", - } - }, - { - orderId: 2222, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Greece", - city: "Athens", - zipCode: 25316, - streetName: "Queen Street", - streetNumber: "117C", - } - }, - { - orderId: 2341, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Netherlands", - city: "Amsterdam", - zipCode: 85226, - streetName: "Market Street", - streetNumber: "174C", - } - }, - { - orderId: 6504, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Finland", - city: "Helsinki", - zipCode: 22228, - streetName: "Sunset Blvd", - streetNumber: "107D", - } - }, - { - orderId: 3384, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Romania", - city: "Bucharest", - zipCode: 95317, - streetName: "Market Street", - streetNumber: "436B", - } - }, - { - orderId: 5184, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 67622, - streetName: "Market Street", - streetNumber: "167C", - } - }, - { - orderId: 8824, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Japan", - city: "Tokyo", - zipCode: 51645, - streetName: "Queen Street", - streetNumber: "381B", - } - }, - { - orderId: 6498, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 98659, - streetName: "Market Street", - streetNumber: "382D", - } - }, - { - orderId: 5649, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 22221, - streetName: "King's Road", - streetNumber: "1D", - } - }, - { - orderId: 9539, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Netherlands", - city: "Amsterdam", - zipCode: 11251, - streetName: "King's Road", - streetNumber: "184C", - } - }, - { - orderId: 3984, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Canada", - city: "Toronto", - zipCode: 66743, - streetName: "Broadway", - streetNumber: "386D", - } - }, - { - orderId: 4042, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Brazil", - city: "São Paulo", - zipCode: 99082, - streetName: "Broadway", - streetNumber: "388D", - } - }, - { - orderId: 1922, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Finland", - city: "Helsinki", - zipCode: 15493, - streetName: "High Street", - streetNumber: "66A", - } - }, - { - orderId: 8364, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 68614, - streetName: "King's Road", - streetNumber: "244A", - } - }, - { - orderId: 4856, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Japan", - city: "Tokyo", - zipCode: 53175, - streetName: "King's Road", - streetNumber: "305A", - } - }, - { - orderId: 3730, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Netherlands", - city: "Amsterdam", - zipCode: 12081, - streetName: "Market Street", - streetNumber: "367D", - } - }, - { - orderId: 2312, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Italy", - city: "Rome", - zipCode: 69350, - streetName: "King's Road", - streetNumber: "4C", - } - }, - { - orderId: 6716, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Italy", - city: "Rome", - zipCode: 54889, - streetName: "Main Street", - streetNumber: "148D", - } - }, - { - orderId: 8911, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 86283, - streetName: "Market Street", - streetNumber: "95B", - } - }, - { - orderId: 9728, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Canada", - city: "Toronto", - zipCode: 63241, - streetName: "Broadway", - streetNumber: "418A", - } - }, - { - orderId: 3961, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Belgium", - city: "Brussels", - zipCode: 57995, - streetName: "Main Street", - streetNumber: "128C", - } - }, - { - orderId: 4159, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Romania", - city: "Bucharest", - zipCode: 72211, - streetName: "Queen Street", - streetNumber: "29B", - } - }, - { - orderId: 7266, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "China", - city: "Beijing", - zipCode: 74156, - streetName: "Queen Street", - streetNumber: "312A", - } - }, - { - orderId: 9165, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Canada", - city: "Toronto", - zipCode: 29440, - streetName: "King's Road", - streetNumber: "237C", - } - }, - { - orderId: 5787, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "China", - city: "Beijing", - zipCode: 76065, - streetName: "Sunset Blvd", - streetNumber: "97A", - } - }, - { - orderId: 3379, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Greece", - city: "Athens", - zipCode: 45400, - streetName: "Queen Street", - streetNumber: "84A", - } - } - ] - }, - { - sku: "SKU1026", - imageUrl: "products/Markers-pack-Depositphotos_113646792_L.jpg", - productName: "Markers 4-pack", - category: "Office Supplies", - rating: 5, - grossPrice: 7.95, - netPrice: 8.47, - salesTrendData: TREND_DATA[10], - orders: [ - { - orderId: 9494, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-23", - dateShipped: "2024-12-26", - dateDelivered: "2024-12-28" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 91450, - streetName: "Street 7", - streetNumber: "200C", - } - }, - { - orderId: 1227, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-16", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "New York", - zipCode: 97901, - streetName: "Street 18", - streetNumber: "78A", - } - }, - { - orderId: 6851, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-11", - dateShipped: "2024-12-14", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 82888, - streetName: "Street 44", - streetNumber: "340A", - } - }, - { - orderId: 5647, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-16", - dateDelivered: "2024-12-29" - }, - orderInformation: { - country: "Germany", - city: "Munich", - zipCode: 86191, - streetName: "Street 46", - streetNumber: "2A", - } - }, - { - orderId: 3651, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-02", - dateShipped: "2024-12-05", - dateDelivered: "2024-12-14" - }, - orderInformation: { - country: "France", - city: "Lyon", - zipCode: 34426, - streetName: "Street 20", - streetNumber: "482B", - } - }, - { - orderId: 3704, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-14", - dateShipped: "2024-12-15", - dateDelivered: "2024-12-17" - }, - orderInformation: { - country: "United States", - city: "Chicago", - zipCode: 99385, - streetName: "Street 36", - streetNumber: "279C", - } - }, - { - orderId: 3696, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-16", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 79567, - streetName: "Street 23", - streetNumber: "677A", - } - }, - { - orderId: 5334, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-26", - dateShipped: "2024-12-29", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 90686, - streetName: "Street 15", - streetNumber: "251C", - } - }, - { - orderId: 2110, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-10", - dateShipped: "2024-12-13", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 85309, - streetName: "Street 47", - streetNumber: "63C", - } - } - ] - }, - { - sku: "SKU1027", - imageUrl: "products/Merrel-shoes-584850_1920.jpg", - productName: "Merrel Shoes", - category: "Footwear", - rating: 2.5, - grossPrice: 120, - netPrice: 127.8, - salesTrendData: TREND_DATA[4], - orders: [ - { - orderId: 3988, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-25", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "New York", - zipCode: 90688, - streetName: "Street 33", - streetNumber: "717B", - } - }, - { - orderId: 1482, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-10", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Munich", - zipCode: 34472, - streetName: "Street 2", - streetNumber: "415A", - } - }, - { - orderId: 5765, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 62158, - streetName: "Street 24", - streetNumber: "419A", - } - }, - { - orderId: 3864, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-02", - dateShipped: "2024-12-11", - dateDelivered: "2024-12-12" - }, - orderInformation: { - country: "France", - city: "Lyon", - zipCode: 57141, - streetName: "Street 40", - streetNumber: "839C", - } - }, - { - orderId: 3396, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-09", - dateShipped: "2024-12-12", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 95678, - streetName: "Street 14", - streetNumber: "297C", - } - } - ] - }, - { - sku: "SKU1028", - imageUrl: "products/Microwave-Depositphotos_26880443_L.jpg", - productName: "Microwave 20 l", - category: "Home Appliances", - rating: 5, - grossPrice: 129.99, - netPrice: 138.44, - salesTrendData: TREND_DATA[0], - orders: [ - { - orderId: 1234, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "New York", - zipCode: 10001, - streetName: "5th Avenue", - streetNumber: "501B", - } - }, - { - orderId: 2345, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Canada", - city: "Toronto", - zipCode: 23456, - streetName: "Yonge Street", - streetNumber: "300C", - } - }, - { - orderId: 3456, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 75001, - streetName: "Rue de Rivoli", - streetNumber: "10A", - } - }, - { - orderId: 4567, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 10115, - streetName: "Unter den Linden", - streetNumber: "25D", - } - }, - { - orderId: 5678, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Italy", - city: "Rome", - zipCode: 54321, - streetName: "Via del Corso", - streetNumber: "100A", - } - }, - { - orderId: 6789, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Brazil", - city: "São Paulo", - zipCode: 65432, - streetName: "Avenida Paulista", - streetNumber: "200B", - } - }, - { - orderId: 7890, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 98765, - streetName: "Marine Drive", - streetNumber: "150B", - } - }, - { - orderId: 8901, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "London", - zipCode: 34567, - streetName: "Oxford Street", - streetNumber: "200C", - } - }, - { - orderId: 9012, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Japan", - city: "Tokyo", - zipCode: 56789, - streetName: "Shinjuku Street", - streetNumber: "50D", - } - } - ] - }, - { - sku: "SKU1029", - imageUrl: "products/Monitor-curved-27inch-Depositphotos_282647566_L.jpg", - productName: "Monitor Curved 27 inch", - category: "Electronics", - rating: 2.5, - grossPrice: 179.99, - netPrice: 191.69, - salesTrendData: TREND_DATA[11], - orders: [ - { - orderId: 6652, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-11", - dateShipped: "2024-12-14", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 75331, - streetName: "Street 15", - streetNumber: "767A", - } - }, - { - orderId: 2521, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-16", - dateShipped: "2024-12-19", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 64266, - streetName: "Street 26", - streetNumber: "934B", - } - }, - { - orderId: 2535, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-18", - dateShipped: "2024-12-21", - dateDelivered: "2024-12-24" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 16147, - streetName: "Street 33", - streetNumber: "673A", - } - }, - { - orderId: 9916, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-15", - dateShipped: "2024-12-18", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 12465, - streetName: "Street 6", - streetNumber: "709A", - } - }, - { - orderId: 8230, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-02", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Brisbane", - zipCode: 53012, - streetName: "Street 50", - streetNumber: "810C", - } - }, - { - orderId: 2420, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-11", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 57310, - streetName: "Street 44", - streetNumber: "922B", - } - }, - { - orderId: 1921, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-27", - dateShipped: "2024-12-30", - dateDelivered: "2025-01-01" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 52783, - streetName: "Street 36", - streetNumber: "231A", - } - }, - { - orderId: 2259, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-26", - dateShipped: "2024-12-29", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "New York", - zipCode: 90045, - streetName: "Street 23", - streetNumber: "461A", - } - }, - { - orderId: 7327, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-04", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 62629, - streetName: "Street 7", - streetNumber: "740A", - } - }, - { - orderId: 2897, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "2024-12-10", - dateDelivered: "2024-12-29" - }, - orderInformation: { - country: "France", - city: "Marseille", - zipCode: 64364, - streetName: "Street 27", - streetNumber: "87A", - } - }, - { - orderId: 3625, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-10", - dateShipped: "2024-12-26", - dateDelivered: "2024-12-28" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 15440, - streetName: "Street 19", - streetNumber: "147B", - } - }, - { - orderId: 4623, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-16", - dateShipped: "2024-12-23", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 42093, - streetName: "Street 4", - streetNumber: "26A", - } - }, - { - orderId: 8901, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-18", - dateDelivered: "2024-12-20" - }, - orderInformation: { - country: "United States", - city: "Chicago", - zipCode: 30378, - streetName: "Street 47", - streetNumber: "674A", - } - }, - { - orderId: 5637, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-27", - dateShipped: "2024-12-30", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Chicago", - zipCode: 59151, - streetName: "Street 30", - streetNumber: "924B", - } - }, - { - orderId: 1445, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-04", - dateShipped: "2024-12-07", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 95591, - streetName: "Street 41", - streetNumber: "541A", - } - }, - { - orderId: 6701, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-03", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 55370, - streetName: "Street 22", - streetNumber: "916A", - } - }, - { - orderId: 7463, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-12", - dateShipped: "2024-12-19", - dateDelivered: "2024-12-21" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 66758, - streetName: "Street 17", - streetNumber: "599C", - } - }, - { - orderId: 9730, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-03", - dateShipped: "2024-12-24", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Munich", - zipCode: 17616, - streetName: "Street 43", - streetNumber: "688C", - } - } - ] - }, - { - sku: "SKU1030", - imageUrl: "products/Nike_Depositphotos_146077297_L.jpg", - productName: "Nike Sneakers Black", - category: "Footwear", - rating: 5, - grossPrice: 75, - netPrice: 79.88, - salesTrendData: TREND_DATA[13], - orders: [ - { - orderId: 2287, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-11", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 42881, - streetName: "Street 38", - streetNumber: "366B", - } - }, - { - orderId: 2776, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-22", - dateShipped: "2024-12-25", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 40163, - streetName: "Street 4", - streetNumber: "800A", - } - }, - { - orderId: 6417, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-28", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 95499, - streetName: "Street 36", - streetNumber: "576A", - } - }, - { - orderId: 7110, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "2024-12-10", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 10032, - streetName: "Street 47", - streetNumber: "848C", - } - }, - { - orderId: 5102, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-16", - dateDelivered: "2024-12-20" - }, - orderInformation: { - country: "United States", - city: "New York", - zipCode: 97615, - streetName: "Street 18", - streetNumber: "232B", - } - }, - { - orderId: 5524, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-23", - dateShipped: "2024-12-26", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 22032, - streetName: "Street 30", - streetNumber: "346B", - } - } - ] - }, - { - sku: "SKU1031", - imageUrl: "products/Nike_footwear-5408643_1920.jpg", - productName: "Nike Air Footwear", - category: "Footwear", - rating: 4.5, - grossPrice: 115, - netPrice: 122.48, - salesTrendData: TREND_DATA[2], - orders: [ - { - orderId: 6636, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Italy", - city: "Rome", - zipCode: 90156, - streetName: "High Street", - streetNumber: "127B", - } - }, - { - orderId: 1757, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Denmark", - city: "Copenhagen", - zipCode: 24877, - streetName: "High Street", - streetNumber: "217B", - } - }, - { - orderId: 9540, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 10185, - streetName: "Market Street", - streetNumber: "294C", - } - }, - { - orderId: 5072, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Poland", - city: "Warsaw", - zipCode: 98568, - streetName: "Market Street", - streetNumber: "97A", - } - }, - { - orderId: 6883, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 54673, - streetName: "Sunset Blvd", - streetNumber: "118D", - } - }, - { - orderId: 5508, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 56840, - streetName: "High Street", - streetNumber: "307A", - } - }, - { - orderId: 7779, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Japan", - city: "Tokyo", - zipCode: 31900, - streetName: "Market Street", - streetNumber: "117A", - } - }, - { - orderId: 3356, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Canada", - city: "Toronto", - zipCode: 57467, - streetName: "King's Road", - streetNumber: "132D", - } - }, - { - orderId: 7814, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 19866, - streetName: "High Street", - streetNumber: "31B", - } - }, - { - orderId: 7978, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Netherlands", - city: "Amsterdam", - zipCode: 67201, - streetName: "Broadway", - streetNumber: "74D", - } - }, - { - orderId: 9865, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Belgium", - city: "Brussels", - zipCode: 42714, - streetName: "Sunset Blvd", - streetNumber: "173D", - } - }, - { - orderId: 2538, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 25553, - streetName: "Market Street", - streetNumber: "471D", - } - } - ] - }, - { - sku: "SKU1032", - imageUrl: "products/Nike_sneakers-5408646_1920.jpg", - productName: "Nike Sneakers White", - category: "Footwear", - rating: 5, - grossPrice: 85.99, - netPrice: 91.58, - salesTrendData: TREND_DATA[6], - orders: [ - { - orderId: 4922, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-12", - dateShipped: "2024-12-28", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 31660, - streetName: "Street 31", - streetNumber: "847A", - } - }, - { - orderId: 4303, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-21", - dateShipped: "2024-12-24", - dateDelivered: "2024-12-25" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 80912, - streetName: "Street 36", - streetNumber: "187B", - } - }, - { - orderId: 3985, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-09", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 64528, - streetName: "Street 30", - streetNumber: "733C", - } - }, - { - orderId: 8594, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-11", - dateShipped: "2024-12-14", - dateDelivered: "2024-12-26" - }, - orderInformation: { - country: "Australia", - city: "Melbourne", - zipCode: 56481, - streetName: "Street 22", - streetNumber: "718A", - } - }, - { - orderId: 7481, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-04", - dateShipped: "2024-12-07", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Marseille", - zipCode: 65465, - streetName: "Street 39", - streetNumber: "566C", - } - }, - { - orderId: 3509, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-20", - dateShipped: "2024-12-23", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 25704, - streetName: "Street 23", - streetNumber: "283C", - } - }, - { - orderId: 5440, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-27", - dateShipped: "2024-12-30", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Munich", - zipCode: 50026, - streetName: "Street 11", - streetNumber: "145A", - } - } - ] - }, - { - sku: "SKU1033", - imageUrl: "products/PC-Mouse-wired-Depositphotos_12621359_L.jpg", - productName: "PC Mouse Wired", - category: "Accessories", - rating: 2, - grossPrice: 13.99, - netPrice: 14.9, - salesTrendData: TREND_DATA[14], - orders: [ - { - orderId: 6975, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-19", - dateShipped: "2024-12-29", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 35865, - streetName: "Street 26", - streetNumber: "522C", - } - }, - { - orderId: 1891, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-06", - dateShipped: "2024-12-22", - dateDelivered: "2024-12-30" - }, - orderInformation: { - country: "United Kingdom", - city: "London", - zipCode: 36767, - streetName: "Street 7", - streetNumber: "940C", - } - }, - { - orderId: 4289, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-24", - dateShipped: "2024-12-25", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Brisbane", - zipCode: 47835, - streetName: "Street 17", - streetNumber: "419A", - } - }, - { - orderId: 8229, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-12", - dateShipped: "2024-12-15", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Melbourne", - zipCode: 85925, - streetName: "Street 3", - streetNumber: "770B", - } - }, - { - orderId: 9112, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "2024-12-10", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 93388, - streetName: "Street 28", - streetNumber: "761B", - } - }, - { - orderId: 7250, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-16", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 71586, - streetName: "Street 2", - streetNumber: "998A", - } - }, - { - orderId: 8168, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-19", - dateShipped: "2024-12-22", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 90446, - streetName: "Street 47", - streetNumber: "891B", - } - }, - { - orderId: 3975, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-19", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 59128, - streetName: "Street 25", - streetNumber: "440A", - } - }, - { - orderId: 9222, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-16", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 50312, - streetName: "Street 11", - streetNumber: "544A", - } - }, - { - orderId: 5077, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-05", - dateShipped: "2024-12-09", - dateDelivered: "2024-12-13" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 84053, - streetName: "Street 3", - streetNumber: "388A", - } - }, - { - orderId: 2800, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-08", - dateShipped: "2024-12-11", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 95270, - streetName: "Street 42", - streetNumber: "726A", - } - }, - { - orderId: 3284, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-20", - dateShipped: "2024-12-23", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Marseille", - zipCode: 20613, - streetName: "Street 6", - streetNumber: "335A", - } - }, - { - orderId: 8060, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-02", - dateShipped: "2024-12-10", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Munich", - zipCode: 90375, - streetName: "Street 39", - streetNumber: "439B", - } - }, - { - orderId: 4043, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-05", - dateShipped: "2024-12-08", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Melbourne", - zipCode: 12756, - streetName: "Street 50", - streetNumber: "811A", - } - }, - { - orderId: 9002, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-19", - dateShipped: "2024-12-22", - dateDelivered: "2024-12-26" - }, - orderInformation: { - country: "France", - city: "Lyon", - zipCode: 74206, - streetName: "Street 49", - streetNumber: "531C", - } - } - ] - }, - { - sku: "SKU1034", - imageUrl: "products/Pencil-Depositphotos_293936972_L.jpg", - productName: "Pencil", - category: "Office Supplies", - rating: 3.35, - grossPrice: 0.89, - netPrice: 0.95, - salesTrendData: TREND_DATA[1], - orders: [ - { - orderId: 3668, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 42853, - streetName: "King's Road", - streetNumber: "97C", - } - }, - { - orderId: 9088, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Finland", - city: "Helsinki", - zipCode: 48272, - streetName: "Queen Street", - streetNumber: "271B", - } - }, - { - orderId: 2986, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Brazil", - city: "São Paulo", - zipCode: 66311, - streetName: "Queen Street", - streetNumber: "381A", - } - }, - { - orderId: 5508, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 82134, - streetName: "High Street", - streetNumber: "199C", - } - }, - { - orderId: 2306, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Italy", - city: "Rome", - zipCode: 60751, - streetName: "Main Street", - streetNumber: "289D", - } - }, - { - orderId: 6001, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Netherlands", - city: "Amsterdam", - zipCode: 11840, - streetName: "High Street", - streetNumber: "381B", - } - }, - { - orderId: 5064, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Romania", - city: "Bucharest", - zipCode: 84647, - streetName: "Sunset Blvd", - streetNumber: "98D", - } - }, - { - orderId: 8908, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Finland", - city: "Helsinki", - zipCode: 12744, - streetName: "Market Street", - streetNumber: "245D", - } - }, - { - orderId: 3992, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Finland", - city: "Helsinki", - zipCode: 92963, - streetName: "Sunset Blvd", - streetNumber: "98A", - } - }, - { - orderId: 7454, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Finland", - city: "Helsinki", - zipCode: 69822, - streetName: "Broadway", - streetNumber: "378A", - } - }, - { - orderId: 7439, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Denmark", - city: "Copenhagen", - zipCode: 81197, - streetName: "High Street", - streetNumber: "77C", - } - }, - { - orderId: 7884, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 74221, - streetName: "King's Road", - streetNumber: "104B", - } - }, - { - orderId: 1217, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "United Kingdom", - city: "London", - zipCode: 80946, - streetName: "Broadway", - streetNumber: "232A", - } - }, - { - orderId: 2222, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Greece", - city: "Athens", - zipCode: 25316, - streetName: "Queen Street", - streetNumber: "117C", - } - }, - { - orderId: 2341, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Netherlands", - city: "Amsterdam", - zipCode: 85226, - streetName: "Market Street", - streetNumber: "174C", - } - }, - { - orderId: 6504, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Finland", - city: "Helsinki", - zipCode: 22228, - streetName: "Sunset Blvd", - streetNumber: "107D", - } - }, - { - orderId: 3384, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Romania", - city: "Bucharest", - zipCode: 95317, - streetName: "Market Street", - streetNumber: "436B", - } - }, - { - orderId: 5184, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 67622, - streetName: "Market Street", - streetNumber: "167C", - } - }, - { - orderId: 8824, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Japan", - city: "Tokyo", - zipCode: 51645, - streetName: "Queen Street", - streetNumber: "381B", - } - }, - { - orderId: 6498, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 98659, - streetName: "Market Street", - streetNumber: "382D", - } - }, - { - orderId: 5649, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 22221, - streetName: "King's Road", - streetNumber: "1D", - } - }, - { - orderId: 9539, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Netherlands", - city: "Amsterdam", - zipCode: 11251, - streetName: "King's Road", - streetNumber: "184C", - } - }, - { - orderId: 3984, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Canada", - city: "Toronto", - zipCode: 66743, - streetName: "Broadway", - streetNumber: "386D", - } - }, - { - orderId: 4042, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Brazil", - city: "São Paulo", - zipCode: 99082, - streetName: "Broadway", - streetNumber: "388D", - } - }, - { - orderId: 1922, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Finland", - city: "Helsinki", - zipCode: 15493, - streetName: "High Street", - streetNumber: "66A", - } - }, - { - orderId: 8364, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 68614, - streetName: "King's Road", - streetNumber: "244A", - } - }, - { - orderId: 4856, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Japan", - city: "Tokyo", - zipCode: 53175, - streetName: "King's Road", - streetNumber: "305A", - } - }, - { - orderId: 3730, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Netherlands", - city: "Amsterdam", - zipCode: 12081, - streetName: "Market Street", - streetNumber: "367D", - } - }, - { - orderId: 2312, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Italy", - city: "Rome", - zipCode: 69350, - streetName: "King's Road", - streetNumber: "4C", - } - }, - { - orderId: 6716, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Italy", - city: "Rome", - zipCode: 54889, - streetName: "Main Street", - streetNumber: "148D", - } - }, - { - orderId: 8911, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 86283, - streetName: "Market Street", - streetNumber: "95B", - } - }, - { - orderId: 9728, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Canada", - city: "Toronto", - zipCode: 63241, - streetName: "Broadway", - streetNumber: "418A", - } - }, - { - orderId: 3961, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Belgium", - city: "Brussels", - zipCode: 57995, - streetName: "Main Street", - streetNumber: "128C", - } - }, - { - orderId: 4159, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Romania", - city: "Bucharest", - zipCode: 72211, - streetName: "Queen Street", - streetNumber: "29B", - } - }, - { - orderId: 7266, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "China", - city: "Beijing", - zipCode: 74156, - streetName: "Queen Street", - streetNumber: "312A", - } - }, - { - orderId: 9165, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Canada", - city: "Toronto", - zipCode: 29440, - streetName: "King's Road", - streetNumber: "237C", - } - }, - { - orderId: 5787, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "China", - city: "Beijing", - zipCode: 76065, - streetName: "Sunset Blvd", - streetNumber: "97A", - } - }, - { - orderId: 3379, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Greece", - city: "Athens", - zipCode: 45400, - streetName: "Queen Street", - streetNumber: "84A", - } - } - ] - }, - { - sku: "SKU1035", - imageUrl: "products/Post-it-notes-Depositphotos_2275156_L.jpg", - productName: "Post-it Notes", - category: "Office Supplies", - rating: 3.95, - grossPrice: 3.59, - netPrice: 3.82, - salesTrendData: TREND_DATA[14], - orders: [ - { - orderId: 6975, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-19", - dateShipped: "2024-12-29", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 35865, - streetName: "Street 26", - streetNumber: "522C", - } - }, - { - orderId: 1891, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-06", - dateShipped: "2024-12-22", - dateDelivered: "2024-12-30" - }, - orderInformation: { - country: "United Kingdom", - city: "London", - zipCode: 36767, - streetName: "Street 7", - streetNumber: "940C", - } - }, - { - orderId: 4289, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-24", - dateShipped: "2024-12-25", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Brisbane", - zipCode: 47835, - streetName: "Street 17", - streetNumber: "419A", - } - }, - { - orderId: 8229, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-12", - dateShipped: "2024-12-15", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Melbourne", - zipCode: 85925, - streetName: "Street 3", - streetNumber: "770B", - } - }, - { - orderId: 9112, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "2024-12-10", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 93388, - streetName: "Street 28", - streetNumber: "761B", - } - }, - { - orderId: 7250, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-16", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 71586, - streetName: "Street 2", - streetNumber: "998A", - } - }, - { - orderId: 8168, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-19", - dateShipped: "2024-12-22", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 90446, - streetName: "Street 47", - streetNumber: "891B", - } - }, - { - orderId: 3975, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-19", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 59128, - streetName: "Street 25", - streetNumber: "440A", - } - }, - { - orderId: 9222, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-16", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 50312, - streetName: "Street 11", - streetNumber: "544A", - } - }, - { - orderId: 5077, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-05", - dateShipped: "2024-12-09", - dateDelivered: "2024-12-13" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 84053, - streetName: "Street 3", - streetNumber: "388A", - } - }, - { - orderId: 2800, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-08", - dateShipped: "2024-12-11", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 95270, - streetName: "Street 42", - streetNumber: "726A", - } - }, - { - orderId: 3284, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-20", - dateShipped: "2024-12-23", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Marseille", - zipCode: 20613, - streetName: "Street 6", - streetNumber: "335A", - } - }, - { - orderId: 8060, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-02", - dateShipped: "2024-12-10", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Munich", - zipCode: 90375, - streetName: "Street 39", - streetNumber: "439B", - } - }, - { - orderId: 4043, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-05", - dateShipped: "2024-12-08", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Melbourne", - zipCode: 12756, - streetName: "Street 50", - streetNumber: "811A", - } - }, - { - orderId: 9002, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-19", - dateShipped: "2024-12-22", - dateDelivered: "2024-12-26" - }, - orderInformation: { - country: "France", - city: "Lyon", - zipCode: 74206, - streetName: "Street 49", - streetNumber: "531C", - } - } - ] - }, - { - sku: "SKU1036", - imageUrl: "products/Print-paper-Depositphotos_191385040_L.jpg", - productName: "Print Paper Pack", - category: "Office Supplies", - rating: 4.05, - grossPrice: 7.42, - netPrice: 7.9, - salesTrendData: TREND_DATA[8], - orders: [ - { - orderId: 9046, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-21", - dateShipped: "2024-12-24", - dateDelivered: "2024-12-26" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 88056, - streetName: "Street 31", - streetNumber: "863C", - } - }, - { - orderId: 5568, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-10", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 32539, - streetName: "Street 16", - streetNumber: "453A", - } - }, - { - orderId: 6837, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-20", - dateShipped: "2024-12-23", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 51789, - streetName: "Street 21", - streetNumber: "912C", - } - }, - { - orderId: 2939, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "2024-12-10", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 75943, - streetName: "Street 10", - streetNumber: "21A", - } - }, - { - orderId: 1498, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-06", - dateShipped: "2024-12-09", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 91277, - streetName: "Street 40", - streetNumber: "671A", - } - }, - { - orderId: 1572, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-19", - dateShipped: "2024-12-22", - dateDelivered: "2024-12-24" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 58801, - streetName: "Street 48", - streetNumber: "855A", - } - }, - { - orderId: 2335, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-21", - dateShipped: "2024-12-24", - dateDelivered: "2024-12-26" - }, - orderInformation: { - country: "United States", - city: "Chicago", - zipCode: 59822, - streetName: "Street 5", - streetNumber: "212A", - } - }, - { - orderId: 2112, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-12", - dateShipped: "2024-12-21", - dateDelivered: "2024-12-23" - }, - orderInformation: { - country: "Germany", - city: "Munich", - zipCode: 95627, - streetName: "Street 47", - streetNumber: "438A", - } - }, - { - orderId: 5538, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-23", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 67887, - streetName: "Street 16", - streetNumber: "341C", - } - }, - { - orderId: 3407, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-02", - dateShipped: "2024-12-20", - dateDelivered: "2024-12-22" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 99025, - streetName: "Street 20", - streetNumber: "413A", - } - } - ] - }, - { - sku: "SKU1037", - imageUrl: "products/Samsung-Tablet_black-4766996_1920.jpg", - productName: "Samsung Tablet 11 inch", - category: "Electronics", - rating: 3.5, - grossPrice: 189.71, - netPrice: 202.04, - salesTrendData: TREND_DATA[5], - orders: [ - { - orderId: 9976, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-17", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 45797, - streetName: "Street 36", - streetNumber: "49B", - } - }, - { - orderId: 5062, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-10", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 62471, - streetName: "Street 18", - streetNumber: "34C", - } - }, - { - orderId: 4640, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-21", - dateShipped: "2024-12-24", - dateDelivered: "2024-12-26" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 77658, - streetName: "Street 34", - streetNumber: "635C", - } - }, - { - orderId: 4810, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-04", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "London", - zipCode: 57877, - streetName: "Street 40", - streetNumber: "451A", - } - }, - { - orderId: 4241, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-20", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 53308, - streetName: "Street 29", - streetNumber: "538A", - } - }, - { - orderId: 9070, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-10", - dateShipped: "2024-12-14", - dateDelivered: "2024-12-20" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 39952, - streetName: "Street 15", - streetNumber: "830A", - } - }, - { - orderId: 7654, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-21", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "London", - zipCode: 89167, - streetName: "Street 24", - streetNumber: "282C", - } - }, - { - orderId: 7647, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-16", - dateShipped: "2024-12-19", - dateDelivered: "2024-12-21" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 29077, - streetName: "Street 37", - streetNumber: "784A", - } - }, - { - orderId: 5360, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-23", - dateShipped: "2024-12-26", - dateDelivered: "2024-12-27" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 57993, - streetName: "Street 25", - streetNumber: "445A", - } - }, - { - orderId: 4032, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-17", - dateShipped: "2024-12-20", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 25933, - streetName: "Street 4", - streetNumber: "888C", - } - }, - { - orderId: 3391, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-20", - dateShipped: "2024-12-23", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 61583, - streetName: "Street 24", - streetNumber: "110B", - } - }, - { - orderId: 6604, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-14", - dateShipped: "2024-12-17", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 60545, - streetName: "Street 3", - streetNumber: "882C", - } - }, - { - orderId: 6012, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-16", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 55210, - streetName: "Street 32", - streetNumber: "769B", - } - }, - { - orderId: 4584, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-08", - dateShipped: "2024-12-11", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Brisbane", - zipCode: 28512, - streetName: "Street 24", - streetNumber: "20C", - } - } - ] - }, - { - sku: "SKU1038", - imageUrl: "products/Scanner-Depositphotos_7372129_XL.jpg", - productName: "Scanner", - category: "Electronics", - rating: 5, - grossPrice: 194, - netPrice: 206.61, - salesTrendData: TREND_DATA[2], - orders: [ - { - orderId: 6636, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Italy", - city: "Rome", - zipCode: 90156, - streetName: "High Street", - streetNumber: "127B", - } - }, - { - orderId: 1757, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Denmark", - city: "Copenhagen", - zipCode: 24877, - streetName: "High Street", - streetNumber: "217B", - } - }, - { - orderId: 9540, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 10185, - streetName: "Market Street", - streetNumber: "294C", - } - }, - { - orderId: 5072, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Poland", - city: "Warsaw", - zipCode: 98568, - streetName: "Market Street", - streetNumber: "97A", - } - }, - { - orderId: 6883, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 54673, - streetName: "Sunset Blvd", - streetNumber: "118D", - } - }, - { - orderId: 5508, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 56840, - streetName: "High Street", - streetNumber: "307A", - } - }, - { - orderId: 7779, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Japan", - city: "Tokyo", - zipCode: 31900, - streetName: "Market Street", - streetNumber: "117A", - } - }, - { - orderId: 3356, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Canada", - city: "Toronto", - zipCode: 57467, - streetName: "King's Road", - streetNumber: "132D", - } - }, - { - orderId: 7814, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 19866, - streetName: "High Street", - streetNumber: "31B", - } - }, - { - orderId: 7978, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Netherlands", - city: "Amsterdam", - zipCode: 67201, - streetName: "Broadway", - streetNumber: "74D", - } - }, - { - orderId: 9865, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Belgium", - city: "Brussels", - zipCode: 42714, - streetName: "Sunset Blvd", - streetNumber: "173D", - } - }, - { - orderId: 2538, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 25553, - streetName: "Market Street", - streetNumber: "471D", - } - } - ] - }, - { - sku: "SKU1039", - imageUrl: "products/Sony_Alpha7_camera-275007_1920.jpg", - productName: "Sony Alpha 7", - category: "Photography", - rating: 2.8, - grossPrice: 799.99, - netPrice: 851.99, - salesTrendData: TREND_DATA[10], - orders: [ - { - orderId: 7443, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-06", - dateShipped: "2024-12-24", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Chicago", - zipCode: 22399, - streetName: "Street 37", - streetNumber: "15B", - } - }, - { - orderId: 3912, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-14", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 69481, - streetName: "Street 28", - streetNumber: "930B", - } - }, - { - orderId: 3934, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-10", - dateShipped: "2024-12-12", - dateDelivered: "2024-12-19" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 31863, - streetName: "Street 35", - streetNumber: "331C", - } - }, - { - orderId: 3976, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-22", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 47952, - streetName: "Street 34", - streetNumber: "510C", - } - }, - { - orderId: 8593, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-22", - dateShipped: "2024-12-25", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Melbourne", - zipCode: 31080, - streetName: "Street 36", - streetNumber: "455C", - } - }, - { - orderId: 4771, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-20", - dateShipped: "2024-12-23", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Chicago", - zipCode: 92086, - streetName: "Street 46", - streetNumber: "988A", - } - }, - { - orderId: 2767, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-05", - dateShipped: "2024-12-19", - dateDelivered: "2024-12-25" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 18884, - streetName: "Street 18", - streetNumber: "125C", - } - }, - { - orderId: 2706, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-16", - dateDelivered: "2024-12-18" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 58190, - streetName: "Street 41", - streetNumber: "747A", - } - }, - { - orderId: 7416, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-12", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 48132, - streetName: "Street 22", - streetNumber: "167C", - } - } - ] - }, - { - sku: "SKU1040", - imageUrl: "products/Sony_Alpha7_camera-4833557_1920-2.jpg", - productName: "Sony Alpha 7 III", - category: "Photography", - rating: 5, - grossPrice: 1799.99, - netPrice: 1916.99, - salesTrendData: TREND_DATA[8], - orders: [ - { - orderId: 7944, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "2024-12-20", - dateDelivered: "2024-12-22" - }, - orderInformation: { - country: "United Kingdom", - city: "London", - zipCode: 21662, - streetName: "Street 47", - streetNumber: "44B", - } - }, - { - orderId: 7125, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-21", - dateShipped: "2024-12-22", - dateDelivered: "2024-12-23" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 90760, - streetName: "Street 22", - streetNumber: "673A", - } - }, - { - orderId: 1422, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-26", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 61832, - streetName: "Street 25", - streetNumber: "567A", - } - }, - { - orderId: 9538, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-16", - dateShipped: "2024-12-17", - dateDelivered: "2024-12-19" - }, - orderInformation: { - country: "France", - city: "Marseille", - zipCode: 24503, - streetName: "Street 45", - streetNumber: "119A", - } - }, - { - orderId: 1636, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-22", - dateShipped: "2024-12-25", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 68399, - streetName: "Street 2", - streetNumber: "633C", - } - }, - { - orderId: 4791, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 14988, - streetName: "Street 37", - streetNumber: "484A", - } - }, - { - orderId: 2516, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-17", - dateShipped: "2024-12-20", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 77388, - streetName: "Street 43", - streetNumber: "136C", - } - }, - { - orderId: 7434, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-18", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 73213, - streetName: "Street 49", - streetNumber: "794C", - } - }, - { - orderId: 5352, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-21", - dateShipped: "2024-12-24", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 57275, - streetName: "Street 24", - streetNumber: "234A", - } - }, - { - orderId: 7485, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-09", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 79583, - streetName: "Street 18", - streetNumber: "755A", - } - } - ] - }, - { - sku: "SKU1041", - imageUrl: "products/Sony_lens-274986_1920.jpg", - productName: "Sony Lens 55 mm", - category: "Photography", - rating: 3.5, - grossPrice: 898, - netPrice: 956.37, - salesTrendData: TREND_DATA[12], - orders: [ - { - orderId: 9561, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-25", - dateDelivered: "2024-12-27" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 91387, - streetName: "Street 28", - streetNumber: "582B", - } - }, - { - orderId: 8125, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-16", - dateShipped: "2024-12-19", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Lyon", - zipCode: 66151, - streetName: "Street 8", - streetNumber: "840A", - } - }, - { - orderId: 4099, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-27", - dateShipped: "2024-12-29", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Marseille", - zipCode: 96467, - streetName: "Street 6", - streetNumber: "175A", - } - }, - { - orderId: 8574, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-16", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 78201, - streetName: "Street 6", - streetNumber: "90B", - } - }, - { - orderId: 4715, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-26", - dateShipped: "2024-12-29", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Lyon", - zipCode: 80238, - streetName: "Street 4", - streetNumber: "132B", - } - }, - { - orderId: 8293, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-19", - dateDelivered: "2024-12-21" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 26324, - streetName: "Street 33", - streetNumber: "199B", - } - }, - { - orderId: 9076, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-16", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 11926, - streetName: "Street 39", - streetNumber: "681C", - } - }, - { - orderId: 4983, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-21", - dateShipped: "2024-12-28", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 32182, - streetName: "Street 17", - streetNumber: "759C", - } - }, - { - orderId: 6099, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-21", - dateShipped: "2024-12-24", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 60858, - streetName: "Street 36", - streetNumber: "897B", - } - }, - { - orderId: 4264, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-16", - dateDelivered: "2024-12-18" - }, - orderInformation: { - country: "Australia", - city: "Melbourne", - zipCode: 70966, - streetName: "Street 4", - streetNumber: "42B", - } - }, - { - orderId: 8253, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-16", - dateDelivered: "2024-12-26" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 30896, - streetName: "Street 50", - streetNumber: "565A", - } - }, - { - orderId: 2983, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-10", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 19822, - streetName: "Street 32", - streetNumber: "147A", - } - }, - { - orderId: 5742, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-25", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 52866, - streetName: "Street 39", - streetNumber: "19C", - } - }, - { - orderId: 9410, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-22", - dateShipped: "2024-12-25", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Marseille", - zipCode: 48901, - streetName: "Street 22", - streetNumber: "979C", - } - }, - { - orderId: 8172, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-19", - dateShipped: "2024-12-22", - dateDelivered: "2024-12-24" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 29242, - streetName: "Street 13", - streetNumber: "208B", - } - }, - { - orderId: 7632, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-23", - dateShipped: "2024-12-26", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 21401, - streetName: "Street 20", - streetNumber: "360C", - } - }, - { - orderId: 9684, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-17", - dateShipped: "2024-12-20", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "London", - zipCode: 67334, - streetName: "Street 40", - streetNumber: "250A", - } - }, - { - orderId: 7610, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-20", - dateShipped: "2024-12-23", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "London", - zipCode: 61914, - streetName: "Street 33", - streetNumber: "374B", - } - }, - { - orderId: 9776, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-06", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Melbourne", - zipCode: 53088, - streetName: "Street 7", - streetNumber: "726B", - } - }, - { - orderId: 5449, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-05", - dateShipped: "2024-12-11", - dateDelivered: "2024-12-29" - }, - orderInformation: { - country: "Australia", - city: "Melbourne", - zipCode: 68754, - streetName: "Street 49", - streetNumber: "852B", - } - }, - { - orderId: 4074, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-25", - dateShipped: "2024-12-28", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 62569, - streetName: "Street 1", - streetNumber: "557B", - } - }, - { - orderId: 6561, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-19", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 80236, - streetName: "Street 22", - streetNumber: "182B", - } - }, - { - orderId: 4630, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-10", - dateShipped: "2024-12-19", - dateDelivered: "2024-12-21" - }, - orderInformation: { - country: "Australia", - city: "Melbourne", - zipCode: 42584, - streetName: "Street 37", - streetNumber: "883C", - } - } - ] - }, - { - sku: "SKU1042", - imageUrl: "products/Speaker_Depositphotos_252611752_L.jpg", - productName: "Speaker Bluetooth", - category: "Electronics", - rating: 3.5, - grossPrice: 39.99, - netPrice: 42.59, - salesTrendData: TREND_DATA[4], - orders: [ - { - orderId: 3988, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-25", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "New York", - zipCode: 90688, - streetName: "Street 33", - streetNumber: "717B", - } - }, - { - orderId: 1482, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-10", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Munich", - zipCode: 34472, - streetName: "Street 2", - streetNumber: "415A", - } - }, - { - orderId: 5765, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 62158, - streetName: "Street 24", - streetNumber: "419A", - } - }, - { - orderId: 3864, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-02", - dateShipped: "2024-12-11", - dateDelivered: "2024-12-12" - }, - orderInformation: { - country: "France", - city: "Lyon", - zipCode: 57141, - streetName: "Street 40", - streetNumber: "839C", - } - }, - { - orderId: 3396, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-09", - dateShipped: "2024-12-12", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 95678, - streetName: "Street 14", - streetNumber: "297C", - } - } - ] - }, - { - sku: "SKU1043", - imageUrl: "products/T-shirt-blue-Depositphotos_163437494_L.jpg", - productName: "T-Shirt Blue", - category: "Clothing", - rating: 3.5, - grossPrice: 14, - netPrice: 14.91, - salesTrendData: TREND_DATA[10], - orders: [ - { - orderId: 7443, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-06", - dateShipped: "2024-12-24", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Chicago", - zipCode: 22399, - streetName: "Street 37", - streetNumber: "15B", - } - }, - { - orderId: 3912, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-14", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 69481, - streetName: "Street 28", - streetNumber: "930B", - } - }, - { - orderId: 3934, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-10", - dateShipped: "2024-12-12", - dateDelivered: "2024-12-19" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 31863, - streetName: "Street 35", - streetNumber: "331C", - } - }, - { - orderId: 3976, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-22", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 47952, - streetName: "Street 34", - streetNumber: "510C", - } - }, - { - orderId: 8593, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-22", - dateShipped: "2024-12-25", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Melbourne", - zipCode: 31080, - streetName: "Street 36", - streetNumber: "455C", - } - }, - { - orderId: 4771, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-20", - dateShipped: "2024-12-23", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Chicago", - zipCode: 92086, - streetName: "Street 46", - streetNumber: "988A", - } - }, - { - orderId: 2767, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-05", - dateShipped: "2024-12-19", - dateDelivered: "2024-12-25" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 18884, - streetName: "Street 18", - streetNumber: "125C", - } - }, - { - orderId: 2706, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-16", - dateDelivered: "2024-12-18" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 58190, - streetName: "Street 41", - streetNumber: "747A", - } - }, - { - orderId: 7416, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-12", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 48132, - streetName: "Street 22", - streetNumber: "167C", - } - } - ] - }, - { - sku: "SKU1044", - imageUrl: "products/T-Shirt-gray-Depositphotos_138950992_L.jpg", - productName: "T-Shirt Gray", - category: "Clothing", - rating: 4.5, - grossPrice: 13.99, - netPrice: 14.9, - salesTrendData: TREND_DATA[13], - orders: [ - { - orderId: 4614, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-25", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 83148, - streetName: "Street 38", - streetNumber: "633A", - } - }, - { - orderId: 8873, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-25", - dateShipped: "2024-12-28", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 76342, - streetName: "Street 3", - streetNumber: "638A", - } - }, - { - orderId: 1026, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-21", - dateShipped: "2024-12-24", - dateDelivered: "2024-12-26" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 27770, - streetName: "Street 47", - streetNumber: "329B", - } - }, - { - orderId: 7383, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-16", - dateDelivered: "2024-12-21" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 77913, - streetName: "Street 33", - streetNumber: "336C", - } - }, - { - orderId: 6821, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-07", - dateDelivered: "2024-12-28" - }, - orderInformation: { - country: "United States", - city: "Chicago", - zipCode: 64938, - streetName: "Street 17", - streetNumber: "633A", - } - }, - { - orderId: 8946, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-17", - dateShipped: "2024-12-20", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Marseille", - zipCode: 24765, - streetName: "Street 12", - streetNumber: "319C", - } - } - ] - }, - { - sku: "SKU1045", - imageUrl: "products/T-Shirt-red-Depositphotos_138951004_L.jpg", - productName: "T-Shirt Red", - category: "Clothing", - rating: 3.5, - grossPrice: 13.99, - netPrice: 14.9, - salesTrendData: TREND_DATA[11], - orders: [ - { - orderId: 6652, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-11", - dateShipped: "2024-12-14", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 75331, - streetName: "Street 15", - streetNumber: "767A", - } - }, - { - orderId: 2521, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-16", - dateShipped: "2024-12-19", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 64266, - streetName: "Street 26", - streetNumber: "934B", - } - }, - { - orderId: 2535, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-18", - dateShipped: "2024-12-21", - dateDelivered: "2024-12-24" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 16147, - streetName: "Street 33", - streetNumber: "673A", - } - }, - { - orderId: 9916, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-15", - dateShipped: "2024-12-18", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 12465, - streetName: "Street 6", - streetNumber: "709A", - } - }, - { - orderId: 8230, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-02", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Brisbane", - zipCode: 53012, - streetName: "Street 50", - streetNumber: "810C", - } - }, - { - orderId: 2420, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-11", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 57310, - streetName: "Street 44", - streetNumber: "922B", - } - }, - { - orderId: 1921, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-27", - dateShipped: "2024-12-30", - dateDelivered: "2025-01-01" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 52783, - streetName: "Street 36", - streetNumber: "231A", - } - }, - { - orderId: 2259, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-26", - dateShipped: "2024-12-29", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "New York", - zipCode: 90045, - streetName: "Street 23", - streetNumber: "461A", - } - }, - { - orderId: 7327, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-04", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 62629, - streetName: "Street 7", - streetNumber: "740A", - } - }, - { - orderId: 2897, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "2024-12-10", - dateDelivered: "2024-12-29" - }, - orderInformation: { - country: "France", - city: "Marseille", - zipCode: 64364, - streetName: "Street 27", - streetNumber: "87A", - } - }, - { - orderId: 3625, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-10", - dateShipped: "2024-12-26", - dateDelivered: "2024-12-28" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 15440, - streetName: "Street 19", - streetNumber: "147B", - } - }, - { - orderId: 4623, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-16", - dateShipped: "2024-12-23", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 42093, - streetName: "Street 4", - streetNumber: "26A", - } - }, - { - orderId: 8901, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-18", - dateDelivered: "2024-12-20" - }, - orderInformation: { - country: "United States", - city: "Chicago", - zipCode: 30378, - streetName: "Street 47", - streetNumber: "674A", - } - }, - { - orderId: 5637, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-27", - dateShipped: "2024-12-30", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Chicago", - zipCode: 59151, - streetName: "Street 30", - streetNumber: "924B", - } - }, - { - orderId: 1445, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-04", - dateShipped: "2024-12-07", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 95591, - streetName: "Street 41", - streetNumber: "541A", - } - }, - { - orderId: 6701, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-03", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 55370, - streetName: "Street 22", - streetNumber: "916A", - } - }, - { - orderId: 7463, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-12", - dateShipped: "2024-12-19", - dateDelivered: "2024-12-21" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 66758, - streetName: "Street 17", - streetNumber: "599C", - } - }, - { - orderId: 9730, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-03", - dateShipped: "2024-12-24", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Munich", - zipCode: 17616, - streetName: "Street 43", - streetNumber: "688C", - } - } - ] - }, - { - sku: "SKU1046", - imageUrl: "products/vacuum-cleaner-8114145-2.jpg", - productName: "Vacuum Cleaner Robot", - category: "Home Appliances", - rating: 2.5, - grossPrice: 249.99, - netPrice: 266.24, - salesTrendData: TREND_DATA[7], - orders: [ - { - orderId: 8235, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-24", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 48193, - streetName: "Street 28", - streetNumber: "927C", - } - }, - { - orderId: 1643, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-14", - dateShipped: "2024-12-17", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 64564, - streetName: "Street 1", - streetNumber: "101A", - } - }, - { - orderId: 1786, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-02", - dateShipped: "2024-12-12", - dateDelivered: "2024-12-22" - }, - orderInformation: { - country: "France", - city: "Lyon", - zipCode: 25197, - streetName: "Street 36", - streetNumber: "689B", - } - }, - { - orderId: 9206, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "2024-12-27", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 77659, - streetName: "Street 48", - streetNumber: "298C", - } - }, - { - orderId: 9578, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-25", - dateShipped: "2024-12-28", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 43864, - streetName: "Street 25", - streetNumber: "886A", - } - }, - { - orderId: 1032, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-17", - dateShipped: "2024-12-24", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 44788, - streetName: "Street 10", - streetNumber: "286C", - } - }, - { - orderId: 6207, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-19", - dateShipped: "2024-12-22", - dateDelivered: "2024-12-23" - }, - orderInformation: { - country: "Australia", - city: "Brisbane", - zipCode: 55589, - streetName: "Street 16", - streetNumber: "476C", - } - }, - { - orderId: 3624, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-12", - dateShipped: "2024-12-18", - dateDelivered: "2024-12-22" - }, - orderInformation: { - country: "France", - city: "Marseille", - zipCode: 13725, - streetName: "Street 39", - streetNumber: "596A", - } - }, - { - orderId: 7800, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-18", - dateShipped: "2024-12-21", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "New York", - zipCode: 24178, - streetName: "Street 36", - streetNumber: "411C", - } - }, - { - orderId: 5870, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-16", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 61522, - streetName: "Street 10", - streetNumber: "989A", - } - }, - { - orderId: 4421, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-04", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 90362, - streetName: "Street 35", - streetNumber: "936B", - } - }, - { - orderId: 5625, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-12", - dateShipped: "2024-12-25", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 13065, - streetName: "Street 6", - streetNumber: "842A", - } - }, - { - orderId: 8127, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-23", - dateDelivered: "2024-12-25" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 29470, - streetName: "Street 29", - streetNumber: "309B", - } - }, - { - orderId: 9174, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-16", - dateShipped: "2024-12-19", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 89980, - streetName: "Street 19", - streetNumber: "272C", - } - }, - { - orderId: 4493, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-10", - dateShipped: "2024-12-13", - dateDelivered: "2024-12-26" - }, - orderInformation: { - country: "France", - city: "Marseille", - zipCode: 36154, - streetName: "Street 41", - streetNumber: "809C", - } - }, - { - orderId: 5009, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 24916, - streetName: "Street 18", - streetNumber: "566C", - } - }, - { - orderId: 1558, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-11", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Brisbane", - zipCode: 90965, - streetName: "Street 6", - streetNumber: "964B", - } - }, - { - orderId: 3924, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-24", - dateShipped: "2024-12-27", - dateDelivered: "2024-12-29" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 98612, - streetName: "Street 24", - streetNumber: "690C", - } - }, - { - orderId: 9712, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-15", - dateShipped: "2024-12-18", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 72475, - streetName: "Street 40", - streetNumber: "650A", - } - }, - { - orderId: 8561, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-27", - dateShipped: "2024-12-30", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "New York", - zipCode: 32513, - streetName: "Street 25", - streetNumber: "978B", - } - }, - { - orderId: 7830, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-12", - dateShipped: "2024-12-13", - dateDelivered: "2024-12-16" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 69174, - streetName: "Street 24", - streetNumber: "332C", - } - }, - { - orderId: 5213, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "2024-12-27", - dateDelivered: "2024-12-29" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 74616, - streetName: "Street 43", - streetNumber: "207A", - } - }, - { - orderId: 8044, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-26", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 24632, - streetName: "Street 25", - streetNumber: "955B", - } - }, - { - orderId: 1811, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-04", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 15521, - streetName: "Street 30", - streetNumber: "317B", - } - }, - { - orderId: 4143, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-04", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Marseille", - zipCode: 71557, - streetName: "Street 15", - streetNumber: "920C", - } - }, - { - orderId: 8851, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-20", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 72193, - streetName: "Street 11", - streetNumber: "674A", - } - }, - { - orderId: 1463, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "2024-12-11", - dateDelivered: "2024-12-13" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 88176, - streetName: "Street 50", - streetNumber: "3A", - } - }, - { - orderId: 5092, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-28", - dateShipped: "2024-12-31", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Melbourne", - zipCode: 62414, - streetName: "Street 41", - streetNumber: "953A", - } - } - ] - }, - { - sku: "SKU1047", - imageUrl: "products/video-game-console-2202582_1920.jpg", - productName: "Video Game Console", - category: "Gaming", - rating: 3.5, - grossPrice: 265.88, - netPrice: 283.16, - salesTrendData: TREND_DATA[5], - orders: [ - { - orderId: 9976, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-17", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Sydney", - zipCode: 45797, - streetName: "Street 36", - streetNumber: "49B", - } - }, - { - orderId: 5062, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-10", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 62471, - streetName: "Street 18", - streetNumber: "34C", - } - }, - { - orderId: 4640, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-21", - dateShipped: "2024-12-24", - dateDelivered: "2024-12-26" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 77658, - streetName: "Street 34", - streetNumber: "635C", - } - }, - { - orderId: 4810, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-04", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "London", - zipCode: 57877, - streetName: "Street 40", - streetNumber: "451A", - } - }, - { - orderId: 4241, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-20", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 53308, - streetName: "Street 29", - streetNumber: "538A", - } - }, - { - orderId: 9070, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-10", - dateShipped: "2024-12-14", - dateDelivered: "2024-12-20" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 39952, - streetName: "Street 15", - streetNumber: "830A", - } - }, - { - orderId: 7654, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-21", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "London", - zipCode: 89167, - streetName: "Street 24", - streetNumber: "282C", - } - }, - { - orderId: 7647, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-16", - dateShipped: "2024-12-19", - dateDelivered: "2024-12-21" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 29077, - streetName: "Street 37", - streetNumber: "784A", - } - }, - { - orderId: 5360, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-23", - dateShipped: "2024-12-26", - dateDelivered: "2024-12-27" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 57993, - streetName: "Street 25", - streetNumber: "445A", - } - }, - { - orderId: 4032, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-17", - dateShipped: "2024-12-20", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 25933, - streetName: "Street 4", - streetNumber: "888C", - } - }, - { - orderId: 3391, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-20", - dateShipped: "2024-12-23", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 61583, - streetName: "Street 24", - streetNumber: "110B", - } - }, - { - orderId: 6604, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-14", - dateShipped: "2024-12-17", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Bangalore", - zipCode: 60545, - streetName: "Street 3", - streetNumber: "882C", - } - }, - { - orderId: 6012, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-13", - dateShipped: "2024-12-16", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 55210, - streetName: "Street 32", - streetNumber: "769B", - } - }, - { - orderId: 4584, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-08", - dateShipped: "2024-12-11", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Brisbane", - zipCode: 28512, - streetName: "Street 24", - streetNumber: "20C", - } - } - ] - }, - { - sku: "SKU1048", - imageUrl: "products/Winter-Jacket-Depositphotos_89349846_L.jpg", - productName: "Winter Jacket", - category: "Clothing", - rating: 4.65, - grossPrice: 89.99, - netPrice: 95.84, - salesTrendData: TREND_DATA[9], - orders: [ - { - orderId: 8610, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-24", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 27505, - streetName: "Street 10", - streetNumber: "563B", - } - }, - { - orderId: 3826, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-12", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Australia", - city: "Brisbane", - zipCode: 93375, - streetName: "Street 17", - streetNumber: "78C", - } - }, - { - orderId: 2466, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-15", - dateShipped: "2024-12-24", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Marseille", - zipCode: 62807, - streetName: "Street 28", - streetNumber: "938C", - } - }, - { - orderId: 8572, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-06", - dateShipped: "2024-12-21", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 73766, - streetName: "Street 3", - streetNumber: "909C", - } - }, - { - orderId: 6930, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-16", - dateShipped: "2024-12-24", - dateDelivered: "2024-12-27" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 36571, - streetName: "Street 5", - streetNumber: "720C", - } - }, - { - orderId: 3676, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-06", - dateShipped: "2024-12-09", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Chicago", - zipCode: 62595, - streetName: "Street 45", - streetNumber: "798A", - } - }, - { - orderId: 4534, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-17", - dateShipped: "2024-12-20", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 28594, - streetName: "Street 12", - streetNumber: "252A", - } - }, - { - orderId: 3791, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-24", - dateShipped: "2024-12-27", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 36641, - streetName: "Street 3", - streetNumber: "716B", - } - }, - { - orderId: 3334, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-17", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Los Angeles", - zipCode: 70091, - streetName: "Street 38", - streetNumber: "471C", - } - }, - { - orderId: 3153, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-15", - dateShipped: "2024-12-22", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "London", - zipCode: 28881, - streetName: "Street 31", - streetNumber: "286B", - } - } - ] - }, - { - sku: "SKU1049", - imageUrl: "products/xbox-1200296_1920.jpg", - productName: "Xbox", - category: "Gaming", - rating: 3.5, - grossPrice: 529.99, - netPrice: 423.99, - salesTrendData: TREND_DATA[2], - orders: [ - { - orderId: 6636, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Italy", - city: "Rome", - zipCode: 90156, - streetName: "High Street", - streetNumber: "127B", - } - }, - { - orderId: 1757, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Denmark", - city: "Copenhagen", - zipCode: 24877, - streetName: "High Street", - streetNumber: "217B", - } - }, - { - orderId: 9540, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 10185, - streetName: "Market Street", - streetNumber: "294C", - } - }, - { - orderId: 5072, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Poland", - city: "Warsaw", - zipCode: 98568, - streetName: "Market Street", - streetNumber: "97A", - } - }, - { - orderId: 6883, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 54673, - streetName: "Sunset Blvd", - streetNumber: "118D", - } - }, - { - orderId: 5508, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 56840, - streetName: "High Street", - streetNumber: "307A", - } - }, - { - orderId: 7779, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "Japan", - city: "Tokyo", - zipCode: 31900, - streetName: "Market Street", - streetNumber: "117A", - } - }, - { - orderId: 3356, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Canada", - city: "Toronto", - zipCode: 57467, - streetName: "King's Road", - streetNumber: "132D", - } - }, - { - orderId: 7814, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "2024-12-06" - }, - orderInformation: { - country: "India", - city: "Mumbai", - zipCode: 19866, - streetName: "High Street", - streetNumber: "31B", - } - }, - { - orderId: 7978, - status: OrderStatus.PACKED, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "", - dateDelivered: "" - }, - orderInformation: { - country: "Netherlands", - city: "Amsterdam", - zipCode: 67201, - streetName: "Broadway", - streetNumber: "74D", - } - }, - { - orderId: 9865, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "Belgium", - city: "Brussels", - zipCode: 42714, - streetName: "Sunset Blvd", - streetNumber: "173D", - } - }, - { - orderId: 2538, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-01", - dateShipped: "2024-12-03", - dateDelivered: "" - }, - orderInformation: { - country: "France", - city: "Paris", - zipCode: 25553, - streetName: "Market Street", - streetNumber: "471D", - } - } - ] - }, - { - sku: "SKU1050", - imageUrl: "products/Xbox_controller_gamepad-6646645_1920-2.jpg", - productName: "Xbox Controller", - category: "Gaming", - rating: 5, - grossPrice: 189.98, - netPrice: 202.33, - salesTrendData: TREND_DATA[0], - orders: [ - { - orderId: 3489, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-22", - dateShipped: "2024-12-25", - dateDelivered: "" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 31202, - streetName: "Street 22", - streetNumber: "277A", - } - }, - { - orderId: 5969, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-14", - dateShipped: "2024-12-17", - dateDelivered: "2024-12-22" - }, - orderInformation: { - country: "Germany", - city: "Berlin", - zipCode: 96042, - streetName: "Street 21", - streetNumber: "917C", - } - }, - { - orderId: 1943, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-15", - dateShipped: "2024-12-18", - dateDelivered: "" - }, - orderInformation: { - country: "United States", - city: "Chicago", - zipCode: 47082, - streetName: "Street 21", - streetNumber: "89A", - } - }, - { - orderId: 8683, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-04", - dateShipped: "2024-12-28", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "Birmingham", - zipCode: 19592, - streetName: "Street 14", - streetNumber: "270B", - } - }, - { - orderId: 1895, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-21", - dateShipped: "2024-12-24", - dateDelivered: "2024-12-26" - }, - orderInformation: { - country: "United Kingdom", - city: "Manchester", - zipCode: 40094, - streetName: "Street 47", - streetNumber: "204C", - } - }, - { - orderId: 1586, - status: OrderStatus.IN_TRANSIT, - delivery: { - dateOrdered: "2024-12-07", - dateShipped: "2024-12-13", - dateDelivered: "" - }, - orderInformation: { - country: "United Kingdom", - city: "London", - zipCode: 11622, - streetName: "Street 25", - streetNumber: "301C", - } - }, - { - orderId: 5748, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-10", - dateShipped: "2024-12-13", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Hamburg", - zipCode: 98706, - streetName: "Street 42", - streetNumber: "789B", - } - }, - { - orderId: 8685, - status: OrderStatus.CUSTOMS, - delivery: { - dateOrdered: "2024-12-21", - dateShipped: "2024-12-24", - dateDelivered: "" - }, - orderInformation: { - country: "Germany", - city: "Munich", - zipCode: 35172, - streetName: "Street 50", - streetNumber: "45A", - } - }, - { - orderId: 7449, - status: OrderStatus.DELIVERED, - delivery: { - dateOrdered: "2024-12-06", - dateShipped: "2024-12-10", - dateDelivered: "2024-12-23" - }, - orderInformation: { - country: "India", - city: "Delhi", - zipCode: 95695, - streetName: "Street 4", - streetNumber: "30A", - } - } - ] - } -]; - - diff --git a/projects/erp-hgrid/src/app/data/productOrdersTrendsData.ts b/projects/erp-hgrid/src/app/data/productOrdersTrendsData.ts deleted file mode 100644 index c99b1bb..0000000 --- a/projects/erp-hgrid/src/app/data/productOrdersTrendsData.ts +++ /dev/null @@ -1,105 +0,0 @@ -import { DataPoint } from "./dataModels"; - -const trendDataPoints: any[][] = [ - [ - { unitsSold: 12 }, { unitsSold: 95 }, { unitsSold: 33 }, { unitsSold: 110 }, - { unitsSold: 5 }, { unitsSold: 150 }, { unitsSold: 48 }, { unitsSold: 77 }, - { unitsSold: 25 }, { unitsSold: 140 }, { unitsSold: 66 }, { unitsSold: 9 } - ], - [ - { unitsSold: 50 }, { unitsSold: 25 }, { unitsSold: 90 }, { unitsSold: 130 }, - { unitsSold: 22 }, { unitsSold: 5 }, { unitsSold: 110 }, { unitsSold: 67 }, - { unitsSold: 80 }, { unitsSold: 15 }, { unitsSold: 145 }, { unitsSold: 38 } - ], - [ - { unitsSold: 140 }, { unitsSold: 60 }, { unitsSold: 75 }, { unitsSold: 28 }, - { unitsSold: 135 }, { unitsSold: 15 }, { unitsSold: 40 }, { unitsSold: 95 }, - { unitsSold: 12 }, { unitsSold: 110 }, { unitsSold: 55 }, { unitsSold: 12 } - ], - [ - { unitsSold: 90 }, { unitsSold: 7 }, { unitsSold: 115 }, { unitsSold: 20 }, - { unitsSold: 98 }, { unitsSold: 33 }, { unitsSold: 150 }, { unitsSold: 78 }, - { unitsSold: 55 }, { unitsSold: 35 }, { unitsSold: 140 }, { unitsSold: 20 } - ], - [ - { unitsSold: 15 }, { unitsSold: 130 }, { unitsSold: 110 }, { unitsSold: 48 }, - { unitsSold: 140 }, { unitsSold: 10 }, { unitsSold: 25 }, { unitsSold: 95 }, - { unitsSold: 70 }, { unitsSold: 135 }, { unitsSold: 8 }, { unitsSold: 5 } - ], - [ - { unitsSold: 130 }, { unitsSold: 55 }, { unitsSold: 20 }, { unitsSold: 99 }, - { unitsSold: 65 }, { unitsSold: 120 }, { unitsSold: 10 }, { unitsSold: 138 }, - { unitsSold: 75 }, { unitsSold: 30 }, { unitsSold: 150 }, { unitsSold: 14 } - ], - [ - { unitsSold: 18 }, { unitsSold: 110 }, { unitsSold: 145 }, { unitsSold: 22 }, - { unitsSold: 77 }, { unitsSold: 38 }, { unitsSold: 135 }, { unitsSold: 9 }, - { unitsSold: 50 }, { unitsSold: 150 }, { unitsSold: 120 }, { unitsSold: 7 } - ], - [ - { unitsSold: 150 }, { unitsSold: 42 }, { unitsSold: 9 }, { unitsSold: 100 }, - { unitsSold: 40 }, { unitsSold: 125 }, { unitsSold: 130 }, { unitsSold: 5 }, - { unitsSold: 90 }, { unitsSold: 75 }, { unitsSold: 18 }, { unitsSold: 28 } - ], - [ - { unitsSold: 45 }, { unitsSold: 75 }, { unitsSold: 140 }, { unitsSold: 15 }, - { unitsSold: 55 }, { unitsSold: 120 }, { unitsSold: 135 }, { unitsSold: 33 }, - { unitsSold: 5 }, { unitsSold: 110 }, { unitsSold: 22 }, { unitsSold: 10 } - ], - [ - { unitsSold: 100 }, { unitsSold: 8 }, { unitsSold: 130 }, { unitsSold: 75 }, - { unitsSold: 35 }, { unitsSold: 55 }, { unitsSold: 145 }, { unitsSold: 20 }, - { unitsSold: 115 }, { unitsSold: 40 }, { unitsSold: 140 }, { unitsSold: 10 } - ], - [ - { unitsSold: 20 }, { unitsSold: 145 }, { unitsSold: 8 }, { unitsSold: 70 }, - { unitsSold: 12 }, { unitsSold: 150 }, { unitsSold: 48 }, { unitsSold: 33 }, - { unitsSold: 130 }, { unitsSold: 22 }, { unitsSold: 115 }, { unitsSold: 9 } - ], - [ - { unitsSold: 150 }, { unitsSold: 60 }, { unitsSold: 22 }, { unitsSold: 5 }, - { unitsSold: 98 }, { unitsSold: 75 }, { unitsSold: 35 }, { unitsSold: 135 }, - { unitsSold: 80 }, { unitsSold: 25 }, { unitsSold: 140 }, { unitsSold: 18 } - ], - [ - { unitsSold: 85 }, { unitsSold: 130 }, { unitsSold: 55 }, { unitsSold: 12 }, - { unitsSold: 150 }, { unitsSold: 90 }, { unitsSold: 30 }, { unitsSold: 60 }, - { unitsSold: 5 }, { unitsSold: 140 }, { unitsSold: 48 }, { unitsSold: 23 } - ], - [ - { unitsSold: 25 }, { unitsSold: 100 }, { unitsSold: 150 }, { unitsSold: 15 }, - { unitsSold: 80 }, { unitsSold: 120 }, { unitsSold: 55 }, { unitsSold: 5 }, - { unitsSold: 110 }, { unitsSold: 130 }, { unitsSold: 22 }, { unitsSold: 6 } - ], - [ - { unitsSold: 10 }, { unitsSold: 140 }, { unitsSold: 50 }, { unitsSold: 60 }, - { unitsSold: 120 }, { unitsSold: 20 }, { unitsSold: 130 }, { unitsSold: 150 }, - { unitsSold: 35 }, { unitsSold: 5 }, { unitsSold: 100 }, { unitsSold: 15 } - ], - [ - { unitsSold: 55 }, { unitsSold: 150 }, { unitsSold: 12 }, { unitsSold: 110 }, - { unitsSold: 22 }, { unitsSold: 140 }, { unitsSold: 5 }, { unitsSold: 100 }, - { unitsSold: 48 }, { unitsSold: 135 }, { unitsSold: 20 }, { unitsSold: 22 } - ], - [ - { unitsSold: 150 }, { unitsSold: 12 }, { unitsSold: 140 }, { unitsSold: 5 }, - { unitsSold: 95 }, { unitsSold: 25 }, { unitsSold: 130 }, { unitsSold: 35 }, - { unitsSold: 80 }, { unitsSold: 110 }, { unitsSold: 75 }, { unitsSold: 14 } - ] -]; - -const periodYear: string = '2024'; -const PeriodLabels: string[] = [ - 'January', 'February', 'March', 'April', 'May', 'June', - 'July', 'August', 'September', 'October', 'November', 'December' -]; - -const addMonthLabels = (dataPoints: any[][]): DataPoint[][] => { - return dataPoints.map((subArray: any[]) => - subArray.map((item: any, index: number) => { - item['month'] = `${PeriodLabels[index]} ${periodYear}`; - return item; - })); -}; - -export const TREND_DATA: DataPoint[][] = addMonthLabels(trendDataPoints); diff --git a/projects/erp-hgrid/src/app/erp-hgrid-sample/erp-hgrid-sample.component.html b/projects/erp-hgrid/src/app/erp-hgrid-sample/erp-hgrid-sample.component.html index e8c3fb2..9c45d57 100644 --- a/projects/erp-hgrid/src/app/erp-hgrid-sample/erp-hgrid-sample.component.html +++ b/projects/erp-hgrid/src/app/erp-hgrid-sample/erp-hgrid-sample.component.html @@ -4,7 +4,8 @@ width="100%" height="100%" rowHeight="32px" - [data]="hgridData" + [data]="data$ | async" + [isLoading]="isLoading" [autoGenerate]="false" [allowFiltering]="true" [allowAdvancedFiltering]="true" diff --git a/projects/erp-hgrid/src/app/erp-hgrid-sample/erp-hgrid-sample.component.ts b/projects/erp-hgrid/src/app/erp-hgrid-sample/erp-hgrid-sample.component.ts index ea8436d..a25b568 100644 --- a/projects/erp-hgrid/src/app/erp-hgrid-sample/erp-hgrid-sample.component.ts +++ b/projects/erp-hgrid/src/app/erp-hgrid-sample/erp-hgrid-sample.component.ts @@ -1,5 +1,5 @@ -import { Component, CUSTOM_ELEMENTS_SCHEMA, ViewChild, AfterViewInit, ElementRef } from '@angular/core'; -import { NgIf } from '@angular/common'; +import { Component, CUSTOM_ELEMENTS_SCHEMA, ViewChild, AfterViewInit, ElementRef, OnInit } from '@angular/core'; +import { CommonModule, NgIf } from '@angular/common'; import { IgxHierarchicalGridComponent, IgxColumnGroupComponent, @@ -49,6 +49,7 @@ import { dropbox, delivery, billPaid, check } from '@igniteui/material-icons-ext import { OrderDetails, OrderStatus, TemplateDataModel } from '../data/dataModels'; import { SalesTrendsChartComponent } from '../sales-trends-chart/sales-trends-chart.component'; import { ErpDataService } from '../services/erp-data.service'; +import { BehaviorSubject } from 'rxjs'; import { useAnimation } from '@angular/animations'; defineComponents(IgcRatingComponent); @@ -65,6 +66,7 @@ defineComponents(IgcRatingComponent); }, ], imports: [ + CommonModule, IgxHierarchicalGridComponent, IgxColumnComponent, IgxCellTemplateDirective, @@ -97,7 +99,7 @@ defineComponents(IgcRatingComponent); templateUrl: './erp-hgrid-sample.component.html', styleUrl: './erp-hgrid-sample.component.scss' }) -export class ErpHGridSampleComponent implements AfterViewInit { +export class ErpHGridSampleComponent implements OnInit, AfterViewInit { @ViewChild('hierarchicalGrid', { read: IgxHierarchicalGridComponent, static: true }) public hierarchicalGrid!: IgxHierarchicalGridComponent; @ViewChild('rowisland', { read: IgxRowIslandComponent, static: true }) @@ -107,17 +109,16 @@ export class ErpHGridSampleComponent implements AfterViewInit { public fullAddressFilteringOperand = FullAddressFilteringOperand.instance(); public shortAddressFilteringOperand = new FullAddressFilteringOperand(true); - public hgridData: TemplateDataModel[]; + public selectionMode: GridSelectionMode = 'multiple'; public orderStatus = OrderStatus; + public data$: BehaviorSubject = new BehaviorSubject([]); + public isLoading = true; constructor( private iconService: IgxIconService, private erpDataService: ErpDataService ) { - // data - this.hgridData = this.erpDataService.getProducts(); - // Icons used this.iconService.addSvgIconFromText(dropbox.name, dropbox.value, 'imx-icons'); this.iconService.addSvgIconFromText(delivery.name, delivery.value, 'imx-icons'); @@ -125,6 +126,17 @@ export class ErpHGridSampleComponent implements AfterViewInit { this.iconService.addSvgIconFromText(check.name, check.value, 'imx-icons'); } + public ngOnInit(): void { + // data + this.erpDataService.getProducts(); + this.data$ = this.erpDataService.records; + this.data$.subscribe((data) => { + if (data.length !== 0) { + this.isLoading = false; + } + }); + } + public ngAfterViewInit(): void { // Default sortings this.hierarchicalGrid.sortingExpressions = [ diff --git a/projects/erp-hgrid/src/app/services/erp-data.service.ts b/projects/erp-hgrid/src/app/services/erp-data.service.ts index be987d1..dbe0348 100644 --- a/projects/erp-hgrid/src/app/services/erp-data.service.ts +++ b/projects/erp-hgrid/src/app/services/erp-data.service.ts @@ -1,28 +1,31 @@ -import { Injectable } from "@angular/core"; -import { InventoryList } from "../data/erpData"; -import { TemplateDataModel } from "../data/dataModels"; +import { Injectable } from '@angular/core'; +import { TemplateDataModel } from '../data/dataModels'; +import { BehaviorSubject } from 'rxjs'; +import { HttpClient } from '@angular/common/http'; + +const DATA_URL = + 'https://www.infragistics.com/grid-examples-data/data/erp/products.json'; @Injectable({ - providedIn: "root", + providedIn: 'root', }) export class ErpDataService { - private products = InventoryList; - - public getProducts(): TemplateDataModel[] { - this.setItemsSold(); - this.setTotalNetProfit(); - return this.products; + public records: BehaviorSubject; + constructor(private _http: HttpClient) { + this.records = new BehaviorSubject([]); } - public getProductsJson() { - const products = this.products.map(({ unitsSold, totalNetProfit, salesTrendData, ...rest }) => rest); - const productsJSON = JSON.stringify(products); - return productsJSON; + public getProducts() { + this._http.get(DATA_URL).subscribe((data: TemplateDataModel[]) => { + this.setItemsSold(data); + this.setTotalNetProfit(data); + this.records.next(data); + }); } - private setItemsSold(): void { + private setItemsSold(data: TemplateDataModel[]): void { // add itemsSold property to each record based on the data in the chart - this.products.forEach((item: TemplateDataModel) => { + data.forEach((item: TemplateDataModel) => { const lastItemIndex = item.salesTrendData.length - 1; item.unitsSold = item.salesTrendData[lastItemIndex].unitsSold; }); @@ -30,10 +33,12 @@ export class ErpDataService { private calculateTotalNetProfit(product: TemplateDataModel): number { const unitsSold: number = product.unitsSold || 0; - return unitsSold * (product.netPrice); + return unitsSold * product.netPrice; } - private setTotalNetProfit(): void { - this.products.forEach(product => product.totalNetProfit = this.calculateTotalNetProfit(product)); + private setTotalNetProfit(data: TemplateDataModel[]): void { + data.forEach((product: TemplateDataModel) => { + product.totalNetProfit = this.calculateTotalNetProfit(product); + }); } } diff --git a/projects/finance-grid/src/app/app.config.ts b/projects/finance-grid/src/app/app.config.ts index da3ef65..892c3eb 100644 --- a/projects/finance-grid/src/app/app.config.ts +++ b/projects/finance-grid/src/app/app.config.ts @@ -1,3 +1,4 @@ +import { provideHttpClient } from "@angular/common/http"; import { ApplicationConfig, provideZoneChangeDetection } from "@angular/core"; import { provideClientHydration, @@ -10,5 +11,6 @@ export const appConfig: ApplicationConfig = { provideZoneChangeDetection({ eventCoalescing: true }), provideClientHydration(withEventReplay()), provideAnimations(), + provideHttpClient() ], }; diff --git a/projects/finance-grid/src/app/data/data.json b/projects/finance-grid/src/app/data/data.json deleted file mode 100644 index ab57dd0..0000000 --- a/projects/finance-grid/src/app/data/data.json +++ /dev/null @@ -1,502 +0,0 @@ -[ - { - "id": "AMD", - "holdingName": "Advanced Micro Devices Inc.", - "positions": 24, - "holdingPeriod": 157, - "value": { - "currentPrice": 130.36, - "boughtPrice": 75.54 - } - }, - { - "id": "ETH", - "holdingName": "Ethereum", - "positions": 3, - "holdingPeriod": 120, - "value": { - "currentPrice": 3568, - "boughtPrice": 2543 - } - }, - { - "id": "ABNB", - "holdingName": "Airbnb Inc.", - "positions": 23, - "holdingPeriod": 540, - "value": { - "currentPrice": 130.66, - "boughtPrice": 56.32 - } - }, - { - "id": "BABA", - "holdingName": "Alibaba Group Holding Limited", - "positions": 12, - "holdingPeriod": 91, - "value": { - "currentPrice": 81.8, - "boughtPrice": 107.72 - } - }, - { - "id": "BTC", - "holdingName": "Bitcoin", - "positions": 0.2, - "holdingPeriod": 323, - "value": { - "currentPrice": 95294, - "boughtPrice": 60231 - } - }, - { - "id": "BKNG", - "holdingName": "Booking Holdings Inc", - "positions": 0.2, - "holdingPeriod": 17, - "value": { - "currentPrice": 4932, - "boughtPrice": 4378.21 - } - }, - { - "id": "COST", - "holdingName": "Costco Wholesale Corporation", - "positions": 10, - "holdingPeriod": 32, - "value": { - "currentPrice": 911.4, - "boughtPrice": 890.12 - } - }, - { - "id": "DPZ", - "holdingName": "Dominos Pizza Inc", - "positions": 21, - "holdingPeriod": 54, - "value": { - "currentPrice": 19.5, - "boughtPrice": 24.1 - } - }, - { - "id": "FDX", - "holdingName": "FedEx Corporation", - "positions": 2, - "holdingPeriod": 72, - "value": { - "currentPrice": 286.95, - "boughtPrice": 269.05 - } - }, - { - "id": "F", - "holdingName": "Ford Motor Company", - "positions": 5.6, - "holdingPeriod": 431, - "value": { - "currentPrice": 10.41, - "boughtPrice": 15.21 - } - }, - { - "id": "GM", - "holdingName": "General Motors Company", - "positions": 3.1, - "holdingPeriod": 652, - "value": { - "currentPrice": 53.25, - "boughtPrice": 32.26 - } - }, - { - "id": "AAPL", - "holdingName": "Apple Inc.", - "positions": 1.1, - "holdingPeriod": 632, - "value": { - "currentPrice": 223.35, - "boughtPrice": 154.21 - } - }, - { - "id": "MSFT", - "holdingName": "Microsoft Corp.", - "positions": 0.7, - "holdingPeriod": 342, - "value": { - "currentPrice": 401.2, - "boughtPrice": 430 - } - }, - { - "id": "GOOGL", - "holdingName": "Alphabet Inc.", - "positions": 1.3, - "holdingPeriod": 376, - "value": { - "currentPrice": 160, - "boughtPrice": 174 - } - }, - { - "id": "AMZN", - "holdingName": "Amazon.com Inc.", - "positions": 4.3, - "holdingPeriod": 352, - "value": { - "currentPrice": 205.86, - "boughtPrice": 272.34 - } - }, - { - "id": "JPM", - "holdingName": "JPMorgan Chase and Co", - "positions": 0.3, - "holdingPeriod": 13, - "value": { - "currentPrice": 238.85, - "boughtPrice": 234.11 - } - }, - { - "id": "TSLA", - "holdingName": "Tesla Inc.", - "positions": 4.8, - "holdingPeriod": 452, - "value": { - "currentPrice": 332.89, - "boughtPrice": 300.21 - } - }, - { - "id": "NVDA", - "holdingName": "NVIDIA Corp.", - "positions": 1.2, - "holdingPeriod": 237, - "value": { - "currentPrice": 136.92, - "boughtPrice": 100 - } - }, - { - "id": "K", - "holdingName": "Kellogg Company", - "positions": 0.2, - "holdingPeriod": 2, - "value": { - "currentPrice": 76.66, - "boughtPrice": 78.23 - } - }, - { - "id": "V", - "holdingName": "Visa Inc.", - "positions": 0.08, - "holdingPeriod": 365, - "value": { - "currentPrice": 307.9, - "boughtPrice": 337.6 - } - }, - { - "id": "JNJ", - "holdingName": "Johnson & Johnson", - "positions": 2.1, - "holdingPeriod": 420, - "value": { - "currentPrice": 155.78, - "boughtPrice": 171.68 - } - }, - { - "id": "PG", - "holdingName": "Procter & Gamble Co.", - "positions": 0.9, - "holdingPeriod": 150, - "value": { - "currentPrice": 156.89, - "boughtPrice": 166.9 - } - }, - { - "id": "WMT", - "holdingName": "Walmart Inc.", - "positions": 0.36, - "holdingPeriod": 250, - "value": { - "currentPrice": 145.67, - "boughtPrice": 120 - } - }, - { - "id": "HD", - "holdingName": "The Home Depot Inc.", - "positions": 0.34, - "holdingPeriod": 290, - "value": { - "currentPrice": 428.67, - "boughtPrice": 451.31 - } - }, - { - "id": "KO", - "holdingName": "Coca-Cola Co.", - "positions": 0.40, - "holdingPeriod": 180, - "value": { - "currentPrice": 56.79, - "boughtPrice": 86.46 - } - }, - { - "id": "PEP", - "holdingName": "PepsiCo Inc.", - "positions": 0.20, - "holdingPeriod": 430, - "value": { - "currentPrice": 184.39, - "boughtPrice": 190.15 - } - }, - { - "id": "DIS", - "holdingName": "Walt Disney Co.", - "positions": 0.19, - "holdingPeriod": 380, - "value": { - "currentPrice": 177.99, - "boughtPrice": 222.56 - } - }, - { - "id": "PFE", - "holdingName": "Pfizer Inc.", - "positions": 0.1, - "holdingPeriod": 180, - "value": { - "currentPrice": 39.81, - "boughtPrice": 41.32 - } - }, - { - "id": "XOM", - "holdingName": "Exxon Mobil Corp.", - "positions": 3.4, - "holdingPeriod": 400, - "value": { - "currentPrice": 114.36, - "boughtPrice": 143.81 - } - }, - { - "id": "CVX", - "holdingName": "Chevron Corp.", - "positions": 0.40, - "holdingPeriod": 320, - "value": { - "currentPrice": 179.63, - "boughtPrice": 151.82 - } - }, - { - "id": "MCD", - "holdingName": "McDonalds Corporation", - "positions": 0.31, - "holdingPeriod": 589, - "value": { - "currentPrice": 281.25, - "boughtPrice": 121.21 - } - }, - { - "id": "INTC", - "holdingName": "Intel Corp.", - "positions": 0.27, - "holdingPeriod": 342, - "value": { - "currentPrice": 23.65, - "boughtPrice": 85 - } - }, - { - "id": "NFLX", - "holdingName": "Netflix Inc.", - "positions": 0.12, - "holdingPeriod": 289, - "value": { - "currentPrice": 877.34, - "boughtPrice": 45 - } - }, - { - "id": "ADBE", - "holdingName": "Adobe Inc.", - "positions": 0.34, - "holdingPeriod": 412, - "value": { - "currentPrice": 513.68, - "boughtPrice": 78 - } - }, - { - "id": "CRM", - "holdingName": "Salesforce Inc.", - "positions": 0.9, - "holdingPeriod": 198, - "value": { - "currentPrice": 341.45, - "boughtPrice": 56 - } - }, - { - "id": "BA", - "holdingName": "Boeing Co", - "positions": 0.47, - "holdingPeriod": 276, - "value": { - "currentPrice": 152.4, - "boughtPrice": 92 - } - }, - { - "id": "IBM", - "holdingName": "IBM Corp.", - "positions": 0.3, - "holdingPeriod": 365, - "value": { - "currentPrice": 222.97, - "boughtPrice": 45 - } - }, - { - "id": "MDLZ", - "holdingName": "Mondelez International Inc", - "positions": 0.95, - "holdingPeriod": 2, - "value": { - "currentPrice": 64.4, - "boughtPrice": 114.4 - } - }, - { - "id": "MS", - "holdingName": "Morgan Stanley", - "positions": 0.67, - "holdingPeriod": 13, - "value": { - "currentPrice": 131.2, - "boughtPrice": 181.2 - } - }, - { - "id": "SPOT", - "holdingName": "Spotify Technology SA", - "positions": 0.35, - "holdingPeriod": 41, - "value": { - "currentPrice": 475.87, - "boughtPrice": 525.87 - } - }, - { - "id": "MMM", - "holdingName": "3M Co.", - "positions": 1.5, - "holdingPeriod": 123, - "value": { - "currentPrice": 130.32, - "boughtPrice": 150.32 - } - }, - { - "id": "CSCO", - "holdingName": "Cisco Systems Inc.", - "positions": 0.48, - "holdingPeriod": 456, - "value": { - "currentPrice": 58.74, - "boughtPrice": 98.74 - } - }, - { - "id": "SBUX", - "holdingName": "Starbucks Corp.", - "positions": 0.22, - "holdingPeriod": 234, - "value": { - "currentPrice": 101.51, - "boughtPrice": 141.51 - } - }, - { - "id": "AXP", - "holdingName": "American Express Co.", - "positions": 0.33, - "holdingPeriod": 389, - "value": { - "currentPrice": 304.28, - "boughtPrice": 344.28 - } - }, - { - "id": "GE", - "holdingName": "General Electric Co.", - "positions": 0.7, - "holdingPeriod": 178, - "value": { - "currentPrice": 181.15, - "boughtPrice": 221.15 - } - }, - { - "id": "UBER", - "holdingName": "Uber Technologies Inc", - "positions": 0.23, - "holdingPeriod": 487, - "value": { - "currentPrice": 71.51, - "boughtPrice": 56.51 - } - }, - { - "id": "ZM", - "holdingName": "Zoom Video Communications Inc", - "positions": 0.11, - "holdingPeriod": 276, - "value": { - "currentPrice": 89.03, - "boughtPrice": 54.03 - } - }, - { - "id": "CAT", - "holdingName": "Caterpillar Inc.", - "positions": 0.19, - "holdingPeriod": 87, - "value": { - "currentPrice": 406.35, - "boughtPrice": 446.35 - } - }, - { - "id": "HON", - "holdingName": "Honeywell International Inc.", - "positions": 0.22, - "holdingPeriod": 276, - "value": { - "currentPrice": 229.64, - "boughtPrice": 269.64 - } - }, - { - "id": "PYPL", - "holdingName": "PayPal Holdings Inc.", - "positions": 0.37, - "holdingPeriod": 412, - "value": { - "currentPrice": 86.57, - "boughtPrice": 126.57 - } - } -] \ No newline at end of file diff --git a/projects/finance-grid/src/app/services/financial.service.ts b/projects/finance-grid/src/app/services/financial.service.ts index e44b685..d78dd1f 100644 --- a/projects/finance-grid/src/app/services/financial.service.ts +++ b/projects/finance-grid/src/app/services/financial.service.ts @@ -1,37 +1,40 @@ import { Injectable } from "@angular/core"; -import DATA from "../data/data.json"; import { BehaviorSubject } from "rxjs"; +import { HttpClient } from "@angular/common/http"; +const DATA_URL = 'https://www.infragistics.com/grid-examples-data/data/finance/finance.json'; @Injectable({ providedIn: "root", }) export class FinancialService { public records: BehaviorSubject; - constructor() { + constructor(private _http: HttpClient) { this.records = new BehaviorSubject([]); } public getData() { - const currData = DATA; - const totalPortfolioInvestment = currData.reduce((acc: any, x: any) => { - acc += x.value.boughtPrice * x.positions; - return acc; - }, 0); - currData.forEach((record: any) => { - record["profitLossValue"] = this.calculateProfitLossValue(record.value.currentPrice, record.value.boughtPrice, record.positions); - - record["profitLossPercentage"] = this.calculateProfitLossPercentage(record.profitLossValue, record.value.boughtPrice, record.positions); - - const totalInitialInvestment = record.value.boughtPrice * record.positions; - record["allocation"] = parseFloat((totalInitialInvestment / totalPortfolioInvestment).toFixed(4)); - - record["marketValue"] = record.value.currentPrice * record.positions; - - record["initialPrice"] = record.value.currentPrice; - - record["dailyPercentageChange"] = 0; + this._http.get(DATA_URL).subscribe((data: any) => { + const currData = data; + const totalPortfolioInvestment = currData.reduce((acc: any, x: any) => { + acc += x.value.boughtPrice * x.positions; + return acc; + }, 0); + currData.forEach((record: any) => { + record["profitLossValue"] = this.calculateProfitLossValue(record.value.currentPrice, record.value.boughtPrice, record.positions); + + record["profitLossPercentage"] = this.calculateProfitLossPercentage(record.profitLossValue, record.value.boughtPrice, record.positions); + + const totalInitialInvestment = record.value.boughtPrice * record.positions; + record["allocation"] = parseFloat((totalInitialInvestment / totalPortfolioInvestment).toFixed(4)); + + record["marketValue"] = parseFloat((record.value.currentPrice * record.positions).toFixed(2)); + + record["initialPrice"] = record.value.currentPrice; + + record["dailyPercentageChange"] = 0; + }); + this.records.next(currData); }); - this.records.next(currData); } public updateAllPrices(data: any) { @@ -82,7 +85,7 @@ export class FinancialService { const newPrice = parseFloat((dataRow.value.currentPrice + changeAmount).toFixed(2)); const newProfitLossValue = this.calculateProfitLossValue(newPrice, dataRow.value.boughtPrice, dataRow.positions); const newProfitLossPercentage = this.calculateProfitLossPercentage(newProfitLossValue, dataRow.value.boughtPrice, dataRow.positions); - const newMarketValue = newPrice * dataRow.positions; + const newMarketValue = parseFloat((newPrice * dataRow.positions).toFixed(2)); const newDailyPercentage = this.calculateDailyPercentageChange(dataRow.initialPrice, newPrice); return { newPrice, diff --git a/projects/fleet-management-grid/src/app/app.config.ts b/projects/fleet-management-grid/src/app/app.config.ts index 4d822a0..08c856a 100644 --- a/projects/fleet-management-grid/src/app/app.config.ts +++ b/projects/fleet-management-grid/src/app/app.config.ts @@ -4,12 +4,14 @@ import { provideRouter } from '@angular/router'; import { routes } from './app.routes'; import { provideClientHydration, withEventReplay } from '@angular/platform-browser'; import { provideAnimations } from '@angular/platform-browser/animations'; +import { provideHttpClient } from '@angular/common/http'; export const appConfig: ApplicationConfig = { providers: [ provideZoneChangeDetection({ eventCoalescing: true }), provideRouter(routes), provideClientHydration(withEventReplay()), - provideAnimations() + provideAnimations(), + provideHttpClient() ] }; diff --git a/projects/fleet-management-grid/src/app/fleet-management-grid/fleet-management-grid.component.html b/projects/fleet-management-grid/src/app/fleet-management-grid/fleet-management-grid.component.html index dbc1031..33f8bb0 100644 --- a/projects/fleet-management-grid/src/app/fleet-management-grid/fleet-management-grid.component.html +++ b/projects/fleet-management-grid/src/app/fleet-management-grid/fleet-management-grid.component.html @@ -1,4 +1,4 @@ - + Fleet Management @@ -87,7 +87,7 @@
- +
@@ -99,7 +99,7 @@
- +
@@ -133,7 +133,7 @@ valueMemberPath="value" labelsPosition="OutsideEnd" radiusFactor="0.7" - [dataSource]="dataService.getCostsPerTypeData(dataItem.vehicleId, periods[dataItem.vehicleId]?.costPerTypePeriod || Period.YTD)" + [dataSource]="dataService.findCostsPerTypeData(dataItem.vehicleId, periods[dataItem.vehicleId]?.costPerTypePeriod || Period.YTD)" actualLabelOuterColor="#ededed" > @@ -157,7 +157,7 @@ Utilization per Month class="column-chart-two-series" #chart chartType="Column" - [dataSource]="dataService.getUtilizationData(dataItem.vehicleId)" + [dataSource]="dataService.findUtilizationDataById(dataItem.vehicleId)" [legend]="legend" yAxisTitle="Miles" isHorizontalZoomEnabled="false" diff --git a/projects/fleet-management-grid/src/app/fleet-management-grid/fleet-management-grid.component.ts b/projects/fleet-management-grid/src/app/fleet-management-grid/fleet-management-grid.component.ts index fd1b68e..972f217 100644 --- a/projects/fleet-management-grid/src/app/fleet-management-grid/fleet-management-grid.component.ts +++ b/projects/fleet-management-grid/src/app/fleet-management-grid/fleet-management-grid.component.ts @@ -16,6 +16,7 @@ import { Period } from '../models/period.enum'; import { DriverDetails } from '../models/driver-details.interface'; import { ChartType } from '../models/chart-type.enum'; import { VehicleDetails } from '../models/vehicle-details.interface'; +import { BehaviorSubject } from 'rxjs'; @Component({ selector: 'app-fleet-management-grid', @@ -117,6 +118,9 @@ export class FleetManagementGridComponent implements OnInit { protected VEHICLE_DETAILS = VEHICLE_DETAILS; protected DRIVER_CATEGORIES = DRIVER_CATEGORIES; + protected isLoading = true; + protected vehicleData$ = new BehaviorSubject([]); + constructor( @Inject(IgxIconService) private iconService: IgxIconService, @Inject(IgxOverlayService) private overlayService: IgxOverlayService, @@ -129,6 +133,15 @@ export class FleetManagementGridComponent implements OnInit { this.iconService.addSvgIconFromText(delivery.name, delivery.value, 'imx-icons'); this.iconService.addSvgIconFromText(gitIssue.name, gitIssue.value, 'imx-icons'); + this.dataService.getVehiclesData(); + this.vehicleData$ = this.dataService.vehiclesRecords; + this.vehicleData$.subscribe((data: any) => { + if (data.length > 0) { + this.isLoading = false; + } + }); + this.dataService.loadOptionalData(); + this.grid.sortingExpressions = [ { dir: SortingDirection.Asc, fieldName: 'vehicleId', @@ -203,8 +216,7 @@ export class FleetManagementGridComponent implements OnInit { console.error('Vehicle ID not found in data'); return; } - - const vehicle = this.dataService.getVehiclesData().find(v => v.vehicleId === vehicleId) + const vehicle = this.vehicleData$.value?.find((v: any) => v.vehicleId === vehicleId); if (!vehicle) { console.error(`No vehicle found for ID: ${vehicleId}`); @@ -266,7 +278,7 @@ export class FleetManagementGridComponent implements OnInit { return; } - const driverDetails = this.dataService.getDriverData(driverName); + const driverDetails = this.dataService.findDriverByName(driverName); if (!driverDetails) { console.error(`No data found for driver: ${driverName}`); diff --git a/projects/fleet-management-grid/src/app/services/data.service.ts b/projects/fleet-management-grid/src/app/services/data.service.ts index 9b5cb9a..e0a7acd 100644 --- a/projects/fleet-management-grid/src/app/services/data.service.ts +++ b/projects/fleet-management-grid/src/app/services/data.service.ts @@ -1,69 +1,136 @@ import { Injectable } from '@angular/core'; -import VEHICLES_DATA from '../../assets/data/vehicles.json'; -import DRIVERS_DATA from '../../assets/data/drivers.json'; -import TRIP_HISTORY_DATA from '../../assets/data/trip_history.json'; -import MAINTENANCE_DATA from '../../assets/data/maintenance.json'; -import COST_DATA from '../../assets/data/cost.json'; -import UTILIZATION_DATA from '../../assets/data/utilization.json'; +import { BehaviorSubject } from 'rxjs'; +import { HttpClient } from '@angular/common/http'; + +const VEHICLE_DATA_URL = + 'https://www.infragistics.com/grid-examples-data/data/fleet/vehicles.json'; +const DRIVERS_DATA_URL = + 'https://www.infragistics.com/grid-examples-data/data/fleet/drivers.json'; +const COST_DATA_URL = + 'https://www.infragistics.com/grid-examples-data/data/fleet/cost.json'; +const MAINTENANCE_DATA_URL = + 'https://www.infragistics.com/grid-examples-data/data/fleet/maintenance.json'; +const UTILIZATION_DATA_URL = + 'https://www.infragistics.com/grid-examples-data/data/fleet/utilization.json'; +const TRIP_HISTORY_DATA_URL = + 'https://www.infragistics.com/grid-examples-data/data/fleet/trip_history.json'; @Injectable({ - providedIn: 'root' + providedIn: 'root', }) export class DataService { - private vehiclesData = VEHICLES_DATA; - private driversData = DRIVERS_DATA; - private tripHistoryData = TRIP_HISTORY_DATA; - private maintenanceData = MAINTENANCE_DATA; - private costData = COST_DATA; - private utilizationData = UTILIZATION_DATA; + public vehiclesRecords: BehaviorSubject; + private driverRecords: BehaviorSubject; + private tripHistoryRecords: BehaviorSubject; + private mainTenanceRecords: BehaviorSubject; + private costRecords: BehaviorSubject; + private utilizationRecords: BehaviorSubject; private fuelCostsCache: { [key: string]: any[] } = {}; - constructor() { - this.utilizationData.forEach(vehicle => { - (vehicle.utilization as any).__dataIntents = { - "'2023'": ["SeriesTitle/2023"], - "'2024'": ["SeriesTitle/2024"] - }; - }) + constructor(private http: HttpClient) { + this.vehiclesRecords = new BehaviorSubject([]); + this.driverRecords = new BehaviorSubject([]); + this.tripHistoryRecords = new BehaviorSubject([]); + this.mainTenanceRecords = new BehaviorSubject([]); + this.costRecords = new BehaviorSubject([]); + this.utilizationRecords = new BehaviorSubject([]); } public getVehiclesData() { - return this.vehiclesData; + this.http.get(VEHICLE_DATA_URL).subscribe((data: any) => { + this.vehiclesRecords.next(data); + }); } - public getDriverData(driverName: string) { - return this.driversData.find(data => data.name == driverName); + public getDriverData() { + this.http.get(DRIVERS_DATA_URL).subscribe((data: any) => { + this.driverRecords.next(data); + }); + } + + public getTripHistoryData() { + this.http.get(TRIP_HISTORY_DATA_URL).subscribe((data: any) => { + this.tripHistoryRecords.next(data); + }); + } + + public getMaintenanceData() { + this.http.get(MAINTENANCE_DATA_URL).subscribe((data: any) => { + this.mainTenanceRecords.next(data); + }); + } + + public getCostData() { + this.http.get(COST_DATA_URL).subscribe((data: any) => { + this.costRecords.next(data); + }); + } + + public getUtilizationData() { + this.http.get(UTILIZATION_DATA_URL).subscribe((data: any) => { + data.forEach((vehicle: any) => { + (vehicle.utilization as any).__dataIntents = { + "'2023'": ['SeriesTitle/2023'], + "'2024'": ['SeriesTitle/2024'], + }; + }); + this.utilizationRecords.next(data); + }); + } + + public loadOptionalData() { + this.getDriverData(); + this.getTripHistoryData(); + this.getMaintenanceData(); + this.getCostData(); + this.getUtilizationData(); + } + + public findDriverByName(driverName: string) { + return this.driverRecords.value?.find( + (data: any) => data.name == driverName + ); } public getDriverPhoto(driverName: string) { - return this.getDriverData(driverName)?.photo; + return this.findDriverByName(driverName)?.photo; } - public getTripHistoryData(vehicleId: string) { - return this.tripHistoryData.find(data => data.vehicleId === vehicleId)?.tripHistory; + public findTripHistoryById(vehicleId: string) { + return this.tripHistoryRecords.value?.find( + (data: any) => data.vehicleId === vehicleId + )?.tripHistory; } - public getMaintenanceData(vehicleId: string) { - return this.maintenanceData.find(data => data.vehicleId === vehicleId)?.maintenance; + public findMaintenanceDataById(vehicleId: string) { + return this.mainTenanceRecords.value?.find( + (data: any) => data.vehicleId === vehicleId + )?.maintenance; } - public getCostsPerTypeData(vehicleId: string, period: any) { - const dataItem = this.costData.find(data => data.vehicleId === vehicleId) as any; + public findCostsPerTypeData(vehicleId: string, period: any) { + const dataItem = this.costRecords.value?.find( + (data: any) => data.vehicleId === vehicleId + ) as any; const costPerTypeData = dataItem.costPerType; return costPerTypeData[period]; } - public getCostsPerMeterData(vehicleId: string, period: any) { - const dataItem = this.costData.find(data => data.vehicleId === vehicleId) as any; + public findCostsPerMeterData(vehicleId: string, period: any) { + const dataItem = this.costRecords.value?.find( + (data: any) => data.vehicleId === vehicleId + ) as any; const costPerMeterData = dataItem.costsPerMeterPerQuarter; return costPerMeterData[period]; } public getFuelCostsData(vehicleId: string, period: any) { - const dataItem = this.costData.find(data => data.vehicleId === vehicleId) as any; + const dataItem = this.costRecords.value?.find( + (data: any) => data.vehicleId === vehicleId + ) as any; const fuelCostsPerMonth = dataItem.fuelCostsPerMonth; if (this.fuelCostsCache[vehicleId + period]) { @@ -84,7 +151,7 @@ export class DataService { fuelCostsPerMonthPeriod = [...fuelCostsPerMonth].splice(-3); break; default: - console.warn("Invalid period:", period); + console.warn('Invalid period:', period); return []; } @@ -93,8 +160,10 @@ export class DataService { return fuelCostsPerMonthPeriod; } - public getUtilizationData(vehicleId: string) { - const dataItem = this.utilizationData.find(data => data.vehicleId === vehicleId); - return dataItem ? dataItem.utilization : [] + public findUtilizationDataById(vehicleId: string) { + const dataItem = this.utilizationRecords.value?.find( + (data: any) => data.vehicleId === vehicleId + ); + return dataItem ? dataItem.utilization : []; } } diff --git a/projects/fleet-management-grid/src/assets/data/cost.json b/projects/fleet-management-grid/src/assets/data/cost.json deleted file mode 100644 index 672b4e6..0000000 --- a/projects/fleet-management-grid/src/assets/data/cost.json +++ /dev/null @@ -1,5382 +0,0 @@ -[ - { - "vehicleId": "A00101", - "costPerType": { - "ytd": [ - { - "value": 55, - "category": "Fuel", - "summary": "Fuel: 55%" - }, - { - "value": 25, - "category": "Maintenance", - "summary": "Maintenance: 25%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "3months": [ - { - "value": 50, - "category": "Fuel", - "summary": "Fuel: 50%" - }, - { - "value": 30, - "category": "Maintenance", - "summary": "Maintenance: 30%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "6months": [ - { - "value": 52, - "category": "Fuel", - "summary": "Fuel: 52%" - }, - { - "value": 28, - "category": "Maintenance", - "summary": "Maintenance: 28%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "12months": [ - { - "value": 53, - "category": "Fuel", - "summary": "Fuel: 53%" - }, - { - "value": 27, - "category": "Maintenance", - "summary": "Maintenance: 27%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ] - }, - "costsPerMeterPerQuarter": { - "ytd": [ - { - "quarter": "Q1", - "costPerMeter": 10 - }, - { - "quarter": "Q2", - "costPerMeter": 28 - }, - { - "quarter": "Q3", - "costPerMeter": 55 - }, - { - "quarter": "Q4", - "costPerMeter": 61 - } - ], - "'2023'": [ - { - "quarter": "Q1", - "costPerMeter": 12 - }, - { - "quarter": "Q2", - "costPerMeter": 25 - }, - { - "quarter": "Q3", - "costPerMeter": 50 - }, - { - "quarter": "Q4", - "costPerMeter": 59 - } - ], - "'2022'": [ - { - "quarter": "Q1", - "costPerMeter": 15 - }, - { - "quarter": "Q2", - "costPerMeter": 20 - }, - { - "quarter": "Q3", - "costPerMeter": 45 - }, - { - "quarter": "Q4", - "costPerMeter": 50 - } - ], - "'2021'": [ - { - "quarter": "Q1", - "costPerMeter": 10 - }, - { - "quarter": "Q2", - "costPerMeter": 18 - }, - { - "quarter": "Q3", - "costPerMeter": 40 - }, - { - "quarter": "Q4", - "costPerMeter": 43 - } - ], - "'2020'": [ - { - "quarter": "Q1", - "costPerMeter": 8 - }, - { - "quarter": "Q2", - "costPerMeter": 22 - }, - { - "quarter": "Q3", - "costPerMeter": 48 - }, - { - "quarter": "Q4", - "costPerMeter": 35 - } - ] - }, - "fuelCostsPerMonth": [ - - { - "month": "Jan", - "cost": 62 - }, - { - "month": "Feb", - "cost": 76 - }, - { - "month": "Mar", - "cost": 146 - }, - { - "month": "Apr", - "cost": 240 - }, - { - "month": "May", - "cost": 265 - }, - { - "month": "Jun", - "cost": 275 - }, - { - "month": "Jul", - "cost": 300 - }, - { - "month": "Aug", - "cost": 230 - }, - { - "month": "Sep", - "cost": 265 - }, - { - "month": "Oct", - "cost": 287 - }, - { - "month": "Nov", - "cost": 310 - }, - { - "month": "Dec", - "cost": 295 - } - ] - }, - { - "vehicleId": "A00102", - "costPerType": { - "ytd": [ - { - "value": 55, - "category": "Fuel", - "summary": "Fuel: 55%" - }, - { - "value": 25, - "category": "Maintenance", - "summary": "Maintenance: 25%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "3months": [ - { - "value": 50, - "category": "Fuel", - "summary": "Fuel: 50%" - }, - { - "value": 30, - "category": "Maintenance", - "summary": "Maintenance: 30%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "6months": [ - { - "value": 52, - "category": "Fuel", - "summary": "Fuel: 52%" - }, - { - "value": 28, - "category": "Maintenance", - "summary": "Maintenance: 28%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "12months": [ - { - "value": 53, - "category": "Fuel", - "summary": "Fuel: 53%" - }, - { - "value": 27, - "category": "Maintenance", - "summary": "Maintenance: 27%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ] - }, - "costsPerMeterPerQuarter": { - "ytd": [ - { - "quarter": "Q1", - "costPerMeter": 10 - }, - { - "quarter": "Q2", - "costPerMeter": 28 - }, - { - "quarter": "Q3", - "costPerMeter": 55 - }, - { - "quarter": "Q4", - "costPerMeter": 64 - } - ], - "'2023'": [ - { - "quarter": "Q1", - "costPerMeter": 12 - }, - { - "quarter": "Q2", - "costPerMeter": 25 - }, - { - "quarter": "Q3", - "costPerMeter": 50 - }, - { - "quarter": "Q4", - "costPerMeter": 55 - } - ], - "'2022'": [ - { - "quarter": "Q1", - "costPerMeter": 15 - }, - { - "quarter": "Q2", - "costPerMeter": 20 - }, - { - "quarter": "Q3", - "costPerMeter": 45 - }, - { - "quarter": "Q4", - "costPerMeter": 50 - } - ], - "'2021'": [ - { - "quarter": "Q1", - "costPerMeter": 10 - }, - { - "quarter": "Q2", - "costPerMeter": 18 - }, - { - "quarter": "Q3", - "costPerMeter": 40 - }, - { - "quarter": "Q4", - "costPerMeter": 42 - } - ], - "'2020'": [ - { - "quarter": "Q1", - "costPerMeter": 8 - }, - { - "quarter": "Q2", - "costPerMeter": 22 - }, - { - "quarter": "Q3", - "costPerMeter": 48 - }, - { - "quarter": "Q4", - "costPerMeter": 50 - } - ] - }, - "fuelCostsPerMonth": [ - { - "month": "Jan", - "cost": 62 - }, - { - "month": "Feb", - "cost": 76 - }, - { - "month": "Mar", - "cost": 146 - }, - { - "month": "Apr", - "cost": 240 - }, - { - "month": "May", - "cost": 265 - }, - { - "month": "Jun", - "cost": 275 - }, - { - "month": "Jul", - "cost": 300 - }, - { - "month": "Aug", - "cost": 230 - }, - { - "month": "Sep", - "cost": 265 - }, - { - "month": "Oct", - "cost": 287 - }, - { - "month": "Nov", - "cost": 310 - }, - { - "month": "Dec", - "cost": 295 - } - ] - }, - { - "vehicleId": "A00103", - "costPerType": { - "ytd": [ - { - "value": 60, - "category": "Fuel", - "summary": "Fuel: 60%" - }, - { - "value": 20, - "category": "Maintenance", - "summary": "Maintenance: 20%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "3months": [ - { - "value": 55, - "category": "Fuel", - "summary": "Fuel: 55%" - }, - { - "value": 25, - "category": "Maintenance", - "summary": "Maintenance: 25%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "6months": [ - { - "value": 58, - "category": "Fuel", - "summary": "Fuel: 58%" - }, - { - "value": 22, - "category": "Maintenance", - "summary": "Maintenance: 22%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "12months": [ - { - "value": 59, - "category": "Fuel", - "summary": "Fuel: 59%" - }, - { - "value": 21, - "category": "Maintenance", - "summary": "Maintenance: 21%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ] - }, - "costsPerMeterPerQuarter": { - "ytd": [ - { - "quarter": "Q1", - "costPerMeter": 15 - }, - { - "quarter": "Q2", - "costPerMeter": 30 - }, - { - "quarter": "Q3", - "costPerMeter": 60 - }, - { - "quarter": "Q4", - "costPerMeter": 68 - } - ], - "'2023'": [ - { - "quarter": "Q1", - "costPerMeter": 14 - }, - { - "quarter": "Q2", - "costPerMeter": 28 - }, - { - "quarter": "Q3", - "costPerMeter": 55 - }, - { - "quarter": "Q4", - "costPerMeter": 58 - } - ], - "'2022'": [ - { - "quarter": "Q1", - "costPerMeter": 16 - }, - { - "quarter": "Q2", - "costPerMeter": 22 - }, - { - "quarter": "Q3", - "costPerMeter": 50 - }, - { - "quarter": "Q4", - "costPerMeter": 54 - } - ], - "'2021'": [ - { - "quarter": "Q1", - "costPerMeter": 12 - }, - { - "quarter": "Q2", - "costPerMeter": 20 - }, - { - "quarter": "Q3", - "costPerMeter": 45 - }, - { - "quarter": "Q4", - "costPerMeter": 48 - } - ], - "'2020'": [ - { - "quarter": "Q1", - "costPerMeter": 10 - }, - { - "quarter": "Q2", - "costPerMeter": 25 - }, - { - "quarter": "Q3", - "costPerMeter": 50 - }, - { - "quarter": "Q4", - "costPerMeter": 55 - } - ] - }, - "fuelCostsPerMonth": [ - { - "month": "Jan", - "cost": 75 - }, - { - "month": "Feb", - "cost": 80 - }, - { - "month": "Mar", - "cost": 150 - }, - { - "month": "Apr", - "cost": 260 - }, - { - "month": "May", - "cost": 280 - }, - { - "month": "Jun", - "cost": 290 - }, - { - "month": "Jul", - "cost": 310 - }, - { - "month": "Aug", - "cost": 240 - }, - { - "month": "Sep", - "cost": 270 - }, - { - "month": "Oct", - "cost": 300 - }, - { - "month": "Nov", - "cost": 320 - }, - { - "month": "Dec", - "cost": 310 - } - ] - }, - { - "vehicleId": "A00104", - "costPerType": { - "ytd": [ - { - "value": 60, - "category": "Fuel", - "summary": "Fuel: 60%" - }, - { - "value": 20, - "category": "Maintenance", - "summary": "Maintenance: 20%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "3months": [ - { - "value": 55, - "category": "Fuel", - "summary": "Fuel: 55%" - }, - { - "value": 25, - "category": "Maintenance", - "summary": "Maintenance: 25%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "6months": [ - { - "value": 57, - "category": "Fuel", - "summary": "Fuel: 57%" - }, - { - "value": 23, - "category": "Maintenance", - "summary": "Maintenance: 23%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "12months": [ - { - "value": 58, - "category": "Fuel", - "summary": "Fuel: 58%" - }, - { - "value": 22, - "category": "Maintenance", - "summary": "Maintenance: 22%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ] - }, - "costsPerMeterPerQuarter": { - "ytd": [ - { - "quarter": "Q1", - "costPerMeter": 12 - }, - { - "quarter": "Q2", - "costPerMeter": 30 - }, - { - "quarter": "Q3", - "costPerMeter": 52 - }, - { - "quarter": "Q4", - "costPerMeter": 50 - } - ], - "'2023'": [ - { - "quarter": "Q1", - "costPerMeter": 14 - }, - { - "quarter": "Q2", - "costPerMeter": 28 - }, - { - "quarter": "Q3", - "costPerMeter": 50 - }, - { - "quarter": "Q4", - "costPerMeter": 56 - } - ], - "'2022'": [ - { - "quarter": "Q1", - "costPerMeter": 16 - }, - { - "quarter": "Q2", - "costPerMeter": 24 - }, - { - "quarter": "Q3", - "costPerMeter": 48 - }, - { - "quarter": "Q4", - "costPerMeter": 51 - } - ], - "'2021'": [ - { - "quarter": "Q1", - "costPerMeter": 13 - }, - { - "quarter": "Q2", - "costPerMeter": 19 - }, - { - "quarter": "Q3", - "costPerMeter": 42 - }, - { - "quarter": "Q4", - "costPerMeter": 45 - } - ], - "'2020'": [ - { - "quarter": "Q1", - "costPerMeter": 9 - }, - { - "quarter": "Q2", - "costPerMeter": 21 - }, - { - "quarter": "Q3", - "costPerMeter": 46 - }, - { - "quarter": "Q4", - "costPerMeter": 50 - } - ] - }, - "fuelCostsPerMonth": [ - - { - "month": "Jan", - "cost": 70 - }, - { - "month": "Feb", - "cost": 85 - }, - { - "month": "Mar", - "cost": 140 - }, - { - "month": "Apr", - "cost": 250 - }, - { - "month": "May", - "cost": 270 - }, - { - "month": "Jun", - "cost": 280 - }, - { - "month": "Jul", - "cost": 310 - }, - { - "month": "Aug", - "cost": 240 - }, - { - "month": "Sep", - "cost": 260 - }, - { - "month": "Oct", - "cost": 295 - }, - { - "month": "Nov", - "cost": 320 - }, - { - "month": "Dec", - "cost": 310 - } - ] - }, - { - "vehicleId": "A00105", - "costPerType": { - "ytd": [ - { - "value": 62, - "category": "Fuel", - "summary": "Fuel: 62%" - }, - { - "value": 18, - "category": "Maintenance", - "summary": "Maintenance: 18%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "3months": [ - { - "value": 57, - "category": "Fuel", - "summary": "Fuel: 57%" - }, - { - "value": 23, - "category": "Maintenance", - "summary": "Maintenance: 23%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "6months": [ - { - "value": 54, - "category": "Fuel", - "summary": "Fuel: 54%" - }, - { - "value": 26, - "category": "Maintenance", - "summary": "Maintenance: 26%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "12months": [ - { - "value": 56, - "category": "Fuel", - "summary": "Fuel: 56%" - }, - { - "value": 24, - "category": "Maintenance", - "summary": "Maintenance: 24%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ] - }, - "costsPerMeterPerQuarter": { - "ytd": [ - { - "quarter": "Q1", - "costPerMeter": 16 - }, - { - "quarter": "Q2", - "costPerMeter": 29 - }, - { - "quarter": "Q3", - "costPerMeter": 53 - }, - { - "quarter": "Q4", - "costPerMeter": 49 - } - ], - "'2023'": [ - { - "quarter": "Q1", - "costPerMeter": 15 - }, - { - "quarter": "Q2", - "costPerMeter": 28 - }, - { - "quarter": "Q3", - "costPerMeter": 49 - }, - { - "quarter": "Q4", - "costPerMeter": 58 - } - ], - "'2022'": [ - { - "quarter": "Q1", - "costPerMeter": 19 - }, - { - "quarter": "Q2", - "costPerMeter": 23 - }, - { - "quarter": "Q3", - "costPerMeter": 44 - }, - { - "quarter": "Q4", - "costPerMeter": 52 - } - ], - "'2021'": [ - { - "quarter": "Q1", - "costPerMeter": 12 - }, - { - "quarter": "Q2", - "costPerMeter": 20 - }, - { - "quarter": "Q3", - "costPerMeter": 41 - }, - { - "quarter": "Q4", - "costPerMeter": 48 - } - ], - "'2020'": [ - { - "quarter": "Q1", - "costPerMeter": 11 - }, - { - "quarter": "Q2", - "costPerMeter": 20 - }, - { - "quarter": "Q3", - "costPerMeter": 46 - }, - { - "quarter": "Q4", - "costPerMeter": 51 - } - ] - }, - "fuelCostsPerMonth": [ - { - "month": "Jan", - "cost": 78 - }, - { - "month": "Feb", - "cost": 92 - }, - { - "month": "Mar", - "cost": 155 - }, - { - "month": "Apr", - "cost": 245 - }, - { - "month": "May", - "cost": 268 - }, - { - "month": "Jun", - "cost": 290 - }, - { - "month": "Jul", - "cost": 320 - }, - { - "month": "Aug", - "cost": 260 - }, - { - "month": "Sep", - "cost": 275 - }, - { - "month": "Oct", - "cost": 295 - }, - { - "month": "Nov", - "cost": 330 - }, - { - "month": "Dec", - "cost": 315 - } - ] - }, - { - "vehicleId": "A00106", - "costPerType": { - "ytd": [ - { - "value": 60, - "category": "Fuel", - "summary": "Fuel: 60%" - }, - { - "value": 25, - "category": "Maintenance", - "summary": "Maintenance: 25%" - }, - { - "value": 15, - "category": "Other", - "summary": "Other: 15%" - } - ], - "3months": [ - { - "value": 55, - "category": "Fuel", - "summary": "Fuel: 55%" - }, - { - "value": 30, - "category": "Maintenance", - "summary": "Maintenance: 30%" - }, - { - "value": 15, - "category": "Other", - "summary": "Other: 15%" - } - ], - "6months": [ - { - "value": 58, - "category": "Fuel", - "summary": "Fuel: 58%" - }, - { - "value": 27, - "category": "Maintenance", - "summary": "Maintenance: 27%" - }, - { - "value": 15, - "category": "Other", - "summary": "Other: 15%" - } - ], - "12months": [ - { - "value": 56, - "category": "Fuel", - "summary": "Fuel: 56%" - }, - { - "value": 29, - "category": "Maintenance", - "summary": "Maintenance: 29%" - }, - { - "value": 15, - "category": "Other", - "summary": "Other: 15%" - } - ] - }, - "costsPerMeterPerQuarter": { - "ytd": [ - { - "quarter": "Q1", - "costPerMeter": 15 - }, - { - "quarter": "Q2", - "costPerMeter": 30 - }, - { - "quarter": "Q3", - "costPerMeter": 60 - }, - { - "quarter": "Q4", - "costPerMeter": 45 - } - ], - "'2023'": [ - { - "quarter": "Q1", - "costPerMeter": 18 - }, - { - "quarter": "Q2", - "costPerMeter": 28 - }, - { - "quarter": "Q3", - "costPerMeter": 55 - }, - { - "quarter": "Q4", - "costPerMeter": 62 - } - ], - "'2022'": [ - { - "quarter": "Q1", - "costPerMeter": 16 - }, - { - "quarter": "Q2", - "costPerMeter": 25 - }, - { - "quarter": "Q3", - "costPerMeter": 50 - }, - { - "quarter": "Q4", - "costPerMeter": 53 - } - ], - "'2021'": [ - { - "quarter": "Q1", - "costPerMeter": 12 - }, - { - "quarter": "Q2", - "costPerMeter": 22 - }, - { - "quarter": "Q3", - "costPerMeter": 48 - }, - { - "quarter": "Q4", - "costPerMeter": 45 - } - ], - "'2020'": [ - { - "quarter": "Q1", - "costPerMeter": 10 - }, - { - "quarter": "Q2", - "costPerMeter": 20 - }, - { - "quarter": "Q3", - "costPerMeter": 42 - }, - { - "quarter": "Q4", - "costPerMeter": 50 - } - ] - }, - "fuelCostsPerMonth": [ - { - "month": "Jan", - "cost": 65 - }, - { - "month": "Feb", - "cost": 78 - }, - { - "month": "Mar", - "cost": 150 - }, - { - "month": "Apr", - "cost": 245 - }, - { - "month": "May", - "cost": 270 - }, - { - "month": "Jun", - "cost": 280 - }, - { - "month": "Jul", - "cost": 310 - }, - { - "month": "Aug", - "cost": 235 - }, - { - "month": "Sep", - "cost": 270 - }, - { - "month": "Oct", - "cost": 290 - }, - { - "month": "Nov", - "cost": 320 - }, - { - "month": "Dec", - "cost": 305 - } - ] - }, - { - "vehicleId": "A00107", - "costPerType": { - "ytd": [ - { - "value": 60, - "category": "Fuel", - "summary": "Fuel: 60%" - }, - { - "value": 20, - "category": "Maintenance", - "summary": "Maintenance: 20%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "3months": [ - { - "value": 55, - "category": "Fuel", - "summary": "Fuel: 55%" - }, - { - "value": 25, - "category": "Maintenance", - "summary": "Maintenance: 25%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "6months": [ - { - "value": 57, - "category": "Fuel", - "summary": "Fuel: 57%" - }, - { - "value": 23, - "category": "Maintenance", - "summary": "Maintenance: 23%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "12months": [ - { - "value": 58, - "category": "Fuel", - "summary": "Fuel: 58%" - }, - { - "value": 22, - "category": "Maintenance", - "summary": "Maintenance: 22%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ] - }, - "costsPerMeterPerQuarter": { - "ytd": [ - { - "quarter": "Q1", - "costPerMeter": 12 - }, - { - "quarter": "Q2", - "costPerMeter": 29 - }, - { - "quarter": "Q3", - "costPerMeter": 57 - }, - { - "quarter": "Q4", - "costPerMeter": 68 - } - ], - "'2023'": [ - { - "quarter": "Q1", - "costPerMeter": 14 - }, - { - "quarter": "Q2", - "costPerMeter": 27 - }, - { - "quarter": "Q3", - "costPerMeter": 52 - }, - { - "quarter": "Q4", - "costPerMeter": 58 - } - ], - "'2022'": [ - { - "quarter": "Q1", - "costPerMeter": 16 - }, - { - "quarter": "Q2", - "costPerMeter": 24 - }, - { - "quarter": "Q3", - "costPerMeter": 47 - }, - { - "quarter": "Q4", - "costPerMeter": 53 - } - ], - "'2021'": [ - { - "quarter": "Q1", - "costPerMeter": 11 - }, - { - "quarter": "Q2", - "costPerMeter": 21 - }, - { - "quarter": "Q3", - "costPerMeter": 43 - }, - { - "quarter": "Q4", - "costPerMeter": 48 - } - ], - "'2020'": [ - { - "quarter": "Q1", - "costPerMeter": 9 - }, - { - "quarter": "Q2", - "costPerMeter": 23 - }, - { - "quarter": "Q3", - "costPerMeter": 46 - }, - { - "quarter": "Q4", - "costPerMeter": 51 - } - ] - }, - "fuelCostsPerMonth": [ - { - "month": "Jan", - "cost": 65 - }, - { - "month": "Feb", - "cost": 80 - }, - { - "month": "Mar", - "cost": 150 - }, - { - "month": "Apr", - "cost": 250 - }, - { - "month": "May", - "cost": 275 - }, - { - "month": "Jun", - "cost": 285 - }, - { - "month": "Jul", - "cost": 310 - }, - { - "month": "Aug", - "cost": 240 - }, - { - "month": "Sep", - "cost": 270 - }, - { - "month": "Oct", - "cost": 295 - }, - { - "month": "Nov", - "cost": 320 - }, - { - "month": "Dec", - "cost": 310 - } - ] - }, - { - "vehicleId": "A00108", - "costPerType": { - "ytd": [ - { - "value": 60, - "category": "Fuel", - "summary": "Fuel: 60%" - }, - { - "value": 20, - "category": "Maintenance", - "summary": "Maintenance: 20%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "3months": [ - { - "value": 55, - "category": "Fuel", - "summary": "Fuel: 55%" - }, - { - "value": 25, - "category": "Maintenance", - "summary": "Maintenance: 25%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "6months": [ - { - "value": 57, - "category": "Fuel", - "summary": "Fuel: 57%" - }, - { - "value": 23, - "category": "Maintenance", - "summary": "Maintenance: 23%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "12months": [ - { - "value": 58, - "category": "Fuel", - "summary": "Fuel: 58%" - }, - { - "value": 22, - "category": "Maintenance", - "summary": "Maintenance: 22%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ] - }, - "costsPerMeterPerQuarter": { - "ytd": [ - { - "quarter": "Q1", - "costPerMeter": 12 - }, - { - "quarter": "Q2", - "costPerMeter": 29 - }, - { - "quarter": "Q3", - "costPerMeter": 57 - }, - { - "quarter": "Q4", - "costPerMeter": 53 - } - ], - "'2023'": [ - { - "quarter": "Q1", - "costPerMeter": 14 - }, - { - "quarter": "Q2", - "costPerMeter": 27 - }, - { - "quarter": "Q3", - "costPerMeter": 52 - }, - { - "quarter": "Q4", - "costPerMeter": 58 - } - ], - "'2022'": [ - { - "quarter": "Q1", - "costPerMeter": 16 - }, - { - "quarter": "Q2", - "costPerMeter": 24 - }, - { - "quarter": "Q3", - "costPerMeter": 47 - }, - { - "quarter": "Q4", - "costPerMeter": 53 - } - ], - "'2021'": [ - { - "quarter": "Q1", - "costPerMeter": 11 - }, - { - "quarter": "Q2", - "costPerMeter": 21 - }, - { - "quarter": "Q3", - "costPerMeter": 43 - }, - { - "quarter": "Q4", - "costPerMeter": 48 - } - ], - "'2020'": [ - { - "quarter": "Q1", - "costPerMeter": 9 - }, - { - "quarter": "Q2", - "costPerMeter": 23 - }, - { - "quarter": "Q3", - "costPerMeter": 46 - }, - { - "quarter": "Q4", - "costPerMeter": 51 - } - ] - }, - "fuelCostsPerMonth": [ - { - "month": "Jan", - "cost": 65 - }, - { - "month": "Feb", - "cost": 80 - }, - { - "month": "Mar", - "cost": 150 - }, - { - "month": "Apr", - "cost": 250 - }, - { - "month": "May", - "cost": 275 - }, - { - "month": "Jun", - "cost": 285 - }, - { - "month": "Jul", - "cost": 310 - }, - { - "month": "Aug", - "cost": 240 - }, - { - "month": "Sep", - "cost": 270 - }, - { - "month": "Oct", - "cost": 295 - }, - { - "month": "Nov", - "cost": 320 - }, - { - "month": "Dec", - "cost": 310 - } - ] - }, - { - "vehicleId": "A00109", - "costPerType": { - "ytd": [ - { - "value": 60, - "category": "Fuel", - "summary": "Fuel: 60%" - }, - { - "value": 25, - "category": "Maintenance", - "summary": "Maintenance: 25%" - }, - { - "value": 15, - "category": "Other", - "summary": "Other: 15%" - } - ], - "3months": [ - { - "value": 55, - "category": "Fuel", - "summary": "Fuel: 55%" - }, - { - "value": 30, - "category": "Maintenance", - "summary": "Maintenance: 30%" - }, - { - "value": 15, - "category": "Other", - "summary": "Other: 15%" - } - ], - "6months": [ - { - "value": 57, - "category": "Fuel", - "summary": "Fuel: 57%" - }, - { - "value": 28, - "category": "Maintenance", - "summary": "Maintenance: 28%" - }, - { - "value": 15, - "category": "Other", - "summary": "Other: 15%" - } - ], - "12months": [ - { - "value": 58, - "category": "Fuel", - "summary": "Fuel: 58%" - }, - { - "value": 27, - "category": "Maintenance", - "summary": "Maintenance: 27%" - }, - { - "value": 15, - "category": "Other", - "summary": "Other: 15%" - } - ] - }, - "costsPerMeterPerQuarter": { - "ytd": [ - { - "quarter": "Q1", - "costPerMeter": 15 - }, - { - "quarter": "Q2", - "costPerMeter": 30 - }, - { - "quarter": "Q3", - "costPerMeter": 50 - }, - { - "quarter": "Q4", - "costPerMeter": 65 - } - ], - "'2023'": [ - { - "quarter": "Q1", - "costPerMeter": 12 - }, - { - "quarter": "Q2", - "costPerMeter": 28 - }, - { - "quarter": "Q3", - "costPerMeter": 55 - }, - { - "quarter": "Q4", - "costPerMeter": 60 - } - ], - "'2022'": [ - { - "quarter": "Q1", - "costPerMeter": 18 - }, - { - "quarter": "Q2", - "costPerMeter": 25 - }, - { - "quarter": "Q3", - "costPerMeter": 48 - }, - { - "quarter": "Q4", - "costPerMeter": 53 - } - ], - "'2021'": [ - { - "quarter": "Q1", - "costPerMeter": 14 - }, - { - "quarter": "Q2", - "costPerMeter": 22 - }, - { - "quarter": "Q3", - "costPerMeter": 44 - }, - { - "quarter": "Q4", - "costPerMeter": 49 - } - ], - "'2020'": [ - { - "quarter": "Q1", - "costPerMeter": 10 - }, - { - "quarter": "Q2", - "costPerMeter": 24 - }, - { - "quarter": "Q3", - "costPerMeter": 47 - }, - { - "quarter": "Q4", - "costPerMeter": 52 - } - ] - }, - "fuelCostsPerMonth": [ - { - "month": "Jan", - "cost": 70 - }, - { - "month": "Feb", - "cost": 75 - }, - { - "month": "Mar", - "cost": 150 - }, - { - "month": "Apr", - "cost": 245 - }, - { - "month": "May", - "cost": 270 - }, - { - "month": "Jun", - "cost": 290 - }, - { - "month": "Jul", - "cost": 305 - }, - { - "month": "Aug", - "cost": 250 - }, - { - "month": "Sep", - "cost": 275 - }, - { - "month": "Oct", - "cost": 300 - }, - { - "month": "Nov", - "cost": 315 - }, - { - "month": "Dec", - "cost": 310 - } - ] - }, - { - "vehicleId": "A00110", - "costPerType": { - "ytd": [ - { - "value": 60, - "category": "Fuel", - "summary": "Fuel: 60%" - }, - { - "value": 30, - "category": "Maintenance", - "summary": "Maintenance: 30%" - }, - { - "value": 10, - "category": "Other", - "summary": "Other: 10%" - } - ], - "3months": [ - { - "value": 58, - "category": "Fuel", - "summary": "Fuel: 58%" - }, - { - "value": 32, - "category": "Maintenance", - "summary": "Maintenance: 32%" - }, - { - "value": 10, - "category": "Other", - "summary": "Other: 10%" - } - ], - "6months": [ - { - "value": 57, - "category": "Fuel", - "summary": "Fuel: 57%" - }, - { - "value": 33, - "category": "Maintenance", - "summary": "Maintenance: 33%" - }, - { - "value": 10, - "category": "Other", - "summary": "Other: 10%" - } - ], - "12months": [ - { - "value": 55, - "category": "Fuel", - "summary": "Fuel: 55%" - }, - { - "value": 35, - "category": "Maintenance", - "summary": "Maintenance: 35%" - }, - { - "value": 10, - "category": "Other", - "summary": "Other: 10%" - } - ] - }, - "costsPerMeterPerQuarter": { - "ytd": [ - { - "quarter": "Q1", - "costPerMeter": 15 - }, - { - "quarter": "Q2", - "costPerMeter": 30 - }, - { - "quarter": "Q3", - "costPerMeter": 50 - }, - { - "quarter": "Q4", - "costPerMeter": 47 - } - ], - "'2023'": [ - { - "quarter": "Q1", - "costPerMeter": 12 - }, - { - "quarter": "Q2", - "costPerMeter": 28 - }, - { - "quarter": "Q3", - "costPerMeter": 55 - }, - { - "quarter": "Q4", - "costPerMeter": 60 - } - ], - "'2022'": [ - { - "quarter": "Q1", - "costPerMeter": 18 - }, - { - "quarter": "Q2", - "costPerMeter": 25 - }, - { - "quarter": "Q3", - "costPerMeter": 48 - }, - { - "quarter": "Q4", - "costPerMeter": 53 - } - ], - "'2021'": [ - { - "quarter": "Q1", - "costPerMeter": 14 - }, - { - "quarter": "Q2", - "costPerMeter": 22 - }, - { - "quarter": "Q3", - "costPerMeter": 44 - }, - { - "quarter": "Q4", - "costPerMeter": 49 - } - ], - "'2020'": [ - { - "quarter": "Q1", - "costPerMeter": 10 - }, - { - "quarter": "Q2", - "costPerMeter": 24 - }, - { - "quarter": "Q3", - "costPerMeter": 47 - }, - { - "quarter": "Q4", - "costPerMeter": 52 - } - ] - }, - "fuelCostsPerMonth": [ - { - "month": "Jan", - "cost": 70 - }, - { - "month": "Feb", - "cost": 75 - }, - { - "month": "Mar", - "cost": 150 - }, - { - "month": "Apr", - "cost": 245 - }, - { - "month": "May", - "cost": 270 - }, - { - "month": "Jun", - "cost": 290 - }, - { - "month": "Jul", - "cost": 305 - }, - { - "month": "Aug", - "cost": 250 - }, - { - "month": "Sep", - "cost": 275 - }, - { - "month": "Oct", - "cost": 300 - }, - { - "month": "Nov", - "cost": 315 - }, - { - "month": "Dec", - "cost": 310 - } - ] - }, - { - "vehicleId": "A00111", - "costPerType": { - "ytd": [ - { - "value": 60, - "category": "Fuel", - "summary": "Fuel: 60%" - }, - { - "value": 30, - "category": "Maintenance", - "summary": "Maintenance: 30%" - }, - { - "value": 10, - "category": "Other", - "summary": "Other: 10%" - } - ], - "3months": [ - { - "value": 58, - "category": "Fuel", - "summary": "Fuel: 58%" - }, - { - "value": 32, - "category": "Maintenance", - "summary": "Maintenance: 32%" - }, - { - "value": 10, - "category": "Other", - "summary": "Other: 10%" - } - ], - "6months": [ - { - "value": 56, - "category": "Fuel", - "summary": "Fuel: 56%" - }, - { - "value": 34, - "category": "Maintenance", - "summary": "Maintenance: 34%" - }, - { - "value": 10, - "category": "Other", - "summary": "Other: 10%" - } - ], - "12months": [ - { - "value": 55, - "category": "Fuel", - "summary": "Fuel: 55%" - }, - { - "value": 35, - "category": "Maintenance", - "summary": "Maintenance: 35%" - }, - { - "value": 10, - "category": "Other", - "summary": "Other: 10%" - } - ] - }, - "costsPerMeterPerQuarter": { - "ytd": [ - { - "quarter": "Q1", - "costPerMeter": 15 - }, - { - "quarter": "Q2", - "costPerMeter": 25 - }, - { - "quarter": "Q3", - "costPerMeter": 50 - }, - { - "quarter": "Q4", - "costPerMeter": 63 - } - ], - "'2023'": [ - { - "quarter": "Q1", - "costPerMeter": 12 - }, - { - "quarter": "Q2", - "costPerMeter": 28 - }, - { - "quarter": "Q3", - "costPerMeter": 52 - }, - { - "quarter": "Q4", - "costPerMeter": 58 - } - ], - "'2022'": [ - { - "quarter": "Q1", - "costPerMeter": 14 - }, - { - "quarter": "Q2", - "costPerMeter": 22 - }, - { - "quarter": "Q3", - "costPerMeter": 48 - }, - { - "quarter": "Q4", - "costPerMeter": 54 - } - ], - "'2021'": [ - { - "quarter": "Q1", - "costPerMeter": 10 - }, - { - "quarter": "Q2", - "costPerMeter": 20 - }, - { - "quarter": "Q3", - "costPerMeter": 40 - }, - { - "quarter": "Q4", - "costPerMeter": 45 - } - ], - "'2020'": [ - { - "quarter": "Q1", - "costPerMeter": 9 - }, - { - "quarter": "Q2", - "costPerMeter": 21 - }, - { - "quarter": "Q3", - "costPerMeter": 47 - }, - { - "quarter": "Q4", - "costPerMeter": 53 - } - ] - }, - "fuelCostsPerMonth": [ - { - "month": "Jan", - "cost": 70 - }, - { - "month": "Feb", - "cost": 80 - }, - { - "month": "Mar", - "cost": 150 - }, - { - "month": "Apr", - "cost": 250 - }, - { - "month": "May", - "cost": 270 - }, - { - "month": "Jun", - "cost": 290 - }, - { - "month": "Jul", - "cost": 310 - }, - { - "month": "Aug", - "cost": 260 - }, - { - "month": "Sep", - "cost": 280 - }, - { - "month": "Oct", - "cost": 295 - }, - { - "month": "Nov", - "cost": 320 - }, - { - "month": "Dec", - "cost": 305 - } - ] - }, - { - "vehicleId": "A00112", - "costPerType": { - "ytd": [ - { - "value": 48, - "category": "Fuel", - "summary": "Fuel: 48%" - }, - { - "value": 32, - "category": "Maintenance", - "summary": "Maintenance: 32%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "3months": [ - { - "value": 45, - "category": "Fuel", - "summary": "Fuel: 45%" - }, - { - "value": 35, - "category": "Maintenance", - "summary": "Maintenance: 35%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "6months": [ - { - "value": 50, - "category": "Fuel", - "summary": "Fuel: 50%" - }, - { - "value": 30, - "category": "Maintenance", - "summary": "Maintenance: 30%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "12months": [ - { - "value": 49, - "category": "Fuel", - "summary": "Fuel: 49%" - }, - { - "value": 31, - "category": "Maintenance", - "summary": "Maintenance: 31%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ] - }, - "costsPerMeterPerQuarter": { - "ytd": [ - { - "quarter": "Q1", - "costPerMeter": 15 - }, - { - "quarter": "Q2", - "costPerMeter": 20 - }, - { - "quarter": "Q3", - "costPerMeter": 50 - }, - { - "quarter": "Q4", - "costPerMeter": 55 - } - ], - "'2023'": [ - { - "quarter": "Q1", - "costPerMeter": 14 - }, - { - "quarter": "Q2", - "costPerMeter": 22 - }, - { - "quarter": "Q3", - "costPerMeter": 47 - }, - { - "quarter": "Q4", - "costPerMeter": 55 - } - ], - "'2022'": [ - { - "quarter": "Q1", - "costPerMeter": 18 - }, - { - "quarter": "Q2", - "costPerMeter": 25 - }, - { - "quarter": "Q3", - "costPerMeter": 44 - }, - { - "quarter": "Q4", - "costPerMeter": 51 - } - ], - "'2021'": [ - { - "quarter": "Q1", - "costPerMeter": 12 - }, - { - "quarter": "Q2", - "costPerMeter": 19 - }, - { - "quarter": "Q3", - "costPerMeter": 38 - }, - { - "quarter": "Q4", - "costPerMeter": 46 - } - ], - "'2020'": [ - { - "quarter": "Q1", - "costPerMeter": 10 - }, - { - "quarter": "Q2", - "costPerMeter": 21 - }, - { - "quarter": "Q3", - "costPerMeter": 42 - }, - { - "quarter": "Q4", - "costPerMeter": 49 - } - ] - }, - "fuelCostsPerMonth": [ - { - "month": "Jan", - "cost": 72 - }, - { - "month": "Feb", - "cost": 84 - }, - { - "month": "Mar", - "cost": 150 - }, - { - "month": "Apr", - "cost": 230 - }, - { - "month": "May", - "cost": 245 - }, - { - "month": "Jun", - "cost": 265 - }, - { - "month": "Jul", - "cost": 290 - }, - { - "month": "Aug", - "cost": 240 - }, - { - "month": "Sep", - "cost": 255 - }, - { - "month": "Oct", - "cost": 270 - }, - { - "month": "Nov", - "cost": 290 - }, - { - "month": "Dec", - "cost": 280 - } - ] - }, - { - "vehicleId": "A00113", - "costPerType": { - "ytd": [ - { - "value": 55, - "category": "Fuel", - "summary": "Fuel: 55%" - }, - { - "value": 25, - "category": "Maintenance", - "summary": "Maintenance: 25%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "3months": [ - { - "value": 50, - "category": "Fuel", - "summary": "Fuel: 50%" - }, - { - "value": 30, - "category": "Maintenance", - "summary": "Maintenance: 30%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "6months": [ - { - "value": 52, - "category": "Fuel", - "summary": "Fuel: 52%" - }, - { - "value": 28, - "category": "Maintenance", - "summary": "Maintenance: 28%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "12months": [ - { - "value": 53, - "category": "Fuel", - "summary": "Fuel: 53%" - }, - { - "value": 27, - "category": "Maintenance", - "summary": "Maintenance: 27%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ] - }, - "costsPerMeterPerQuarter": { - "ytd": [ - { - "quarter": "Q1", - "costPerMeter": 10 - }, - { - "quarter": "Q2", - "costPerMeter": 28 - }, - { - "quarter": "Q3", - "costPerMeter": 55 - }, - { - "quarter": "Q4", - "costPerMeter": 68 - } - ], - "'2023'": [ - { - "quarter": "Q1", - "costPerMeter": 12 - }, - { - "quarter": "Q2", - "costPerMeter": 25 - }, - { - "quarter": "Q3", - "costPerMeter": 50 - }, - { - "quarter": "Q4", - "costPerMeter": 55 - } - ], - "'2022'": [ - { - "quarter": "Q1", - "costPerMeter": 15 - }, - { - "quarter": "Q2", - "costPerMeter": 20 - }, - { - "quarter": "Q3", - "costPerMeter": 45 - }, - { - "quarter": "Q4", - "costPerMeter": 37 - } - ], - "'2021'": [ - { - "quarter": "Q1", - "costPerMeter": 10 - }, - { - "quarter": "Q2", - "costPerMeter": 18 - }, - { - "quarter": "Q3", - "costPerMeter": 40 - }, - { - "quarter": "Q4", - "costPerMeter": 44 - } - ], - "'2020'": [ - { - "quarter": "Q1", - "costPerMeter": 8 - }, - { - "quarter": "Q2", - "costPerMeter": 22 - }, - { - "quarter": "Q3", - "costPerMeter": 48 - }, - { - "quarter": "Q4", - "costPerMeter": 53 - } - ] - }, - "fuelCostsPerMonth": [ - - { - "month": "Jan", - "cost": 62 - }, - { - "month": "Feb", - "cost": 76 - }, - { - "month": "Mar", - "cost": 146 - }, - { - "month": "Apr", - "cost": 240 - }, - { - "month": "May", - "cost": 265 - }, - { - "month": "Jun", - "cost": 275 - }, - { - "month": "Jul", - "cost": 300 - }, - { - "month": "Aug", - "cost": 230 - }, - { - "month": "Sep", - "cost": 265 - }, - { - "month": "Oct", - "cost": 287 - }, - { - "month": "Nov", - "cost": 310 - }, - { - "month": "Dec", - "cost": 295 - } - ] - }, - { - "vehicleId": "A00114", - "costPerType": { - "ytd": [ - { - "value": 55, - "category": "Fuel", - "summary": "Fuel: 55%" - }, - { - "value": 25, - "category": "Maintenance", - "summary": "Maintenance: 25%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "3months": [ - { - "value": 50, - "category": "Fuel", - "summary": "Fuel: 50%" - }, - { - "value": 30, - "category": "Maintenance", - "summary": "Maintenance: 30%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "6months": [ - { - "value": 52, - "category": "Fuel", - "summary": "Fuel: 52%" - }, - { - "value": 28, - "category": "Maintenance", - "summary": "Maintenance: 28%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "12months": [ - { - "value": 53, - "category": "Fuel", - "summary": "Fuel: 53%" - }, - { - "value": 27, - "category": "Maintenance", - "summary": "Maintenance: 27%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ] - }, - "costsPerMeterPerQuarter": { - "ytd": [ - { - "quarter": "Q1", - "costPerMeter": 10 - }, - { - "quarter": "Q2", - "costPerMeter": 28 - }, - { - "quarter": "Q3", - "costPerMeter": 55 - }, - { - "quarter": "Q4", - "costPerMeter": 66 - } - ], - "'2023'": [ - { - "quarter": "Q1", - "costPerMeter": 12 - }, - { - "quarter": "Q2", - "costPerMeter": 25 - }, - { - "quarter": "Q3", - "costPerMeter": 50 - }, - { - "quarter": "Q4", - "costPerMeter": 55 - } - ], - "'2022'": [ - { - "quarter": "Q1", - "costPerMeter": 15 - }, - { - "quarter": "Q2", - "costPerMeter": 20 - }, - { - "quarter": "Q3", - "costPerMeter": 45 - }, - { - "quarter": "Q4", - "costPerMeter": 50 - } - ], - "'2021'": [ - { - "quarter": "Q1", - "costPerMeter": 10 - }, - { - "quarter": "Q2", - "costPerMeter": 18 - }, - { - "quarter": "Q3", - "costPerMeter": 40 - }, - { - "quarter": "Q4", - "costPerMeter": 42 - } - ], - "'2020'": [ - { - "quarter": "Q1", - "costPerMeter": 8 - }, - { - "quarter": "Q2", - "costPerMeter": 22 - }, - { - "quarter": "Q3", - "costPerMeter": 48 - }, - { - "quarter": "Q4", - "costPerMeter": 50 - } - ] - }, - "fuelCostsPerMonth": [ - { - "month": "Jan", - "cost": 62 - }, - { - "month": "Feb", - "cost": 76 - }, - { - "month": "Mar", - "cost": 146 - }, - { - "month": "Apr", - "cost": 240 - }, - { - "month": "May", - "cost": 265 - }, - { - "month": "Jun", - "cost": 275 - }, - { - "month": "Jul", - "cost": 300 - }, - { - "month": "Aug", - "cost": 230 - }, - { - "month": "Sep", - "cost": 265 - }, - { - "month": "Oct", - "cost": 287 - }, - { - "month": "Nov", - "cost": 310 - }, - { - "month": "Dec", - "cost": 295 - } - ] - }, - { - "vehicleId": "A00115", - "costPerType": { - "ytd": [ - { - "value": 60, - "category": "Fuel", - "summary": "Fuel: 60%" - }, - { - "value": 20, - "category": "Maintenance", - "summary": "Maintenance: 20%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "3months": [ - { - "value": 55, - "category": "Fuel", - "summary": "Fuel: 55%" - }, - { - "value": 25, - "category": "Maintenance", - "summary": "Maintenance: 25%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "6months": [ - { - "value": 58, - "category": "Fuel", - "summary": "Fuel: 58%" - }, - { - "value": 22, - "category": "Maintenance", - "summary": "Maintenance: 22%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "12months": [ - { - "value": 59, - "category": "Fuel", - "summary": "Fuel: 59%" - }, - { - "value": 21, - "category": "Maintenance", - "summary": "Maintenance: 21%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ] - }, - "costsPerMeterPerQuarter": { - "ytd": [ - { - "quarter": "Q1", - "costPerMeter": 15 - }, - { - "quarter": "Q2", - "costPerMeter": 30 - }, - { - "quarter": "Q3", - "costPerMeter": 60 - }, - { - "quarter": "Q4", - "costPerMeter": 47 - } - ], - "'2023'": [ - { - "quarter": "Q1", - "costPerMeter": 14 - }, - { - "quarter": "Q2", - "costPerMeter": 28 - }, - { - "quarter": "Q3", - "costPerMeter": 55 - }, - { - "quarter": "Q4", - "costPerMeter": 58 - } - ], - "'2022'": [ - { - "quarter": "Q1", - "costPerMeter": 16 - }, - { - "quarter": "Q2", - "costPerMeter": 22 - }, - { - "quarter": "Q3", - "costPerMeter": 50 - }, - { - "quarter": "Q4", - "costPerMeter": 54 - } - ], - "'2021'": [ - { - "quarter": "Q1", - "costPerMeter": 12 - }, - { - "quarter": "Q2", - "costPerMeter": 20 - }, - { - "quarter": "Q3", - "costPerMeter": 45 - }, - { - "quarter": "Q4", - "costPerMeter": 48 - } - ], - "'2020'": [ - { - "quarter": "Q1", - "costPerMeter": 10 - }, - { - "quarter": "Q2", - "costPerMeter": 25 - }, - { - "quarter": "Q3", - "costPerMeter": 50 - }, - { - "quarter": "Q4", - "costPerMeter": 55 - } - ] - }, - "fuelCostsPerMonth": [ - { - "month": "Jan", - "cost": 75 - }, - { - "month": "Feb", - "cost": 80 - }, - { - "month": "Mar", - "cost": 150 - }, - { - "month": "Apr", - "cost": 260 - }, - { - "month": "May", - "cost": 280 - }, - { - "month": "Jun", - "cost": 290 - }, - { - "month": "Jul", - "cost": 310 - }, - { - "month": "Aug", - "cost": 240 - }, - { - "month": "Sep", - "cost": 270 - }, - { - "month": "Oct", - "cost": 300 - }, - { - "month": "Nov", - "cost": 320 - }, - { - "month": "Dec", - "cost": 310 - } - ] - }, - { - "vehicleId": "A00116", - "costPerType": { - "ytd": [ - { - "value": 60, - "category": "Fuel", - "summary": "Fuel: 60%" - }, - { - "value": 20, - "category": "Maintenance", - "summary": "Maintenance: 20%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "3months": [ - { - "value": 55, - "category": "Fuel", - "summary": "Fuel: 55%" - }, - { - "value": 25, - "category": "Maintenance", - "summary": "Maintenance: 25%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "6months": [ - { - "value": 57, - "category": "Fuel", - "summary": "Fuel: 57%" - }, - { - "value": 23, - "category": "Maintenance", - "summary": "Maintenance: 23%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "12months": [ - { - "value": 58, - "category": "Fuel", - "summary": "Fuel: 58%" - }, - { - "value": 22, - "category": "Maintenance", - "summary": "Maintenance: 22%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ] - }, - "costsPerMeterPerQuarter": { - "ytd": [ - { - "quarter": "Q1", - "costPerMeter": 12 - }, - { - "quarter": "Q2", - "costPerMeter": 30 - }, - { - "quarter": "Q3", - "costPerMeter": 52 - }, - { - "quarter": "Q4", - "costPerMeter": 68 - } - ], - "'2023'": [ - { - "quarter": "Q1", - "costPerMeter": 14 - }, - { - "quarter": "Q2", - "costPerMeter": 28 - }, - { - "quarter": "Q3", - "costPerMeter": 50 - }, - { - "quarter": "Q4", - "costPerMeter": 56 - } - ], - "'2022'": [ - { - "quarter": "Q1", - "costPerMeter": 16 - }, - { - "quarter": "Q2", - "costPerMeter": 24 - }, - { - "quarter": "Q3", - "costPerMeter": 48 - }, - { - "quarter": "Q4", - "costPerMeter": 51 - } - ], - "'2021'": [ - { - "quarter": "Q1", - "costPerMeter": 13 - }, - { - "quarter": "Q2", - "costPerMeter": 19 - }, - { - "quarter": "Q3", - "costPerMeter": 42 - }, - { - "quarter": "Q4", - "costPerMeter": 45 - } - ], - "'2020'": [ - { - "quarter": "Q1", - "costPerMeter": 9 - }, - { - "quarter": "Q2", - "costPerMeter": 21 - }, - { - "quarter": "Q3", - "costPerMeter": 46 - }, - { - "quarter": "Q4", - "costPerMeter": 50 - } - ] - }, - "fuelCostsPerMonth": [ - - { - "month": "Jan", - "cost": 70 - }, - { - "month": "Feb", - "cost": 85 - }, - { - "month": "Mar", - "cost": 140 - }, - { - "month": "Apr", - "cost": 250 - }, - { - "month": "May", - "cost": 270 - }, - { - "month": "Jun", - "cost": 280 - }, - { - "month": "Jul", - "cost": 310 - }, - { - "month": "Aug", - "cost": 240 - }, - { - "month": "Sep", - "cost": 260 - }, - { - "month": "Oct", - "cost": 295 - }, - { - "month": "Nov", - "cost": 320 - }, - { - "month": "Dec", - "cost": 310 - } - ] - }, - { - "vehicleId": "A00117", - "costPerType": { - "ytd": [ - { - "value": 62, - "category": "Fuel", - "summary": "Fuel: 62%" - }, - { - "value": 18, - "category": "Maintenance", - "summary": "Maintenance: 18%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "3months": [ - { - "value": 57, - "category": "Fuel", - "summary": "Fuel: 57%" - }, - { - "value": 23, - "category": "Maintenance", - "summary": "Maintenance: 23%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "6months": [ - { - "value": 54, - "category": "Fuel", - "summary": "Fuel: 54%" - }, - { - "value": 26, - "category": "Maintenance", - "summary": "Maintenance: 26%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "12months": [ - { - "value": 56, - "category": "Fuel", - "summary": "Fuel: 56%" - }, - { - "value": 24, - "category": "Maintenance", - "summary": "Maintenance: 24%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ] - }, - "costsPerMeterPerQuarter": { - "ytd": [ - { - "quarter": "Q1", - "costPerMeter": 16 - }, - { - "quarter": "Q2", - "costPerMeter": 29 - }, - { - "quarter": "Q3", - "costPerMeter": 53 - }, - { - "quarter": "Q4", - "costPerMeter": 64 - } - ], - "'2023'": [ - { - "quarter": "Q1", - "costPerMeter": 15 - }, - { - "quarter": "Q2", - "costPerMeter": 28 - }, - { - "quarter": "Q3", - "costPerMeter": 49 - }, - { - "quarter": "Q4", - "costPerMeter": 58 - } - ], - "'2022'": [ - { - "quarter": "Q1", - "costPerMeter": 19 - }, - { - "quarter": "Q2", - "costPerMeter": 23 - }, - { - "quarter": "Q3", - "costPerMeter": 44 - }, - { - "quarter": "Q4", - "costPerMeter": 52 - } - ], - "'2021'": [ - { - "quarter": "Q1", - "costPerMeter": 12 - }, - { - "quarter": "Q2", - "costPerMeter": 20 - }, - { - "quarter": "Q3", - "costPerMeter": 41 - }, - { - "quarter": "Q4", - "costPerMeter": 48 - } - ], - "'2020'": [ - { - "quarter": "Q1", - "costPerMeter": 11 - }, - { - "quarter": "Q2", - "costPerMeter": 20 - }, - { - "quarter": "Q3", - "costPerMeter": 46 - }, - { - "quarter": "Q4", - "costPerMeter": 51 - } - ] - }, - "fuelCostsPerMonth": [ - { - "month": "Jan", - "cost": 78 - }, - { - "month": "Feb", - "cost": 92 - }, - { - "month": "Mar", - "cost": 155 - }, - { - "month": "Apr", - "cost": 245 - }, - { - "month": "May", - "cost": 268 - }, - { - "month": "Jun", - "cost": 290 - }, - { - "month": "Jul", - "cost": 320 - }, - { - "month": "Aug", - "cost": 260 - }, - { - "month": "Sep", - "cost": 275 - }, - { - "month": "Oct", - "cost": 295 - }, - { - "month": "Nov", - "cost": 330 - }, - { - "month": "Dec", - "cost": 315 - } - ] - }, - { - "vehicleId": "A00118", - "costPerType": { - "ytd": [ - { - "value": 60, - "category": "Fuel", - "summary": "Fuel: 60%" - }, - { - "value": 25, - "category": "Maintenance", - "summary": "Maintenance: 25%" - }, - { - "value": 15, - "category": "Other", - "summary": "Other: 15%" - } - ], - "3months": [ - { - "value": 55, - "category": "Fuel", - "summary": "Fuel: 55%" - }, - { - "value": 30, - "category": "Maintenance", - "summary": "Maintenance: 30%" - }, - { - "value": 15, - "category": "Other", - "summary": "Other: 15%" - } - ], - "6months": [ - { - "value": 58, - "category": "Fuel", - "summary": "Fuel: 58%" - }, - { - "value": 27, - "category": "Maintenance", - "summary": "Maintenance: 27%" - }, - { - "value": 15, - "category": "Other", - "summary": "Other: 15%" - } - ], - "12months": [ - { - "value": 56, - "category": "Fuel", - "summary": "Fuel: 56%" - }, - { - "value": 29, - "category": "Maintenance", - "summary": "Maintenance: 29%" - }, - { - "value": 15, - "category": "Other", - "summary": "Other: 15%" - } - ] - }, - "costsPerMeterPerQuarter": { - "ytd": [ - { - "quarter": "Q1", - "costPerMeter": 15 - }, - { - "quarter": "Q2", - "costPerMeter": 30 - }, - { - "quarter": "Q3", - "costPerMeter": 60 - }, - { - "quarter": "Q4", - "costPerMeter": 55 - } - ], - "'2023'": [ - { - "quarter": "Q1", - "costPerMeter": 18 - }, - { - "quarter": "Q2", - "costPerMeter": 28 - }, - { - "quarter": "Q3", - "costPerMeter": 55 - }, - { - "quarter": "Q4", - "costPerMeter": 62 - } - ], - "'2022'": [ - { - "quarter": "Q1", - "costPerMeter": 16 - }, - { - "quarter": "Q2", - "costPerMeter": 25 - }, - { - "quarter": "Q3", - "costPerMeter": 50 - }, - { - "quarter": "Q4", - "costPerMeter": 53 - } - ], - "'2021'": [ - { - "quarter": "Q1", - "costPerMeter": 12 - }, - { - "quarter": "Q2", - "costPerMeter": 22 - }, - { - "quarter": "Q3", - "costPerMeter": 48 - }, - { - "quarter": "Q4", - "costPerMeter": 45 - } - ], - "'2020'": [ - { - "quarter": "Q1", - "costPerMeter": 10 - }, - { - "quarter": "Q2", - "costPerMeter": 20 - }, - { - "quarter": "Q3", - "costPerMeter": 42 - }, - { - "quarter": "Q4", - "costPerMeter": 50 - } - ] - }, - "fuelCostsPerMonth": [ - { - "month": "Jan", - "cost": 65 - }, - { - "month": "Feb", - "cost": 78 - }, - { - "month": "Mar", - "cost": 150 - }, - { - "month": "Apr", - "cost": 245 - }, - { - "month": "May", - "cost": 270 - }, - { - "month": "Jun", - "cost": 280 - }, - { - "month": "Jul", - "cost": 310 - }, - { - "month": "Aug", - "cost": 235 - }, - { - "month": "Sep", - "cost": 270 - }, - { - "month": "Oct", - "cost": 290 - }, - { - "month": "Nov", - "cost": 320 - }, - { - "month": "Dec", - "cost": 305 - } - ] - }, - { - "vehicleId": "A00119", - "costPerType": { - "ytd": [ - { - "value": 60, - "category": "Fuel", - "summary": "Fuel: 60%" - }, - { - "value": 20, - "category": "Maintenance", - "summary": "Maintenance: 20%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "3months": [ - { - "value": 55, - "category": "Fuel", - "summary": "Fuel: 55%" - }, - { - "value": 25, - "category": "Maintenance", - "summary": "Maintenance: 25%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "6months": [ - { - "value": 57, - "category": "Fuel", - "summary": "Fuel: 57%" - }, - { - "value": 23, - "category": "Maintenance", - "summary": "Maintenance: 23%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "12months": [ - { - "value": 58, - "category": "Fuel", - "summary": "Fuel: 58%" - }, - { - "value": 22, - "category": "Maintenance", - "summary": "Maintenance: 22%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ] - }, - "costsPerMeterPerQuarter": { - "ytd": [ - { - "quarter": "Q1", - "costPerMeter": 12 - }, - { - "quarter": "Q2", - "costPerMeter": 29 - }, - { - "quarter": "Q3", - "costPerMeter": 57 - }, - { - "quarter": "Q4", - "costPerMeter": 46 - } - ], - "'2023'": [ - { - "quarter": "Q1", - "costPerMeter": 14 - }, - { - "quarter": "Q2", - "costPerMeter": 27 - }, - { - "quarter": "Q3", - "costPerMeter": 52 - }, - { - "quarter": "Q4", - "costPerMeter": 58 - } - ], - "'2022'": [ - { - "quarter": "Q1", - "costPerMeter": 16 - }, - { - "quarter": "Q2", - "costPerMeter": 24 - }, - { - "quarter": "Q3", - "costPerMeter": 47 - }, - { - "quarter": "Q4", - "costPerMeter": 53 - } - ], - "'2021'": [ - { - "quarter": "Q1", - "costPerMeter": 11 - }, - { - "quarter": "Q2", - "costPerMeter": 21 - }, - { - "quarter": "Q3", - "costPerMeter": 43 - }, - { - "quarter": "Q4", - "costPerMeter": 48 - } - ], - "'2020'": [ - { - "quarter": "Q1", - "costPerMeter": 9 - }, - { - "quarter": "Q2", - "costPerMeter": 23 - }, - { - "quarter": "Q3", - "costPerMeter": 46 - }, - { - "quarter": "Q4", - "costPerMeter": 51 - } - ] - }, - "fuelCostsPerMonth": [ - { - "month": "Jan", - "cost": 65 - }, - { - "month": "Feb", - "cost": 80 - }, - { - "month": "Mar", - "cost": 150 - }, - { - "month": "Apr", - "cost": 250 - }, - { - "month": "May", - "cost": 275 - }, - { - "month": "Jun", - "cost": 285 - }, - { - "month": "Jul", - "cost": 310 - }, - { - "month": "Aug", - "cost": 240 - }, - { - "month": "Sep", - "cost": 270 - }, - { - "month": "Oct", - "cost": 295 - }, - { - "month": "Nov", - "cost": 320 - }, - { - "month": "Dec", - "cost": 310 - } - ] - }, - { - "vehicleId": "A00120", - "costPerType": { - "ytd": [ - { - "value": 60, - "category": "Fuel", - "summary": "Fuel: 60%" - }, - { - "value": 20, - "category": "Maintenance", - "summary": "Maintenance: 20%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "3months": [ - { - "value": 55, - "category": "Fuel", - "summary": "Fuel: 55%" - }, - { - "value": 25, - "category": "Maintenance", - "summary": "Maintenance: 25%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "6months": [ - { - "value": 57, - "category": "Fuel", - "summary": "Fuel: 57%" - }, - { - "value": 23, - "category": "Maintenance", - "summary": "Maintenance: 23%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "12months": [ - { - "value": 58, - "category": "Fuel", - "summary": "Fuel: 58%" - }, - { - "value": 22, - "category": "Maintenance", - "summary": "Maintenance: 22%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ] - }, - "costsPerMeterPerQuarter": { - "ytd": [ - { - "quarter": "Q1", - "costPerMeter": 12 - }, - { - "quarter": "Q2", - "costPerMeter": 29 - }, - { - "quarter": "Q3", - "costPerMeter": 57 - }, - { - "quarter": "Q4", - "costPerMeter": 68 - } - ], - "'2023'": [ - { - "quarter": "Q1", - "costPerMeter": 14 - }, - { - "quarter": "Q2", - "costPerMeter": 27 - }, - { - "quarter": "Q3", - "costPerMeter": 52 - }, - { - "quarter": "Q4", - "costPerMeter": 58 - } - ], - "'2022'": [ - { - "quarter": "Q1", - "costPerMeter": 16 - }, - { - "quarter": "Q2", - "costPerMeter": 24 - }, - { - "quarter": "Q3", - "costPerMeter": 47 - }, - { - "quarter": "Q4", - "costPerMeter": 53 - } - ], - "'2021'": [ - { - "quarter": "Q1", - "costPerMeter": 11 - }, - { - "quarter": "Q2", - "costPerMeter": 21 - }, - { - "quarter": "Q3", - "costPerMeter": 43 - }, - { - "quarter": "Q4", - "costPerMeter": 48 - } - ], - "'2020'": [ - { - "quarter": "Q1", - "costPerMeter": 9 - }, - { - "quarter": "Q2", - "costPerMeter": 23 - }, - { - "quarter": "Q3", - "costPerMeter": 46 - }, - { - "quarter": "Q4", - "costPerMeter": 51 - } - ] - }, - "fuelCostsPerMonth": [ - { - "month": "Jan", - "cost": 65 - }, - { - "month": "Feb", - "cost": 80 - }, - { - "month": "Mar", - "cost": 150 - }, - { - "month": "Apr", - "cost": 250 - }, - { - "month": "May", - "cost": 275 - }, - { - "month": "Jun", - "cost": 285 - }, - { - "month": "Jul", - "cost": 310 - }, - { - "month": "Aug", - "cost": 240 - }, - { - "month": "Sep", - "cost": 270 - }, - { - "month": "Oct", - "cost": 295 - }, - { - "month": "Nov", - "cost": 320 - }, - { - "month": "Dec", - "cost": 310 - } - ] - }, - { - "vehicleId": "A00121", - "costPerType": { - "ytd": [ - { - "value": 60, - "category": "Fuel", - "summary": "Fuel: 60%" - }, - { - "value": 25, - "category": "Maintenance", - "summary": "Maintenance: 25%" - }, - { - "value": 15, - "category": "Other", - "summary": "Other: 15%" - } - ], - "3months": [ - { - "value": 55, - "category": "Fuel", - "summary": "Fuel: 55%" - }, - { - "value": 30, - "category": "Maintenance", - "summary": "Maintenance: 30%" - }, - { - "value": 15, - "category": "Other", - "summary": "Other: 15%" - } - ], - "6months": [ - { - "value": 57, - "category": "Fuel", - "summary": "Fuel: 57%" - }, - { - "value": 28, - "category": "Maintenance", - "summary": "Maintenance: 28%" - }, - { - "value": 15, - "category": "Other", - "summary": "Other: 15%" - } - ], - "12months": [ - { - "value": 58, - "category": "Fuel", - "summary": "Fuel: 58%" - }, - { - "value": 27, - "category": "Maintenance", - "summary": "Maintenance: 27%" - }, - { - "value": 15, - "category": "Other", - "summary": "Other: 15%" - } - ] - }, - "costsPerMeterPerQuarter": { - "ytd": [ - { - "quarter": "Q1", - "costPerMeter": 15 - }, - { - "quarter": "Q2", - "costPerMeter": 30 - }, - { - "quarter": "Q3", - "costPerMeter": 50 - }, - { - "quarter": "Q4", - "costPerMeter": 57 - } - ], - "'2023'": [ - { - "quarter": "Q1", - "costPerMeter": 12 - }, - { - "quarter": "Q2", - "costPerMeter": 28 - }, - { - "quarter": "Q3", - "costPerMeter": 55 - }, - { - "quarter": "Q4", - "costPerMeter": 60 - } - ], - "'2022'": [ - { - "quarter": "Q1", - "costPerMeter": 18 - }, - { - "quarter": "Q2", - "costPerMeter": 25 - }, - { - "quarter": "Q3", - "costPerMeter": 48 - }, - { - "quarter": "Q4", - "costPerMeter": 53 - } - ], - "'2021'": [ - { - "quarter": "Q1", - "costPerMeter": 14 - }, - { - "quarter": "Q2", - "costPerMeter": 22 - }, - { - "quarter": "Q3", - "costPerMeter": 44 - }, - { - "quarter": "Q4", - "costPerMeter": 49 - } - ], - "'2020'": [ - { - "quarter": "Q1", - "costPerMeter": 10 - }, - { - "quarter": "Q2", - "costPerMeter": 24 - }, - { - "quarter": "Q3", - "costPerMeter": 47 - }, - { - "quarter": "Q4", - "costPerMeter": 52 - } - ] - }, - "fuelCostsPerMonth": [ - { - "month": "Jan", - "cost": 70 - }, - { - "month": "Feb", - "cost": 75 - }, - { - "month": "Mar", - "cost": 150 - }, - { - "month": "Apr", - "cost": 245 - }, - { - "month": "May", - "cost": 270 - }, - { - "month": "Jun", - "cost": 290 - }, - { - "month": "Jul", - "cost": 305 - }, - { - "month": "Aug", - "cost": 250 - }, - { - "month": "Sep", - "cost": 275 - }, - { - "month": "Oct", - "cost": 300 - }, - { - "month": "Nov", - "cost": 315 - }, - { - "month": "Dec", - "cost": 310 - } - ] - }, - { - "vehicleId": "A00122", - "costPerType": { - "ytd": [ - { - "value": 60, - "category": "Fuel", - "summary": "Fuel: 60%" - }, - { - "value": 30, - "category": "Maintenance", - "summary": "Maintenance: 30%" - }, - { - "value": 10, - "category": "Other", - "summary": "Other: 10%" - } - ], - "3months": [ - { - "value": 58, - "category": "Fuel", - "summary": "Fuel: 58%" - }, - { - "value": 32, - "category": "Maintenance", - "summary": "Maintenance: 32%" - }, - { - "value": 10, - "category": "Other", - "summary": "Other: 10%" - } - ], - "6months": [ - { - "value": 57, - "category": "Fuel", - "summary": "Fuel: 57%" - }, - { - "value": 33, - "category": "Maintenance", - "summary": "Maintenance: 33%" - }, - { - "value": 10, - "category": "Other", - "summary": "Other: 10%" - } - ], - "12months": [ - { - "value": 55, - "category": "Fuel", - "summary": "Fuel: 55%" - }, - { - "value": 35, - "category": "Maintenance", - "summary": "Maintenance: 35%" - }, - { - "value": 10, - "category": "Other", - "summary": "Other: 10%" - } - ] - }, - "costsPerMeterPerQuarter": { - "ytd": [ - { - "quarter": "Q1", - "costPerMeter": 15 - }, - { - "quarter": "Q2", - "costPerMeter": 30 - }, - { - "quarter": "Q3", - "costPerMeter": 50 - }, - { - "quarter": "Q4", - "costPerMeter": 53 - } - ], - "'2023'": [ - { - "quarter": "Q1", - "costPerMeter": 12 - }, - { - "quarter": "Q2", - "costPerMeter": 28 - }, - { - "quarter": "Q3", - "costPerMeter": 55 - }, - { - "quarter": "Q4", - "costPerMeter": 60 - } - ], - "'2022'": [ - { - "quarter": "Q1", - "costPerMeter": 18 - }, - { - "quarter": "Q2", - "costPerMeter": 25 - }, - { - "quarter": "Q3", - "costPerMeter": 48 - }, - { - "quarter": "Q4", - "costPerMeter": 53 - } - ], - "'2021'": [ - { - "quarter": "Q1", - "costPerMeter": 14 - }, - { - "quarter": "Q2", - "costPerMeter": 22 - }, - { - "quarter": "Q3", - "costPerMeter": 44 - }, - { - "quarter": "Q4", - "costPerMeter": 49 - } - ], - "'2020'": [ - { - "quarter": "Q1", - "costPerMeter": 10 - }, - { - "quarter": "Q2", - "costPerMeter": 24 - }, - { - "quarter": "Q3", - "costPerMeter": 47 - }, - { - "quarter": "Q4", - "costPerMeter": 52 - } - ] - }, - "fuelCostsPerMonth": [ - { - "month": "Jan", - "cost": 70 - }, - { - "month": "Feb", - "cost": 75 - }, - { - "month": "Mar", - "cost": 150 - }, - { - "month": "Apr", - "cost": 245 - }, - { - "month": "May", - "cost": 270 - }, - { - "month": "Jun", - "cost": 290 - }, - { - "month": "Jul", - "cost": 305 - }, - { - "month": "Aug", - "cost": 250 - }, - { - "month": "Sep", - "cost": 275 - }, - { - "month": "Oct", - "cost": 300 - }, - { - "month": "Nov", - "cost": 315 - }, - { - "month": "Dec", - "cost": 310 - } - ] - }, - { - "vehicleId": "A00123", - "costPerType": { - "ytd": [ - { - "value": 60, - "category": "Fuel", - "summary": "Fuel: 60%" - }, - { - "value": 30, - "category": "Maintenance", - "summary": "Maintenance: 30%" - }, - { - "value": 10, - "category": "Other", - "summary": "Other: 10%" - } - ], - "3months": [ - { - "value": 58, - "category": "Fuel", - "summary": "Fuel: 58%" - }, - { - "value": 32, - "category": "Maintenance", - "summary": "Maintenance: 32%" - }, - { - "value": 10, - "category": "Other", - "summary": "Other: 10%" - } - ], - "6months": [ - { - "value": 56, - "category": "Fuel", - "summary": "Fuel: 56%" - }, - { - "value": 34, - "category": "Maintenance", - "summary": "Maintenance: 34%" - }, - { - "value": 10, - "category": "Other", - "summary": "Other: 10%" - } - ], - "12months": [ - { - "value": 55, - "category": "Fuel", - "summary": "Fuel: 55%" - }, - { - "value": 35, - "category": "Maintenance", - "summary": "Maintenance: 35%" - }, - { - "value": 10, - "category": "Other", - "summary": "Other: 10%" - } - ] - }, - "costsPerMeterPerQuarter": { - "ytd": [ - { - "quarter": "Q1", - "costPerMeter": 15 - }, - { - "quarter": "Q2", - "costPerMeter": 25 - }, - { - "quarter": "Q3", - "costPerMeter": 50 - }, - { - "quarter": "Q4", - "costPerMeter": 47 - } - ], - "'2023'": [ - { - "quarter": "Q1", - "costPerMeter": 12 - }, - { - "quarter": "Q2", - "costPerMeter": 28 - }, - { - "quarter": "Q3", - "costPerMeter": 52 - }, - { - "quarter": "Q4", - "costPerMeter": 58 - } - ], - "'2022'": [ - { - "quarter": "Q1", - "costPerMeter": 14 - }, - { - "quarter": "Q2", - "costPerMeter": 22 - }, - { - "quarter": "Q3", - "costPerMeter": 48 - }, - { - "quarter": "Q4", - "costPerMeter": 54 - } - ], - "'2021'": [ - { - "quarter": "Q1", - "costPerMeter": 10 - }, - { - "quarter": "Q2", - "costPerMeter": 20 - }, - { - "quarter": "Q3", - "costPerMeter": 40 - }, - { - "quarter": "Q4", - "costPerMeter": 45 - } - ], - "'2020'": [ - { - "quarter": "Q1", - "costPerMeter": 9 - }, - { - "quarter": "Q2", - "costPerMeter": 21 - }, - { - "quarter": "Q3", - "costPerMeter": 47 - }, - { - "quarter": "Q4", - "costPerMeter": 53 - } - ] - }, - "fuelCostsPerMonth": [ - { - "month": "Jan", - "cost": 70 - }, - { - "month": "Feb", - "cost": 80 - }, - { - "month": "Mar", - "cost": 150 - }, - { - "month": "Apr", - "cost": 250 - }, - { - "month": "May", - "cost": 270 - }, - { - "month": "Jun", - "cost": 290 - }, - { - "month": "Jul", - "cost": 310 - }, - { - "month": "Aug", - "cost": 260 - }, - { - "month": "Sep", - "cost": 280 - }, - { - "month": "Oct", - "cost": 295 - }, - { - "month": "Nov", - "cost": 320 - }, - { - "month": "Dec", - "cost": 305 - } - ] - }, - { - "vehicleId": "A00124", - "costPerType": { - "ytd": [ - { - "value": 48, - "category": "Fuel", - "summary": "Fuel: 48%" - }, - { - "value": 32, - "category": "Maintenance", - "summary": "Maintenance: 32%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "3months": [ - { - "value": 45, - "category": "Fuel", - "summary": "Fuel: 45%" - }, - { - "value": 35, - "category": "Maintenance", - "summary": "Maintenance: 35%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "6months": [ - { - "value": 50, - "category": "Fuel", - "summary": "Fuel: 50%" - }, - { - "value": 30, - "category": "Maintenance", - "summary": "Maintenance: 30%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "12months": [ - { - "value": 49, - "category": "Fuel", - "summary": "Fuel: 49%" - }, - { - "value": 31, - "category": "Maintenance", - "summary": "Maintenance: 31%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ] - }, - "costsPerMeterPerQuarter": { - "ytd": [ - { - "quarter": "Q1", - "costPerMeter": 15 - }, - { - "quarter": "Q2", - "costPerMeter": 20 - }, - { - "quarter": "Q3", - "costPerMeter": 50 - }, - { - "quarter": "Q4", - "costPerMeter": 55 - } - ], - "'2023'": [ - { - "quarter": "Q1", - "costPerMeter": 14 - }, - { - "quarter": "Q2", - "costPerMeter": 22 - }, - { - "quarter": "Q3", - "costPerMeter": 47 - }, - { - "quarter": "Q4", - "costPerMeter": 55 - } - ], - "'2022'": [ - { - "quarter": "Q1", - "costPerMeter": 18 - }, - { - "quarter": "Q2", - "costPerMeter": 25 - }, - { - "quarter": "Q3", - "costPerMeter": 44 - }, - { - "quarter": "Q4", - "costPerMeter": 51 - } - ], - "'2021'": [ - { - "quarter": "Q1", - "costPerMeter": 12 - }, - { - "quarter": "Q2", - "costPerMeter": 19 - }, - { - "quarter": "Q3", - "costPerMeter": 38 - }, - { - "quarter": "Q4", - "costPerMeter": 46 - } - ], - "'2020'": [ - { - "quarter": "Q1", - "costPerMeter": 10 - }, - { - "quarter": "Q2", - "costPerMeter": 21 - }, - { - "quarter": "Q3", - "costPerMeter": 42 - }, - { - "quarter": "Q4", - "costPerMeter": 49 - } - ] - }, - "fuelCostsPerMonth": [ - { - "month": "Jan", - "cost": 72 - }, - { - "month": "Feb", - "cost": 84 - }, - { - "month": "Mar", - "cost": 150 - }, - { - "month": "Apr", - "cost": 230 - }, - { - "month": "May", - "cost": 245 - }, - { - "month": "Jun", - "cost": 265 - }, - { - "month": "Jul", - "cost": 290 - }, - { - "month": "Aug", - "cost": 240 - }, - { - "month": "Sep", - "cost": 255 - }, - { - "month": "Oct", - "cost": 270 - }, - { - "month": "Nov", - "cost": 290 - }, - { - "month": "Dec", - "cost": 280 - } - ] - }, - { - "vehicleId": "A00125", - "costPerType": { - "ytd": [ - { - "value": 55, - "category": "Fuel", - "summary": "Fuel: 55%" - }, - { - "value": 25, - "category": "Maintenance", - "summary": "Maintenance: 25%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "3months": [ - { - "value": 50, - "category": "Fuel", - "summary": "Fuel: 50%" - }, - { - "value": 30, - "category": "Maintenance", - "summary": "Maintenance: 30%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "6months": [ - { - "value": 52, - "category": "Fuel", - "summary": "Fuel: 52%" - }, - { - "value": 28, - "category": "Maintenance", - "summary": "Maintenance: 28%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ], - "12months": [ - { - "value": 53, - "category": "Fuel", - "summary": "Fuel: 53%" - }, - { - "value": 27, - "category": "Maintenance", - "summary": "Maintenance: 27%" - }, - { - "value": 20, - "category": "Other", - "summary": "Other: 20%" - } - ] - }, - "costsPerMeterPerQuarter": { - "ytd": [ - { - "quarter": "Q1", - "costPerMeter": 10 - }, - { - "quarter": "Q2", - "costPerMeter": 28 - }, - { - "quarter": "Q3", - "costPerMeter": 55 - }, - { - "quarter": "Q4", - "costPerMeter": 62 - } - ], - "'2023'": [ - { - "quarter": "Q1", - "costPerMeter": 12 - }, - { - "quarter": "Q2", - "costPerMeter": 25 - }, - { - "quarter": "Q3", - "costPerMeter": 50 - }, - { - "quarter": "Q4", - "costPerMeter": 55 - } - ], - "'2022'": [ - { - "quarter": "Q1", - "costPerMeter": 15 - }, - { - "quarter": "Q2", - "costPerMeter": 20 - }, - { - "quarter": "Q3", - "costPerMeter": 45 - }, - { - "quarter": "Q4", - "costPerMeter": 40 - } - ], - "'2021'": [ - { - "quarter": "Q1", - "costPerMeter": 10 - }, - { - "quarter": "Q2", - "costPerMeter": 18 - }, - { - "quarter": "Q3", - "costPerMeter": 40 - }, - { - "quarter": "Q4", - "costPerMeter": 44 - } - ], - "'2020'": [ - { - "quarter": "Q1", - "costPerMeter": 8 - }, - { - "quarter": "Q2", - "costPerMeter": 22 - }, - { - "quarter": "Q3", - "costPerMeter": 48 - }, - { - "quarter": "Q4", - "costPerMeter": 55 - } - ] - }, - "fuelCostsPerMonth": [ - - { - "month": "Jan", - "cost": 62 - }, - { - "month": "Feb", - "cost": 76 - }, - { - "month": "Mar", - "cost": 146 - }, - { - "month": "Apr", - "cost": 240 - }, - { - "month": "May", - "cost": 265 - }, - { - "month": "Jun", - "cost": 275 - }, - { - "month": "Jul", - "cost": 300 - }, - { - "month": "Aug", - "cost": 230 - }, - { - "month": "Sep", - "cost": 265 - }, - { - "month": "Oct", - "cost": 287 - }, - { - "month": "Nov", - "cost": 310 - }, - { - "month": "Dec", - "cost": 295 - } - ] - } -] diff --git a/projects/fleet-management-grid/src/assets/data/drivers.json b/projects/fleet-management-grid/src/assets/data/drivers.json deleted file mode 100644 index 33c558a..0000000 --- a/projects/fleet-management-grid/src/assets/data/drivers.json +++ /dev/null @@ -1,407 +0,0 @@ -[ - { - "name": "John Davidson", - "license": "JD-12345", - "address": "123 Main St", - "city": "Boston, MA", - "phone": "(555) 123-4567", - "email": "john.davidson@example.com", - "photo": "men/1" - }, - { - "name": "Peter Jackson", - "license": "PJ-67890", - "address": "456 Elm St", - "city": "Cranbury, NJ", - "phone": "(555) 987-6543", - "email": "peter.jackson@example.com", - "photo": "men/2" - }, - { - "name": "J.J. Swan", - "license": "JS-23456", - "address": "789 Oak St", - "city": "Boston, MA", - "phone": "(555) 234-5678", - "email": "jj.swan@example.com", - "photo": "men/3" - }, - { - "name": "Mike Sousan", - "license": "MS-54321", - "address": "321 Oak St", - "city": "Hartford, CT", - "phone": "(555) 654-3210", - "email": "mike.sousan@example.com", - "photo": "men/4" - }, - { - "name": "Alex Robinson", - "license": "AR-12345", - "address": "321 Oak St", - "city": "Newark, NJ", - "phone": "(555) 987-6543", - "email": "alex.robinson@sample.com", - "photo": "men/5" - }, - { - "name": "Liam Carter", - "license": "LC-98765", - "address": "456 Elm St", - "city": "Camden, NJ", - "phone": "(555) 222-3344", - "email": "liam.carter@sample.com", - "photo": "men/6" - }, - { - "name": "Noah Adams", - "license": "NA-23456", - "address": "789 Maple St", - "city": "Trenton, NJ", - "phone": "(555) 654-3210", - "email": "noah.adams@sample.com", - "photo": "men/7" - }, - { - "name": "Ethan Brown", - "license": "EB-33333", - "address": "303 Cedar St", - "city": "Cranbury, NJ", - "phone": "(555) 345-3333", - "email": "ethan.brown@example.com", - "photo": "men/8" - }, - { - "name": "David Miller", - "license": "DM-00123", - "address": "12 Maple Lane", - "city": "Newark, NJ", - "phone": "(555) 345-9876", - "email": "david.miller@example.com", - "photo": "men/9" - }, - { - "name": "Ethan Johnson", - "license": "EJ-34567", - "address": "56 Birch Rd", - "city": "New York, NY", - "phone": "(555) 432-8765", - "email": "ethan.johnson@example.com", - "photo": "men/10" - }, - { - "name": "Michael Carter", - "license": "MC-76543", - "address": "123 Oak St", - "city": "Albany, NY", - "phone": "(555) 678-1234", - "email": "michael.carter@example.com", - "photo": "men/11" - }, - { - "name": "Ethan Carter", - "license": "EC-33456", - "address": "333 Birch St", - "city": "Denver, CO", - "phone": "(555) 345-6789", - "email": "ethan.carter@example.com", - "photo": "men/12" - }, - { - "name": "Liam Johnson", - "license": "LJ-67890", - "address": "456 Oak St", - "city": "Cranbury, NJ", - "phone": "(555) 123-4567", - "email": "liam.johnson@example.com", - "photo": "men/13" - }, - { - "name": "Chris Taylor", - "license": "CT-78901", - "address": "45 Elm St", - "city": "Chicago, IL", - "phone": "(555) 987-6541", - "email": "chris.taylor@example.com", - "photo": "men/14" - }, - { - "name": "Chris Taylor", - "license": "CT-78901", - "address": "45 Elm St", - "city": "Chicago, IL", - "phone": "(555) 987-6541", - "email": "chris.taylor@example.com", - "photo": "men/15" - }, - { - "name": "James Carter", - "license": "JC-98765", - "address": "12 Main St", - "city": "New York, NY", - "phone": "(555) 987-1234", - "email": "james.carter@example.com", - "photo": "men/16" - }, - { - "name": "Michael Grant", - "license": "MG-54321", - "address": "789 Cedar St", - "city": "Buffalo, NY", - "phone": "(555) 432-5678", - "email": "michael.grant@example.com", - "photo": "men/17" - }, - { - "name": "James Brown", - "license": "JB-98765", - "address": "321 Pine St", - "city": "Trenton, NJ", - "phone": "(555) 345-6789", - "email": "james.brown@example.com", - "photo": "men/18" - }, - { - "name": "Liam Brown", - "license": "LB-98765", - "address": "555 Chestnut St", - "city": "Austin, TX", - "phone": "(555) 567-8901", - "email": "liam.brown@example.com", - "photo": "men/19" - }, - { - "name": "James Smith", - "license": "JS-45678", - "address": "321 Pine St", - "city": "Cranbury, NJ", - "phone": "(555) 345-6789", - "email": "james.smith@example.com", - "photo": "men/20" - }, - { - "name": "Michael Green", - "license": "MG-12345", - "address": "456 Oak St", - "city": "Cleveland, OH", - "phone": "(555) 321-0987", - "email": "michael.green@example.com", - "photo": "men/21" - }, - { - "name": "Jonathan Smith", - "license": "JS-98765", - "address": "123 Elm St", - "city": "Albany, NY", - "phone": "(555) 567-8901", - "email": "jonathan.smith@example.com", - "photo": "men/22" - }, - { - "name": "Alex Johnson", - "license": "AJ-11111", - "address": "101 Elm St", - "city": "New York, NY", - "phone": "(555) 123-1111", - "email": "alex.johnson@example.com", - "photo": "men/23" - }, - { - "name": "Michael Brown", - "license": "MB-12345", - "address": "56 Cedar St", - "city": "Boston, MA", - "phone": "(555) 678-4321", - "email": "michael.brown@example.com", - "photo": "men/24" - }, - { - "name": "Natalie Simson", - "license": "NS-98765", - "address": "321 Pine St", - "city": "Cranbury, NJ", - "phone": "(555) 345-6789", - "email": "natalie.simson@example.com", - "photo": "women/1" - }, - { - "name": "Sophia Moore", - "license": "SM-54321", - "address": "654 Willow St", - "city": "Buffalo, NY", - "phone": "(555) 456-7890", - "email": "sophia.moore@sample.com", - "photo": "women/3" - }, - { - "name": "Emily Green", - "license": "EG-67890", - "address": "123 Birch St", - "city": "Hoboken, NJ", - "phone": "(555) 123-4567", - "email": "emily.green@sample.com", - "photo": "women/2" - }, - { - "name": "Emily Davis", - "license": "ED-54321", - "address": "789 Maple St", - "city": "Buffalo, NY", - "phone": "(555) 234-5678", - "email": "emily.davis@example.com", - "photo": "women/4" - }, - { - "name": "Olivia Martinez", - "license": "OM-65432", - "address": "987 Willow St", - "city": "Hoboken, NJ", - "phone": "(555) 567-8901", - "email": "olivia.martinez@example.com", - "photo": "women/5" - }, - { - "name": "Rachel Adams", - "license": "RA-45678", - "address": "123 Maple St", - "city": "Detroit, MI", - "phone": "(555) 654-3210", - "email": "rachel.adams@example.com", - "photo": "women/6" - }, - { - "name": "Sarah Johnson", - "license": "SJ-67890", - "address": "789 Cedar St", - "city": "Pittsburgh, PA", - "phone": "(555) 456-7890", - "email": "sarah.johnson@example.com", - "photo": "women/7" - }, - { - "name": "Sophia Brown", - "license": "SB-23456", - "address": "78 Oakwood Ave", - "city": "Boston, MA", - "phone": "(555) 678-1234", - "email": "sophia.brown@example.com", - "photo": "women/8" - }, - { - "name": "Emma White", - "license": "EW-45678", - "address": "90 Pine St", - "city": "Hartford, CT", - "phone": "(555) 876-5432", - "email": "emma.white@example.com", - "photo": "women/9" - }, - { - "name": "Sophia Loren", - "license": "SL-98765", - "address": "987 Maple St", - "city": "Albany, NY", - "phone": "(555) 876-5432", - "email": "sophia.loren@example.com", - "photo": "women/10" - }, - { - "name": "Emily Taylor", - "license": "ET-67890", - "address": "456 Maple St", - "city": "Newark, NJ", - "phone": "(555) 456-7890", - "email": "emily.taylor@example.com", - "photo": "women/11" - }, - { - "name": "Alice Johnson", - "license": "AJ-11234", - "address": "222 Maple St", - "city": "Seattle, WA", - "phone": "(555) 678-1234", - "email": "alice.johnson@example.com", - "photo": "women/12" - }, - { - "name": "Emily Carter", - "license": "EC-12345", - "address": "123 Walnut St", - "city": "New York, NY", - "phone": "(555) 678-9012", - "email": "emily.carter@example.com", - "photo": "women/13" - }, - { - "name": "Sarah Williams", - "license": "SW-12345", - "address": "456 Maple Ave", - "city": "Cranbury, NJ", - "phone": "(555) 876-5432", - "email": "sarah.williams@example.com", - "photo": "women/14" - }, - { - "name": "Sarah Taylor", - "license": "ST-87654", - "address": "456 Birch St", - "city": "Newark, NJ", - "phone": "(555) 789-4561", - "email": "sarah.taylor@example.com", - "photo": "women/15" - }, - { - "name": "Sophia Martinez", - "license": "SM-76543", - "address": "444 Walnut St", - "city": "San Francisco, CA", - "phone": "(555) 456-7891", - "email": "sophia.martinez@example.com", - "photo": "women/16" - }, - { - "name": "Emma Clarkson", - "license": "EC-45678", - "address": "321 Birch Rd", - "city": "Boston, MA", - "phone": "(555) 678-1234", - "email": "emma.clarkson@example.com", - "photo": "women/17" - }, - { - "name": "Maria Gonzalez", - "license": "MG-22222", - "address": "202 Pine St", - "city": "Philadelphia, PA", - "phone": "(555) 234-2222", - "email": "maria.gonzalez@example.com", - "photo": "women/18" - }, - { - "name": "Sophia Wilson", - "license": "SW-67890", - "address": "456 Pine St", - "city": "Camden, NJ", - "phone": "(555) 987-6543", - "email": "sophia.wilson@example.com", - "photo": "women/19" - }, - { - "name": "Sarah Miller", - "license": "SM-54321", - "address": "789 Oak Ave", - "city": "Hartford, CT", - "phone": "(555) 345-6789", - "email": "sarah.miller@example.com", - "photo": "women/20" - }, - { - "name": "Emily White", - "license": "EW-67890", - "address": "123 Maple Ln", - "city": "Newark, NJ", - "phone": "(555) 432-9876", - "email": "emily.white@example.com", - "photo": "women/21" - } -] diff --git a/projects/fleet-management-grid/src/assets/data/maintenance.json b/projects/fleet-management-grid/src/assets/data/maintenance.json deleted file mode 100644 index 2f941bf..0000000 --- a/projects/fleet-management-grid/src/assets/data/maintenance.json +++ /dev/null @@ -1,1127 +0,0 @@ -[ - { - "vehicleId": "A00101", - "maintenance": [ - { - "id": 1, - "event": "Oil Change", - "date": "2024-10-31", - "location": "Cranbury, NJ", - "type": "Regular", - "remarks": "Documented oil change with 5W-20." - }, - { - "id": 2, - "event": "Tire Replacement", - "date": "2024-10-30", - "location": "Cranbury, NJ", - "type": "Incident", - "remarks": "Installed new front left tire, including brand and mileage." - }, - { - "id": 3, - "event": "Brake Inspection", - "date": "2024-10-01", - "location": "Cranbury, NJ", - "type": "Regular", - "remarks": "Checked and serviced brake system." - }, - { - "id": 4, - "event": "General Maintenance", - "date": "2024-08-20", - "location": "Cranbury, NJ", - "type": "Regular", - "remarks": "Comprehensive vehicle checkup, including fluids and filters." - }, - { - "id": 5, - "event": "Alignment and Suspension", - "date": "2024-08-19", - "location": "Cranbury, NJ", - "type": "Regular", - "remarks": "Documented wheel alignment and suspension service." - } - ] - }, - { - "vehicleId": "A00102", - "maintenance": [ - { - "id": 1, - "event": "Oil Change", - "date": "2024-10-31", - "location": "Cranbury, NJ", - "type": "Regular", - "remarks": "Documented oil change with 5W-20." - }, - { - "id": 2, - "event": "Tire Replacement", - "date": "2024-10-30", - "location": "Cranbury, NJ", - "type": "Incident", - "remarks": "Installed new front left tire, including brand and mileage." - }, - { - "id": 3, - "event": "Brake Fluid Refill", - "date": "2024-09-15", - "location": "Boston, MA", - "type": "Regular", - "remarks": "Brake fluid replaced and system flushed." - }, - { - "id": 4, - "event": "Battery Check", - "date": "2024-08-20", - "location": "Boston, MA", - "type": "Regular", - "remarks": "Battery tested and terminals cleaned." - }, - { - "id": 5, - "event": "Air Filter Replacement", - "date": "2024-07-10", - "location": "Boston, MA", - "type": "Regular", - "remarks": "Engine air filter replaced with new OEM part." - } - ] - }, - { - "vehicleId": "A00103", - "maintenance": [ - { - "id": 1, - "event": "Battery Replacement", - "date": "2024-10-01", - "location": "Camden, NJ", - "type": "Regular", - "remarks": "Replaced car battery with a new one." - }, - { - "id": 2, - "event": "Engine Tuning", - "date": "2024-09-15", - "location": "Hoboken, NJ", - "type": "Regular", - "remarks": "Engine performance tuning and diagnostics." - }, - { - "id": 3, - "event": "Tire Rotation", - "date": "2024-08-05", - "location": "Buffalo, NY", - "type": "Regular", - "remarks": "Rotated all tires to ensure even wear." - }, - { - "id": 4, - "event": "AC System Check", - "date": "2024-07-12", - "location": "Trenton, NJ", - "type": "Incident", - "remarks": "Inspected and refilled AC refrigerant." - }, - { - "id": 5, - "event": "Brake Pad Replacement", - "date": "2024-06-20", - "location": "Camden, NJ", - "type": "Regular", - "remarks": "Replaced front and rear brake pads." - } - ] - }, - { - "vehicleId": "A00104", - "maintenance": [ - { - "id": 1, - "event": "Engine Diagnostics", - "date": "2024-09-10", - "location": "Buffalo, NY", - "type": "Incident", - "remarks": "Performed diagnostics on the engine due to irregular performance." - }, - { - "id": 2, - "event": "Transmission Check", - "date": "2024-08-22", - "location": "Albany, NY", - "type": "Regular", - "remarks": "Routine transmission fluid level check and refill." - }, - { - "id": 3, - "event": "Battery Replacement", - "date": "2024-07-30", - "location": "Newark, NJ", - "type": "Regular", - "remarks": "Installed a new battery to replace the old one." - }, - { - "id": 4, - "event": "AC Repair", - "date": "2024-07-15", - "location": "Trenton, NJ", - "type": "Incident", - "remarks": "Fixed an issue with the air conditioning system cooling capacity." - }, - { - "id": 5, - "event": "Tire Rotation", - "date": "2024-06-10", - "location": "Camden, NJ", - "type": "Regular", - "remarks": "Rotated all tires to ensure even wear." - } - ] - }, - { - "vehicleId": "A00105", - "maintenance": [ - { - "id": 1, - "event": "Engine Tune-Up", - "date": "2024-11-15", - "location": "Camden, NJ", - "type": "Regular", - "remarks": "Engine performance optimization and diagnostics." - }, - { - "id": 2, - "event": "Tire Balancing", - "date": "2024-10-22", - "location": "Newark, NJ", - "type": "Regular", - "remarks": "Adjusted tire balancing to improve stability." - }, - { - "id": 3, - "event": "Brake Pad Replacement", - "date": "2024-09-30", - "location": "Philadelphia, PA", - "type": "Regular", - "remarks": "Installed new front brake pads." - }, - { - "id": 4, - "event": "Oil Change", - "date": "2024-09-10", - "location": "Trenton, NJ", - "type": "Regular", - "remarks": "Replaced engine oil with 5W-30 grade." - }, - { - "id": 5, - "event": "Battery Replacement", - "date": "2024-08-25", - "location": "Camden, NJ", - "type": "Incident", - "remarks": "Replaced old battery due to starting issues." - } - ] - }, - { - "vehicleId": "A00106", - "maintenance": [ - { - "id": 1, - "event": "Battery Replacement", - "date": "2024-12-01", - "location": "Seattle, WA", - "type": "Incident", - "remarks": "Replaced battery with high-performance model." - }, - { - "id": 2, - "event": "Coolant Refill", - "date": "2024-11-15", - "location": "Denver, CO", - "type": "Regular", - "remarks": "Performed coolant system flush and refill." - }, - { - "id": 3, - "event": "Windshield Repair", - "date": "2024-10-30", - "location": "San Francisco, CA", - "type": "Incident", - "remarks": "Repaired small crack on the windshield." - }, - { - "id": 4, - "event": "Air Filter Replacement", - "date": "2024-09-25", - "location": "Austin, TX", - "type": "Regular", - "remarks": "Replaced cabin and engine air filters." - }, - { - "id": 5, - "event": "Transmission Service", - "date": "2024-08-15", - "location": "Dallas, TX", - "type": "Regular", - "remarks": "Serviced transmission and replaced fluid." - } - ] - }, - { - "vehicleId": "A00107", - "maintenance": [ - { - "id": 1, - "event": "Battery Replacement", - "date": "2024-11-01", - "location": "Newark, NJ", - "type": "Incident", - "remarks": "Replaced the car battery with a high-capacity model." - }, - { - "id": 2, - "event": "Tire Rotation", - "date": "2024-10-15", - "location": "Cranbury, NJ", - "type": "Regular", - "remarks": "Rotated all four tires to ensure even wear." - }, - { - "id": 3, - "event": "Brake Pad Replacement", - "date": "2024-09-20", - "location": "Cranbury, NJ", - "type": "Incident", - "remarks": "Replaced front brake pads due to wear." - }, - { - "id": 4, - "event": "Oil and Filter Change", - "date": "2024-08-10", - "location": "New York, NY", - "type": "Regular", - "remarks": "Changed engine oil and replaced oil filter." - }, - { - "id": 5, - "event": "Coolant Flush", - "date": "2024-07-25", - "location": "Philadelphia, PA", - "type": "Regular", - "remarks": "Performed a coolant flush and replaced with fresh fluid." - } - ] - }, - { - "vehicleId": "A00108", - "maintenance": [ - { - "id": 1, - "event": "Battery Replacement", - "date": "2024-11-01", - "location": "Newark, NJ", - "type": "Incident", - "remarks": "Replaced the car battery with a high-capacity model." - }, - { - "id": 2, - "event": "Tire Rotation", - "date": "2024-10-15", - "location": "Cranbury, NJ", - "type": "Regular", - "remarks": "Rotated all four tires to ensure even wear." - }, - { - "id": 3, - "event": "Brake Pad Replacement", - "date": "2024-09-20", - "location": "Cranbury, NJ", - "type": "Incident", - "remarks": "Replaced front brake pads due to wear." - }, - { - "id": 4, - "event": "Oil and Filter Change", - "date": "2024-08-10", - "location": "New York, NY", - "type": "Regular", - "remarks": "Changed engine oil and replaced oil filter." - }, - { - "id": 5, - "event": "Coolant Flush", - "date": "2024-07-25", - "location": "Philadelphia, PA", - "type": "Regular", - "remarks": "Performed a coolant flush and replaced with fresh fluid." - } - ] - }, - { - "vehicleId": "A00109", - "maintenance": [ - { - "id": 1, - "event": "Battery Replacement", - "date": "2024-11-03", - "location": "Detroit, MI", - "type": "Incident", - "remarks": "Replaced old battery with a high-performance model." - }, - { - "id": 2, - "event": "Tire Rotation", - "date": "2024-10-20", - "location": "Cleveland, OH", - "type": "Regular", - "remarks": "Rotated all tires to ensure even wear." - }, - { - "id": 3, - "event": "Brake Fluid Replacement", - "date": "2024-09-30", - "location": "Pittsburgh, PA", - "type": "Regular", - "remarks": "Replaced brake fluid as part of regular maintenance." - }, - { - "id": 4, - "event": "Coolant System Flush", - "date": "2024-08-15", - "location": "Philadelphia, PA", - "type": "Regular", - "remarks": "Flushed coolant system and replaced with fresh coolant." - }, - { - "id": 5, - "event": "Engine Oil and Filter Change", - "date": "2024-07-20", - "location": "Chicago, IL", - "type": "Regular", - "remarks": "Performed oil change and replaced engine oil filter." - } - ] - }, - { - "vehicleId": "A00110", - "maintenance": [ - { - "id": 1, - "event": "Battery Replacement", - "date": "2024-11-12", - "location": "Boston, MA", - "type": "Incident", - "remarks": "Replaced the car battery with a high-performance model." - }, - { - "id": 2, - "event": "Tire Rotation", - "date": "2024-10-20", - "location": "New York, NY", - "type": "Regular", - "remarks": "Rotated all tires to ensure even wear." - }, - { - "id": 3, - "event": "Brake Fluid Replacement", - "date": "2024-09-25", - "location": "Hartford, CT", - "type": "Regular", - "remarks": "Replaced brake fluid as part of scheduled maintenance." - }, - { - "id": 4, - "event": "Coolant System Flush", - "date": "2024-08-28", - "location": "Buffalo, NY", - "type": "Regular", - "remarks": "Flushed and replaced coolant for optimal engine performance." - }, - { - "id": 5, - "event": "Oil and Filter Change", - "date": "2024-08-15", - "location": "Newark, NJ", - "type": "Regular", - "remarks": "Changed engine oil and replaced the oil filter." - } - ] - }, - { - "vehicleId": "A00111", - "maintenance": [ - { - "id": 1, - "event": "Engine Tune-Up", - "date": "2024-12-10", - "location": "Boston, MA", - "type": "Regular", - "remarks": "Performed routine engine tune-up and replaced spark plugs." - }, - { - "id": 2, - "event": "Tire Balancing", - "date": "2024-11-25", - "location": "New York, NY", - "type": "Regular", - "remarks": "Balanced all four tires to improve driving stability." - }, - { - "id": 3, - "event": "Battery Replacement", - "date": "2024-11-05", - "location": "Hartford, CT", - "type": "Incident", - "remarks": "Replaced car battery due to failure." - }, - { - "id": 4, - "event": "Brake Pad Replacement", - "date": "2024-10-30", - "location": "Newark, NJ", - "type": "Regular", - "remarks": "Replaced front brake pads and inspected rotors." - }, - { - "id": 5, - "event": "Oil Change", - "date": "2024-10-15", - "location": "Cranbury, NJ", - "type": "Regular", - "remarks": "Changed engine oil and replaced oil filter." - } - ] - }, - { - "vehicleId": "A00112", - "maintenance": [ - { - "id": 1, - "event": "Brake Pad Replacement", - "date": "2024-09-15", - "location": "Buffalo, NY", - "type": "Incident", - "remarks": "Replaced worn brake pads and inspected rotors." - }, - { - "id": 2, - "event": "Oil Change", - "date": "2024-08-20", - "location": "Cranbury, NJ", - "type": "Regular", - "remarks": "Performed oil change using synthetic 5W-30." - }, - { - "id": 3, - "event": "Tire Alignment", - "date": "2024-07-30", - "location": "Albany, NY", - "type": "Regular", - "remarks": "Adjusted tire alignment and rotated tires." - }, - { - "id": 4, - "event": "Battery Replacement", - "date": "2024-07-01", - "location": "Boston, MA", - "type": "Incident", - "remarks": "Installed a new battery and checked charging system." - }, - { - "id": 5, - "event": "Air Filter Replacement", - "date": "2024-06-15", - "location": "Albany, NY", - "type": "Regular", - "remarks": "Replaced air filter and inspected intake system." - } - ] - }, - { - "vehicleId": "A00113", - "maintenance": [ - { - "id": 1, - "event": "Oil Change", - "date": "2024-10-31", - "location": "Cranbury, NJ", - "type": "Regular", - "remarks": "Documented oil change with 5W-20." - }, - { - "id": 2, - "event": "Tire Replacement", - "date": "2024-10-30", - "location": "Cranbury, NJ", - "type": "Incident", - "remarks": "Installed new front left tire, including brand and mileage." - }, - { - "id": 3, - "event": "Brake Inspection", - "date": "2024-10-01", - "location": "Cranbury, NJ", - "type": "Regular", - "remarks": "Checked and serviced brake system." - }, - { - "id": 4, - "event": "General Maintenance", - "date": "2024-08-20", - "location": "Cranbury, NJ", - "type": "Regular", - "remarks": "Comprehensive vehicle checkup, including fluids and filters." - }, - { - "id": 5, - "event": "Alignment and Suspension", - "date": "2024-08-19", - "location": "Cranbury, NJ", - "type": "Regular", - "remarks": "Documented wheel alignment and suspension service." - } - ] - }, - { - "vehicleId": "A00114", - "maintenance": [ - { - "id": 1, - "event": "Oil Change", - "date": "2024-10-31", - "location": "Cranbury, NJ", - "type": "Regular", - "remarks": "Documented oil change with 5W-20." - }, - { - "id": 2, - "event": "Tire Replacement", - "date": "2024-10-30", - "location": "Cranbury, NJ", - "type": "Incident", - "remarks": "Installed new front left tire, including brand and mileage." - }, - { - "id": 3, - "event": "Brake Fluid Refill", - "date": "2024-09-15", - "location": "Boston, MA", - "type": "Regular", - "remarks": "Brake fluid replaced and system flushed." - }, - { - "id": 4, - "event": "Battery Check", - "date": "2024-08-20", - "location": "Boston, MA", - "type": "Regular", - "remarks": "Battery tested and terminals cleaned." - }, - { - "id": 5, - "event": "Air Filter Replacement", - "date": "2024-07-10", - "location": "Boston, MA", - "type": "Regular", - "remarks": "Engine air filter replaced with new OEM part." - } - ] - }, - { - "vehicleId": "A00115", - "maintenance": [ - { - "id": 1, - "event": "Battery Replacement", - "date": "2024-10-01", - "location": "Camden, NJ", - "type": "Regular", - "remarks": "Replaced car battery with a new one." - }, - { - "id": 2, - "event": "Engine Tuning", - "date": "2024-09-15", - "location": "Hoboken, NJ", - "type": "Regular", - "remarks": "Engine performance tuning and diagnostics." - }, - { - "id": 3, - "event": "Tire Rotation", - "date": "2024-08-05", - "location": "Buffalo, NY", - "type": "Regular", - "remarks": "Rotated all tires to ensure even wear." - }, - { - "id": 4, - "event": "AC System Check", - "date": "2024-07-12", - "location": "Trenton, NJ", - "type": "Incident", - "remarks": "Inspected and refilled AC refrigerant." - }, - { - "id": 5, - "event": "Brake Pad Replacement", - "date": "2024-06-20", - "location": "Camden, NJ", - "type": "Regular", - "remarks": "Replaced front and rear brake pads." - } - ] - }, - { - "vehicleId": "A00116", - "maintenance": [ - { - "id": 1, - "event": "Engine Diagnostics", - "date": "2024-09-10", - "location": "Buffalo, NY", - "type": "Incident", - "remarks": "Performed diagnostics on the engine due to irregular performance." - }, - { - "id": 2, - "event": "Transmission Check", - "date": "2024-08-22", - "location": "Albany, NY", - "type": "Regular", - "remarks": "Routine transmission fluid level check and refill." - }, - { - "id": 3, - "event": "Battery Replacement", - "date": "2024-07-30", - "location": "Newark, NJ", - "type": "Regular", - "remarks": "Installed a new battery to replace the old one." - }, - { - "id": 4, - "event": "AC Repair", - "date": "2024-07-15", - "location": "Trenton, NJ", - "type": "Incident", - "remarks": "Fixed an issue with the air conditioning system cooling capacity." - }, - { - "id": 5, - "event": "Tire Rotation", - "date": "2024-06-10", - "location": "Camden, NJ", - "type": "Regular", - "remarks": "Rotated all tires to ensure even wear." - } - ] - }, - { - "vehicleId": "A00117", - "maintenance": [ - { - "id": 1, - "event": "Engine Tune-Up", - "date": "2024-11-15", - "location": "Camden, NJ", - "type": "Regular", - "remarks": "Engine performance optimization and diagnostics." - }, - { - "id": 2, - "event": "Tire Balancing", - "date": "2024-10-22", - "location": "Newark, NJ", - "type": "Regular", - "remarks": "Adjusted tire balancing to improve stability." - }, - { - "id": 3, - "event": "Brake Pad Replacement", - "date": "2024-09-30", - "location": "Philadelphia, PA", - "type": "Regular", - "remarks": "Installed new front brake pads." - }, - { - "id": 4, - "event": "Oil Change", - "date": "2024-09-10", - "location": "Trenton, NJ", - "type": "Regular", - "remarks": "Replaced engine oil with 5W-30 grade." - }, - { - "id": 5, - "event": "Battery Replacement", - "date": "2024-08-25", - "location": "Camden, NJ", - "type": "Incident", - "remarks": "Replaced old battery due to starting issues." - } - ] - }, - { - "vehicleId": "A00118", - "maintenance": [ - { - "id": 1, - "event": "Battery Replacement", - "date": "2024-12-01", - "location": "Seattle, WA", - "type": "Incident", - "remarks": "Replaced battery with high-performance model." - }, - { - "id": 2, - "event": "Coolant Refill", - "date": "2024-11-15", - "location": "Denver, CO", - "type": "Regular", - "remarks": "Performed coolant system flush and refill." - }, - { - "id": 3, - "event": "Windshield Repair", - "date": "2024-10-30", - "location": "San Francisco, CA", - "type": "Incident", - "remarks": "Repaired small crack on the windshield." - }, - { - "id": 4, - "event": "Air Filter Replacement", - "date": "2024-09-25", - "location": "Austin, TX", - "type": "Regular", - "remarks": "Replaced cabin and engine air filters." - }, - { - "id": 5, - "event": "Transmission Service", - "date": "2024-08-15", - "location": "Dallas, TX", - "type": "Regular", - "remarks": "Serviced transmission and replaced fluid." - } - ] - }, - { - "vehicleId": "A00119", - "maintenance": [ - { - "id": 1, - "event": "Battery Replacement", - "date": "2024-11-01", - "location": "Newark, NJ", - "type": "Incident", - "remarks": "Replaced the car battery with a high-capacity model." - }, - { - "id": 2, - "event": "Tire Rotation", - "date": "2024-10-15", - "location": "Cranbury, NJ", - "type": "Regular", - "remarks": "Rotated all four tires to ensure even wear." - }, - { - "id": 3, - "event": "Brake Pad Replacement", - "date": "2024-09-20", - "location": "Cranbury, NJ", - "type": "Incident", - "remarks": "Replaced front brake pads due to wear." - }, - { - "id": 4, - "event": "Oil and Filter Change", - "date": "2024-08-10", - "location": "New York, NY", - "type": "Regular", - "remarks": "Changed engine oil and replaced oil filter." - }, - { - "id": 5, - "event": "Coolant Flush", - "date": "2024-07-25", - "location": "Philadelphia, PA", - "type": "Regular", - "remarks": "Performed a coolant flush and replaced with fresh fluid." - } - ] - }, - { - "vehicleId": "A00120", - "maintenance": [ - { - "id": 1, - "event": "Battery Replacement", - "date": "2024-11-01", - "location": "Newark, NJ", - "type": "Incident", - "remarks": "Replaced the car battery with a high-capacity model." - }, - { - "id": 2, - "event": "Tire Rotation", - "date": "2024-10-15", - "location": "Cranbury, NJ", - "type": "Regular", - "remarks": "Rotated all four tires to ensure even wear." - }, - { - "id": 3, - "event": "Brake Pad Replacement", - "date": "2024-09-20", - "location": "Cranbury, NJ", - "type": "Incident", - "remarks": "Replaced front brake pads due to wear." - }, - { - "id": 4, - "event": "Oil and Filter Change", - "date": "2024-08-10", - "location": "New York, NY", - "type": "Regular", - "remarks": "Changed engine oil and replaced oil filter." - }, - { - "id": 5, - "event": "Coolant Flush", - "date": "2024-07-25", - "location": "Philadelphia, PA", - "type": "Regular", - "remarks": "Performed a coolant flush and replaced with fresh fluid." - } - ] - }, - { - "vehicleId": "A00121", - "maintenance": [ - { - "id": 1, - "event": "Battery Replacement", - "date": "2024-11-03", - "location": "Detroit, MI", - "type": "Incident", - "remarks": "Replaced old battery with a high-performance model." - }, - { - "id": 2, - "event": "Tire Rotation", - "date": "2024-10-20", - "location": "Cleveland, OH", - "type": "Regular", - "remarks": "Rotated all tires to ensure even wear." - }, - { - "id": 3, - "event": "Brake Fluid Replacement", - "date": "2024-09-30", - "location": "Pittsburgh, PA", - "type": "Regular", - "remarks": "Replaced brake fluid as part of regular maintenance." - }, - { - "id": 4, - "event": "Coolant System Flush", - "date": "2024-08-15", - "location": "Philadelphia, PA", - "type": "Regular", - "remarks": "Flushed coolant system and replaced with fresh coolant." - }, - { - "id": 5, - "event": "Engine Oil and Filter Change", - "date": "2024-07-20", - "location": "Chicago, IL", - "type": "Regular", - "remarks": "Performed oil change and replaced engine oil filter." - } - ] - }, - { - "vehicleId": "A00122", - "maintenance": [ - { - "id": 1, - "event": "Battery Replacement", - "date": "2024-11-12", - "location": "Boston, MA", - "type": "Incident", - "remarks": "Replaced the car battery with a high-performance model." - }, - { - "id": 2, - "event": "Tire Rotation", - "date": "2024-10-20", - "location": "New York, NY", - "type": "Regular", - "remarks": "Rotated all tires to ensure even wear." - }, - { - "id": 3, - "event": "Brake Fluid Replacement", - "date": "2024-09-25", - "location": "Hartford, CT", - "type": "Regular", - "remarks": "Replaced brake fluid as part of scheduled maintenance." - }, - { - "id": 4, - "event": "Coolant System Flush", - "date": "2024-08-28", - "location": "Buffalo, NY", - "type": "Regular", - "remarks": "Flushed and replaced coolant for optimal engine performance." - }, - { - "id": 5, - "event": "Oil and Filter Change", - "date": "2024-08-15", - "location": "Newark, NJ", - "type": "Regular", - "remarks": "Changed engine oil and replaced the oil filter." - } - ] - }, - { - "vehicleId": "A00123", - "maintenance": [ - { - "id": 1, - "event": "Engine Tune-Up", - "date": "2024-12-10", - "location": "Boston, MA", - "type": "Regular", - "remarks": "Performed routine engine tune-up and replaced spark plugs." - }, - { - "id": 2, - "event": "Tire Balancing", - "date": "2024-11-25", - "location": "New York, NY", - "type": "Regular", - "remarks": "Balanced all four tires to improve driving stability." - }, - { - "id": 3, - "event": "Battery Replacement", - "date": "2024-11-05", - "location": "Hartford, CT", - "type": "Incident", - "remarks": "Replaced car battery due to failure." - }, - { - "id": 4, - "event": "Brake Pad Replacement", - "date": "2024-10-30", - "location": "Newark, NJ", - "type": "Regular", - "remarks": "Replaced front brake pads and inspected rotors." - }, - { - "id": 5, - "event": "Oil Change", - "date": "2024-10-15", - "location": "Cranbury, NJ", - "type": "Regular", - "remarks": "Changed engine oil and replaced oil filter." - } - ] - }, - { - "vehicleId": "A00124", - "maintenance": [ - { - "id": 1, - "event": "Brake Pad Replacement", - "date": "2024-09-15", - "location": "Buffalo, NY", - "type": "Incident", - "remarks": "Replaced worn brake pads and inspected rotors." - }, - { - "id": 2, - "event": "Oil Change", - "date": "2024-08-20", - "location": "Cranbury, NJ", - "type": "Regular", - "remarks": "Performed oil change using synthetic 5W-30." - }, - { - "id": 3, - "event": "Tire Alignment", - "date": "2024-07-30", - "location": "Albany, NY", - "type": "Regular", - "remarks": "Adjusted tire alignment and rotated tires." - }, - { - "id": 4, - "event": "Battery Replacement", - "date": "2024-07-01", - "location": "Boston, MA", - "type": "Incident", - "remarks": "Installed a new battery and checked charging system." - }, - { - "id": 5, - "event": "Air Filter Replacement", - "date": "2024-06-15", - "location": "Albany, NY", - "type": "Regular", - "remarks": "Replaced air filter and inspected intake system." - } - ] - }, - { - "vehicleId": "A00125", - "maintenance": [ - { - "id": 1, - "event": "Oil Change", - "date": "2024-10-31", - "location": "Cranbury, NJ", - "type": "Regular", - "remarks": "Documented oil change with 5W-20." - }, - { - "id": 2, - "event": "Tire Replacement", - "date": "2024-10-30", - "location": "Cranbury, NJ", - "type": "Incident", - "remarks": "Installed new front left tire, including brand and mileage." - }, - { - "id": 3, - "event": "Brake Inspection", - "date": "2024-10-01", - "location": "Cranbury, NJ", - "type": "Regular", - "remarks": "Checked and serviced brake system." - }, - { - "id": 4, - "event": "General Maintenance", - "date": "2024-08-20", - "location": "Cranbury, NJ", - "type": "Regular", - "remarks": "Comprehensive vehicle checkup, including fluids and filters." - }, - { - "id": 5, - "event": "Alignment and Suspension", - "date": "2024-08-19", - "location": "Cranbury, NJ", - "type": "Regular", - "remarks": "Documented wheel alignment and suspension service." - } - ] - } -] diff --git a/projects/fleet-management-grid/src/assets/data/trip_history.json b/projects/fleet-management-grid/src/assets/data/trip_history.json deleted file mode 100644 index 75904aa..0000000 --- a/projects/fleet-management-grid/src/assets/data/trip_history.json +++ /dev/null @@ -1,1495 +0,0 @@ -[ - { - "vehicleId": "A00101", - "tripHistory": [ - { - "id": 1, - "driverName": "John Davidson", - "start": "2024-11-17", - "end": "N/A", - "startLocation": "Boston, MA", - "endLocation": "New York, NY", - "startMeter": "73,321.0 mi", - "endMeter": "N/A", - "distance": "N/A", - "totalTime": "N/A" - }, - { - "id": 2, - "driverName": "Peter Jackson", - "start": "2024-10-13", - "end": "2024-10-23", - "startLocation": "Cranbury, NJ", - "endLocation": "Boston, MA", - "startMeter": "72,801.9 mi", - "endMeter": "73,321.0 mi", - "distance": "519.1 mi", - "totalTime": "23h 15m" - }, - { - "id": 3, - "driverName": "J.J. Swan", - "start": "2024-10-03", - "end": "2024-10-12", - "startLocation": "Boston, MA", - "endLocation": "Cranbury, NJ", - "startMeter": "72,475.9 mi", - "endMeter": "72,801.9 mi", - "distance": "326.0 mi", - "totalTime": "18h 30m" - }, - { - "id": 4, - "driverName": "Natalie Simson", - "start": "2024-09-23", - "end": "2024-09-29", - "startLocation": "Cranbury, NJ", - "endLocation": "Boston, MA", - "startMeter": "71,545.1 mi", - "endMeter": "72,475.9 mi", - "distance": "930.8 mi", - "totalTime": "45h 30m" - }, - { - "id": 5, - "driverName": "Peter Jackson", - "start": "2024-08-23", - "end": "2024-09-22", - "startLocation": "Boston, MA", - "endLocation": "Cranbury, NJ", - "startMeter": "70,581.0 mi", - "endMeter": "71,545.1 mi", - "distance": "964.1 mi", - "totalTime": "44h 45m" - }, - { - "id": 6, - "driverName": "Mike Sousan", - "start": "2024-08-15", - "end": "2024-08-20", - "startLocation": "Buffalo, NY", - "endLocation": "Boston, MA", - "startMeter": "69,971.9 mi", - "endMeter": "70,581.0 mi", - "distance": "609.1 mi", - "totalTime": "38h 30m" - } - ] - }, - { - "vehicleId": "A00102", - "tripHistory": [ - { - "id": 1, - "driverName": "John Davidson", - "start": "2024-11-17", - "end": "N/A", - "startLocation": "Boston, MA", - "endLocation": "New York, NY", - "startMeter": "73,321.0 mi", - "endMeter": "N/A", - "distance": "N/A", - "totalTime": "N/A" - }, - { - "id": 2, - "driverName": "Peter Jackson", - "start": "2024-10-13", - "end": "2024-10-23", - "startLocation": "Cranbury, NJ", - "endLocation": "Boston, MA", - "startMeter": "72,801.9 mi", - "endMeter": "73,321.0 mi", - "distance": "519.1 mi", - "totalTime": "23h 15m" - }, - { - "id": 3, - "driverName": "Natalie Simson", - "start": "2024-09-01", - "end": "2024-09-10", - "startLocation": "Boston, MA", - "endLocation": "Providence, RI", - "startMeter": "71,900.0 mi", - "endMeter": "72,300.0 mi", - "distance": "400.0 mi", - "totalTime": "15h 30m" - }, - { - "id": 4, - "driverName": "Mike Sousan", - "start": "2024-08-15", - "end": "2024-08-18", - "startLocation": "Boston, MA", - "endLocation": "Hartford, CT", - "startMeter": "71,500.0 mi", - "endMeter": "71,900.0 mi", - "distance": "400.0 mi", - "totalTime": "18h 00m" - }, - { - "id": 5, - "driverName": "Sophia Loren", - "start": "2024-07-10", - "end": "2024-07-15", - "startLocation": "Albany, NY", - "endLocation": "Boston, MA", - "startMeter": "70,800.0 mi", - "endMeter": "71,500.0 mi", - "distance": "700.0 mi", - "totalTime": "22h 45m" - } - ] - }, - { - "vehicleId": "A00103", - "tripHistory": [ - { - "id": 1, - "driverName": "Alex Robinson", - "start": "2024-10-01", - "end": "2024-10-04", - "startLocation": "Newark, NJ", - "endLocation": "Trenton, NJ", - "startMeter": "73,000.0 mi", - "endMeter": "73,500.0 mi", - "distance": "500.0 mi", - "totalTime": "14h 30m" - }, - { - "id": 2, - "driverName": "Emily Green", - "start": "2024-09-12", - "end": "2024-09-15", - "startLocation": "Hoboken, NJ", - "endLocation": "Albany, NY", - "startMeter": "72,700.0 mi", - "endMeter": "73,000.0 mi", - "distance": "300.0 mi", - "totalTime": "10h 15m" - }, - { - "id": 3, - "driverName": "Liam Carter", - "start": "2024-08-20", - "end": "2024-08-25", - "startLocation": "Camden, NJ", - "endLocation": "Buffalo, NY", - "startMeter": "72,200.0 mi", - "endMeter": "72,700.0 mi", - "distance": "500.0 mi", - "totalTime": "20h 10m" - }, - { - "id": 4, - "driverName": "Sophia Moore", - "start": "2024-07-10", - "end": "2024-07-15", - "startLocation": "Buffalo, NY", - "endLocation": "Newark, NJ", - "startMeter": "71,700.0 mi", - "endMeter": "72,200.0 mi", - "distance": "500.0 mi", - "totalTime": "18h 45m" - }, - { - "id": 5, - "driverName": "Noah Adams", - "start": "2024-06-18", - "end": "2024-06-20", - "startLocation": "Trenton, NJ", - "endLocation": "Camden, NJ", - "startMeter": "71,000.0 mi", - "endMeter": "71,700.0 mi", - "distance": "700.0 mi", - "totalTime": "12h 30m" - } - ] - }, - { - "vehicleId": "A00104", - "tripHistory": [ - { - "id": 1, - "driverName": "Michael Carter", - "start": "2024-11-20", - "end": "N/A", - "startLocation": "Albany, NY", - "endLocation": "Syracuse, NY", - "startMeter": "34,000.0 mi", - "endMeter": "N/A", - "distance": "N/A", - "totalTime": "N/A" - }, - { - "id": 2, - "driverName": "Sarah Taylor", - "start": "2024-10-15", - "end": "2024-10-17", - "startLocation": "Newark, NJ", - "endLocation": "Philadelphia, PA", - "startMeter": "33,000.0 mi", - "endMeter": "33,500.0 mi", - "distance": "500.0 mi", - "totalTime": "10h 45m" - }, - { - "id": 3, - "driverName": "Emily Davis", - "start": "2024-09-10", - "end": "2024-09-12", - "startLocation": "Buffalo, NY", - "endLocation": "Rochester, NY", - "startMeter": "32,000.0 mi", - "endMeter": "32,400.0 mi", - "distance": "400.0 mi", - "totalTime": "11h 00m" - }, - { - "id": 4, - "driverName": "James Brown", - "start": "2024-08-05", - "end": "2024-08-07", - "startLocation": "Trenton, NJ", - "endLocation": "Camden, NJ", - "startMeter": "31,000.0 mi", - "endMeter": "31,500.0 mi", - "distance": "500.0 mi", - "totalTime": "8h 45m" - }, - { - "id": 5, - "driverName": "Olivia Martinez", - "start": "2024-07-18", - "end": "2024-07-20", - "startLocation": "Hoboken, NJ", - "endLocation": "Newark, NJ", - "startMeter": "30,500.0 mi", - "endMeter": "31,000.0 mi", - "distance": "500.0 mi", - "totalTime": "7h 30m" - } - ] - }, - { - "vehicleId": "A00105", - "tripHistory": [ - { - "id": 1, - "driverName": "Michael Carter", - "start": "2024-12-01", - "end": "N/A", - "startLocation": "Trenton, NJ", - "endLocation": "Newark, NJ", - "startMeter": "40,000.0 mi", - "endMeter": "N/A", - "distance": "N/A", - "totalTime": "N/A" - }, - { - "id": 2, - "driverName": "Emily Taylor", - "start": "2024-11-20", - "end": "2024-11-21", - "startLocation": "Newark, NJ", - "endLocation": "Camden, NJ", - "startMeter": "39,800.0 mi", - "endMeter": "40,000.0 mi", - "distance": "200.0 mi", - "totalTime": "4h 30m" - }, - { - "id": 3, - "driverName": "James Brown", - "start": "2024-11-01", - "end": "2024-11-02", - "startLocation": "Camden, NJ", - "endLocation": "Philadelphia, PA", - "startMeter": "39,500.0 mi", - "endMeter": "39,800.0 mi", - "distance": "300.0 mi", - "totalTime": "6h 10m" - }, - { - "id": 4, - "driverName": "Olivia Martinez", - "start": "2024-10-10", - "end": "2024-10-12", - "startLocation": "Philadelphia, PA", - "endLocation": "Camden, NJ", - "startMeter": "39,000.0 mi", - "endMeter": "39,500.0 mi", - "distance": "500.0 mi", - "totalTime": "9h 45m" - }, - { - "id": 5, - "driverName": "Sophia Wilson", - "start": "2024-09-15", - "end": "2024-09-17", - "startLocation": "Camden, NJ", - "endLocation": "New York, NY", - "startMeter": "38,500.0 mi", - "endMeter": "39,000.0 mi", - "distance": "500.0 mi", - "totalTime": "10h 30m" - } - ] - }, - { - "vehicleId": "A00106", - "tripHistory": [ - { - "id": 1, - "driverName": "Alice Johnson", - "start": "2024-11-25", - "end": "2024-11-30", - "startLocation": "Seattle, WA", - "endLocation": "Portland, OR", - "startMeter": "74,500.0 mi", - "endMeter": "74,800.0 mi", - "distance": "300.0 mi", - "totalTime": "14h 50m" - }, - { - "id": 2, - "driverName": "Ethan Carter", - "start": "2024-10-22", - "end": "2024-10-28", - "startLocation": "Denver, CO", - "endLocation": "Salt Lake City, UT", - "startMeter": "73,900.0 mi", - "endMeter": "74,300.0 mi", - "distance": "400.0 mi", - "totalTime": "20h 10m" - }, - { - "id": 3, - "driverName": "Sophia Martinez", - "start": "2024-09-15", - "end": "2024-09-20", - "startLocation": "San Francisco, CA", - "endLocation": "Los Angeles, CA", - "startMeter": "72,100.0 mi", - "endMeter": "72,600.0 mi", - "distance": "500.0 mi", - "totalTime": "23h 30m" - }, - { - "id": 4, - "driverName": "Liam Brown", - "start": "2024-08-18", - "end": "2024-08-25", - "startLocation": "Austin, TX", - "endLocation": "Dallas, TX", - "startMeter": "71,500.0 mi", - "endMeter": "72,000.0 mi", - "distance": "500.0 mi", - "totalTime": "24h 10m" - } - ] - }, - { - "vehicleId": "A00107", - "tripHistory": [ - { - "id": 1, - "driverName": "Emily Carter", - "start": "2024-11-10", - "end": "2024-11-15", - "startLocation": "New York, NY", - "endLocation": "Boston, MA", - "startMeter": "74,000.0 mi", - "endMeter": "74,500.0 mi", - "distance": "500.0 mi", - "totalTime": "25h 00m" - }, - { - "id": 2, - "driverName": "Liam Johnson", - "start": "2024-10-25", - "end": "2024-10-30", - "startLocation": "Cranbury, NJ", - "endLocation": "Philadelphia, PA", - "startMeter": "73,500.0 mi", - "endMeter": "74,000.0 mi", - "distance": "500.0 mi", - "totalTime": "24h 45m" - }, - { - "id": 3, - "driverName": "Sophia Martinez", - "start": "2024-09-15", - "end": "2024-09-20", - "startLocation": "Boston, MA", - "endLocation": "Hartford, CT", - "startMeter": "73,000.0 mi", - "endMeter": "73,500.0 mi", - "distance": "500.0 mi", - "totalTime": "22h 30m" - }, - { - "id": 4, - "driverName": "James Smith", - "start": "2024-08-20", - "end": "2024-08-25", - "startLocation": "Cranbury, NJ", - "endLocation": "Newark, NJ", - "startMeter": "72,500.0 mi", - "endMeter": "73,000.0 mi", - "distance": "500.0 mi", - "totalTime": "24h 15m" - } - ] - }, - { - "vehicleId": "A00108", - "tripHistory": [ - { - "id": 1, - "driverName": "Alex Johnson", - "start": "2024-10-01", - "end": "2024-10-05", - "startLocation": "New York, NY", - "endLocation": "Boston, MA", - "startMeter": "73,000.0 mi", - "endMeter": "73,500.0 mi", - "distance": "500.0 mi", - "totalTime": "20h 00m" - }, - { - "id": 2, - "driverName": "Maria Gonzalez", - "start": "2024-09-15", - "end": "2024-09-20", - "startLocation": "Philadelphia, PA", - "endLocation": "Cranbury, NJ", - "startMeter": "72,500.0 mi", - "endMeter": "73,000.0 mi", - "distance": "500.0 mi", - "totalTime": "25h 00m" - }, - { - "id": 3, - "driverName": "Ethan Brown", - "start": "2024-08-20", - "end": "2024-08-25", - "startLocation": "Cranbury, NJ", - "endLocation": "Hartford, CT", - "startMeter": "72,000.0 mi", - "endMeter": "72,500.0 mi", - "distance": "500.0 mi", - "totalTime": "22h 30m" - }, - { - "id": 4, - "driverName": "Sophia Martinez", - "start": "2024-07-10", - "end": "2024-07-15", - "startLocation": "Hartford, CT", - "endLocation": "Buffalo, NY", - "startMeter": "71,500.0 mi", - "endMeter": "72,000.0 mi", - "distance": "500.0 mi", - "totalTime": "23h 15m" - } - ] - }, - { - "vehicleId": "A00109", - "tripHistory": [ - { - "id": 1, - "driverName": "Chris Taylor", - "start": "2024-11-01", - "end": "N/A", - "startLocation": "Chicago, IL", - "endLocation": "Detroit, MI", - "startMeter": "85,100.0 mi", - "endMeter": "N/A", - "distance": "N/A", - "totalTime": "N/A" - }, - { - "id": 2, - "driverName": "Rachel Adams", - "start": "2024-10-15", - "end": "2024-10-18", - "startLocation": "Detroit, MI", - "endLocation": "Cleveland, OH", - "startMeter": "84,600.0 mi", - "endMeter": "85,100.0 mi", - "distance": "500.0 mi", - "totalTime": "20h 00m" - }, - { - "id": 3, - "driverName": "Michael Green", - "start": "2024-09-25", - "end": "2024-09-28", - "startLocation": "Cleveland, OH", - "endLocation": "Pittsburgh, PA", - "startMeter": "84,100.0 mi", - "endMeter": "84,600.0 mi", - "distance": "500.0 mi", - "totalTime": "18h 30m" - }, - { - "id": 4, - "driverName": "Sarah Johnson", - "start": "2024-09-01", - "end": "2024-09-05", - "startLocation": "Pittsburgh, PA", - "endLocation": "Philadelphia, PA", - "startMeter": "83,600.0 mi", - "endMeter": "84,100.0 mi", - "distance": "500.0 mi", - "totalTime": "22h 15m" - } - ] - }, - { - "vehicleId": "A00110", - "tripHistory": [ - { - "id": 1, - "driverName": "David Miller", - "start": "2024-11-10", - "end": "2024-11-14", - "startLocation": "Newark, NJ", - "endLocation": "Boston, MA", - "startMeter": "28,000.0 mi", - "endMeter": "28,500.0 mi", - "distance": "500.0 mi", - "totalTime": "25h 00m" - }, - { - "id": 2, - "driverName": "Sophia Brown", - "start": "2024-10-01", - "end": "2024-10-05", - "startLocation": "Boston, MA", - "endLocation": "New York, NY", - "startMeter": "27,500.0 mi", - "endMeter": "28,000.0 mi", - "distance": "500.0 mi", - "totalTime": "22h 30m" - }, - { - "id": 3, - "driverName": "Ethan Johnson", - "start": "2024-09-15", - "end": "2024-09-20", - "startLocation": "New York, NY", - "endLocation": "Hartford, CT", - "startMeter": "27,000.0 mi", - "endMeter": "27,500.0 mi", - "distance": "500.0 mi", - "totalTime": "20h 45m" - }, - { - "id": 4, - "driverName": "Emma White", - "start": "2024-08-25", - "end": "2024-08-30", - "startLocation": "Hartford, CT", - "endLocation": "Buffalo, NY", - "startMeter": "26,500.0 mi", - "endMeter": "27,000.0 mi", - "distance": "500.0 mi", - "totalTime": "21h 15m" - } - ] - }, - { - "vehicleId": "A00111", - "tripHistory": [ - { - "id": 1, - "driverName": "James Carter", - "start": "2024-12-01", - "end": "2024-12-05", - "startLocation": "New York, NY", - "endLocation": "Boston, MA", - "startMeter": "39,500.0 mi", - "endMeter": "40,000.0 mi", - "distance": "500.0 mi", - "totalTime": "21h 35m" - }, - { - "id": 2, - "driverName": "Sarah Miller", - "start": "2024-11-15", - "end": "2024-11-20", - "startLocation": "Hartford, CT", - "endLocation": "Newark, NJ", - "startMeter": "39,000.0 mi", - "endMeter": "39,500.0 mi", - "distance": "500.0 mi", - "totalTime": "20h 30m" - }, - { - "id": 3, - "driverName": "Michael Brown", - "start": "2024-11-01", - "end": "2024-11-05", - "startLocation": "Boston, MA", - "endLocation": "New York, NY", - "startMeter": "38,500.0 mi", - "endMeter": "39,000.0 mi", - "distance": "500.0 mi", - "totalTime": "22h 00m" - }, - { - "id": 4, - "driverName": "Emily White", - "start": "2024-10-20", - "end": "2024-10-25", - "startLocation": "Newark, NJ", - "endLocation": "Hartford, CT", - "startMeter": "38,000.0 mi", - "endMeter": "38,500.0 mi", - "distance": "500.0 mi", - "totalTime": "21h 45m" - } - ] - }, - { - "vehicleId": "A00112", - "tripHistory": [ - { - "id": 1, - "driverName": "Michael Grant", - "start": "2024-11-01", - "end": "2024-11-06", - "startLocation": "Buffalo, NY", - "endLocation": "Albany, NY", - "startMeter": "73,500.0 mi", - "endMeter": "74,112.0 mi", - "distance": "612 mi", - "totalTime": "23h 25m" - }, - { - "id": 2, - "driverName": "Sarah Williams", - "start": "2024-10-15", - "end": "2024-10-22", - "startLocation": "Cranbury, NJ", - "endLocation": "Boston, MA", - "startMeter": "72,901.0 mi", - "endMeter": "73,500.0 mi", - "distance": "599.0 mi", - "totalTime": "22h 10m" - }, - { - "id": 3, - "driverName": "Jonathan Smith", - "start": "2024-09-20", - "end": "2024-09-25", - "startLocation": "Albany, NY", - "endLocation": "Cranbury, NJ", - "startMeter": "72,300.0 mi", - "endMeter": "72,901.0 mi", - "distance": "601.0 mi", - "totalTime": "20h 30m" - }, - { - "id": 4, - "driverName": "Emma Clarkson", - "start": "2024-08-10", - "end": "2024-08-15", - "startLocation": "Boston, MA", - "endLocation": "Buffalo, NY", - "startMeter": "71,700.0 mi", - "endMeter": "72,300.0 mi", - "distance": "600.0 mi", - "totalTime": "18h 45m" - } - ] - }, - { - "vehicleId": "A00113", - "tripHistory": [ - { - "id": 1, - "driverName": "John Davidson", - "start": "2024-11-17", - "end": "N/A", - "startLocation": "Boston, MA", - "endLocation": "New York, NY", - "startMeter": "73,321.0 mi", - "endMeter": "N/A", - "distance": "N/A", - "totalTime": "N/A" - }, - { - "id": 2, - "driverName": "Peter Jackson", - "start": "2024-10-13", - "end": "2024-10-23", - "startLocation": "Cranbury, NJ", - "endLocation": "Boston, MA", - "startMeter": "72,801.9 mi", - "endMeter": "73,321.0 mi", - "distance": "519.1 mi", - "totalTime": "23h 15m" - }, - { - "id": 3, - "driverName": "J.J. Swan", - "start": "2024-10-03", - "end": "2024-10-12", - "startLocation": "Boston, MA", - "endLocation": "Cranbury, NJ", - "startMeter": "72,475.9 mi", - "endMeter": "72,801.9 mi", - "distance": "326.0 mi", - "totalTime": "18h 30m" - }, - { - "id": 4, - "driverName": "Natalie Simson", - "start": "2024-09-23", - "end": "2024-09-29", - "startLocation": "Cranbury, NJ", - "endLocation": "Boston, MA", - "startMeter": "71,545.1 mi", - "endMeter": "72,475.9 mi", - "distance": "930.8 mi", - "totalTime": "45h 30m" - }, - { - "id": 5, - "driverName": "Peter Jackson", - "start": "2024-08-23", - "end": "2024-09-22", - "startLocation": "Boston, MA", - "endLocation": "Cranbury, NJ", - "startMeter": "70,581.0 mi", - "endMeter": "71,545.1 mi", - "distance": "964.1 mi", - "totalTime": "44h 45m" - }, - { - "id": 6, - "driverName": "Mike Sousan", - "start": "2024-08-15", - "end": "2024-08-20", - "startLocation": "Buffalo, NY", - "endLocation": "Boston, MA", - "startMeter": "69,971.9 mi", - "endMeter": "70,581.0 mi", - "distance": "609.1 mi", - "totalTime": "38h 30m" - } - ] - }, - { - "vehicleId": "A00114", - "tripHistory": [ - { - "id": 1, - "driverName": "John Davidson", - "start": "2024-11-17", - "end": "2024-11-17", - "startLocation": "Boston, MA", - "endLocation": "New York, NY", - "startMeter": "73,321.0 mi", - "endMeter": "73,523.4 mi", - "distance": "202.4 mi", - "totalTime": "4h 15m" - }, - { - "id": 2, - "driverName": "Peter Jackson", - "start": "2024-10-13", - "end": "2024-10-23", - "startLocation": "Cranbury, NJ", - "endLocation": "Boston, MA", - "startMeter": "72,801.9 mi", - "endMeter": "73,321.0 mi", - "distance": "519.1 mi", - "totalTime": "23h 15m" - }, - { - "id": 3, - "driverName": "Natalie Simson", - "start": "2024-09-01", - "end": "2024-09-10", - "startLocation": "Boston, MA", - "endLocation": "Providence, RI", - "startMeter": "71,900.0 mi", - "endMeter": "72,300.0 mi", - "distance": "400.0 mi", - "totalTime": "15h 30m" - }, - { - "id": 4, - "driverName": "Mike Sousan", - "start": "2024-08-15", - "end": "2024-08-18", - "startLocation": "Boston, MA", - "endLocation": "Hartford, CT", - "startMeter": "71,500.0 mi", - "endMeter": "71,900.0 mi", - "distance": "400.0 mi", - "totalTime": "18h 00m" - }, - { - "id": 5, - "driverName": "Sophia Loren", - "start": "2024-07-10", - "end": "2024-07-15", - "startLocation": "Albany, NY", - "endLocation": "Boston, MA", - "startMeter": "70,800.0 mi", - "endMeter": "71,500.0 mi", - "distance": "700.0 mi", - "totalTime": "22h 45m" - } - ] - }, - { - "vehicleId": "A00115", - "tripHistory": [ - { - "id": 1, - "driverName": "Alex Robinson", - "start": "2024-10-01", - "end": "2024-10-04", - "startLocation": "Newark, NJ", - "endLocation": "Trenton, NJ", - "startMeter": "73,000.0 mi", - "endMeter": "73,500.0 mi", - "distance": "500.0 mi", - "totalTime": "14h 30m" - }, - { - "id": 2, - "driverName": "Emily Green", - "start": "2024-09-12", - "end": "2024-09-15", - "startLocation": "Hoboken, NJ", - "endLocation": "Albany, NY", - "startMeter": "72,700.0 mi", - "endMeter": "73,000.0 mi", - "distance": "300.0 mi", - "totalTime": "10h 15m" - }, - { - "id": 3, - "driverName": "Liam Carter", - "start": "2024-08-20", - "end": "2024-08-25", - "startLocation": "Camden, NJ", - "endLocation": "Buffalo, NY", - "startMeter": "72,200.0 mi", - "endMeter": "72,700.0 mi", - "distance": "500.0 mi", - "totalTime": "20h 10m" - }, - { - "id": 4, - "driverName": "Sophia Moore", - "start": "2024-07-10", - "end": "2024-07-15", - "startLocation": "Buffalo, NY", - "endLocation": "Newark, NJ", - "startMeter": "71,700.0 mi", - "endMeter": "72,200.0 mi", - "distance": "500.0 mi", - "totalTime": "18h 45m" - }, - { - "id": 5, - "driverName": "Noah Adams", - "start": "2024-06-18", - "end": "2024-06-20", - "startLocation": "Trenton, NJ", - "endLocation": "Camden, NJ", - "startMeter": "71,000.0 mi", - "endMeter": "71,700.0 mi", - "distance": "700.0 mi", - "totalTime": "12h 30m" - } - ] - }, - { - "vehicleId": "A00116", - "tripHistory": [ - { - "id": 1, - "driverName": "Michael Carter", - "start": "2024-11-20", - "end": "N/A", - "startLocation": "Albany, NY", - "endLocation": "Syracuse, NY", - "startMeter": "34,000.0 mi", - "endMeter": "N/A", - "distance": "N/A", - "totalTime": "N/A" - }, - { - "id": 2, - "driverName": "Sarah Taylor", - "start": "2024-10-15", - "end": "2024-10-17", - "startLocation": "Newark, NJ", - "endLocation": "Philadelphia, PA", - "startMeter": "33,000.0 mi", - "endMeter": "33,500.0 mi", - "distance": "500.0 mi", - "totalTime": "10h 45m" - }, - { - "id": 3, - "driverName": "Emily Davis", - "start": "2024-09-10", - "end": "2024-09-12", - "startLocation": "Buffalo, NY", - "endLocation": "Rochester, NY", - "startMeter": "32,000.0 mi", - "endMeter": "32,400.0 mi", - "distance": "400.0 mi", - "totalTime": "11h 00m" - }, - { - "id": 4, - "driverName": "James Brown", - "start": "2024-08-05", - "end": "2024-08-07", - "startLocation": "Trenton, NJ", - "endLocation": "Camden, NJ", - "startMeter": "31,000.0 mi", - "endMeter": "31,500.0 mi", - "distance": "500.0 mi", - "totalTime": "8h 45m" - }, - { - "id": 5, - "driverName": "Olivia Martinez", - "start": "2024-07-18", - "end": "2024-07-20", - "startLocation": "Hoboken, NJ", - "endLocation": "Newark, NJ", - "startMeter": "30,500.0 mi", - "endMeter": "31,000.0 mi", - "distance": "500.0 mi", - "totalTime": "7h 30m" - } - ] - }, - { - "vehicleId": "A00117", - "tripHistory": [ - { - "id": 1, - "driverName": "Michael Carter", - "start": "2024-12-01", - "end": "2024-12-02", - "startLocation": "Trenton, NJ", - "endLocation": "Newark, NJ", - "startMeter": "40,000.0 mi", - "endMeter": "40,200.0 mi", - "distance": "200.0 mi", - "totalTime": "5h 15m" - }, - { - "id": 2, - "driverName": "Emily Taylor", - "start": "2024-11-20", - "end": "2024-11-21", - "startLocation": "Newark, NJ", - "endLocation": "Camden, NJ", - "startMeter": "39,800.0 mi", - "endMeter": "40,000.0 mi", - "distance": "200.0 mi", - "totalTime": "4h 30m" - }, - { - "id": 3, - "driverName": "James Brown", - "start": "2024-11-01", - "end": "2024-11-02", - "startLocation": "Camden, NJ", - "endLocation": "Philadelphia, PA", - "startMeter": "39,500.0 mi", - "endMeter": "39,800.0 mi", - "distance": "300.0 mi", - "totalTime": "6h 10m" - }, - { - "id": 4, - "driverName": "Olivia Martinez", - "start": "2024-10-10", - "end": "2024-10-12", - "startLocation": "Philadelphia, PA", - "endLocation": "Camden, NJ", - "startMeter": "39,000.0 mi", - "endMeter": "39,500.0 mi", - "distance": "500.0 mi", - "totalTime": "9h 45m" - }, - { - "id": 5, - "driverName": "Sophia Wilson", - "start": "2024-09-15", - "end": "2024-09-17", - "startLocation": "Camden, NJ", - "endLocation": "New York, NY", - "startMeter": "38,500.0 mi", - "endMeter": "39,000.0 mi", - "distance": "500.0 mi", - "totalTime": "10h 30m" - } - ] - }, - { - "vehicleId": "A00118", - "tripHistory": [ - { - "id": 1, - "driverName": "Alice Johnson", - "start": "2024-11-25", - "end": "N/A", - "startLocation": "Seattle, WA", - "endLocation": "Portland, OR", - "startMeter": "74,500.0 mi", - "endMeter": "N/A", - "distance": "N/A", - "totalTime": "N/A" - }, - { - "id": 2, - "driverName": "Ethan Carter", - "start": "2024-10-22", - "end": "2024-10-28", - "startLocation": "Denver, CO", - "endLocation": "Salt Lake City, UT", - "startMeter": "73,900.0 mi", - "endMeter": "74,300.0 mi", - "distance": "400.0 mi", - "totalTime": "20h 10m" - }, - { - "id": 3, - "driverName": "Sophia Martinez", - "start": "2024-09-15", - "end": "2024-09-20", - "startLocation": "San Francisco, CA", - "endLocation": "Los Angeles, CA", - "startMeter": "72,100.0 mi", - "endMeter": "72,600.0 mi", - "distance": "500.0 mi", - "totalTime": "23h 30m" - }, - { - "id": 4, - "driverName": "Liam Brown", - "start": "2024-08-18", - "end": "2024-08-25", - "startLocation": "Austin, TX", - "endLocation": "Dallas, TX", - "startMeter": "71,500.0 mi", - "endMeter": "72,000.0 mi", - "distance": "500.0 mi", - "totalTime": "24h 10m" - } - ] - }, - { - "vehicleId": "A00119", - "tripHistory": [ - { - "id": 1, - "driverName": "Emily Carter", - "start": "2024-11-10", - "end": "2024-11-15", - "startLocation": "New York, NY", - "endLocation": "Boston, MA", - "startMeter": "74,000.0 mi", - "endMeter": "74,500.0 mi", - "distance": "500.0 mi", - "totalTime": "25h 00m" - }, - { - "id": 2, - "driverName": "Liam Johnson", - "start": "2024-10-25", - "end": "2024-10-30", - "startLocation": "Cranbury, NJ", - "endLocation": "Philadelphia, PA", - "startMeter": "73,500.0 mi", - "endMeter": "74,000.0 mi", - "distance": "500.0 mi", - "totalTime": "24h 45m" - }, - { - "id": 3, - "driverName": "Sophia Martinez", - "start": "2024-09-15", - "end": "2024-09-20", - "startLocation": "Boston, MA", - "endLocation": "Hartford, CT", - "startMeter": "73,000.0 mi", - "endMeter": "73,500.0 mi", - "distance": "500.0 mi", - "totalTime": "22h 30m" - }, - { - "id": 4, - "driverName": "James Smith", - "start": "2024-08-20", - "end": "2024-08-25", - "startLocation": "Cranbury, NJ", - "endLocation": "Newark, NJ", - "startMeter": "72,500.0 mi", - "endMeter": "73,000.0 mi", - "distance": "500.0 mi", - "totalTime": "24h 15m" - } - ] - }, - { - "vehicleId": "A00120", - "tripHistory": [ - { - "id": 1, - "driverName": "Alex Johnson", - "start": "2024-10-01", - "end": "2024-10-05", - "startLocation": "New York, NY", - "endLocation": "Boston, MA", - "startMeter": "73,000.0 mi", - "endMeter": "73,500.0 mi", - "distance": "500.0 mi", - "totalTime": "20h 00m" - }, - { - "id": 2, - "driverName": "Maria Gonzalez", - "start": "2024-09-15", - "end": "2024-09-20", - "startLocation": "Philadelphia, PA", - "endLocation": "Cranbury, NJ", - "startMeter": "72,500.0 mi", - "endMeter": "73,000.0 mi", - "distance": "500.0 mi", - "totalTime": "25h 00m" - }, - { - "id": 3, - "driverName": "Ethan Brown", - "start": "2024-08-20", - "end": "2024-08-25", - "startLocation": "Cranbury, NJ", - "endLocation": "Hartford, CT", - "startMeter": "72,000.0 mi", - "endMeter": "72,500.0 mi", - "distance": "500.0 mi", - "totalTime": "22h 30m" - }, - { - "id": 4, - "driverName": "Sophia Martinez", - "start": "2024-07-10", - "end": "2024-07-15", - "startLocation": "Hartford, CT", - "endLocation": "Buffalo, NY", - "startMeter": "71,500.0 mi", - "endMeter": "72,000.0 mi", - "distance": "500.0 mi", - "totalTime": "23h 15m" - } - ] - }, - { - "vehicleId": "A00121", - "tripHistory": [ - { - "id": 1, - "driverName": "Chris Taylor", - "start": "2024-11-01", - "end": "N/A", - "startLocation": "Chicago, IL", - "endLocation": "Detroit, MI", - "startMeter": "85,100.0 mi", - "endMeter": "N/A", - "distance": "N/A", - "totalTime": "N/A" - }, - { - "id": 2, - "driverName": "Rachel Adams", - "start": "2024-10-15", - "end": "2024-10-18", - "startLocation": "Detroit, MI", - "endLocation": "Cleveland, OH", - "startMeter": "84,600.0 mi", - "endMeter": "85,100.0 mi", - "distance": "500.0 mi", - "totalTime": "20h 00m" - }, - { - "id": 3, - "driverName": "Michael Green", - "start": "2024-09-25", - "end": "2024-09-28", - "startLocation": "Cleveland, OH", - "endLocation": "Pittsburgh, PA", - "startMeter": "84,100.0 mi", - "endMeter": "84,600.0 mi", - "distance": "500.0 mi", - "totalTime": "18h 30m" - }, - { - "id": 4, - "driverName": "Sarah Johnson", - "start": "2024-09-01", - "end": "2024-09-05", - "startLocation": "Pittsburgh, PA", - "endLocation": "Philadelphia, PA", - "startMeter": "83,600.0 mi", - "endMeter": "84,100.0 mi", - "distance": "500.0 mi", - "totalTime": "22h 15m" - } - ] - }, - { - "vehicleId": "A00122", - "tripHistory": [ - { - "id": 1, - "driverName": "David Miller", - "start": "2024-11-10", - "end": "2024-11-14", - "startLocation": "Newark, NJ", - "endLocation": "Boston, MA", - "startMeter": "28,000.0 mi", - "endMeter": "28,500.0 mi", - "distance": "500.0 mi", - "totalTime": "25h 00m" - }, - { - "id": 2, - "driverName": "Sophia Brown", - "start": "2024-10-01", - "end": "2024-10-05", - "startLocation": "Boston, MA", - "endLocation": "New York, NY", - "startMeter": "27,500.0 mi", - "endMeter": "28,000.0 mi", - "distance": "500.0 mi", - "totalTime": "22h 30m" - }, - { - "id": 3, - "driverName": "Ethan Johnson", - "start": "2024-09-15", - "end": "2024-09-20", - "startLocation": "New York, NY", - "endLocation": "Hartford, CT", - "startMeter": "27,000.0 mi", - "endMeter": "27,500.0 mi", - "distance": "500.0 mi", - "totalTime": "20h 45m" - }, - { - "id": 4, - "driverName": "Emma White", - "start": "2024-08-25", - "end": "2024-08-30", - "startLocation": "Hartford, CT", - "endLocation": "Buffalo, NY", - "startMeter": "26,500.0 mi", - "endMeter": "27,000.0 mi", - "distance": "500.0 mi", - "totalTime": "21h 15m" - } - ] - }, - { - "vehicleId": "A00123", - "tripHistory": [ - { - "id": 1, - "driverName": "James Carter", - "start": "2024-12-01", - "end": "N/A", - "startLocation": "New York, NY", - "endLocation": "Boston, MA", - "startMeter": "39,500.0 mi", - "endMeter": "N/A", - "distance": "N/A", - "totalTime": "N/A" - }, - { - "id": 2, - "driverName": "Sarah Miller", - "start": "2024-11-15", - "end": "2024-11-20", - "startLocation": "Hartford, CT", - "endLocation": "Newark, NJ", - "startMeter": "39,000.0 mi", - "endMeter": "39,500.0 mi", - "distance": "500.0 mi", - "totalTime": "20h 30m" - }, - { - "id": 3, - "driverName": "Michael Brown", - "start": "2024-11-01", - "end": "2024-11-05", - "startLocation": "Boston, MA", - "endLocation": "New York, NY", - "startMeter": "38,500.0 mi", - "endMeter": "39,000.0 mi", - "distance": "500.0 mi", - "totalTime": "22h 00m" - }, - { - "id": 4, - "driverName": "Emily White", - "start": "2024-10-20", - "end": "2024-10-25", - "startLocation": "Newark, NJ", - "endLocation": "Hartford, CT", - "startMeter": "38,000.0 mi", - "endMeter": "38,500.0 mi", - "distance": "500.0 mi", - "totalTime": "21h 45m" - } - ] - }, - { - "vehicleId": "A00124", - "tripHistory": [ - { - "id": 1, - "driverName": "Michael Grant", - "start": "2024-11-01", - "end": "2024-11-06", - "startLocation": "Buffalo, NY", - "endLocation": "Albany, NY", - "startMeter": "73,500.0 mi", - "endMeter": "74,112.0 mi", - "distance": "612 mi", - "totalTime": "23h 25m" - }, - { - "id": 2, - "driverName": "Sarah Williams", - "start": "2024-10-15", - "end": "2024-10-22", - "startLocation": "Cranbury, NJ", - "endLocation": "Boston, MA", - "startMeter": "72,901.0 mi", - "endMeter": "73,500.0 mi", - "distance": "599.0 mi", - "totalTime": "22h 10m" - }, - { - "id": 3, - "driverName": "Jonathan Smith", - "start": "2024-09-20", - "end": "2024-09-25", - "startLocation": "Albany, NY", - "endLocation": "Cranbury, NJ", - "startMeter": "72,300.0 mi", - "endMeter": "72,901.0 mi", - "distance": "601.0 mi", - "totalTime": "20h 30m" - }, - { - "id": 4, - "driverName": "Emma Clarkson", - "start": "2024-08-10", - "end": "2024-08-15", - "startLocation": "Boston, MA", - "endLocation": "Buffalo, NY", - "startMeter": "71,700.0 mi", - "endMeter": "72,300.0 mi", - "distance": "600.0 mi", - "totalTime": "18h 45m" - } - ] - }, - { - "vehicleId": "A00125", - "tripHistory": [ - { - "id": 1, - "driverName": "John Davidson", - "start": "2024-11-17", - "end": "2024-11-17", - "startLocation": "Boston, MA", - "endLocation": "New York, NY", - "startMeter": "73,321.0 mi", - "endMeter": "73,523.4 mi", - "distance": "202.4 mi", - "totalTime": "4h 15m" - }, - { - "id": 2, - "driverName": "Peter Jackson", - "start": "2024-10-13", - "end": "2024-10-23", - "startLocation": "Cranbury, NJ", - "endLocation": "Boston, MA", - "startMeter": "72,801.9 mi", - "endMeter": "73,321.0 mi", - "distance": "519.1 mi", - "totalTime": "23h 15m" - }, - { - "id": 3, - "driverName": "J.J. Swan", - "start": "2024-10-03", - "end": "2024-10-12", - "startLocation": "Boston, MA", - "endLocation": "Cranbury, NJ", - "startMeter": "72,475.9 mi", - "endMeter": "72,801.9 mi", - "distance": "326.0 mi", - "totalTime": "18h 30m" - }, - { - "id": 4, - "driverName": "Natalie Simson", - "start": "2024-09-23", - "end": "2024-09-29", - "startLocation": "Cranbury, NJ", - "endLocation": "Boston, MA", - "startMeter": "71,545.1 mi", - "endMeter": "72,475.9 mi", - "distance": "930.8 mi", - "totalTime": "45h 30m" - }, - { - "id": 5, - "driverName": "Peter Jackson", - "start": "2024-08-23", - "end": "2024-09-22", - "startLocation": "Boston, MA", - "endLocation": "Cranbury, NJ", - "startMeter": "70,581.0 mi", - "endMeter": "71,545.1 mi", - "distance": "964.1 mi", - "totalTime": "44h 45m" - }, - { - "id": 6, - "driverName": "Mike Sousan", - "start": "2024-08-15", - "end": "2024-08-20", - "startLocation": "Buffalo, NY", - "endLocation": "Boston, MA", - "startMeter": "69,971.9 mi", - "endMeter": "70,581.0 mi", - "distance": "609.1 mi", - "totalTime": "38h 30m" - } - ] - } -] diff --git a/projects/fleet-management-grid/src/assets/data/utilization.json b/projects/fleet-management-grid/src/assets/data/utilization.json deleted file mode 100644 index d702ca1..0000000 --- a/projects/fleet-management-grid/src/assets/data/utilization.json +++ /dev/null @@ -1,1627 +0,0 @@ -[ - { - "vehicleId": "A00101", - "utilization": [ - { - "month": "January", - "'2023'": 158, - "'2024'": 200 - }, - { - "month": "February", - "'2023'": 231, - "'2024'": 182 - }, - { - "month": "March", - "'2023'": 372, - "'2024'": 350 - }, - { - "month": "April", - "'2023'": 548, - "'2024'": 515 - }, - { - "month": "May", - "'2023'": 647, - "'2024'": 800 - }, - { - "month": "June", - "'2023'": 839, - "'2024'": 912 - }, - { - "month": "July", - "'2023'": 897, - "'2024'": 924 - }, - { - "month": "August", - "'2023'": 930, - "'2024'": 989 - }, - { - "month": "September", - "'2023'": 843, - "'2024'": 820 - }, - { - "month": "October", - "'2023'": 780, - "'2024'": 987 - }, - { - "month": "November", - "'2023'": 489, - "'2024'": 690 - }, - { - "month": "December", - "'2023'": 210, - "'2024'": 0 - } - ] - }, - { - "vehicleId": "A00102", - "utilization": [ - { - "month": "January", - "'2023'": 158, - "'2024'": 200 - }, - { - "month": "February", - "'2023'": 231, - "'2024'": 182 - }, - { - "month": "March", - "'2023'": 372, - "'2024'": 350 - }, - { - "month": "April", - "'2023'": 548, - "'2024'": 515 - }, - { - "month": "May", - "'2023'": 647, - "'2024'": 800 - }, - { - "month": "June", - "'2023'": 839, - "'2024'": 912 - }, - { - "month": "July", - "'2023'": 897, - "'2024'": 924 - }, - { - "month": "August", - "'2023'": 930, - "'2024'": 989 - }, - { - "month": "September", - "'2023'": 843, - "'2024'": 820 - }, - { - "month": "October", - "'2023'": 780, - "'2024'": 987 - }, - { - "month": "November", - "'2023'": 489, - "'2024'": 690 - }, - { - "month": "December", - "'2023'": 210, - "'2024'": 0 - } - ] - }, - { - "vehicleId": "A00103", - "utilization": [ - { - "month": "January", - "'2023'": 162, - "'2024'": 205 - }, - { - "month": "February", - "'2023'": 238, - "'2024'": 190 - }, - { - "month": "March", - "'2023'": 380, - "'2024'": 355 - }, - { - "month": "April", - "'2023'": 560, - "'2024'": 520 - }, - { - "month": "May", - "'2023'": 655, - "'2024'": 810 - }, - { - "month": "June", - "'2023'": 845, - "'2024'": 920 - }, - { - "month": "July", - "'2023'": 905, - "'2024'": 930 - }, - { - "month": "August", - "'2023'": 935, - "'2024'": 995 - }, - { - "month": "September", - "'2023'": 850, - "'2024'": 825 - }, - { - "month": "October", - "'2023'": 790, - "'2024'": 990 - }, - { - "month": "November", - "'2023'": 495, - "'2024'": 695 - }, - { - "month": "December", - "'2023'": 215, - "'2024'": 5 - } - ] - }, - { - "vehicleId": "A00104", - "utilization": [ - { - "month": "January", - "'2023'": 165, - "'2024'": 210 - }, - { - "month": "February", - "'2023'": 240, - "'2024'": 190 - }, - { - "month": "March", - "'2023'": 380, - "'2024'": 360 - }, - { - "month": "April", - "'2023'": 555, - "'2024'": 520 - }, - { - "month": "May", - "'2023'": 660, - "'2024'": 810 - }, - { - "month": "June", - "'2023'": 850, - "'2024'": 930 - }, - { - "month": "July", - "'2023'": 905, - "'2024'": 940 - }, - { - "month": "August", - "'2023'": 940, - "'2024'": 995 - }, - { - "month": "September", - "'2023'": 850, - "'2024'": 830 - }, - { - "month": "October", - "'2023'": 790, - "'2024'": 995 - }, - { - "month": "November", - "'2023'": 500, - "'2024'": 700 - }, - { - "month": "December", - "'2023'": 220, - "'2024'": 10 - } - ] - }, - { - "vehicleId": "A00105", - "utilization": [ - { - "month": "January", - "'2023'": 180, - "'2024'": 215 - }, - { - "month": "February", - "'2023'": 210, - "'2024'": 200 - }, - { - "month": "March", - "'2023'": 395, - "'2024'": 370 - }, - { - "month": "April", - "'2023'": 570, - "'2024'": 530 - }, - { - "month": "May", - "'2023'": 650, - "'2024'": 815 - }, - { - "month": "June", - "'2023'": 850, - "'2024'": 930 - }, - { - "month": "July", - "'2023'": 900, - "'2024'": 940 - }, - { - "month": "August", - "'2023'": 920, - "'2024'": 995 - }, - { - "month": "September", - "'2023'": 845, - "'2024'": 830 - }, - { - "month": "October", - "'2023'": 790, - "'2024'": 990 - }, - { - "month": "November", - "'2023'": 500, - "'2024'": 710 - }, - { - "month": "December", - "'2023'": 220, - "'2024'": 10 - } - ] - }, - { - "vehicleId": "A00106", - "utilization": [ - { - "month": "January", - "'2023'": 162, - "'2024'": 210 - }, - { - "month": "February", - "'2023'": 240, - "'2024'": 190 - }, - { - "month": "March", - "'2023'": 380, - "'2024'": 360 - }, - { - "month": "April", - "'2023'": 550, - "'2024'": 520 - }, - { - "month": "May", - "'2023'": 660, - "'2024'": 810 - }, - { - "month": "June", - "'2023'": 850, - "'2024'": 920 - }, - { - "month": "July", - "'2023'": 905, - "'2024'": 930 - }, - { - "month": "August", - "'2023'": 940, - "'2024'": 995 - }, - { - "month": "September", - "'2023'": 850, - "'2024'": 830 - }, - { - "month": "October", - "'2023'": 790, - "'2024'": 990 - }, - { - "month": "November", - "'2023'": 500, - "'2024'": 700 - }, - { - "month": "December", - "'2023'": 220, - "'2024'": 10 - } - ] - }, - { - "vehicleId": "A00107", - "utilization": [ - { - "month": "January", - "'2023'": 162, - "'2024'": 210 - }, - { - "month": "February", - "'2023'": 240, - "'2024'": 190 - }, - { - "month": "March", - "'2023'": 380, - "'2024'": 360 - }, - { - "month": "April", - "'2023'": 550, - "'2024'": 520 - }, - { - "month": "May", - "'2023'": 660, - "'2024'": 810 - }, - { - "month": "June", - "'2023'": 850, - "'2024'": 920 - }, - { - "month": "July", - "'2023'": 905, - "'2024'": 930 - }, - { - "month": "August", - "'2023'": 940, - "'2024'": 995 - }, - { - "month": "September", - "'2023'": 850, - "'2024'": 830 - }, - { - "month": "October", - "'2023'": 790, - "'2024'": 990 - }, - { - "month": "November", - "'2023'": 500, - "'2024'": 700 - }, - { - "month": "December", - "'2023'": 220, - "'2024'": 15 - } - ] - }, - { - "vehicleId": "A00108", - "utilization": [ - { - "month": "January", - "'2023'": 162, - "'2024'": 215 - }, - { - "month": "February", - "'2023'": 242, - "'2024'": 193 - }, - { - "month": "March", - "'2023'": 375, - "'2024'": 355 - }, - { - "month": "April", - "'2023'": 555, - "'2024'": 525 - }, - { - "month": "May", - "'2023'": 665, - "'2024'": 810 - }, - { - "month": "June", - "'2023'": 850, - "'2024'": 930 - }, - { - "month": "July", - "'2023'": 910, - "'2024'": 940 - }, - { - "month": "August", - "'2023'": 945, - "'2024'": 995 - }, - { - "month": "September", - "'2023'": 855, - "'2024'": 835 - }, - { - "month": "October", - "'2023'": 795, - "'2024'": 995 - }, - { - "month": "November", - "'2023'": 505, - "'2024'": 705 - }, - { - "month": "December", - "'2023'": 225, - "'2024'": 15 - } - ] - }, - { - "vehicleId": "A00109", - "utilization": [ - { - "month": "January", - "'2023'": 165, - "'2024'": 210 - }, - { - "month": "February", - "'2023'": 240, - "'2024'": 195 - }, - { - "month": "March", - "'2023'": 380, - "'2024'": 360 - }, - { - "month": "April", - "'2023'": 555, - "'2024'": 520 - }, - { - "month": "May", - "'2023'": 660, - "'2024'": 810 - }, - { - "month": "June", - "'2023'": 850, - "'2024'": 920 - }, - { - "month": "July", - "'2023'": 910, - "'2024'": 930 - }, - { - "month": "August", - "'2023'": 940, - "'2024'": 990 - }, - { - "month": "September", - "'2023'": 850, - "'2024'": 830 - }, - { - "month": "October", - "'2023'": 790, - "'2024'": 985 - }, - { - "month": "November", - "'2023'": 500, - "'2024'": 695 - }, - { - "month": "December", - "'2023'": 220, - "'2024'": 10 - } - ] - }, - { - "vehicleId": "A00110", - "utilization": [ - { - "month": "January", - "'2023'": 165, - "'2024'": 205 - }, - { - "month": "February", - "'2023'": 240, - "'2024'": 190 - }, - { - "month": "March", - "'2023'": 375, - "'2024'": 355 - }, - { - "month": "April", - "'2023'": 550, - "'2024'": 525 - }, - { - "month": "May", - "'2023'": 655, - "'2024'": 815 - }, - { - "month": "June", - "'2023'": 845, - "'2024'": 915 - }, - { - "month": "July", - "'2023'": 900, - "'2024'": 930 - }, - { - "month": "August", - "'2023'": 940, - "'2024'": 995 - }, - { - "month": "September", - "'2023'": 850, - "'2024'": 825 - }, - { - "month": "October", - "'2023'": 785, - "'2024'": 990 - }, - { - "month": "November", - "'2023'": 495, - "'2024'": 700 - }, - { - "month": "December", - "'2023'": 220, - "'2024'": 10 - } - ] - }, - { - "vehicleId": "A00111", - "utilization": [ - { - "month": "January", - "'2023'": 165, - "'2024'": 210 - }, - { - "month": "February", - "'2023'": 245, - "'2024'": 195 - }, - { - "month": "March", - "'2023'": 380, - "'2024'": 360 - }, - { - "month": "April", - "'2023'": 560, - "'2024'": 520 - }, - { - "month": "May", - "'2023'": 650, - "'2024'": 820 - }, - { - "month": "June", - "'2023'": 845, - "'2024'": 915 - }, - { - "month": "July", - "'2023'": 905, - "'2024'": 930 - }, - { - "month": "August", - "'2023'": 935, - "'2024'": 995 - }, - { - "month": "September", - "'2023'": 850, - "'2024'": 830 - }, - { - "month": "October", - "'2023'": 790, - "'2024'": 990 - }, - { - "month": "November", - "'2023'": 500, - "'2024'": 700 - }, - { - "month": "December", - "'2023'": 220, - "'2024'": 10 - } - ] - }, - { - "vehicleId": "A00112", - "utilization": [ - { - "month": "January", - "'2023'": 165, - "'2024'": 210 - }, - { - "month": "February", - "'2023'": 240, - "'2024'": 190 - }, - { - "month": "March", - "'2023'": 380, - "'2024'": 360 - }, - { - "month": "April", - "'2023'": 560, - "'2024'": 530 - }, - { - "month": "May", - "'2023'": 650, - "'2024'": 820 - }, - { - "month": "June", - "'2023'": 850, - "'2024'": 930 - }, - { - "month": "July", - "'2023'": 905, - "'2024'": 940 - }, - { - "month": "August", - "'2023'": 940, - "'2024'": 995 - }, - { - "month": "September", - "'2023'": 850, - "'2024'": 830 - }, - { - "month": "October", - "'2023'": 790, - "'2024'": 995 - }, - { - "month": "November", - "'2023'": 500, - "'2024'": 700 - }, - { - "month": "December", - "'2023'": 220, - "'2024'": 10 - } - ] - }, - { - "vehicleId": "A00113", - "utilization": [ - { - "month": "January", - "'2023'": 158, - "'2024'": 200 - }, - { - "month": "February", - "'2023'": 231, - "'2024'": 182 - }, - { - "month": "March", - "'2023'": 372, - "'2024'": 350 - }, - { - "month": "April", - "'2023'": 548, - "'2024'": 515 - }, - { - "month": "May", - "'2023'": 647, - "'2024'": 800 - }, - { - "month": "June", - "'2023'": 839, - "'2024'": 912 - }, - { - "month": "July", - "'2023'": 897, - "'2024'": 924 - }, - { - "month": "August", - "'2023'": 930, - "'2024'": 989 - }, - { - "month": "September", - "'2023'": 843, - "'2024'": 820 - }, - { - "month": "October", - "'2023'": 780, - "'2024'": 987 - }, - { - "month": "November", - "'2023'": 489, - "'2024'": 690 - }, - { - "month": "December", - "'2023'": 210, - "'2024'": 0 - } - ] - }, - { - "vehicleId": "A00114", - "utilization": [ - { - "month": "January", - "'2023'": 158, - "'2024'": 200 - }, - { - "month": "February", - "'2023'": 231, - "'2024'": 182 - }, - { - "month": "March", - "'2023'": 372, - "'2024'": 350 - }, - { - "month": "April", - "'2023'": 548, - "'2024'": 515 - }, - { - "month": "May", - "'2023'": 647, - "'2024'": 800 - }, - { - "month": "June", - "'2023'": 839, - "'2024'": 912 - }, - { - "month": "July", - "'2023'": 897, - "'2024'": 924 - }, - { - "month": "August", - "'2023'": 930, - "'2024'": 989 - }, - { - "month": "September", - "'2023'": 843, - "'2024'": 820 - }, - { - "month": "October", - "'2023'": 780, - "'2024'": 987 - }, - { - "month": "November", - "'2023'": 489, - "'2024'": 690 - }, - { - "month": "December", - "'2023'": 210, - "'2024'": 0 - } - ] - }, - { - "vehicleId": "A00115", - "utilization": [ - { - "month": "January", - "'2023'": 162, - "'2024'": 205 - }, - { - "month": "February", - "'2023'": 238, - "'2024'": 190 - }, - { - "month": "March", - "'2023'": 380, - "'2024'": 355 - }, - { - "month": "April", - "'2023'": 560, - "'2024'": 520 - }, - { - "month": "May", - "'2023'": 655, - "'2024'": 810 - }, - { - "month": "June", - "'2023'": 845, - "'2024'": 920 - }, - { - "month": "July", - "'2023'": 905, - "'2024'": 930 - }, - { - "month": "August", - "'2023'": 935, - "'2024'": 995 - }, - { - "month": "September", - "'2023'": 850, - "'2024'": 825 - }, - { - "month": "October", - "'2023'": 790, - "'2024'": 990 - }, - { - "month": "November", - "'2023'": 495, - "'2024'": 695 - }, - { - "month": "December", - "'2023'": 215, - "'2024'": 5 - } - ] - }, - { - "vehicleId": "A00116", - "utilization": [ - { - "month": "January", - "'2023'": 165, - "'2024'": 210 - }, - { - "month": "February", - "'2023'": 240, - "'2024'": 190 - }, - { - "month": "March", - "'2023'": 380, - "'2024'": 360 - }, - { - "month": "April", - "'2023'": 555, - "'2024'": 520 - }, - { - "month": "May", - "'2023'": 660, - "'2024'": 810 - }, - { - "month": "June", - "'2023'": 850, - "'2024'": 930 - }, - { - "month": "July", - "'2023'": 905, - "'2024'": 940 - }, - { - "month": "August", - "'2023'": 940, - "'2024'": 995 - }, - { - "month": "September", - "'2023'": 850, - "'2024'": 830 - }, - { - "month": "October", - "'2023'": 790, - "'2024'": 995 - }, - { - "month": "November", - "'2023'": 500, - "'2024'": 700 - }, - { - "month": "December", - "'2023'": 220, - "'2024'": 10 - } - ] - }, - { - "vehicleId": "A00117", - "utilization": [ - { - "month": "January", - "'2023'": 180, - "'2024'": 215 - }, - { - "month": "February", - "'2023'": 210, - "'2024'": 200 - }, - { - "month": "March", - "'2023'": 395, - "'2024'": 370 - }, - { - "month": "April", - "'2023'": 570, - "'2024'": 530 - }, - { - "month": "May", - "'2023'": 650, - "'2024'": 815 - }, - { - "month": "June", - "'2023'": 850, - "'2024'": 930 - }, - { - "month": "July", - "'2023'": 900, - "'2024'": 940 - }, - { - "month": "August", - "'2023'": 920, - "'2024'": 995 - }, - { - "month": "September", - "'2023'": 845, - "'2024'": 830 - }, - { - "month": "October", - "'2023'": 790, - "'2024'": 990 - }, - { - "month": "November", - "'2023'": 500, - "'2024'": 710 - }, - { - "month": "December", - "'2023'": 220, - "'2024'": 10 - } - ] - }, - { - "vehicleId": "A00118", - "utilization": [ - { - "month": "January", - "'2023'": 162, - "'2024'": 210 - }, - { - "month": "February", - "'2023'": 240, - "'2024'": 190 - }, - { - "month": "March", - "'2023'": 380, - "'2024'": 360 - }, - { - "month": "April", - "'2023'": 550, - "'2024'": 520 - }, - { - "month": "May", - "'2023'": 660, - "'2024'": 810 - }, - { - "month": "June", - "'2023'": 850, - "'2024'": 920 - }, - { - "month": "July", - "'2023'": 905, - "'2024'": 930 - }, - { - "month": "August", - "'2023'": 940, - "'2024'": 995 - }, - { - "month": "September", - "'2023'": 850, - "'2024'": 830 - }, - { - "month": "October", - "'2023'": 790, - "'2024'": 990 - }, - { - "month": "November", - "'2023'": 500, - "'2024'": 700 - }, - { - "month": "December", - "'2023'": 220, - "'2024'": 10 - } - ] - }, - { - "vehicleId": "A00119", - "utilization": [ - { - "month": "January", - "'2023'": 162, - "'2024'": 210 - }, - { - "month": "February", - "'2023'": 240, - "'2024'": 190 - }, - { - "month": "March", - "'2023'": 380, - "'2024'": 360 - }, - { - "month": "April", - "'2023'": 550, - "'2024'": 520 - }, - { - "month": "May", - "'2023'": 660, - "'2024'": 810 - }, - { - "month": "June", - "'2023'": 850, - "'2024'": 920 - }, - { - "month": "July", - "'2023'": 905, - "'2024'": 930 - }, - { - "month": "August", - "'2023'": 940, - "'2024'": 995 - }, - { - "month": "September", - "'2023'": 850, - "'2024'": 830 - }, - { - "month": "October", - "'2023'": 790, - "'2024'": 990 - }, - { - "month": "November", - "'2023'": 500, - "'2024'": 700 - }, - { - "month": "December", - "'2023'": 220, - "'2024'": 15 - } - ] - }, - { - "vehicleId": "A00120", - "utilization": [ - { - "month": "January", - "'2023'": 162, - "'2024'": 215 - }, - { - "month": "February", - "'2023'": 242, - "'2024'": 193 - }, - { - "month": "March", - "'2023'": 375, - "'2024'": 355 - }, - { - "month": "April", - "'2023'": 555, - "'2024'": 525 - }, - { - "month": "May", - "'2023'": 665, - "'2024'": 810 - }, - { - "month": "June", - "'2023'": 850, - "'2024'": 930 - }, - { - "month": "July", - "'2023'": 910, - "'2024'": 940 - }, - { - "month": "August", - "'2023'": 945, - "'2024'": 995 - }, - { - "month": "September", - "'2023'": 855, - "'2024'": 835 - }, - { - "month": "October", - "'2023'": 795, - "'2024'": 995 - }, - { - "month": "November", - "'2023'": 505, - "'2024'": 705 - }, - { - "month": "December", - "'2023'": 225, - "'2024'": 15 - } - ] - }, - { - "vehicleId": "A00121", - "utilization": [ - { - "month": "January", - "'2023'": 165, - "'2024'": 210 - }, - { - "month": "February", - "'2023'": 240, - "'2024'": 195 - }, - { - "month": "March", - "'2023'": 380, - "'2024'": 360 - }, - { - "month": "April", - "'2023'": 555, - "'2024'": 520 - }, - { - "month": "May", - "'2023'": 660, - "'2024'": 810 - }, - { - "month": "June", - "'2023'": 850, - "'2024'": 920 - }, - { - "month": "July", - "'2023'": 910, - "'2024'": 930 - }, - { - "month": "August", - "'2023'": 940, - "'2024'": 990 - }, - { - "month": "September", - "'2023'": 850, - "'2024'": 830 - }, - { - "month": "October", - "'2023'": 790, - "'2024'": 985 - }, - { - "month": "November", - "'2023'": 500, - "'2024'": 695 - }, - { - "month": "December", - "'2023'": 220, - "'2024'": 10 - } - ] - }, - { - "vehicleId": "A00122", - "utilization": [ - { - "month": "January", - "'2023'": 165, - "'2024'": 205 - }, - { - "month": "February", - "'2023'": 240, - "'2024'": 190 - }, - { - "month": "March", - "'2023'": 375, - "'2024'": 355 - }, - { - "month": "April", - "'2023'": 550, - "'2024'": 525 - }, - { - "month": "May", - "'2023'": 655, - "'2024'": 815 - }, - { - "month": "June", - "'2023'": 845, - "'2024'": 915 - }, - { - "month": "July", - "'2023'": 900, - "'2024'": 930 - }, - { - "month": "August", - "'2023'": 940, - "'2024'": 995 - }, - { - "month": "September", - "'2023'": 850, - "'2024'": 825 - }, - { - "month": "October", - "'2023'": 785, - "'2024'": 990 - }, - { - "month": "November", - "'2023'": 495, - "'2024'": 700 - }, - { - "month": "December", - "'2023'": 220, - "'2024'": 10 - } - ] - }, - { - "vehicleId": "A00123", - "utilization": [ - { - "month": "January", - "'2023'": 165, - "'2024'": 210 - }, - { - "month": "February", - "'2023'": 245, - "'2024'": 195 - }, - { - "month": "March", - "'2023'": 380, - "'2024'": 360 - }, - { - "month": "April", - "'2023'": 560, - "'2024'": 520 - }, - { - "month": "May", - "'2023'": 650, - "'2024'": 820 - }, - { - "month": "June", - "'2023'": 845, - "'2024'": 915 - }, - { - "month": "July", - "'2023'": 905, - "'2024'": 930 - }, - { - "month": "August", - "'2023'": 935, - "'2024'": 995 - }, - { - "month": "September", - "'2023'": 850, - "'2024'": 830 - }, - { - "month": "October", - "'2023'": 790, - "'2024'": 990 - }, - { - "month": "November", - "'2023'": 500, - "'2024'": 700 - }, - { - "month": "December", - "'2023'": 220, - "'2024'": 10 - } - ] - }, - { - "vehicleId": "A00124", - "utilization": [ - { - "month": "January", - "'2023'": 165, - "'2024'": 210 - }, - { - "month": "February", - "'2023'": 240, - "'2024'": 190 - }, - { - "month": "March", - "'2023'": 380, - "'2024'": 360 - }, - { - "month": "April", - "'2023'": 560, - "'2024'": 530 - }, - { - "month": "May", - "'2023'": 650, - "'2024'": 820 - }, - { - "month": "June", - "'2023'": 850, - "'2024'": 930 - }, - { - "month": "July", - "'2023'": 905, - "'2024'": 940 - }, - { - "month": "August", - "'2023'": 940, - "'2024'": 995 - }, - { - "month": "September", - "'2023'": 850, - "'2024'": 830 - }, - { - "month": "October", - "'2023'": 790, - "'2024'": 995 - }, - { - "month": "November", - "'2023'": 500, - "'2024'": 700 - }, - { - "month": "December", - "'2023'": 220, - "'2024'": 10 - } - ] - }, - { - "vehicleId": "A00125", - "utilization": [ - { - "month": "January", - "'2023'": 158, - "'2024'": 200 - }, - { - "month": "February", - "'2023'": 231, - "'2024'": 182 - }, - { - "month": "March", - "'2023'": 372, - "'2024'": 350 - }, - { - "month": "April", - "'2023'": 548, - "'2024'": 515 - }, - { - "month": "May", - "'2023'": 647, - "'2024'": 800 - }, - { - "month": "June", - "'2023'": 839, - "'2024'": 912 - }, - { - "month": "July", - "'2023'": 897, - "'2024'": 924 - }, - { - "month": "August", - "'2023'": 930, - "'2024'": 989 - }, - { - "month": "September", - "'2023'": 843, - "'2024'": 820 - }, - { - "month": "October", - "'2023'": 780, - "'2024'": 987 - }, - { - "month": "November", - "'2023'": 489, - "'2024'": 690 - }, - { - "month": "December", - "'2023'": 210, - "'2024'": 0 - } - ] - } -] diff --git a/projects/fleet-management-grid/src/assets/data/vehicles.json b/projects/fleet-management-grid/src/assets/data/vehicles.json deleted file mode 100644 index a4ffd5d..0000000 --- a/projects/fleet-management-grid/src/assets/data/vehicles.json +++ /dev/null @@ -1,652 +0,0 @@ -[ - { - "vehicleId": "A00101", - "licensePlate": "KVG 8850", - "make": "Ford", - "model": "Focus", - "type": "Hatchback", - "vin": "1FADP3F24HL312717", - "status": "Active", - "locationCity": "New York, NY", - "locationGps": "40.743828, -74.037982", - "details": { - "generation": "Focus III Hatchback", - "yearOfManufacture": 2016, - "fuelType": "Petrol (Gasoline)", - "doors": 5, - "seats": 5, - "transmission": "Manual", - "engine": "1.0 EcoBoost", - "power": "125 Hp", - "mileage": "73,321 mi", - "cubature": "999 cm3", - "color": "Dark Gray", - "msrp": "$24,358", - "tollPassId": "EZ-733490" - } - }, - { - "vehicleId": "A00102", - "licensePlate": "5VLZ 91", - "make": "Ford", - "model": "Focus", - "type": "Hatchback", - "vin": "WF0KXXGCKCY565571", - "status": "Active", - "locationCity": "Boston, MA", - "locationGps": "42.352104, -71.075238", - "details": { - "generation": "Focus Hatchback", - "yearOfManufacture": 2018, - "fuelType": "Diesel", - "doors": 5, - "seats": 5, - "transmission": "Automatic", - "engine": "2.0 TDI", - "power": "150 Hp", - "mileage": "50,890 mi", - "cubature": "1968 cm3", - "color": "Blue", - "msrp": "$28,900", - "tollPassId": "EZ-733491" - } - }, - { - "vehicleId": "A00103", - "licensePlate": "C10 EFF", - "make": "VW", - "model": "Passat", - "type": "Station Wagon", - "vin": "1VWZYZ33DER623111", - "status": "Available", - "locationCity": "Camden, NJ", - "locationGps": "39.936602, -75.105808", - "details": { - "generation": "Passat B8", - "yearOfManufacture": 2019, - "fuelType": "Hybrid", - "doors": 5, - "seats": 5, - "transmission": "Automatic", - "engine": "1.4 TSI PHEV", - "power": "156 Hp", - "mileage": "33,500 mi", - "cubature": "1395 cm3", - "color": "Black", - "msrp": "$23,500", - "tollPassId": "EZ-733492" - } - }, - { - "vehicleId": "A00104", - "licensePlate": "KUM 0269", - "make": "VW", - "model": "Passat", - "type": "Station Wagon", - "vin": "1VWZYZ33ZWE623426", - "status": "Active", - "locationCity": "Philadelphia, PA", - "locationGps": "39.992220, -75.141041", - "details": { - "generation": "Passat B8", - "yearOfManufacture": 2019, - "fuelType": "Hybrid", - "doors": 5, - "seats": 5, - "transmission": "Automatic", - "engine": "1.4 TSI PHEV", - "power": "156 Hp", - "mileage": "33,500 mi", - "cubature": "1395 cm3", - "color": "Gray", - "msrp": "$23,500", - "tollPassId": "EZ-733492" - } - }, - { - "vehicleId": "A00105", - "licensePlate": "C10 UAA", - "make": "VW", - "model": "Golf", - "type": "Hatchback", - "vin": "WVWZZZ3BZWE689725", - "status": "Active", - "locationCity": "Camden, NJ", - "locationGps": "39.935249, -75.101969", - "details": { - "generation": "Golf VII", - "yearOfManufacture": 2019, - "fuelType": "Hybrid", - "doors": 5, - "seats": 5, - "transmission": "Automatic", - "engine": "1.5 TSI eHybrid", - "power": "150 Hp", - "mileage": "33,500 mi", - "cubature": "1498 cm3", - "color": "Gray", - "msrp": "$24,000", - "tollPassId": "EZ-733492" - } - }, - { - "vehicleId": "A00106", - "licensePlate": "C34 VBU", - "make": "Kia", - "model": "Ceed", - "type": "Hatchback", - "vin": "U5YFF23429L032112", - "status": "Available", - "locationCity": "Camden, NJ", - "locationGps": "39.920728, -75.113277", - "details": { - "generation": "Ceed III", - "yearOfManufacture": 2019, - "fuelType": "Hybrid", - "doors": 5, - "seats": 5, - "transmission": "CVT", - "engine": "1.6 GDI Hybrid", - "power": "139 Hp", - "mileage": "33,500 mi", - "cubature": "1598 cm3", - "color": "White", - "msrp": "$23,500", - "tollPassId": "EZ-733492" - } - }, - { - "vehicleId": "A00107", - "licensePlate": "MA MN4567", - "make": "Honda", - "model": "Civic", - "type": "Sedan", - "vin": "19XFC2F59HEE67890", - "status": "In Maintenance", - "locationCity": "Cranbury, NJ", - "locationGps": "40.306846, -74.508342", - "details": { - "generation": "Civic Sedan", - "yearOfManufacture": 2019, - "fuelType": "Hybrid", - "doors": 4, - "seats": 5, - "transmission": "CVT", - "engine": "1.8 Hybrid", - "power": "121 Hp", - "mileage": "33,500 mi", - "cubature": "1798 cm3", - "color": "Black", - "msrp": "$23,500", - "tollPassId": "EZ-733492" - } - }, - { - "vehicleId": "A00108", - "licensePlate": "NY LK1234", - "make": "Toyota", - "model": "Corolla", - "type": "Sedan", - "vin": "JTDBR32E330C87654", - "status": "In Maintenance", - "locationCity": "Cranbury, NJ", - "locationGps": "40.306846, -74.508342", - "details": { - "generation": "Toyota Corolla Sedan", - "yearOfManufacture": 2019, - "fuelType": "Hybrid", - "doors": 4, - "seats": 5, - "transmission": "CVT", - "engine": "1.8 Hybrid", - "power": "121 Hp", - "mileage": "33,500 mi", - "cubature": "1798 cm3", - "color": "Red", - "msrp": "$23,500", - "tollPassId": "EZ-733492" - } - }, - { - "vehicleId": "A00109", - "licensePlate": "PA HJ6543", - "make": "Mazda", - "model": "3", - "type": "Hatchback", - "vin": "JM3KE2BE0E023456", - "status": "Active", - "locationCity": "New York, NY", - "locationGps": "40.731433, -74.042163", - "details": { - "generation": "Mazda 3 Hatchback", - "yearOfManufacture": 2019, - "fuelType": "Hybrid", - "doors": 4, - "seats": 5, - "transmission": "CVT", - "engine": "1.8 Hybrid", - "power": "121 Hp", - "mileage": "33,500 mi", - "cubature": "1798 cm3", - "color": "Black", - "msrp": "$23,500", - "tollPassId": "EZ-733492" - } - }, - { - "vehicleId": "A00110", - "licensePlate": "NY QW6789", - "make": "Ford", - "model": "Mustang", - "type": "Coupe", - "vin": "1FAFP40433F278901", - "status": "Available", - "locationCity": "Boston, MA", - "locationGps": "42.378956, -71.064221", - "details": { - "generation": "Ford Mustang Coupe", - "yearOfManufacture": 2019, - "fuelType": "Gasoline", - "doors": 2, - "seats": 4, - "transmission": "Manual", - "engine": "5.0 V8", - "power": "450 Hp", - "mileage": "28,000 mi", - "cubature": "4951 cm3", - "color": "Red", - "msrp": "$45,000", - "tollPassId": "EZ-733492" - } - }, - { - "vehicleId": "A00111", - "licensePlate": "MA PQ5678", - "make": "Toyota", - "model": "RAV4", - "type": "SUV", - "vin": "2T3WFREV0FW034567", - "status": "Available", - "locationCity": "Boston, MA", - "locationGps": "42.378956, -71.064221", - "details": { - "generation": "Toyota RAV4 Hybrid SUV", - "yearOfManufacture": 2019, - "fuelType": "Hybrid", - "doors": 4, - "seats": 5, - "transmission": "CVT", - "engine": "2.5 Hybrid", - "power": "219 Hp", - "mileage": "33,500 mi", - "cubature": "2487 cm3", - "color": "Black", - "msrp": "$28,500", - "tollPassId": "EZ-733492" - } - }, - { - "vehicleId": "A00112", - "licensePlate": "MA RS4321", - "make": "Toyota", - "model": "RAV4", - "type": "SUV", - "vin": "4S4BRBCC0F1245678", - "status": "In Maintenance", - "locationCity": "Cranbury, NJ", - "locationGps": "40.306846, -74.508342", - "details": { - "generation": "Toyota RAV4 Hybrid SUV", - "yearOfManufacture": 2019, - "fuelType": "Hybrid", - "doors": 4, - "seats": 5, - "transmission": "CVT", - "engine": "2.5 Hybrid", - "power": "219 Hp", - "mileage": "33,500 mi", - "cubature": "2487 cm3", - "color": "Silver", - "msrp": "$28,500", - "tollPassId": "EZ-733492" - } - }, - { - "vehicleId": "A00113", - "licensePlate": "NJ FX2154", - "make": "Ford", - "model": "F-150", - "type": "Truck", - "vin": "1FTFW1E58JFB12345", - "status": "Active", - "locationCity": "Trenton, NJ", - "locationGps": "40.217053, -74.742938", - "details": { - "generation": "Ford F-150 SuperCrew", - "yearOfManufacture": 2020, - "fuelType": "Gasoline", - "doors": 4, - "seats": 5, - "transmission": "Automatic", - "engine": "3.5L V6 EcoBoost", - "power": "400 Hp", - "mileage": "45,200 mi", - "cubature": "3496 cm3", - "color": "Blue", - "msrp": "$35,500", - "tollPassId": "EZ-455678" - } - }, - { - "vehicleId": "A00114", - "licensePlate": "PA RY8723", - "make": "Ford", - "model": "F-150", - "type": "Truck", - "vin": "1FTFW1E59JFB67890", - "status": "Available", - "locationCity": "Philadelphia, PA", - "locationGps": "39.952583, -75.165222", - "details": { - "generation": "Ford F-150 SuperCrew", - "yearOfManufacture": 2021, - "fuelType": "Gasoline", - "doors": 4, - "seats": 5, - "transmission": "Automatic", - "engine": "5.0L V8", - "power": "395 Hp", - "mileage": "38,700 mi", - "cubature": "5000 cm3", - "color": "Red", - "msrp": "$40,000", - "tollPassId": "EZ-984312" - } - }, - { - "vehicleId": "A00115", - "licensePlate": "NY HK1290", - "make": "Hyundai", - "model": "Kona", - "type": "SUV", - "vin": "KM8K22AA0LU765432", - "status": "In Maintenance", - "locationCity": "New York, NY", - "locationGps": "40.712776, -74.005974", - "details": { - "generation": "Hyundai Kona SE", - "yearOfManufacture": 2022, - "fuelType": "Gasoline", - "doors": 4, - "seats": 5, - "transmission": "Automatic", - "engine": "2.0L I4", - "power": "147 Hp", - "mileage": "12,300 mi", - "cubature": "1998 cm3", - "color": "Black", - "msrp": "$21,500", - "tollPassId": "EZ-763245" - } - }, - { - "vehicleId": "A00116", - "licensePlate": "NJ HX5678", - "make": "Hyundai", - "model": "ix35", - "type": "SUV", - "vin": "TMAJU81BDJ7896543", - "status": "Active", - "locationCity": "Edison, NJ", - "locationGps": "40.518715, -74.412095", - "details": { - "generation": "Hyundai ix35 2.0 CRDi", - "yearOfManufacture": 2018, - "fuelType": "Diesel", - "doors": 4, - "seats": 5, - "transmission": "Manual", - "engine": "2.0L Diesel", - "power": "181 Hp", - "mileage": "60,500 mi", - "cubature": "1995 cm3", - "color": "Gray", - "msrp": "$24,000", - "tollPassId": "EZ-872345" - } - }, - { - "vehicleId": "A00117", - "licensePlate": "PA KC9087", - "make": "Kia", - "model": "Ceed", - "type": "Hatchback", - "vin": "U5YHN51DGGL345678", - "status": "Available", - "locationCity": "Harrisburg, PA", - "locationGps": "40.273191, -76.886701", - "details": { - "generation": "Kia Ceed GT Line", - "yearOfManufacture": 2021, - "fuelType": "Gasoline", - "doors": 5, - "seats": 5, - "transmission": "Automatic", - "engine": "1.6L Turbo", - "power": "201 Hp", - "mileage": "25,700 mi", - "cubature": "1591 cm3", - "color": "Red", - "msrp": "$27,500", - "tollPassId": "EZ-637829" - } - }, - { - "vehicleId": "A00118", - "licensePlate": "NY FM5678", - "make": "Ford", - "model": "Mustang", - "type": "Coupe", - "vin": "1FA6P8TH2L5146789", - "status": "Active", - "locationCity": "New York, NY", - "locationGps": "40.712776, -74.005974", - "details": { - "generation": "Ford Mustang EcoBoost", - "yearOfManufacture": 2021, - "fuelType": "Gasoline", - "doors": 2, - "seats": 4, - "transmission": "Manual", - "engine": "2.3L Turbo I4", - "power": "310 Hp", - "mileage": "22,400 mi", - "cubature": "2300 cm3", - "color": "Blue", - "msrp": "$27,000", - "tollPassId": "EZ-234567" - } - }, - { - "vehicleId": "A00119", - "licensePlate": "PA EV6453", - "make": "Kia", - "model": "EV6", - "type": "SUV", - "vin": "KNDC4DLC7N5123456", - "status": "Available", - "locationCity": "Philadelphia, PA", - "locationGps": "39.952583, -75.165222", - "details": { - "generation": "Kia EV6 Long Range AWD", - "yearOfManufacture": 2022, - "fuelType": "Electric", - "doors": 4, - "seats": 5, - "transmission": "Automatic", - "engine": "Dual Motor AWD", - "power": "320 Hp", - "mileage": "18,500 mi", - "cubature": "N/A", - "color": "Silver", - "msrp": "$48,000", - "tollPassId": "EZ-783245" - } - }, - { - "vehicleId": "A00120", - "licensePlate": "NJ TM9876", - "make": "Tesla", - "model": "Model 3", - "type": "Sedan", - "vin": "5YJ3E1EA5LF123456", - "status": "In Maintenance", - "locationCity": "Trenton, NJ", - "locationGps": "40.217053, -74.742938", - "details": { - "generation": "Tesla Model 3 Performance", - "yearOfManufacture": 2021, - "fuelType": "Electric", - "doors": 4, - "seats": 5, - "transmission": "Automatic", - "engine": "Dual Motor AWD", - "power": "450 Hp", - "mileage": "30,800 mi", - "cubature": "N/A", - "color": "Red", - "msrp": "$57,000", - "tollPassId": "EZ-905678" - } - }, - { - "vehicleId": "A00121", - "licensePlate": "MA EV6789", - "make": "Kia", - "model": "EV6", - "type": "SUV", - "vin": "KNDC4DLC9N5678901", - "status": "Active", - "locationCity": "Boston, MA", - "locationGps": "42.360081, -71.058884", - "details": { - "generation": "Kia EV6 Long Range AWD", - "yearOfManufacture": 2023, - "fuelType": "Electric", - "doors": 4, - "seats": 5, - "transmission": "Automatic", - "engine": "Dual Motor AWD", - "power": "320 Hp", - "mileage": "9,300 mi", - "cubature": "N/A", - "color": "Red", - "msrp": "$48,500", - "tollPassId": "EZ-456789" - } - }, - { - "vehicleId": "A00122", - "licensePlate": "NJ MZ1234", - "make": "Mazda", - "model": "6", - "type": "Sedan", - "vin": "JM1GL1VM3J1204567", - "status": "Available", - "locationCity": "Edison, NJ", - "locationGps": "40.518715, -74.412095", - "details": { - "generation": "Mazda 6 Signature", - "yearOfManufacture": 2020, - "fuelType": "Gasoline", - "doors": 4, - "seats": 5, - "transmission": "Automatic", - "engine": "2.5L Turbo I4", - "power": "250 Hp", - "mileage": "41,200 mi", - "cubature": "2488 cm3", - "color": "Black", - "msrp": "$36,000", - "tollPassId": "EZ-874312" - } - }, - { - "vehicleId": "A00123", - "licensePlate": "TX TT9876", - "make": "Toyota", - "model": "Tundra", - "type": "Truck", - "vin": "5TFDY5F18MX123456", - "status": "Active", - "locationCity": "Dallas, TX", - "locationGps": "32.776665, -96.796989", - "details": { - "generation": "Toyota Tundra CrewMax", - "yearOfManufacture": 2021, - "fuelType": "Gasoline", - "doors": 4, - "seats": 5, - "transmission": "Automatic", - "engine": "5.7L V8", - "power": "381 Hp", - "mileage": "29,100 mi", - "cubature": "5663 cm3", - "color": "Black", - "msrp": "$45,000", - "tollPassId": "EZ-982374" - } - }, - { - "vehicleId": "A00124", - "licensePlate": "NY VW5678", - "make": "VW", - "model": "Touareg", - "type": "SUV", - "vin": "WVGZZZ7PZHD654321", - "status": "Available", - "locationCity": "Albany, NY", - "locationGps": "42.652580, -73.756233", - "details": { - "generation": "VW Touareg V6 TDI", - "yearOfManufacture": 2018, - "fuelType": "Diesel", - "doors": 4, - "seats": 5, - "transmission": "Automatic", - "engine": "3.0L V6 TDI", - "power": "286 Hp", - "mileage": "58,400 mi", - "cubature": "2967 cm3", - "color": "White", - "msrp": "$50,000", - "tollPassId": "EZ-763214" - } - }, - { - "vehicleId": "A00125", - "licensePlate": "NJ KS4321", - "make": "Kia", - "model": "Sportage", - "type": "SUV", - "vin": "KNDP6CAC5L7632109", - "status": "In Maintenance", - "locationCity": "Newark, NJ", - "locationGps": "40.735657, -74.172363", - "details": { - "generation": "Kia Sportage SX Turbo", - "yearOfManufacture": 2020, - "fuelType": "Gasoline", - "doors": 4, - "seats": 5, - "transmission": "Automatic", - "engine": "2.0L Turbo I4", - "power": "237 Hp", - "mileage": "41,500 mi", - "cubature": "1998 cm3", - "color": "White", - "msrp": "$31,500", - "tollPassId": "EZ-897341" - } - } -] diff --git a/projects/hr-portal/src/app/data/localData.ts b/projects/hr-portal/src/app/data/localData.ts deleted file mode 100644 index bec0c28..0000000 --- a/projects/hr-portal/src/app/data/localData.ts +++ /dev/null @@ -1,1811 +0,0 @@ -export interface Employee { - Age: number; - Employees?: Employee[]; - HireDate: Date; - ID: number; - Name: string; - Location: string; - Country: string; - Picture: string; - JobTitle: string; - Department: string; - Contacts: string; - GrossSalary: number; - Phone: string; -} - -export const EMPLOYEE_DATA: Employee[] = [ - { - "ID": 1, - "Name": "John Doe", - "JobTitle": "CEO", - "Department": "Executive", - "Location": "San Francisco", - "Country": "USA", - "GrossSalary": 20000, - "Phone": "555-0000", - "Contacts": "john.doe@company.com", - "Picture": "images/men/1.jpg", - "Age": 50, - "HireDate": new Date(2008, 2, 10), - "Employees": [] - }, - { - "ID": 2, - "Name": "David Wilson", - "JobTitle": "COO", - "Department": "Operations", - "Location": "New York", - "Country": "USA", - "GrossSalary": 18000, - "Phone": "555-1001", - "Contacts": "david.wilson@company.com", - "Picture": "images/men/2.jpg", - "Age": 48, - "HireDate": new Date(2012, 4, 15), - "Employees": [ - { - "ID": 8, - "Name": "Alice Johnson", - "JobTitle": "Operations Manager", - "Department": "Operations", - "Location": "New York", - "Country": "USA", - "GrossSalary": 14000, - "Phone": "555-7007", - "Contacts": "alice.johnson@company.com", - "Picture": "images/women/8.jpg", - "Age": 44, - "HireDate": new Date(2015, 1, 10), - "Employees": [ - { - "ID": 9, - "Name": "Robert Smith", - "JobTitle": "Logistics Lead", - "Department": "Operations", - "Location": "New York", - "Country": "USA", - "GrossSalary": 12000, - "Phone": "555-8008", - "Contacts": "robert.smith@company.com", - "Picture": "images/men/9.jpg", - "Age": 41, - "HireDate": new Date(2016, 2, 15), - "Employees": [ - { - "ID": 11, - "Name": "Daniel Lee", - "JobTitle": "Logistics Specialist", - "Department": "Operations", - "Location": "New York", - "Country": "USA", - "GrossSalary": 9000, - "Phone": "555-1011", - "Contacts": "daniel.lee@company.com", - "Picture": "images/men/11.jpg", - "Age": 35, - "HireDate": new Date(2018, 5, 10), - "Employees": [] - }, - { - "ID": 151592, - "Name": "Rodger Everett", - "JobTitle": "Logistics Specialist", - "Department": "Operations", - "Location": "New York", - "Country": "USA", - "GrossSalary": 312500, - "Phone": "555-151592", - "Contacts": "daniel.harris@company.com", - "Picture": "images/men/82.jpg", - "Age": 44, - "HireDate": new Date(2024, 4, 1), - "Employees": [] - }, - { - "ID": 151595, - "Name": "Mia Adams", - "JobTitle": "Logistics Specialist", - "Department": "Operations", - "Location": "New York", - "Country": "USA", - "GrossSalary": 312500, - "Phone": "555-151595", - "Contacts": "mia.adams@company.com", - "Picture": "images/men/18.jpg", - "Age": 37, - "HireDate": new Date(2024, 4, 11), - "Employees": [] - }, - { - "ID": 151596, - "Name": "Ava Robinson", - "JobTitle": "Logistics Specialist", - "Department": "Operations", - "Location": "New York", - "Country": "USA", - "GrossSalary": 312500, - "Phone": "555-151596", - "Contacts": "ava.robinson@company.com", - "Picture": "images/men/8.jpg", - "Age": 33, - "HireDate": new Date(2024, 6, 8), - "Employees": [] - }, - { - "ID": 12, - "Name": "Jessica White", - "JobTitle": "Logistics Specialist", - "Department": "Operations", - "Location": "New York", - "Country": "USA", - "GrossSalary": 8800, - "Phone": "555-1012", - "Contacts": "jessica.white@company.com", - "Picture": "images/women/12.jpg", - "Age": 32, - "HireDate": new Date(2019, 2, 25), - "Employees": [] - }, - { - "ID": 13, - "Name": "Matthew Harris", - "JobTitle": "Logistics Specialist", - "Department": "Operations", - "Location": "New York", - "Country": "USA", - "GrossSalary": 8700, - "Phone": "555-1013", - "Contacts": "matthew.harris@company.com", - "Picture": "images/men/13.jpg", - "Age": 34, - "HireDate": new Date(2020, 0, 14), - "Employees": [] - }, - { - "ID": 14, - "Name": "Olivia Clark", - "JobTitle": "Logistics Specialist", - "Department": "Operations", - "Location": "New York", - "Country": "USA", - "GrossSalary": 8600, - "Phone": "555-1014", - "Contacts": "olivia.clark@company.com", - "Picture": "images/women/14.jpg", - "Age": 30, - "HireDate": new Date(2021, 4, 10), - "Employees": [] - }, - { - "ID": 15, - "Name": "Ethan Walker", - "JobTitle": "Logistics Specialist", - "Department": "Operations", - "Location": "New York", - "Country": "USA", - "GrossSalary": 8500, - "Phone": "555-1015", - "Contacts": "ethan.walker@company.com", - "Picture": "images/men/15.jpg", - "Age": 31, - "HireDate": new Date(2022, 6, 18), - "Employees": [] - } - ] - }, - { - "ID": 10, - "Name": "Letty Sonia", - "JobTitle": "Office Administration Lead", - "Department": "Operations", - "Location": "New York", - "Country": "USA", - "GrossSalary": 11500, - "Phone": "555-9009", - "Contacts": "sophia.martinez@company.com", - "Picture": "images/women/10.jpg", - "Age": 39, - "HireDate": new Date(2017, 4, 20), - "Employees": [ - { - "ID": 16, - "Name": "Liam Johnson", - "JobTitle": "Office Administrator", - "Department": "Operations", - "Location": "New York", - "Country": "USA", - "GrossSalary": 8200, - "Phone": "555-1016", - "Contacts": "liam.johnson@company.com", - "Picture": "images/men/16.jpg", - "Age": 33, - "HireDate": new Date(2019, 3, 5), - "Employees": [] - }, - { - "ID": 151599, - "Name": "Emma Scott", - "JobTitle": "Office Administrator", - "Department": "Operations", - "Location": "New York", - "Country": "USA", - "GrossSalary": 6900, - "Phone": "555-151599", - "Contacts": "emma.scott@company.com", - "Picture": "images/men/78.jpg", - "Age": 37, - "HireDate": new Date(2024, 6, 23), - "Employees": [] - }, - { - "ID": 151600, - "Name": "Westley Clifford", - "JobTitle": "Office Administrator", - "Department": "Operations", - "Location": "New York", - "Country": "USA", - "GrossSalary": 6900, - "Phone": "555-151600", - "Contacts": "jack.thompson@company.com", - "Picture": "images/men/7.jpg", - "Age": 33, - "HireDate": new Date(2024, 6, 10), - "Employees": [] - }, - { - "ID": 17, - "Name": "Emily Davis", - "JobTitle": "Office Administrator", - "Department": "Operations", - "Location": "New York", - "Country": "USA", - "GrossSalary": 8100, - "Phone": "555-1017", - "Contacts": "emily.davis@company.com", - "Picture": "images/women/17.jpg", - "Age": 29, - "HireDate": new Date(2020, 5, 14), - "Employees": [] - }, - { - "ID": 18, - "Name": "Benjamin Carter", - "JobTitle": "Office Administrator", - "Department": "Operations", - "Location": "New York", - "Country": "USA", - "GrossSalary": 8000, - "Phone": "555-1018", - "Contacts": "benjamin.carter@company.com", - "Picture": "images/men/12.jpg", - "Age": 31, - "HireDate": new Date(2021, 1, 11), - "Employees": [] - }, - { - "ID": 19, - "Name": "Sophia Roberts", - "JobTitle": "Office Administrator", - "Department": "Operations", - "Location": "New York", - "Country": "USA", - "GrossSalary": 7900, - "Phone": "555-1019", - "Contacts": "sophia.roberts@company.com", - "Picture": "images/women/19.jpg", - "Age": 28, - "HireDate": new Date(2022, 8, 22), - "Employees": [] - }, - { - "ID": 20, - "Name": "Daniel Edwards", - "JobTitle": "Office Administrator", - "Department": "Operations", - "Location": "New York", - "Country": "USA", - "GrossSalary": 7800, - "Phone": "555-1020", - "Contacts": "daniel.edwards@company.com", - "Picture": "images/men/20.jpg", - "Age": 30, - "HireDate": new Date(2023, 0, 8), - "Employees": [] - } - ] - } - ] - } - ] - }, - { - "ID": 3, - "Name": "Aaron Miller", - "JobTitle": "CTO", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 19000, - "Phone": "555-2002", - "Contacts": "aaron.miller@company.com", - "Picture": "images/men/3.jpg", - "Age": 45, - "HireDate": new Date(2010, 6, 20), - "Employees": [ - { - "ID": 21, - "Name": "William Carter", - "JobTitle": "VP of Engineering", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 19000, - "Phone": "555-1021", - "Contacts": "william.carter@company.com", - "Picture": "images/men/21.jpg", - "Age": 45, - "HireDate": new Date(2012, 6, 15), - "Employees": [ - { - "ID": 22, - "Name": "Michael Brown", - "JobTitle": "Backend Lead", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 15000, - "Phone": "555-1022", - "Contacts": "michael.brown@company.com", - "Picture": "images/men/22.jpg", - "Age": 40, - "HireDate": new Date(2015, 2, 10), - "Employees": [ - { - "ID": 26, - "Name": "Ethan Foster", - "JobTitle": "Backend Engineer", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 12000, - "Phone": "555-1026", - "Contacts": "ethan.foster@company.com", - "Picture": "images/men/26.jpg", - "Age": 32, - "HireDate": new Date(2019, 3, 18), - "Employees": [] - }, - { - "ID": 151604, - "Name": "Russ Chuckie", - "JobTitle": "Backend Engineer", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 10000, - "Phone": "555-151604", - "Contacts": "jack.thompson@company.com", - "Picture": "images/men/77.jpg", - "Age": 42, - "HireDate": new Date(2024, 8, 7), - "Employees": [] - }, - { - "ID": 151606, - "Name": "Daniel Harris", - "JobTitle": "Backend Engineer", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 10000, - "Phone": "555-151606", - "Contacts": "daniel.harris@company.com", - "Picture": "images/men/6.jpg", - "Age": 26, - "HireDate": new Date(2024, 2, 23), - "Employees": [] - }, - { - "ID": 27, - "Name": "Daniel Reed", - "JobTitle": "Backend Engineer", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 11800, - "Phone": "555-1027", - "Contacts": "daniel.reed@company.com", - "Picture": "images/men/27.jpg", - "Age": 30, - "HireDate": new Date(2020, 5, 10), - "Employees": [] - }, - { - "ID": 28, - "Name": "Olivia Parker", - "JobTitle": "Backend Engineer", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 11500, - "Phone": "555-1028", - "Contacts": "olivia.parker@company.com", - "Picture": "images/women/28.jpg", - "Age": 29, - "HireDate": new Date(2021, 1, 15), - "Employees": [] - }, - { - "ID": 29, - "Name": "Benjamin Scott", - "JobTitle": "Backend Engineer", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 11200, - "Phone": "555-1029", - "Contacts": "benjamin.scott@company.com", - "Picture": "images/men/29.jpg", - "Age": 28, - "HireDate": new Date(2022, 4, 20), - "Employees": [] - }, - { - "ID": 30, - "Name": "Sophia Turner", - "JobTitle": "Backend Engineer", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 11000, - "Phone": "555-1030", - "Contacts": "sophia.turner@company.com", - "Picture": "images/women/30.jpg", - "Age": 27, - "HireDate": new Date(2023, 0, 5), - "Employees": [] - }, - { - "ID": 31, - "Name": "Liam Adams", - "JobTitle": "Backend Engineer", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 10800, - "Phone": "555-1031", - "Contacts": "liam.adams@company.com", - "Picture": "images/men/31.jpg", - "Age": 26, - "HireDate": new Date(2023, 2, 10), - "Employees": [] - } - ] - }, - { - "ID": 23, - "Name": "Emma Davis", - "JobTitle": "Frontend Lead", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 14800, - "Phone": "555-1023", - "Contacts": "emma.davis@company.com", - "Picture": "images/women/23.jpg", - "Age": 38, - "HireDate": new Date(2016, 4, 12), - "Employees": [ - { - "ID": 32, - "Name": "Lucas Bennett", - "JobTitle": "Frontend Engineer", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 11800, - "Phone": "555-1032", - "Contacts": "lucas.bennett@company.com", - "Picture": "images/men/32.jpg", - "Age": 30, - "HireDate": new Date(2020, 6, 12), - "Employees": [] - }, - { - "ID": 33, - "Name": "Mia Roberts", - "JobTitle": "Frontend Engineer", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 11500, - "Phone": "555-1033", - "Contacts": "mia.roberts@company.com", - "Picture": "images/women/33.jpg", - "Age": 29, - "HireDate": new Date(2021, 2, 15), - "Employees": [] - }, - { - "ID": 151607, - "Name": "Bryce Wilf", - "JobTitle": "Frontend Engineer", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 10800, - "Phone": "555-151607", - "Contacts": "samuel.morris@company.com", - "Picture": "images/men/70.jpg", - "Age": 25, - "HireDate": new Date(2024, 1, 24), - "Employees": [] - }, - { - "ID": 151608, - "Name": "Magnolia Onyx", - "JobTitle": "Frontend Engineer", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 10800, - "Phone": "555-151608", - "Contacts": "emma.scott@company.com", - "Picture": "images/men/35.jpg", - "Age": 26, - "HireDate": new Date(2024, 9, 27), - "Employees": [] - }, - { - "ID": 151609, - "Name": "Parris Earline", - "JobTitle": "Frontend Engineer", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 10800, - "Phone": "555-151609", - "Contacts": "mia.adams@company.com", - "Picture": "images/men/53.jpg", - "Age": 38, - "HireDate": new Date(2024, 11, 1), - "Employees": [] - }, - { - "ID": 34, - "Name": "Ethan Brooks", - "JobTitle": "Frontend Engineer", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 11300, - "Phone": "555-1034", - "Contacts": "ethan.brooks@company.com", - "Picture": "images/men/19.jpg", - "Age": 28, - "HireDate": new Date(2022, 0, 25), - "Employees": [] - }, - { - "ID": 35, - "Name": "Charlotte Adams", - "JobTitle": "Frontend Engineer", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 11100, - "Phone": "555-1035", - "Contacts": "charlotte.adams@company.com", - "Picture": "images/women/35.jpg", - "Age": 27, - "HireDate": new Date(2023, 1, 10), - "Employees": [] - }, - { - "ID": 36, - "Name": "Jack Morgan", - "JobTitle": "Frontend Engineer", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 10900, - "Phone": "555-1036", - "Contacts": "jack.morgan@company.com", - "Picture": "images/men/36.jpg", - "Age": 26, - "HireDate": new Date(2023, 4, 8), - "Employees": [] - }, - { - "ID": 37, - "Name": "Sophia Walker", - "JobTitle": "Frontend Engineer", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 10800, - "Phone": "555-1037", - "Contacts": "sophia.walker@company.com", - "Picture": "images/women/37.jpg", - "Age": 25, - "HireDate": new Date(2023, 6, 20), - "Employees": [] - } - ] - }, - { - "ID": 24, - "Name": "Noah White", - "JobTitle": "DevOps Lead", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 15200, - "Phone": "555-1024", - "Contacts": "noah.white@company.com", - "Picture": "images/men/24.jpg", - "Age": 39, - "HireDate": new Date(2017, 6, 15), - "Employees": [ - { - "ID": 38, - "Name": "Henry Evans", - "JobTitle": "DevOps Engineer", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 12500, - "Phone": "555-1038", - "Contacts": "henry.evans@company.com", - "Picture": "images/men/38.jpg", - "Age": 32, - "HireDate": new Date(2019, 5, 15), - "Employees": [] - }, - { - "ID": 39, - "Name": "Amelia Scott", - "JobTitle": "DevOps Engineer", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 12200, - "Phone": "555-1039", - "Contacts": "amelia.scott@company.com", - "Picture": "images/women/39.jpg", - "Age": 30, - "HireDate": new Date(2020, 7, 10), - "Employees": [] - }, - { - "ID": 40, - "Name": "Daniel Hughes", - "JobTitle": "DevOps Engineer", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 12000, - "Phone": "555-1040", - "Contacts": "daniel.hughes@company.com", - "Picture": "images/men/40.jpg", - "Age": 29, - "HireDate": new Date(2021, 3, 12), - "Employees": [] - }, - { - "ID": 41, - "Name": "Emma Foster", - "JobTitle": "DevOps Engineer", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 11800, - "Phone": "555-1041", - "Contacts": "emma.foster@company.com", - "Picture": "images/women/41.jpg", - "Age": 28, - "HireDate": new Date(2022, 2, 18), - "Employees": [] - }, - { - "ID": 42, - "Name": "Liam Mitchell", - "JobTitle": "DevOps Engineer", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 11600, - "Phone": "555-1042", - "Contacts": "liam.mitchell@company.com", - "Picture": "images/men/41.jpg", - "Age": 27, - "HireDate": new Date(2023, 0, 20), - "Employees": [] - } - ] - }, - { - "ID": 25, - "Name": "Sophia Green", - "JobTitle": "QA Lead", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 14600, - "Phone": "555-1025", - "Contacts": "sophia.green@company.com", - "Picture": "images/women/25.jpg", - "Age": 37, - "HireDate": new Date(2018, 8, 20), - "Employees": [ - { - "ID": 43, - "Name": "Nathan Clark", - "JobTitle": "QA Engineer", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 11300, - "Phone": "555-1043", - "Contacts": "nathan.clark@company.com", - "Picture": "images/men/23.jpg", - "Age": 31, - "HireDate": new Date(2019, 8, 10), - "Employees": [] - }, - { - "ID": 44, - "Name": "Isabella Reed", - "JobTitle": "QA Engineer", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 11000, - "Phone": "555-1044", - "Contacts": "isabella.reed@company.com", - "Picture": "images/women/44.jpg", - "Age": 30, - "HireDate": new Date(2020, 4, 12), - "Employees": [] - }, - { - "ID": 45, - "Name": "Mason Turner", - "JobTitle": "QA Engineer", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 10800, - "Phone": "555-1045", - "Contacts": "mason.turner@company.com", - "Picture": "images/men/45.jpg", - "Age": 29, - "HireDate": new Date(2021, 1, 20), - "Employees": [] - }, - { - "ID": 46, - "Name": "Ava Collins", - "JobTitle": "QA Engineer", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 10600, - "Phone": "555-1046", - "Contacts": "ava.collins@company.com", - "Picture": "images/women/46.jpg", - "Age": 28, - "HireDate": new Date(2022, 6, 14), - "Employees": [] - }, - { - "ID": 47, - "Name": "Elijah Morris", - "JobTitle": "QA Engineer", - "Department": "Technology", - "Location": "Berlin", - "Country": "DEU", - "GrossSalary": 10400, - "Phone": "555-1047", - "Contacts": "elijah.morris@company.com", - "Picture": "images/men/47.jpg", - "Age": 27, - "HireDate": new Date(2023, 2, 22), - "Employees": [] - } - ] - } - ] - } - ] - }, - { - "ID": 4, - "Name": "Sophie Harris", - "JobTitle": "CPO", - "Department": "Product", - "Location": "London", - "Country": "GBR", - "GrossSalary": 17500, - "Phone": "555-3003", - "Contacts": "sophie.harris@company.com", - "Picture": "images/women/4.jpg", - "Age": 42, - "HireDate": new Date(2011, 7, 5), - "Employees": [ - { - "ID": 48, - "Name": "Chloe Edwards", - "JobTitle": "Product Lead", - "Department": "Product", - "Location": "London", - "Country": "GBR", - "GrossSalary": 15000, - "Phone": "555-1048", - "Contacts": "chloe.edwards@company.com", - "Picture": "images/women/48.jpg", - "Age": 40, - "HireDate": new Date(2016, 3, 18), - "Employees": [ - { - "ID": 50, - "Name": "Daniel Carter", - "JobTitle": "Product Manager", - "Department": "Product", - "Location": "London", - "Country": "GBR", - "GrossSalary": 13500, - "Phone": "555-1050", - "Contacts": "daniel.carter@company.com", - "Picture": "images/men/50.jpg", - "Age": 37, - "HireDate": new Date(2018, 2, 15), - "Employees": [] - }, - { - "ID": 52, - "Name": "Liam Walker", - "JobTitle": "Product Manager", - "Department": "Product", - "Location": "London", - "Country": "GBR", - "GrossSalary": 13000, - "Phone": "555-1052", - "Contacts": "liam.walker@company.com", - "Picture": "images/men/52.jpg", - "Age": 35, - "HireDate": new Date(2020, 6, 25), - "Employees": [] - }, - { - "ID": 53, - "Name": "Sophia Bennett", - "JobTitle": "Product Manager", - "Department": "Product", - "Location": "London", - "Country": "GBR", - "GrossSalary": 12800, - "Phone": "555-1053", - "Contacts": "sophia.bennett@company.com", - "Picture": "images/women/53.jpg", - "Age": 34, - "HireDate": new Date(2021, 8, 30), - "Employees": [] - } - ] - }, - { - "ID": 49, - "Name": "Olivia Wilde", - "JobTitle": "UX/UI Lead", - "Department": "Product", - "Location": "London", - "Country": "GBR", - "GrossSalary": 14800, - "Phone": "555-1049", - "Contacts": "olivia.nelson@company.com", - "Picture": "images/women/51.jpg", - "Age": 38, - "HireDate": new Date(2017, 5, 22), - "Employees": [ - { - "ID": 54, - "Name": "Steven Osbourne", - "JobTitle": "UX/UI Designer", - "Department": "Product", - "Location": "London", - "Country": "GBR", - "GrossSalary": 12000, - "Phone": "555-1054", - "Contacts": "jack.thompson@company.com", - "Picture": "images/men/54.jpg", - "Age": 32, - "HireDate": new Date(2019, 5, 10), - "Employees": [] - }, - { - "ID": 55, - "Name": "Ava Mitchell", - "JobTitle": "UX/UI Designer", - "Department": "Product", - "Location": "London", - "Country": "GBR", - "GrossSalary": 11800, - "Phone": "555-1055", - "Contacts": "ava.mitchell@company.com", - "Picture": "images/women/55.jpg", - "Age": 31, - "HireDate": new Date(2020, 7, 14), - "Employees": [] - }, - { - "ID": 56, - "Name": "Ethan Lewis", - "JobTitle": "UX/UI Designer", - "Department": "Product", - "Location": "London", - "Country": "GBR", - "GrossSalary": 11600, - "Phone": "555-1056", - "Contacts": "ethan.lewis@company.com", - "Picture": "images/men/56.jpg", - "Age": 30, - "HireDate": new Date(2021, 4, 22), - "Employees": [] - }, - { - "ID": 57, - "Name": "Mia Scott", - "JobTitle": "UX/UI Designer", - "Department": "Product", - "Location": "London", - "Country": "GBR", - "GrossSalary": 11400, - "Phone": "555-1057", - "Contacts": "mia.scott@company.com", - "Picture": "images/women/57.jpg", - "Age": 29, - "HireDate": new Date(2022, 6, 18), - "Employees": [] - } - ] - } - ] - }, - { - "ID": 5, - "Name": "James Cox", - "JobTitle": "CMO", - "Department": "Marketing", - "Location": "Paris", - "Country": "FRA", - "GrossSalary": 16500, - "Phone": "555-4004", - "Contacts": "james.cox@company.com", - "Picture": "images/men/4.jpg", - "Age": 47, - "HireDate": new Date(2013, 8, 10), - "Employees": [ - { - "ID": 58, - "Name": "Emily Ramirez", - "JobTitle": "Digital Marketing Lead", - "Department": "Marketing", - "Location": "Paris", - "Country": "FRA", - "GrossSalary": 14000, - "Phone": "555-1058", - "Contacts": "emily.ramirez@company.com", - "Picture": "images/women/58.jpg", - "Age": 39, - "HireDate": new Date(2017, 8, 10), - "Employees": [ - { - "ID": 60, - "Name": "Liam Carter", - "JobTitle": "SEO & Social Media Specialist", - "Department": "Marketing", - "Location": "Paris", - "Country": "FRA", - "GrossSalary": 12000, - "Phone": "555-1060", - "Contacts": "liam.carter@company.com", - "Picture": "images/men/60.jpg", - "Age": 35, - "HireDate": new Date(2018, 4, 15), - "Employees": [] - }, - { - "ID": 61, - "Name": "Sophia Martinez", - "JobTitle": "SEO & Social Media Specialist", - "Department": "Marketing", - "Location": "Paris", - "Country": "FRA", - "GrossSalary": 11800, - "Phone": "555-1061", - "Contacts": "sophia.martinez@company.com", - "Picture": "images/women/61.jpg", - "Age": 34, - "HireDate": new Date(2019, 6, 10), - "Employees": [] - }, - { - "ID": 62, - "Name": "Ethan Robinson", - "JobTitle": "SEO & Social Media Specialist", - "Department": "Marketing", - "Location": "Paris", - "Country": "FRA", - "GrossSalary": 11600, - "Phone": "555-1062", - "Contacts": "ethan.robinson@company.com", - "Picture": "images/men/62.jpg", - "Age": 33, - "HireDate": new Date(2020, 3, 20), - "Employees": [] - }, - { - "ID": 63, - "Name": "Olivia Bennett", - "JobTitle": "SEO & Social Media Specialist", - "Department": "Marketing", - "Location": "Paris", - "Country": "FRA", - "GrossSalary": 11400, - "Phone": "555-1063", - "Contacts": "olivia.bennett@company.com", - "Picture": "images/women/63.jpg", - "Age": 32, - "HireDate": new Date(2021, 5, 12), - "Employees": [] - } - ] - }, - { - "ID": 59, - "Name": "Henry Foster", - "JobTitle": "Sales Director", - "Department": "Sales", - "Location": "Paris", - "Country": "FRA", - "GrossSalary": 15000, - "Phone": "555-1059", - "Contacts": "henry.foster@company.com", - "Picture": "images/men/25.jpg", - "Age": 42, - "HireDate": new Date(2016, 2, 20), - "Employees": [ - { - "ID": 64, - "Name": "Benjamin Clark", - "JobTitle": "Sales Executive", - "Department": "Sales", - "Location": "Paris", - "Country": "FRA", - "GrossSalary": 12500, - "Phone": "555-1064", - "Contacts": "benjamin.clark@company.com", - "Picture": "images/men/64.jpg", - "Age": 36, - "HireDate": new Date(2019, 7, 15), - "Employees": [] - }, - { - "ID": 151627, - "Name": "Henry Carter", - "JobTitle": "Sales Executive", - "Department": "Sales", - "Location": "Paris", - "Country": "FRA", - "GrossSalary": 11000, - "Phone": "555-151627", - "Contacts": "henry.carter@company.com", - "Picture": "images/men/79.jpg", - "Age": 42, - "HireDate": new Date(2024, 1, 6), - "Employees": [] - }, - { - "ID": 151628, - "Name": "Emmerson Hollis", - "JobTitle": "Sales Executive", - "Department": "Sales", - "Location": "Paris", - "Country": "FRA", - "GrossSalary": 11000, - "Phone": "555-151628", - "Contacts": "samuel.morris@company.com", - "Picture": "images/men/42.jpg", - "Age": 41, - "HireDate": new Date(2024, 7, 3), - "Employees": [] - }, - { - "ID": 151629, - "Name": "Cori Grey", - "JobTitle": "Sales Executive", - "Department": "Sales", - "Location": "Paris", - "Country": "FRA", - "GrossSalary": 11000, - "Phone": "555-151629", - "Contacts": "mia.adams@company.com", - "Picture": "images/men/39.jpg", - "Age": 37, - "HireDate": new Date(2024, 11, 4), - "Employees": [] - }, - { - "ID": 151631, - "Name": "William Turner", - "JobTitle": "Sales Executive", - "Department": "Sales", - "Location": "Paris", - "Country": "FRA", - "GrossSalary": 11000, - "Phone": "555-151631", - "Contacts": "william.turner@company.com", - "Picture": "images/men/34.jpg", - "Age": 32, - "HireDate": new Date(2024, 2, 22), - "Employees": [] - }, - { - "ID": 151632, - "Name": "Quinn Elwyn", - "JobTitle": "Sales Executive", - "Department": "Sales", - "Location": "Paris", - "Country": "FRA", - "GrossSalary": 11000, - "Phone": "555-151632", - "Contacts": "samuel.morris@company.com", - "Picture": "images/men/43.jpg", - "Age": 32, - "HireDate": new Date(2024, 3, 24), - "Employees": [] - }, - { - "ID": 151634, - "Name": "Arnold Colbert", - "JobTitle": "Sales Executive", - "Department": "Sales", - "Location": "Paris", - "Country": "FRA", - "GrossSalary": 11000, - "Phone": "555-151634", - "Contacts": "daniel.harris@company.com", - "Picture": "images/men/17.jpg", - "Age": 27, - "HireDate": new Date(2024, 7, 25), - "Employees": [] - }, - { - "ID": 151635, - "Name": "Ellington Shaye", - "JobTitle": "Sales Executive", - "Department": "Sales", - "Location": "Paris", - "Country": "FRA", - "GrossSalary": 11000, - "Phone": "555-151635", - "Contacts": "daniel.harris@company.com", - "Picture": "images/men/98.jpg", - "Age": 35, - "HireDate": new Date(2024, 7, 19), - "Employees": [] - }, - { - "ID": 151636, - "Name": "Leighton Isidore", - "JobTitle": "Sales Executive", - "Department": "Sales", - "Location": "Paris", - "Country": "FRA", - "GrossSalary": 11000, - "Phone": "555-151636", - "Contacts": "daniel.harris@company.com", - "Picture": "images/men/59.jpg", - "Age": 32, - "HireDate": new Date(2024, 3, 16), - "Employees": [] - }, - { - "ID": 65, - "Name": "Emma Stewart", - "JobTitle": "Sales Executive", - "Department": "Sales", - "Location": "Paris", - "Country": "FRA", - "GrossSalary": 12200, - "Phone": "555-1065", - "Contacts": "emma.stewart@company.com", - "Picture": "images/women/65.jpg", - "Age": 35, - "HireDate": new Date(2020, 6, 12), - "Employees": [] - }, - { - "ID": 66, - "Name": "Noah Turner", - "JobTitle": "Sales Executive", - "Department": "Sales", - "Location": "Paris", - "Country": "FRA", - "GrossSalary": 12000, - "Phone": "555-1066", - "Contacts": "noah.turner@company.com", - "Picture": "images/men/66.jpg", - "Age": 34, - "HireDate": new Date(2021, 4, 20), - "Employees": [] - }, - { - "ID": 67, - "Name": "Codie Esme", - "JobTitle": "Sales Executive", - "Department": "Sales", - "Location": "Paris", - "Country": "FRA", - "GrossSalary": 11800, - "Phone": "555-1067", - "Contacts": "ava.mitchell@company.com", - "Picture": "images/women/67.jpg", - "Age": 33, - "HireDate": new Date(2022, 2, 18), - "Employees": [] - }, - { - "ID": 68, - "Name": "Lucas Evans", - "JobTitle": "Sales Executive", - "Department": "Sales", - "Location": "Paris", - "Country": "FRA", - "GrossSalary": 11600, - "Phone": "555-1068", - "Contacts": "lucas.evans@company.com", - "Picture": "images/men/68.jpg", - "Age": 32, - "HireDate": new Date(2023, 0, 22), - "Employees": [] - }, - { - "ID": 69, - "Name": "Isabella Carter", - "JobTitle": "Sales Executive", - "Department": "Sales", - "Location": "Paris", - "Country": "FRA", - "GrossSalary": 11400, - "Phone": "555-1069", - "Contacts": "isabella.carter@company.com", - "Picture": "images/women/69.jpg", - "Age": 31, - "HireDate": new Date(2023, 5, 10), - "Employees": [] - } - ] - } - ] - }, - { - "ID": 6, - "Name": "Lucas Cook", - "JobTitle": "CFO", - "Department": "Finance", - "Location": "Chicago", - "Country": "USA", - "GrossSalary": 18500, - "Phone": "555-5005", - "Contacts": "lucas.cook@company.com", - "Picture": "images/men/99.jpg", - "Age": 50, - "HireDate": new Date(2009, 5, 25), - "Employees": [ - { - "ID": 70, - "Name": "Rachel Moore", - "JobTitle": "Finance Manager", - "Department": "Finance", - "Location": "Chicago", - "Country": "USA", - "GrossSalary": 14000, - "Phone": "555-1070", - "Contacts": "rachel.moore@company.com", - "Picture": "images/women/70.jpg", - "Age": 41, - "HireDate": new Date(2016, 3, 18), - "Employees": [ - { - "ID": 71, - "Name": "Daniel Cooper", - "JobTitle": "Accountant", - "Department": "Finance", - "Location": "Chicago", - "Country": "USA", - "GrossSalary": 12000, - "Phone": "555-1071", - "Contacts": "daniel.cooper@company.com", - "Picture": "images/men/71.jpg", - "Age": 38, - "HireDate": new Date(2018, 5, 15), - "Employees": [] - }, - { - "ID": 72, - "Name": "Reanna Joleen", - "JobTitle": "Financial Analyst", - "Department": "Finance", - "Location": "Chicago", - "Country": "USA", - "GrossSalary": 11800, - "Phone": "555-1072", - "Contacts": "olivia.parker@company.com", - "Picture": "images/women/72.jpg", - "Age": 37, - "HireDate": new Date(2019, 7, 20), - "Employees": [] - }, - { - "ID": 73, - "Name": "Ethan Hall", - "JobTitle": "Accountant", - "Department": "Finance", - "Location": "Chicago", - "Country": "USA", - "GrossSalary": 11600, - "Phone": "555-1073", - "Contacts": "ethan.hall@company.com", - "Picture": "images/men/73.jpg", - "Age": 36, - "HireDate": new Date(2020, 2, 25), - "Employees": [] - }, - { - "ID": 74, - "Name": "Sophia White", - "JobTitle": "Financial Analyst", - "Department": "Finance", - "Location": "Chicago", - "Country": "USA", - "GrossSalary": 11400, - "Phone": "555-1074", - "Contacts": "sophia.white@company.com", - "Picture": "images/women/74.jpg", - "Age": 35, - "HireDate": new Date(2021, 4, 10), - "Employees": [] - }, - { - "ID": 75, - "Name": "Kai Kacey", - "JobTitle": "Accountant", - "Department": "Finance", - "Location": "Chicago", - "Country": "USA", - "GrossSalary": 11200, - "Phone": "555-1075", - "Contacts": "liam.adams@company.com", - "Picture": "images/men/75.jpg", - "Age": 34, - "HireDate": new Date(2022, 6, 15), - "Employees": [] - } - ] - } - ] - }, - { - "ID": 7, - "Name": "Olivia Nelson", - "JobTitle": "CHRO", - "Department": "Human Resources", - "Location": "Tokyo", - "Country": "JPN", - "GrossSalary": 16000, - "Phone": "555-6006", - "Contacts": "olivia.nelson@company.com", - "Picture": "images/women/7.jpg", - "Age": 46, - "HireDate": new Date(2014, 9, 15), - "Employees": [ - { - "ID": 76, - "Name": "Grace Scott", - "JobTitle": "HR Lead", - "Department": "Human Resources", - "Location": "Tokyo", - "Country": "JPN", - "GrossSalary": 13500, - "Phone": "555-1076", - "Contacts": "grace.scott@company.com", - "Picture": "images/women/76.jpg", - "Age": 40, - "HireDate": new Date(2017, 2, 10), - "Employees": [ - { - "ID": 77, - "Name": "James Carter", - "JobTitle": "Recruiter", - "Department": "Human Resources", - "Location": "Tokyo", - "Country": "JPN", - "GrossSalary": 11000, - "Phone": "555-1077", - "Contacts": "james.carter@company.com", - "Picture": "images/men/28.jpg", - "Age": 38, - "HireDate": new Date(2018, 4, 15), - "Employees": [] - }, - { - "ID": 78, - "Name": "Emma Brooks", - "JobTitle": "HR Specialist", - "Department": "Human Resources", - "Location": "Tokyo", - "Country": "JPN", - "GrossSalary": 10800, - "Phone": "555-1078", - "Contacts": "emma.brooks@company.com", - "Picture": "images/women/78.jpg", - "Age": 36, - "HireDate": new Date(2019, 6, 20), - "Employees": [] - }, - { - "ID": 79, - "Name": "Daniel Robinson", - "JobTitle": "Recruiter", - "Department": "Human Resources", - "Location": "Tokyo", - "Country": "JPN", - "GrossSalary": 10600, - "Phone": "555-1079", - "Contacts": "daniel.robinson@company.com", - "Picture": "images/men/30.jpg", - "Age": 35, - "HireDate": new Date(2020, 5, 25), - "Employees": [] - }, - { - "ID": 80, - "Name": "Sophia Mitchell", - "JobTitle": "HR Specialist", - "Department": "Human Resources", - "Location": "Tokyo", - "Country": "JPN", - "GrossSalary": 10400, - "Phone": "555-1080", - "Contacts": "sophia.mitchell@company.com", - "Picture": "images/women/80.jpg", - "Age": 34, - "HireDate": new Date(2021, 3, 10), - "Employees": [] - }, - { - "ID": 81, - "Name": "Liam Bennett", - "JobTitle": "Recruiter", - "Department": "Human Resources", - "Location": "Tokyo", - "Country": "JPN", - "GrossSalary": 10200, - "Phone": "555-1081", - "Contacts": "liam.bennett@company.com", - "Picture": "images/men/81.jpg", - "Age": 33, - "HireDate": new Date(2022, 7, 15), - "Employees": [] - } - ] - } - ] - }, - { - "ID": 82, - "Name": "Jack Scott", - "JobTitle": "Customer Support Director", - "Department": "Support", - "Location": "New York", - "Country": "USA", - "GrossSalary": 14000, - "Phone": "555-1082", - "Contacts": "jack.scott@company.com", - "Picture": "images/men/33.jpg", - "Age": 45, - "HireDate": new Date(2015, 2, 10), - "Employees": [ - { - "ID": 83, - "Name": "Liam Bell", - "JobTitle": "Support Team Lead", - "Department": "Support", - "Location": "New York", - "Country": "USA", - "GrossSalary": 12500, - "Phone": "555-1083", - "Contacts": "liam.bell@company.com", - "Picture": "images/men/83.jpg", - "Age": 40, - "HireDate": new Date(2017, 4, 15), - "Employees": [ - { - "ID": 84, - "Name": "Emma Collins", - "JobTitle": "Support Engineer", - "Department": "Support", - "Location": "New York", - "Country": "USA", - "GrossSalary": 11000, - "Phone": "555-1084", - "Contacts": "emma.collins@company.com", - "Picture": "images/women/84.jpg", - "Age": 38, - "HireDate": new Date(2018, 6, 10), - "Employees": [] - }, - { - "ID": 151647, - "Name": "Sophia Lewis", - "JobTitle": "Support Engineer", - "Department": "Support", - "Location": "New York", - "Country": "USA", - "GrossSalary": 9800, - "Phone": "555-151647", - "Contacts": "sophia.lewis@company.com", - "Picture": "images/men/92.jpg", - "Age": 31, - "HireDate": new Date(2024, 11, 11), - "Employees": [] - }, - { - "ID": 151650, - "Name": "Samuel Morris", - "JobTitle": "Support Engineer", - "Department": "Support", - "Location": "New York", - "Country": "USA", - "GrossSalary": 9800, - "Phone": "555-151650", - "Contacts": "samuel.morris@company.com", - "Picture": "images/men/14.jpg", - "Age": 33, - "HireDate": new Date(2024, 1, 8), - "Employees": [] - }, - { - "ID": 151652, - "Name": "Chris Tylor", - "JobTitle": "Customer Service Representative", - "Department": "Support", - "Location": "New York", - "Country": "USA", - "GrossSalary": 8200, - "Phone": "555-151652", - "Contacts": "daniel.harris@company.com", - "Picture": "images/men/91.jpg", - "Age": 42, - "HireDate": new Date(2024, 7, 2), - "Employees": [] - }, - { - "ID": 85, - "Name": "Daniel Turner", - "JobTitle": "Support Engineer", - "Department": "Support", - "Location": "New York", - "Country": "USA", - "GrossSalary": 10800, - "Phone": "555-1085", - "Contacts": "daniel.turner@company.com", - "Picture": "images/men/44.jpg", - "Age": 37, - "HireDate": new Date(2019, 8, 20), - "Employees": [] - }, - { - "ID": 86, - "Name": "Olivia Harris", - "JobTitle": "Support Engineer", - "Department": "Support", - "Location": "New York", - "Country": "USA", - "GrossSalary": 10600, - "Phone": "555-1086", - "Contacts": "olivia.harris@company.com", - "Picture": "images/women/86.jpg", - "Age": 36, - "HireDate": new Date(2020, 3, 25), - "Employees": [] - }, - { - "ID": 87, - "Name": "Noah Walker", - "JobTitle": "Support Engineer", - "Department": "Support", - "Location": "New York", - "Country": "USA", - "GrossSalary": 10400, - "Phone": "555-1087", - "Contacts": "noah.walker@company.com", - "Picture": "images/men/87.jpg", - "Age": 35, - "HireDate": new Date(2021, 5, 30), - "Employees": [] - }, - { - "ID": 88, - "Name": "Sophia Reed", - "JobTitle": "Support Engineer", - "Department": "Support", - "Location": "New York", - "Country": "USA", - "GrossSalary": 10200, - "Phone": "555-1088", - "Contacts": "sophia.reed@company.com", - "Picture": "images/women/88.jpg", - "Age": 34, - "HireDate": new Date(2022, 7, 10), - "Employees": [] - } - ] - }, - { - "ID": 92, - "Name": "Benjamin Hughes", - "JobTitle": "Support Team Lead", - "Department": "Support", - "Location": "New York", - "Country": "USA", - "GrossSalary": 12200, - "Phone": "555-1092", - "Contacts": "benjamin.hughes@company.com", - "Picture": "images/men/46.jpg", - "Age": 39, - "HireDate": new Date(2018, 4, 10), - "Employees": [ - { - "ID": 93, - "Name": "Emily Foster", - "JobTitle": "Support Engineer", - "Department": "Support", - "Location": "New York", - "Country": "USA", - "GrossSalary": 10100, - "Phone": "555-1093", - "Contacts": "emily.foster@company.com", - "Picture": "images/women/93.jpg", - "Age": 33, - "HireDate": new Date(2023, 2, 20), - "Employees": [] - }, - { - "ID": 94, - "Name": "Liam Richardson", - "JobTitle": "Support Engineer", - "Department": "Support", - "Location": "New York", - "Country": "USA", - "GrossSalary": 9900, - "Phone": "555-1094", - "Contacts": "liam.richardson@company.com", - "Picture": "images/men/94.jpg", - "Age": 32, - "HireDate": new Date(2023, 5, 12), - "Employees": [] - }, - { - "ID": 95, - "Name": "Charlotte Murphy", - "JobTitle": "Customer Service Representative", - "Department": "Support", - "Location": "New York", - "Country": "USA", - "GrossSalary": 9700, - "Phone": "555-1095", - "Contacts": "charlotte.murphy@company.com", - "Picture": "images/women/95.jpg", - "Age": 31, - "HireDate": new Date(2023, 7, 25), - "Employees": [] - }, - { - "ID": 151653, - "Name": "Jack Thompson", - "JobTitle": "Customer Service Representative", - "Department": "Support", - "Location": "New York", - "Country": "USA", - "GrossSalary": 8200, - "Phone": "555-151653", - "Contacts": "jack.thompson@company.com", - "Picture": "images/men/10.jpg", - "Age": 29, - "HireDate": new Date(2024, 6, 14), - "Employees": [] - }, - { - "ID": 151654, - "Name": "Olivia Walker", - "JobTitle": "Customer Service Representative", - "Department": "Support", - "Location": "New York", - "Country": "USA", - "GrossSalary": 8200, - "Phone": "555-151654", - "Contacts": "olivia.walker@company.com", - "Picture": "images/men/5.jpg", - "Age": 29, - "HireDate": new Date(2024, 0, 19), - "Employees": [] - }, - { - "ID": 151655, - "Name": "Dharma Chobin", - "JobTitle": "Customer Service Representative", - "Department": "Support", - "Location": "New York", - "Country": "USA", - "GrossSalary": 8200, - "Phone": "555-151655", - "Contacts": "jack.thompson@company.com", - "Picture": "images/men/63.jpg", - "Age": 29, - "HireDate": new Date(2024, 10, 10), - "Employees": [] - }, - { - "ID": 151656, - "Name": "Ainslee Renae", - "JobTitle": "Customer Service Representative", - "Department": "Support", - "Location": "New York", - "Country": "USA", - "GrossSalary": 8200, - "Phone": "555-151656", - "Contacts": "emma.scott@company.com", - "Picture": "images/men/85.jpg", - "Age": 38, - "HireDate": new Date(2024, 1, 19), - "Employees": [] - }, - { - "ID": 96, - "Name": "Mason Campbell", - "JobTitle": "Customer Service Representative", - "Department": "Support", - "Location": "New York", - "Country": "USA", - "GrossSalary": 9500, - "Phone": "555-1096", - "Contacts": "mason.campbell@company.com", - "Picture": "images/men/96.jpg", - "Age": 30, - "HireDate": new Date(2023, 8, 10), - "Employees": [] - }, - { - "ID": 97, - "Name": "Isabella King", - "JobTitle": "Customer Service Representative", - "Department": "Support", - "Location": "New York", - "Country": "USA", - "GrossSalary": 9300, - "Phone": "555-1097", - "Contacts": "isabella.king@company.com", - "Picture": "images/women/97.jpg", - "Age": 29, - "HireDate": new Date(2023, 9, 5), - "Employees": [] - } - ] - } - ] - } -] diff --git a/projects/hr-portal/src/app/hr-portal/hr-portal.component.html b/projects/hr-portal/src/app/hr-portal/hr-portal.component.html index 9816a2f..c4c17e6 100644 --- a/projects/hr-portal/src/app/hr-portal/hr-portal.component.html +++ b/projects/hr-portal/src/app/hr-portal/hr-portal.component.html @@ -1,6 +1,7 @@ = new BehaviorSubject([]); + public isLoading = true; @ViewChild('treeGrid', { read: IgxTreeGridComponent, static: true }) public treeGrid!: IgxTreeGridComponent; - constructor(private iconService: IgxIconService) {} + constructor(private iconService: IgxIconService, private dataService: DataService) {} ngOnInit() { - this.localData = EMPLOYEE_DATA; + this.dataService.getData(); + this.data$ = this.dataService.records; + this.data$.subscribe((data) => { + if (data.length !== 0) { + this.isLoading = false; + } + }); const icons = [ { name: 'linkedIn', diff --git a/projects/hr-portal/src/app/services/data.service.ts b/projects/hr-portal/src/app/services/data.service.ts new file mode 100644 index 0000000..5089009 --- /dev/null +++ b/projects/hr-portal/src/app/services/data.service.ts @@ -0,0 +1,21 @@ +import { Injectable } from '@angular/core'; +import { BehaviorSubject } from 'rxjs'; +import { HttpClient } from '@angular/common/http'; + +const DATA_URL = 'https://www.infragistics.com/grid-examples-data/data/hr/hr.json'; + +@Injectable({ + providedIn: 'root', +}) +export class DataService { + public records: BehaviorSubject; + constructor(private _http: HttpClient) { + this.records = new BehaviorSubject([]); + } + + public getData() { + this._http.get(DATA_URL).subscribe((data: any) => { + this.records.next(data); + }); + } +} diff --git a/projects/sales-grid/src/app/app.config.ts b/projects/sales-grid/src/app/app.config.ts index eb42dcb..21c7e3d 100644 --- a/projects/sales-grid/src/app/app.config.ts +++ b/projects/sales-grid/src/app/app.config.ts @@ -1,8 +1,17 @@ +import { provideHttpClient } from '@angular/common/http'; import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core'; -import { provideClientHydration, withEventReplay } from '@angular/platform-browser'; -import { provideAnimations } from "@angular/platform-browser/animations"; +import { + provideClientHydration, + withEventReplay, +} from '@angular/platform-browser'; +import { provideAnimations } from '@angular/platform-browser/animations'; export const appConfig: ApplicationConfig = { - providers: [provideZoneChangeDetection({ eventCoalescing: true }), provideClientHydration(withEventReplay()), provideAnimations()] + providers: [ + provideZoneChangeDetection({ eventCoalescing: true }), + provideClientHydration(withEventReplay()), + provideAnimations(), + provideHttpClient() + ], }; diff --git a/projects/sales-grid/src/app/sales-grid/data/SalesData.json b/projects/sales-grid/src/app/sales-grid/data/SalesData.json deleted file mode 100644 index 75d3470..0000000 --- a/projects/sales-grid/src/app/sales-grid/data/SalesData.json +++ /dev/null @@ -1 +0,0 @@ -[{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":115,"Cost":102,"Date":"2/9/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":708,"Cost":504,"Date":"2/11/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":578,"Cost":472,"Date":"3/10/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":119,"Cost":64,"Date":"3/16/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":428,"Cost":324,"Date":"3/18/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":588,"Cost":361,"Date":"3/20/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":204,"Cost":164,"Date":"3/26/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":108,"Cost":62,"Date":"6/2/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":510,"Cost":455,"Date":"6/10/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":879,"Cost":664,"Date":"6/16/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":348,"Cost":186,"Date":"6/25/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":159,"Cost":87,"Date":"7/19/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":915,"Cost":564,"Date":"7/21/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":520,"Cost":391,"Date":"7/25/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":178,"Cost":125,"Date":"8/4/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":920,"Cost":740,"Date":"9/2/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":128,"Cost":66,"Date":"9/4/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":953,"Cost":610,"Date":"9/19/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":991,"Cost":785,"Date":"9/29/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":59,"Cost":43,"Date":"10/2/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":885,"Cost":591,"Date":"10/15/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":535,"Cost":358,"Date":"10/30/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":784,"Cost":418,"Date":"11/9/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":571,"Cost":392,"Date":"11/23/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":699,"Cost":628,"Date":"11/30/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":107,"Cost":60,"Date":"12/8/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":733,"Cost":601,"Date":"12/11/2018"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":327,"Cost":275,"Date":"1/15/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":587,"Cost":496,"Date":"1/24/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":266,"Cost":203,"Date":"2/3/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":9,"Cost":8,"Date":"2/4/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":981,"Cost":849,"Date":"3/9/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":264,"Cost":136,"Date":"3/12/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":919,"Cost":705,"Date":"4/19/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":596,"Cost":421,"Date":"5/3/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":450,"Cost":379,"Date":"5/4/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":22,"Cost":15,"Date":"6/8/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":768,"Cost":512,"Date":"6/26/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":171,"Cost":91,"Date":"7/4/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":560,"Cost":371,"Date":"7/13/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":623,"Cost":315,"Date":"8/8/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":683,"Cost":461,"Date":"8/26/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":468,"Cost":372,"Date":"9/2/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":994,"Cost":633,"Date":"9/29/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":762,"Cost":584,"Date":"10/12/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":199,"Cost":126,"Date":"11/2/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":559,"Cost":420,"Date":"11/4/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":104,"Cost":91,"Date":"11/7/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":153,"Cost":144,"Date":"12/1/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":956,"Cost":517,"Date":"12/4/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":245,"Cost":214,"Date":"12/7/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":792,"Cost":643,"Date":"12/18/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":975,"Cost":906,"Date":"12/20/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":382,"Cost":318,"Date":"12/20/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":733,"Cost":451,"Date":"12/21/2019"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":239,"Cost":147,"Date":"1/9/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":859,"Cost":784,"Date":"2/5/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":301,"Cost":154,"Date":"2/16/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":733,"Cost":664,"Date":"2/16/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":23,"Cost":12,"Date":"2/18/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":162,"Cost":152,"Date":"2/22/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":861,"Cost":636,"Date":"2/25/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":135,"Cost":127,"Date":"3/8/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":949,"Cost":743,"Date":"4/2/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":58,"Cost":54,"Date":"4/3/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":838,"Cost":677,"Date":"4/9/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":407,"Cost":350,"Date":"4/10/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":251,"Cost":138,"Date":"4/19/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":61,"Cost":43,"Date":"5/17/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":192,"Cost":100,"Date":"5/22/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":373,"Cost":293,"Date":"6/20/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":186,"Cost":131,"Date":"7/1/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":533,"Cost":483,"Date":"7/4/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":278,"Cost":249,"Date":"7/8/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":922,"Cost":661,"Date":"7/9/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":298,"Cost":193,"Date":"7/14/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":587,"Cost":399,"Date":"7/19/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":266,"Cost":236,"Date":"8/1/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":725,"Cost":648,"Date":"8/6/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":512,"Cost":423,"Date":"8/7/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":344,"Cost":242,"Date":"8/22/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":250,"Cost":184,"Date":"8/31/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":402,"Cost":336,"Date":"9/1/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":29,"Cost":25,"Date":"9/1/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":90,"Cost":54,"Date":"9/17/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":818,"Cost":516,"Date":"9/29/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":87,"Cost":83,"Date":"11/7/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":841,"Cost":741,"Date":"11/26/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":77,"Cost":65,"Date":"11/27/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":583,"Cost":505,"Date":"12/5/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":122,"Cost":64,"Date":"12/26/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":195,"Cost":179,"Date":"12/31/2020"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":470,"Cost":256,"Date":"1/20/2021"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":125,"Cost":71,"Date":"2/2/2021"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":174,"Cost":107,"Date":"2/8/2021"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":618,"Cost":516,"Date":"2/27/2021"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":431,"Cost":389,"Date":"3/1/2021"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":509,"Cost":289,"Date":"3/1/2021"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":933,"Cost":536,"Date":"3/19/2021"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":520,"Cost":363,"Date":"3/28/2021"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":469,"Cost":261,"Date":"5/21/2021"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":147,"Cost":134,"Date":"7/21/2021"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":354,"Cost":262,"Date":"8/5/2021"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":133,"Cost":80,"Date":"8/12/2021"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":573,"Cost":469,"Date":"8/21/2021"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":992,"Cost":844,"Date":"8/23/2021"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":951,"Cost":817,"Date":"9/3/2021"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":342,"Cost":259,"Date":"9/5/2021"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":221,"Cost":192,"Date":"10/6/2021"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":661,"Cost":351,"Date":"10/19/2021"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":131,"Cost":117,"Date":"11/15/2021"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":372,"Cost":186,"Date":"12/8/2021"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":772,"Cost":668,"Date":"1/8/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":87,"Cost":60,"Date":"1/14/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":972,"Cost":591,"Date":"1/19/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":209,"Cost":120,"Date":"1/28/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":316,"Cost":158,"Date":"1/31/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":806,"Cost":636,"Date":"3/27/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":505,"Cost":344,"Date":"4/20/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":212,"Cost":153,"Date":"4/24/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":32,"Cost":27,"Date":"4/28/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":257,"Cost":222,"Date":"5/15/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":780,"Cost":643,"Date":"5/16/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":734,"Cost":587,"Date":"5/18/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":615,"Cost":322,"Date":"6/2/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":894,"Cost":785,"Date":"6/3/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":445,"Cost":250,"Date":"6/5/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":247,"Cost":192,"Date":"6/7/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":236,"Cost":164,"Date":"6/14/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":941,"Cost":787,"Date":"6/20/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":811,"Cost":550,"Date":"6/24/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":603,"Cost":528,"Date":"7/4/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":114,"Cost":88,"Date":"7/9/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":129,"Cost":96,"Date":"7/12/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":352,"Cost":281,"Date":"8/14/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":233,"Cost":130,"Date":"8/16/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":295,"Cost":226,"Date":"8/23/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":7,"Cost":5,"Date":"9/2/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":810,"Cost":515,"Date":"9/3/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":707,"Cost":598,"Date":"9/16/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":125,"Cost":111,"Date":"10/4/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":544,"Cost":352,"Date":"11/1/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":663,"Cost":425,"Date":"11/2/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":554,"Cost":518,"Date":"12/17/2022"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":542,"Cost":448,"Date":"2/10/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":161,"Cost":142,"Date":"2/28/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":378,"Cost":354,"Date":"3/4/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":85,"Cost":53,"Date":"3/9/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":624,"Cost":361,"Date":"3/9/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":792,"Cost":427,"Date":"3/11/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":95,"Cost":84,"Date":"3/17/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":66,"Cost":35,"Date":"3/17/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":292,"Cost":177,"Date":"3/23/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":65,"Cost":55,"Date":"4/1/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":616,"Cost":487,"Date":"5/7/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":826,"Cost":776,"Date":"5/10/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":528,"Cost":285,"Date":"5/20/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":820,"Cost":431,"Date":"6/2/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":222,"Cost":205,"Date":"6/11/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":225,"Cost":150,"Date":"6/16/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":669,"Cost":613,"Date":"6/16/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":771,"Cost":532,"Date":"7/10/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":587,"Cost":368,"Date":"7/11/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":917,"Cost":717,"Date":"8/28/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":545,"Cost":439,"Date":"8/29/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":75,"Cost":69,"Date":"8/31/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":447,"Cost":334,"Date":"9/8/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":582,"Cost":468,"Date":"9/13/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":84,"Cost":55,"Date":"9/14/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":914,"Cost":593,"Date":"9/19/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":824,"Cost":623,"Date":"9/25/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":549,"Cost":347,"Date":"10/4/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":708,"Cost":548,"Date":"10/10/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":966,"Cost":625,"Date":"10/17/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":833,"Cost":545,"Date":"10/28/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":55,"Cost":31,"Date":"10/30/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":912,"Cost":822,"Date":"11/1/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":393,"Cost":310,"Date":"11/15/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":321,"Cost":226,"Date":"11/25/2023"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":817,"Cost":437,"Date":"1/10/2024"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":751,"Cost":500,"Date":"1/14/2024"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":517,"Cost":394,"Date":"1/20/2024"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":335,"Cost":269,"Date":"2/8/2024"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":176,"Cost":136,"Date":"2/25/2024"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":631,"Cost":527,"Date":"3/7/2024"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":109,"Cost":76,"Date":"3/14/2024"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":541,"Cost":441,"Date":"3/27/2024"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":838,"Cost":576,"Date":"4/5/2024"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":726,"Cost":622,"Date":"4/14/2024"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":118,"Cost":72,"Date":"5/3/2024"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":926,"Cost":591,"Date":"5/9/2024"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":861,"Cost":620,"Date":"5/15/2024"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":254,"Cost":190,"Date":"5/25/2024"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":926,"Cost":790,"Date":"5/26/2024"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":10,"Cost":5,"Date":"5/31/2024"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":507,"Cost":337,"Date":"7/27/2024"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":485,"Cost":288,"Date":"9/17/2024"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":820,"Cost":608,"Date":"10/6/2024"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":798,"Cost":682,"Date":"10/8/2024"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":813,"Cost":426,"Date":"10/26/2024"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":645,"Cost":448,"Date":"11/16/2024"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":311,"Cost":170,"Date":"11/18/2024"},{"Store":"Westfield Sydney","Brand":"HM","Country":"Australia","Sale":498,"Cost":312,"Date":"12/1/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":630,"Cost":403,"Date":"2/9/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":582,"Cost":529,"Date":"2/11/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":130,"Cost":111,"Date":"3/10/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":863,"Cost":520,"Date":"3/16/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":180,"Cost":124,"Date":"3/18/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":9,"Cost":7,"Date":"3/20/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":220,"Cost":131,"Date":"3/26/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":511,"Cost":482,"Date":"6/2/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":247,"Cost":190,"Date":"6/10/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":184,"Cost":94,"Date":"6/16/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":662,"Cost":456,"Date":"6/25/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":634,"Cost":408,"Date":"7/19/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":530,"Cost":391,"Date":"7/21/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":723,"Cost":499,"Date":"7/25/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":98,"Cost":87,"Date":"8/4/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":913,"Cost":807,"Date":"9/2/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":799,"Cost":533,"Date":"9/4/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":693,"Cost":351,"Date":"9/19/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":620,"Cost":334,"Date":"9/29/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":67,"Cost":55,"Date":"10/2/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":593,"Cost":521,"Date":"10/15/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":493,"Cost":445,"Date":"10/30/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":798,"Cost":480,"Date":"11/9/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":429,"Cost":223,"Date":"11/23/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":415,"Cost":261,"Date":"11/30/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":620,"Cost":587,"Date":"12/8/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":384,"Cost":349,"Date":"12/11/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":734,"Cost":621,"Date":"1/15/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":2,"Cost":1,"Date":"1/24/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":167,"Cost":97,"Date":"2/3/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":348,"Cost":231,"Date":"2/4/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":334,"Cost":290,"Date":"3/9/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":891,"Cost":543,"Date":"3/12/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":907,"Cost":572,"Date":"4/19/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":772,"Cost":503,"Date":"5/3/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":125,"Cost":103,"Date":"5/4/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":539,"Cost":494,"Date":"6/8/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":212,"Cost":183,"Date":"6/26/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":808,"Cost":466,"Date":"7/4/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":948,"Cost":894,"Date":"7/13/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":169,"Cost":91,"Date":"8/8/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":480,"Cost":343,"Date":"8/26/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":618,"Cost":315,"Date":"9/2/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":754,"Cost":621,"Date":"9/29/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":481,"Cost":317,"Date":"10/12/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":591,"Cost":307,"Date":"11/2/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":886,"Cost":605,"Date":"11/4/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":952,"Cost":727,"Date":"11/7/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":490,"Cost":417,"Date":"12/1/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":928,"Cost":578,"Date":"12/4/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":697,"Cost":552,"Date":"12/7/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":981,"Cost":554,"Date":"12/18/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":419,"Cost":397,"Date":"12/20/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":422,"Cost":218,"Date":"12/20/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":942,"Cost":611,"Date":"12/21/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":209,"Cost":136,"Date":"1/9/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":535,"Cost":494,"Date":"2/5/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":387,"Cost":233,"Date":"2/16/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":855,"Cost":627,"Date":"2/16/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":591,"Cost":359,"Date":"2/18/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":896,"Cost":811,"Date":"2/22/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":830,"Cost":672,"Date":"2/25/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":205,"Cost":139,"Date":"3/8/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":229,"Cost":189,"Date":"4/2/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":190,"Cost":174,"Date":"4/3/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":330,"Cost":210,"Date":"4/9/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":866,"Cost":542,"Date":"4/10/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":732,"Cost":624,"Date":"4/19/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":430,"Cost":317,"Date":"5/17/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":737,"Cost":426,"Date":"5/22/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":975,"Cost":919,"Date":"6/20/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":663,"Cost":401,"Date":"7/1/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":524,"Cost":398,"Date":"7/4/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":673,"Cost":439,"Date":"7/8/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":192,"Cost":108,"Date":"7/9/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":862,"Cost":433,"Date":"7/14/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":744,"Cost":649,"Date":"7/19/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":218,"Cost":133,"Date":"8/1/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":389,"Cost":217,"Date":"8/6/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":59,"Cost":32,"Date":"8/7/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":525,"Cost":278,"Date":"8/22/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":258,"Cost":142,"Date":"8/31/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":463,"Cost":325,"Date":"9/1/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":428,"Cost":236,"Date":"9/1/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":964,"Cost":635,"Date":"9/17/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":333,"Cost":236,"Date":"9/29/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":963,"Cost":616,"Date":"11/7/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":298,"Cost":259,"Date":"11/26/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":502,"Cost":258,"Date":"11/27/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":600,"Cost":397,"Date":"12/5/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":847,"Cost":583,"Date":"12/26/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":278,"Cost":233,"Date":"12/31/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":367,"Cost":246,"Date":"1/20/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":163,"Cost":133,"Date":"2/2/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":479,"Cost":366,"Date":"2/8/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":22,"Cost":19,"Date":"2/27/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":45,"Cost":27,"Date":"3/1/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":972,"Cost":592,"Date":"3/1/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":778,"Cost":618,"Date":"3/19/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":528,"Cost":329,"Date":"3/28/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":864,"Cost":727,"Date":"5/21/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":145,"Cost":93,"Date":"7/21/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":484,"Cost":426,"Date":"8/5/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":86,"Cost":73,"Date":"8/12/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":393,"Cost":219,"Date":"8/21/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":724,"Cost":604,"Date":"8/23/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":444,"Cost":310,"Date":"9/3/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":465,"Cost":329,"Date":"9/5/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":322,"Cost":166,"Date":"10/6/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":52,"Cost":31,"Date":"10/19/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":748,"Cost":521,"Date":"11/15/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":348,"Cost":314,"Date":"12/8/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":587,"Cost":527,"Date":"1/8/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":486,"Cost":428,"Date":"1/14/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":325,"Cost":244,"Date":"1/19/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":676,"Cost":517,"Date":"1/28/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":641,"Cost":574,"Date":"1/31/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":807,"Cost":546,"Date":"3/27/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":916,"Cost":630,"Date":"4/20/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":258,"Cost":153,"Date":"4/24/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":1000,"Cost":681,"Date":"4/28/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":804,"Cost":412,"Date":"5/15/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":100,"Cost":87,"Date":"5/16/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":953,"Cost":844,"Date":"5/18/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":673,"Cost":447,"Date":"6/2/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":929,"Cost":829,"Date":"6/3/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":571,"Cost":398,"Date":"6/5/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":48,"Cost":34,"Date":"6/7/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":456,"Cost":281,"Date":"6/14/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":92,"Cost":57,"Date":"6/20/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":188,"Cost":112,"Date":"6/24/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":795,"Cost":616,"Date":"7/4/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":736,"Cost":683,"Date":"7/9/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":451,"Cost":233,"Date":"7/12/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":6,"Cost":6,"Date":"8/14/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":405,"Cost":371,"Date":"8/16/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":214,"Cost":132,"Date":"8/23/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":666,"Cost":628,"Date":"9/2/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":11,"Cost":7,"Date":"9/3/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":415,"Cost":325,"Date":"9/16/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":378,"Cost":212,"Date":"10/4/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":477,"Cost":264,"Date":"11/1/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":948,"Cost":833,"Date":"11/2/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":196,"Cost":131,"Date":"12/17/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":8,"Cost":5,"Date":"2/10/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":719,"Cost":579,"Date":"2/28/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":607,"Cost":369,"Date":"3/4/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":126,"Cost":77,"Date":"3/9/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":415,"Cost":354,"Date":"3/9/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":77,"Cost":48,"Date":"3/11/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":237,"Cost":205,"Date":"3/17/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":393,"Cost":372,"Date":"3/17/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":832,"Cost":695,"Date":"3/23/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":709,"Cost":401,"Date":"4/1/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":710,"Cost":460,"Date":"5/7/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":234,"Cost":201,"Date":"5/10/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":986,"Cost":731,"Date":"5/20/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":620,"Cost":490,"Date":"6/2/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":616,"Cost":348,"Date":"6/11/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":906,"Cost":607,"Date":"6/16/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":743,"Cost":671,"Date":"6/16/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":675,"Cost":355,"Date":"7/10/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":964,"Cost":770,"Date":"7/11/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":770,"Cost":607,"Date":"8/28/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":906,"Cost":686,"Date":"8/29/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":540,"Cost":424,"Date":"8/31/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":596,"Cost":485,"Date":"9/8/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":578,"Cost":304,"Date":"9/13/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":599,"Cost":354,"Date":"9/14/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":404,"Cost":310,"Date":"9/19/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":138,"Cost":106,"Date":"9/25/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":706,"Cost":505,"Date":"10/4/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":382,"Cost":259,"Date":"10/10/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":43,"Cost":26,"Date":"10/17/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":248,"Cost":162,"Date":"10/28/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":610,"Cost":465,"Date":"10/30/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":52,"Cost":28,"Date":"11/1/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":158,"Cost":138,"Date":"11/15/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":165,"Cost":117,"Date":"11/25/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":549,"Cost":391,"Date":"1/10/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":24,"Cost":17,"Date":"1/14/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":487,"Cost":281,"Date":"1/20/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":29,"Cost":28,"Date":"2/8/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":792,"Cost":672,"Date":"2/25/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":516,"Cost":485,"Date":"3/7/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":506,"Cost":293,"Date":"3/14/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":420,"Cost":219,"Date":"3/27/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":157,"Cost":80,"Date":"4/5/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":469,"Cost":443,"Date":"4/14/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":456,"Cost":333,"Date":"5/3/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":248,"Cost":204,"Date":"5/9/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":65,"Cost":39,"Date":"5/15/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":275,"Cost":231,"Date":"5/25/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":442,"Cost":308,"Date":"5/26/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":508,"Cost":256,"Date":"5/31/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":872,"Cost":597,"Date":"7/27/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":827,"Cost":415,"Date":"9/17/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":433,"Cost":405,"Date":"10/6/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":847,"Cost":787,"Date":"10/8/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":920,"Cost":468,"Date":"10/26/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":882,"Cost":456,"Date":"11/16/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":584,"Cost":459,"Date":"11/18/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":171,"Cost":112,"Date":"12/1/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":623,"Cost":528,"Date":"2/9/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":781,"Cost":619,"Date":"2/11/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":331,"Cost":296,"Date":"3/10/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":765,"Cost":399,"Date":"3/16/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":709,"Cost":663,"Date":"3/18/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":731,"Cost":530,"Date":"3/20/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":338,"Cost":242,"Date":"3/26/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":737,"Cost":531,"Date":"6/2/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":657,"Cost":498,"Date":"6/10/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":504,"Cost":428,"Date":"6/16/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":947,"Cost":483,"Date":"6/25/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":508,"Cost":271,"Date":"7/19/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":362,"Cost":252,"Date":"7/21/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":404,"Cost":270,"Date":"7/25/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":714,"Cost":571,"Date":"8/4/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":593,"Cost":443,"Date":"9/2/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":657,"Cost":617,"Date":"9/4/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":504,"Cost":322,"Date":"9/19/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":224,"Cost":133,"Date":"9/29/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":358,"Cost":250,"Date":"10/2/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":115,"Cost":71,"Date":"10/15/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":467,"Cost":257,"Date":"10/30/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":543,"Cost":438,"Date":"11/9/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":261,"Cost":146,"Date":"11/23/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":495,"Cost":369,"Date":"11/30/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":229,"Cost":170,"Date":"12/8/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":743,"Cost":414,"Date":"12/11/2018"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":645,"Cost":473,"Date":"1/15/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":426,"Cost":339,"Date":"1/24/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":92,"Cost":83,"Date":"2/3/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":883,"Cost":656,"Date":"2/4/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":659,"Cost":443,"Date":"3/9/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":758,"Cost":628,"Date":"3/12/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":338,"Cost":234,"Date":"4/19/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":129,"Cost":114,"Date":"5/3/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":101,"Cost":63,"Date":"5/4/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":968,"Cost":813,"Date":"6/8/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":624,"Cost":541,"Date":"6/26/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":329,"Cost":223,"Date":"7/4/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":258,"Cost":142,"Date":"7/13/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":564,"Cost":503,"Date":"8/8/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":433,"Cost":342,"Date":"8/26/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":720,"Cost":424,"Date":"9/2/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":431,"Cost":340,"Date":"9/29/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":817,"Cost":623,"Date":"10/12/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":398,"Cost":284,"Date":"11/2/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":96,"Cost":64,"Date":"11/4/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":658,"Cost":591,"Date":"11/7/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":279,"Cost":183,"Date":"12/1/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":591,"Cost":541,"Date":"12/4/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":503,"Cost":309,"Date":"12/7/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":690,"Cost":596,"Date":"12/18/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":453,"Cost":230,"Date":"12/20/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":911,"Cost":692,"Date":"12/20/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":817,"Cost":759,"Date":"12/21/2019"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":489,"Cost":277,"Date":"1/9/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":8,"Cost":4,"Date":"2/5/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":118,"Cost":69,"Date":"2/16/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":559,"Cost":421,"Date":"2/16/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":59,"Cost":38,"Date":"2/18/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":184,"Cost":106,"Date":"2/22/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":918,"Cost":740,"Date":"2/25/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":56,"Cost":46,"Date":"3/8/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":188,"Cost":156,"Date":"4/2/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":862,"Cost":699,"Date":"4/3/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":108,"Cost":92,"Date":"4/9/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":864,"Cost":528,"Date":"4/10/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":586,"Cost":446,"Date":"4/19/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":150,"Cost":126,"Date":"5/17/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":301,"Cost":175,"Date":"5/22/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":790,"Cost":711,"Date":"6/20/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":536,"Cost":496,"Date":"7/1/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":86,"Cost":61,"Date":"7/4/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":459,"Cost":259,"Date":"7/8/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":153,"Cost":99,"Date":"7/9/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":764,"Cost":382,"Date":"7/14/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":248,"Cost":133,"Date":"7/19/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":970,"Cost":781,"Date":"8/1/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":229,"Cost":202,"Date":"8/6/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":587,"Cost":371,"Date":"8/7/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":759,"Cost":540,"Date":"8/22/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":623,"Cost":420,"Date":"8/31/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":980,"Cost":821,"Date":"9/1/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":908,"Cost":745,"Date":"9/1/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":806,"Cost":661,"Date":"9/17/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":848,"Cost":646,"Date":"9/29/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":945,"Cost":688,"Date":"11/7/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":385,"Cost":359,"Date":"11/26/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":206,"Cost":131,"Date":"11/27/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":500,"Cost":394,"Date":"12/5/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":903,"Cost":838,"Date":"12/26/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":303,"Cost":208,"Date":"12/31/2020"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":22,"Cost":12,"Date":"1/20/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":29,"Cost":14,"Date":"2/2/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":669,"Cost":464,"Date":"2/8/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":515,"Cost":455,"Date":"2/27/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":992,"Cost":742,"Date":"3/1/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":337,"Cost":271,"Date":"3/1/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":694,"Cost":625,"Date":"3/19/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":259,"Cost":240,"Date":"3/28/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":246,"Cost":186,"Date":"5/21/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":843,"Cost":496,"Date":"7/21/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":825,"Cost":488,"Date":"8/5/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":804,"Cost":591,"Date":"8/12/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":142,"Cost":125,"Date":"8/21/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":980,"Cost":551,"Date":"8/23/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":653,"Cost":464,"Date":"9/3/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":481,"Cost":348,"Date":"9/5/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":415,"Cost":257,"Date":"10/6/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":60,"Cost":55,"Date":"10/19/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":238,"Cost":185,"Date":"11/15/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":602,"Cost":337,"Date":"12/8/2021"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":847,"Cost":543,"Date":"1/8/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":298,"Cost":196,"Date":"1/14/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":137,"Cost":110,"Date":"1/19/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":481,"Cost":323,"Date":"1/28/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":438,"Cost":360,"Date":"1/31/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":491,"Cost":391,"Date":"3/27/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":704,"Cost":357,"Date":"4/20/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":710,"Cost":366,"Date":"4/24/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":912,"Cost":786,"Date":"4/28/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":391,"Cost":202,"Date":"5/15/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":21,"Cost":16,"Date":"5/16/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":658,"Cost":624,"Date":"5/18/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":392,"Cost":361,"Date":"6/2/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":791,"Cost":504,"Date":"6/3/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":730,"Cost":437,"Date":"6/5/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":297,"Cost":265,"Date":"6/7/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":102,"Cost":84,"Date":"6/14/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":866,"Cost":808,"Date":"6/20/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":542,"Cost":408,"Date":"6/24/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":833,"Cost":741,"Date":"7/4/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":768,"Cost":565,"Date":"7/9/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":386,"Cost":218,"Date":"7/12/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":240,"Cost":134,"Date":"8/14/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":836,"Cost":447,"Date":"8/16/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":978,"Cost":608,"Date":"8/23/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":87,"Cost":45,"Date":"9/2/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":631,"Cost":585,"Date":"9/3/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":215,"Cost":180,"Date":"9/16/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":46,"Cost":31,"Date":"10/4/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":360,"Cost":282,"Date":"11/1/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":776,"Cost":499,"Date":"11/2/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":233,"Cost":130,"Date":"12/17/2022"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":445,"Cost":404,"Date":"2/10/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":531,"Cost":367,"Date":"2/28/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":185,"Cost":109,"Date":"3/4/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":242,"Cost":134,"Date":"3/9/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":63,"Cost":55,"Date":"3/9/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":660,"Cost":359,"Date":"3/11/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":231,"Cost":140,"Date":"3/17/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":423,"Cost":385,"Date":"3/17/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":916,"Cost":554,"Date":"3/23/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":403,"Cost":241,"Date":"4/1/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":98,"Cost":55,"Date":"5/7/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":985,"Cost":607,"Date":"5/10/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":589,"Cost":321,"Date":"5/20/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":918,"Cost":823,"Date":"6/2/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":42,"Cost":40,"Date":"6/11/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":569,"Cost":322,"Date":"6/16/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":503,"Cost":358,"Date":"6/16/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":673,"Cost":395,"Date":"7/10/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":92,"Cost":54,"Date":"7/11/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":853,"Cost":793,"Date":"8/28/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":312,"Cost":272,"Date":"8/29/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":555,"Cost":458,"Date":"8/31/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":96,"Cost":73,"Date":"9/8/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":966,"Cost":490,"Date":"9/13/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":75,"Cost":50,"Date":"9/14/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":382,"Cost":257,"Date":"9/19/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":363,"Cost":206,"Date":"9/25/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":704,"Cost":389,"Date":"10/4/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":850,"Cost":789,"Date":"10/10/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":460,"Cost":303,"Date":"10/17/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":899,"Cost":608,"Date":"10/28/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":896,"Cost":643,"Date":"10/30/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":112,"Cost":60,"Date":"11/1/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":542,"Cost":427,"Date":"11/15/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":68,"Cost":42,"Date":"11/25/2023"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":29,"Cost":17,"Date":"1/10/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":217,"Cost":109,"Date":"1/14/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":238,"Cost":207,"Date":"1/20/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":370,"Cost":241,"Date":"2/8/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":576,"Cost":419,"Date":"2/25/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":79,"Cost":45,"Date":"3/7/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":9,"Cost":6,"Date":"3/14/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":985,"Cost":710,"Date":"3/27/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":107,"Cost":78,"Date":"4/5/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":86,"Cost":55,"Date":"4/14/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":821,"Cost":485,"Date":"5/3/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":4,"Cost":2,"Date":"5/9/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":852,"Cost":480,"Date":"5/15/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":276,"Cost":177,"Date":"5/25/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":598,"Cost":442,"Date":"5/26/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":613,"Cost":322,"Date":"5/31/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":864,"Cost":564,"Date":"7/27/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":292,"Cost":276,"Date":"9/17/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":571,"Cost":422,"Date":"10/6/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":204,"Cost":125,"Date":"10/8/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":741,"Cost":536,"Date":"10/26/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":221,"Cost":116,"Date":"11/16/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":713,"Cost":525,"Date":"11/18/2024"},{"Store":"Westfield Sydney","Brand":"COS","Country":"Australia","Sale":291,"Cost":242,"Date":"12/1/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":699,"Cost":449,"Date":"2/9/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":422,"Cost":281,"Date":"2/11/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":501,"Cost":465,"Date":"3/10/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":459,"Cost":389,"Date":"3/16/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":871,"Cost":711,"Date":"3/18/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":65,"Cost":41,"Date":"3/20/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":146,"Cost":128,"Date":"3/26/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":390,"Cost":239,"Date":"6/2/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":715,"Cost":650,"Date":"6/10/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":578,"Cost":476,"Date":"6/16/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":502,"Cost":341,"Date":"6/25/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":193,"Cost":175,"Date":"7/19/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":914,"Cost":867,"Date":"7/21/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":406,"Cost":208,"Date":"7/25/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":626,"Cost":491,"Date":"8/4/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":997,"Cost":789,"Date":"9/2/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":237,"Cost":187,"Date":"9/4/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":865,"Cost":752,"Date":"9/19/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":731,"Cost":520,"Date":"9/29/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":96,"Cost":50,"Date":"10/2/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":309,"Cost":216,"Date":"10/15/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":907,"Cost":746,"Date":"10/30/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":644,"Cost":506,"Date":"11/9/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":866,"Cost":570,"Date":"11/23/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":219,"Cost":206,"Date":"11/30/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":215,"Cost":187,"Date":"12/8/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":292,"Cost":230,"Date":"12/11/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":175,"Cost":154,"Date":"1/15/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":564,"Cost":317,"Date":"1/24/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":426,"Cost":259,"Date":"2/3/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":1,"Cost":1,"Date":"2/4/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":638,"Cost":359,"Date":"3/9/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":357,"Cost":285,"Date":"3/12/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":316,"Cost":225,"Date":"4/19/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":352,"Cost":324,"Date":"5/3/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":528,"Cost":348,"Date":"5/4/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":341,"Cost":215,"Date":"6/8/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":243,"Cost":227,"Date":"6/26/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":76,"Cost":67,"Date":"7/4/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":122,"Cost":98,"Date":"7/13/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":398,"Cost":286,"Date":"8/8/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":836,"Cost":464,"Date":"8/26/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":419,"Cost":374,"Date":"9/2/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":940,"Cost":596,"Date":"9/29/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":908,"Cost":607,"Date":"10/12/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":671,"Cost":368,"Date":"11/2/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":680,"Cost":612,"Date":"11/4/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":753,"Cost":420,"Date":"11/7/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":283,"Cost":208,"Date":"12/1/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":973,"Cost":655,"Date":"12/4/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":464,"Cost":384,"Date":"12/7/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":100,"Cost":63,"Date":"12/18/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":791,"Cost":483,"Date":"12/20/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":399,"Cost":258,"Date":"12/20/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":327,"Cost":278,"Date":"12/21/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":907,"Cost":658,"Date":"1/9/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":674,"Cost":572,"Date":"2/5/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":344,"Cost":269,"Date":"2/16/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":158,"Cost":90,"Date":"2/16/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":24,"Cost":18,"Date":"2/18/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":956,"Cost":617,"Date":"2/22/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":471,"Cost":409,"Date":"2/25/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":734,"Cost":633,"Date":"3/8/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":348,"Cost":285,"Date":"4/2/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":977,"Cost":788,"Date":"4/3/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":22,"Cost":15,"Date":"4/9/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":919,"Cost":649,"Date":"4/10/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":550,"Cost":383,"Date":"4/19/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":80,"Cost":68,"Date":"5/17/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":95,"Cost":65,"Date":"5/22/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":463,"Cost":389,"Date":"6/20/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":416,"Cost":252,"Date":"7/1/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":138,"Cost":96,"Date":"7/4/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":870,"Cost":714,"Date":"7/8/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":686,"Cost":645,"Date":"7/9/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":724,"Cost":594,"Date":"7/14/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":706,"Cost":668,"Date":"7/19/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":375,"Cost":256,"Date":"8/1/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":327,"Cost":229,"Date":"8/6/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":447,"Cost":225,"Date":"8/7/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":254,"Cost":157,"Date":"8/22/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":779,"Cost":696,"Date":"8/31/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":220,"Cost":179,"Date":"9/1/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":280,"Cost":191,"Date":"9/1/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":498,"Cost":421,"Date":"9/17/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":626,"Cost":343,"Date":"9/29/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":40,"Cost":25,"Date":"11/7/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":488,"Cost":321,"Date":"11/26/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":115,"Cost":61,"Date":"11/27/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":768,"Cost":398,"Date":"12/5/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":546,"Cost":369,"Date":"12/26/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":473,"Cost":335,"Date":"12/31/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":500,"Cost":344,"Date":"1/20/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":511,"Cost":461,"Date":"2/2/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":434,"Cost":395,"Date":"2/8/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":396,"Cost":276,"Date":"2/27/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":604,"Cost":545,"Date":"3/1/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":887,"Cost":682,"Date":"3/1/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":433,"Cost":363,"Date":"3/19/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":389,"Cost":281,"Date":"3/28/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":293,"Cost":247,"Date":"5/21/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":858,"Cost":747,"Date":"7/21/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":552,"Cost":315,"Date":"8/5/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":479,"Cost":285,"Date":"8/12/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":31,"Cost":23,"Date":"8/21/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":229,"Cost":143,"Date":"8/23/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":207,"Cost":148,"Date":"9/3/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":480,"Cost":253,"Date":"9/5/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":140,"Cost":80,"Date":"10/6/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":672,"Cost":625,"Date":"10/19/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":194,"Cost":135,"Date":"11/15/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":780,"Cost":713,"Date":"12/8/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":847,"Cost":780,"Date":"1/8/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":830,"Cost":440,"Date":"1/14/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":67,"Cost":58,"Date":"1/19/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":905,"Cost":758,"Date":"1/28/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":15,"Cost":11,"Date":"1/31/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":860,"Cost":650,"Date":"3/27/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":49,"Cost":37,"Date":"4/20/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":816,"Cost":589,"Date":"4/24/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":995,"Cost":728,"Date":"4/28/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":691,"Cost":614,"Date":"5/15/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":108,"Cost":76,"Date":"5/16/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":203,"Cost":117,"Date":"5/18/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":330,"Cost":310,"Date":"6/2/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":297,"Cost":207,"Date":"6/3/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":221,"Cost":179,"Date":"6/5/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":637,"Cost":589,"Date":"6/7/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":161,"Cost":97,"Date":"6/14/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":539,"Cost":356,"Date":"6/20/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":199,"Cost":132,"Date":"6/24/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":103,"Cost":97,"Date":"7/4/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":226,"Cost":182,"Date":"7/9/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":654,"Cost":353,"Date":"7/12/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":332,"Cost":261,"Date":"8/14/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":721,"Cost":398,"Date":"8/16/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":538,"Cost":275,"Date":"8/23/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":641,"Cost":604,"Date":"9/2/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":181,"Cost":109,"Date":"9/3/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":269,"Cost":247,"Date":"9/16/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":591,"Cost":342,"Date":"10/4/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":262,"Cost":195,"Date":"11/1/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":959,"Cost":742,"Date":"11/2/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":635,"Cost":411,"Date":"12/17/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":784,"Cost":653,"Date":"2/10/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":812,"Cost":691,"Date":"2/28/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":436,"Cost":295,"Date":"3/4/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":87,"Cost":53,"Date":"3/9/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":165,"Cost":125,"Date":"3/9/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":225,"Cost":162,"Date":"3/11/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":214,"Cost":116,"Date":"3/17/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":63,"Cost":51,"Date":"3/17/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":846,"Cost":789,"Date":"3/23/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":555,"Cost":375,"Date":"4/1/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":500,"Cost":390,"Date":"5/7/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":548,"Cost":444,"Date":"5/10/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":752,"Cost":473,"Date":"5/20/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":820,"Cost":475,"Date":"6/2/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":214,"Cost":171,"Date":"6/11/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":318,"Cost":227,"Date":"6/16/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":951,"Cost":745,"Date":"6/16/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":962,"Cost":763,"Date":"7/10/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":267,"Cost":197,"Date":"7/11/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":812,"Cost":620,"Date":"8/28/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":201,"Cost":125,"Date":"8/29/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":255,"Cost":207,"Date":"8/31/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":956,"Cost":689,"Date":"9/8/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":556,"Cost":463,"Date":"9/13/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":318,"Cost":194,"Date":"9/14/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":119,"Cost":93,"Date":"9/19/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":826,"Cost":741,"Date":"9/25/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":879,"Cost":696,"Date":"10/4/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":417,"Cost":334,"Date":"10/10/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":178,"Cost":146,"Date":"10/17/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":727,"Cost":378,"Date":"10/28/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":428,"Cost":304,"Date":"10/30/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":68,"Cost":35,"Date":"11/1/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":347,"Cost":186,"Date":"11/15/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":452,"Cost":352,"Date":"11/25/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":990,"Cost":922,"Date":"1/10/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":411,"Cost":237,"Date":"1/14/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":496,"Cost":391,"Date":"1/20/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":380,"Cost":356,"Date":"2/8/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":46,"Cost":42,"Date":"2/25/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":364,"Cost":336,"Date":"3/7/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":209,"Cost":137,"Date":"3/14/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":385,"Cost":353,"Date":"3/27/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":735,"Cost":628,"Date":"4/5/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":913,"Cost":546,"Date":"4/14/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":396,"Cost":360,"Date":"5/3/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":305,"Cost":271,"Date":"5/9/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":896,"Cost":553,"Date":"5/15/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":90,"Cost":70,"Date":"5/25/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":75,"Cost":48,"Date":"5/26/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":518,"Cost":360,"Date":"5/31/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":629,"Cost":326,"Date":"7/27/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":448,"Cost":372,"Date":"9/17/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":426,"Cost":353,"Date":"10/6/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":753,"Cost":430,"Date":"10/8/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":884,"Cost":774,"Date":"10/26/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":424,"Cost":390,"Date":"11/16/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":27,"Cost":17,"Date":"11/18/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"Jeans","Country":"Australia","Sale":488,"Cost":446,"Date":"12/1/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":656,"Cost":594,"Date":"2/9/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":208,"Cost":166,"Date":"2/11/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":936,"Cost":810,"Date":"3/10/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":487,"Cost":392,"Date":"3/16/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":706,"Cost":536,"Date":"3/18/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":421,"Cost":337,"Date":"3/20/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":84,"Cost":71,"Date":"3/26/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":922,"Cost":842,"Date":"6/2/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":946,"Cost":524,"Date":"6/10/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":121,"Cost":102,"Date":"6/16/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":584,"Cost":442,"Date":"6/25/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":830,"Cost":542,"Date":"7/19/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":4,"Cost":3,"Date":"7/21/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":310,"Cost":237,"Date":"7/25/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":169,"Cost":90,"Date":"8/4/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":625,"Cost":358,"Date":"9/2/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":938,"Cost":585,"Date":"9/4/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":570,"Cost":484,"Date":"9/19/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":424,"Cost":348,"Date":"9/29/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":465,"Cost":297,"Date":"10/2/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":408,"Cost":372,"Date":"10/15/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":43,"Cost":36,"Date":"10/30/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":394,"Cost":279,"Date":"11/9/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":628,"Cost":513,"Date":"11/23/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":489,"Cost":386,"Date":"11/30/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":404,"Cost":275,"Date":"12/8/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":149,"Cost":77,"Date":"12/11/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":80,"Cost":67,"Date":"1/15/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":119,"Cost":78,"Date":"1/24/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":380,"Cost":256,"Date":"2/3/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":617,"Cost":550,"Date":"2/4/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":864,"Cost":558,"Date":"3/9/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":617,"Cost":364,"Date":"3/12/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":406,"Cost":233,"Date":"4/19/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":715,"Cost":591,"Date":"5/3/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":771,"Cost":634,"Date":"5/4/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":449,"Cost":250,"Date":"6/8/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":769,"Cost":491,"Date":"6/26/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":737,"Cost":466,"Date":"7/4/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":204,"Cost":166,"Date":"7/13/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":198,"Cost":158,"Date":"8/8/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":407,"Cost":320,"Date":"8/26/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":987,"Cost":909,"Date":"9/2/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":941,"Cost":834,"Date":"9/29/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":425,"Cost":267,"Date":"10/12/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":906,"Cost":800,"Date":"11/2/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":124,"Cost":103,"Date":"11/4/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":316,"Cost":265,"Date":"11/7/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":576,"Cost":350,"Date":"12/1/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":494,"Cost":359,"Date":"12/4/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":636,"Cost":536,"Date":"12/7/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":715,"Cost":561,"Date":"12/18/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":171,"Cost":146,"Date":"12/20/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":877,"Cost":745,"Date":"12/20/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":168,"Cost":146,"Date":"12/21/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":866,"Cost":585,"Date":"1/9/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":927,"Cost":651,"Date":"2/5/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":597,"Cost":369,"Date":"2/16/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":750,"Cost":578,"Date":"2/16/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":404,"Cost":216,"Date":"2/18/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":551,"Cost":425,"Date":"2/22/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":626,"Cost":484,"Date":"2/25/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":586,"Cost":496,"Date":"3/8/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":276,"Cost":138,"Date":"4/2/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":218,"Cost":148,"Date":"4/3/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":803,"Cost":545,"Date":"4/9/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":149,"Cost":107,"Date":"4/10/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":409,"Cost":362,"Date":"4/19/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":35,"Cost":18,"Date":"5/17/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":305,"Cost":259,"Date":"5/22/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":350,"Cost":240,"Date":"6/20/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":156,"Cost":96,"Date":"7/1/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":788,"Cost":634,"Date":"7/4/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":769,"Cost":730,"Date":"7/8/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":368,"Cost":239,"Date":"7/9/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":144,"Cost":117,"Date":"7/14/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":519,"Cost":286,"Date":"7/19/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":11,"Cost":9,"Date":"8/1/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":214,"Cost":196,"Date":"8/6/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":197,"Cost":100,"Date":"8/7/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":708,"Cost":452,"Date":"8/22/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":511,"Cost":332,"Date":"8/31/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":42,"Cost":26,"Date":"9/1/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":856,"Cost":488,"Date":"9/1/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":743,"Cost":536,"Date":"9/17/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":706,"Cost":500,"Date":"9/29/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":599,"Cost":566,"Date":"11/7/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":703,"Cost":659,"Date":"11/26/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":357,"Cost":283,"Date":"11/27/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":947,"Cost":778,"Date":"12/5/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":143,"Cost":112,"Date":"12/26/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":428,"Cost":305,"Date":"12/31/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":212,"Cost":141,"Date":"1/20/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":289,"Cost":182,"Date":"2/2/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":518,"Cost":289,"Date":"2/8/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":602,"Cost":308,"Date":"2/27/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":671,"Cost":366,"Date":"3/1/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":914,"Cost":725,"Date":"3/1/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":803,"Cost":682,"Date":"3/19/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":675,"Cost":470,"Date":"3/28/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":1000,"Cost":559,"Date":"5/21/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":274,"Cost":158,"Date":"7/21/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":631,"Cost":476,"Date":"8/5/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":929,"Cost":586,"Date":"8/12/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":189,"Cost":127,"Date":"8/21/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":818,"Cost":644,"Date":"8/23/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":692,"Cost":347,"Date":"9/3/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":921,"Cost":857,"Date":"9/5/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":417,"Cost":349,"Date":"10/6/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":366,"Cost":286,"Date":"10/19/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":130,"Cost":78,"Date":"11/15/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":982,"Cost":732,"Date":"12/8/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":530,"Cost":407,"Date":"1/8/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":554,"Cost":478,"Date":"1/14/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":936,"Cost":859,"Date":"1/19/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":988,"Cost":766,"Date":"1/28/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":991,"Cost":753,"Date":"1/31/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":468,"Cost":405,"Date":"3/27/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":367,"Cost":284,"Date":"4/20/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":178,"Cost":111,"Date":"4/24/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":66,"Cost":38,"Date":"4/28/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":970,"Cost":698,"Date":"5/15/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":86,"Cost":60,"Date":"5/16/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":396,"Cost":242,"Date":"5/18/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":199,"Cost":165,"Date":"6/2/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":361,"Cost":185,"Date":"6/3/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":406,"Cost":347,"Date":"6/5/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":540,"Cost":395,"Date":"6/7/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":147,"Cost":106,"Date":"6/14/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":57,"Cost":38,"Date":"6/20/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":342,"Cost":248,"Date":"6/24/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":153,"Cost":119,"Date":"7/4/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":279,"Cost":193,"Date":"7/9/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":923,"Cost":735,"Date":"7/12/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":563,"Cost":364,"Date":"8/14/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":608,"Cost":339,"Date":"8/16/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":262,"Cost":163,"Date":"8/23/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":257,"Cost":207,"Date":"9/2/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":112,"Cost":101,"Date":"9/3/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":551,"Cost":485,"Date":"9/16/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":739,"Cost":646,"Date":"10/4/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":732,"Cost":586,"Date":"11/1/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":458,"Cost":358,"Date":"11/2/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":907,"Cost":497,"Date":"12/17/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":90,"Cost":71,"Date":"2/10/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":886,"Cost":518,"Date":"2/28/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":938,"Cost":886,"Date":"3/4/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":944,"Cost":680,"Date":"3/9/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":356,"Cost":247,"Date":"3/9/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":787,"Cost":622,"Date":"3/11/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":870,"Cost":628,"Date":"3/17/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":746,"Cost":557,"Date":"3/17/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":441,"Cost":223,"Date":"3/23/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":975,"Cost":907,"Date":"4/1/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":66,"Cost":41,"Date":"5/7/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":754,"Cost":610,"Date":"5/10/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":470,"Cost":378,"Date":"5/20/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":261,"Cost":240,"Date":"6/2/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":262,"Cost":247,"Date":"6/11/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":874,"Cost":747,"Date":"6/16/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":836,"Cost":517,"Date":"6/16/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":891,"Cost":636,"Date":"7/10/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":51,"Cost":42,"Date":"7/11/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":807,"Cost":428,"Date":"8/28/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":706,"Cost":357,"Date":"8/29/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":605,"Cost":559,"Date":"8/31/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":549,"Cost":419,"Date":"9/8/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":595,"Cost":526,"Date":"9/13/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":278,"Cost":242,"Date":"9/14/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":287,"Cost":268,"Date":"9/19/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":426,"Cost":324,"Date":"9/25/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":390,"Cost":236,"Date":"10/4/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":580,"Cost":504,"Date":"10/10/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":226,"Cost":157,"Date":"10/17/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":146,"Cost":125,"Date":"10/28/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":953,"Cost":645,"Date":"10/30/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":662,"Cost":392,"Date":"11/1/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":143,"Cost":90,"Date":"11/15/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":530,"Cost":350,"Date":"11/25/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":656,"Cost":522,"Date":"1/10/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":471,"Cost":302,"Date":"1/14/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":302,"Cost":216,"Date":"1/20/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":15,"Cost":7,"Date":"2/8/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":587,"Cost":520,"Date":"2/25/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":318,"Cost":199,"Date":"3/7/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":336,"Cost":182,"Date":"3/14/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":610,"Cost":389,"Date":"3/27/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":522,"Cost":481,"Date":"4/5/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":264,"Cost":164,"Date":"4/14/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":422,"Cost":371,"Date":"5/3/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":444,"Cost":321,"Date":"5/9/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":805,"Cost":761,"Date":"5/15/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":386,"Cost":319,"Date":"5/25/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":417,"Cost":340,"Date":"5/26/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":420,"Cost":218,"Date":"5/31/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":395,"Cost":243,"Date":"7/27/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":315,"Cost":221,"Date":"9/17/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":463,"Cost":245,"Date":"10/6/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":996,"Cost":701,"Date":"10/8/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":896,"Cost":660,"Date":"10/26/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":25,"Cost":18,"Date":"11/16/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":955,"Cost":575,"Date":"11/18/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"ARKET","Country":"Australia","Sale":328,"Cost":196,"Date":"12/1/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":875,"Cost":697,"Date":"2/9/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":170,"Cost":160,"Date":"2/11/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":730,"Cost":546,"Date":"3/10/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":396,"Cost":230,"Date":"3/16/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":781,"Cost":490,"Date":"3/18/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":344,"Cost":245,"Date":"3/20/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":447,"Cost":306,"Date":"3/26/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":871,"Cost":821,"Date":"6/2/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":702,"Cost":409,"Date":"6/10/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":407,"Cost":219,"Date":"6/16/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":732,"Cost":401,"Date":"6/25/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":714,"Cost":498,"Date":"7/19/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":2,"Cost":1,"Date":"7/21/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":991,"Cost":636,"Date":"7/25/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":3,"Cost":1,"Date":"8/4/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":259,"Cost":201,"Date":"9/2/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":485,"Cost":444,"Date":"9/4/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":676,"Cost":643,"Date":"9/19/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":227,"Cost":195,"Date":"9/29/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":838,"Cost":609,"Date":"10/2/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":620,"Cost":447,"Date":"10/15/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":563,"Cost":343,"Date":"10/30/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":976,"Cost":892,"Date":"11/9/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":553,"Cost":485,"Date":"11/23/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":414,"Cost":219,"Date":"11/30/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":897,"Cost":788,"Date":"12/8/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":903,"Cost":723,"Date":"12/11/2018"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":383,"Cost":333,"Date":"1/15/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":284,"Cost":200,"Date":"1/24/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":676,"Cost":535,"Date":"2/3/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":449,"Cost":381,"Date":"2/4/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":212,"Cost":159,"Date":"3/9/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":245,"Cost":204,"Date":"3/12/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":875,"Cost":608,"Date":"4/19/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":145,"Cost":118,"Date":"5/3/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":267,"Cost":155,"Date":"5/4/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":237,"Cost":175,"Date":"6/8/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":611,"Cost":442,"Date":"6/26/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":54,"Cost":51,"Date":"7/4/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":222,"Cost":192,"Date":"7/13/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":260,"Cost":206,"Date":"8/8/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":745,"Cost":448,"Date":"8/26/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":235,"Cost":213,"Date":"9/2/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":957,"Cost":661,"Date":"9/29/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":783,"Cost":549,"Date":"10/12/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":672,"Cost":594,"Date":"11/2/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":347,"Cost":228,"Date":"11/4/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":380,"Cost":252,"Date":"11/7/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":701,"Cost":602,"Date":"12/1/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":85,"Cost":71,"Date":"12/4/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":641,"Cost":592,"Date":"12/7/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":503,"Cost":445,"Date":"12/18/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":144,"Cost":109,"Date":"12/20/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":174,"Cost":152,"Date":"12/20/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":906,"Cost":572,"Date":"12/21/2019"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":972,"Cost":828,"Date":"1/9/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":238,"Cost":147,"Date":"2/5/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":627,"Cost":410,"Date":"2/16/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":868,"Cost":762,"Date":"2/16/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":975,"Cost":813,"Date":"2/18/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":957,"Cost":856,"Date":"2/22/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":883,"Cost":531,"Date":"2/25/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":444,"Cost":417,"Date":"3/8/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":876,"Cost":606,"Date":"4/2/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":903,"Cost":807,"Date":"4/3/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":451,"Cost":235,"Date":"4/9/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":435,"Cost":222,"Date":"4/10/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":934,"Cost":621,"Date":"4/19/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":139,"Cost":117,"Date":"5/17/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":616,"Cost":565,"Date":"5/22/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":330,"Cost":258,"Date":"6/20/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":316,"Cost":221,"Date":"7/1/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":305,"Cost":179,"Date":"7/4/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":352,"Cost":248,"Date":"7/8/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":682,"Cost":407,"Date":"7/9/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":602,"Cost":536,"Date":"7/14/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":692,"Cost":499,"Date":"7/19/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":654,"Cost":375,"Date":"8/1/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":717,"Cost":628,"Date":"8/6/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":393,"Cost":196,"Date":"8/7/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":130,"Cost":83,"Date":"8/22/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":398,"Cost":223,"Date":"8/31/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":24,"Cost":22,"Date":"9/1/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":985,"Cost":626,"Date":"9/1/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":693,"Cost":448,"Date":"9/17/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":90,"Cost":62,"Date":"9/29/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":893,"Cost":845,"Date":"11/7/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":177,"Cost":114,"Date":"11/26/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":960,"Cost":780,"Date":"11/27/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":875,"Cost":652,"Date":"12/5/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":193,"Cost":103,"Date":"12/26/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":14,"Cost":10,"Date":"12/31/2020"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":415,"Cost":215,"Date":"1/20/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":139,"Cost":123,"Date":"2/2/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":589,"Cost":453,"Date":"2/8/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":225,"Cost":161,"Date":"2/27/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":378,"Cost":342,"Date":"3/1/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":271,"Cost":215,"Date":"3/1/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":80,"Cost":76,"Date":"3/19/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":612,"Cost":329,"Date":"3/28/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":797,"Cost":571,"Date":"5/21/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":992,"Cost":940,"Date":"7/21/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":855,"Cost":686,"Date":"8/5/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":355,"Cost":262,"Date":"8/12/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":645,"Cost":480,"Date":"8/21/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":447,"Cost":405,"Date":"8/23/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":660,"Cost":498,"Date":"9/3/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":914,"Cost":476,"Date":"9/5/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":477,"Cost":345,"Date":"10/6/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":327,"Cost":177,"Date":"10/19/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":582,"Cost":314,"Date":"11/15/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":888,"Cost":823,"Date":"12/8/2021"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":122,"Cost":88,"Date":"1/8/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":905,"Cost":766,"Date":"1/14/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":511,"Cost":465,"Date":"1/19/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":659,"Cost":626,"Date":"1/28/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":109,"Cost":84,"Date":"1/31/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":450,"Cost":283,"Date":"3/27/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":32,"Cost":25,"Date":"4/20/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":578,"Cost":482,"Date":"4/24/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":750,"Cost":577,"Date":"4/28/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":221,"Cost":126,"Date":"5/15/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":976,"Cost":551,"Date":"5/16/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":431,"Cost":288,"Date":"5/18/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":260,"Cost":147,"Date":"6/2/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":318,"Cost":242,"Date":"6/3/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":497,"Cost":427,"Date":"6/5/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":108,"Cost":71,"Date":"6/7/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":654,"Cost":403,"Date":"6/14/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":566,"Cost":285,"Date":"6/20/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":441,"Cost":334,"Date":"6/24/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":581,"Cost":531,"Date":"7/4/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":134,"Cost":101,"Date":"7/9/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":520,"Cost":321,"Date":"7/12/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":614,"Cost":457,"Date":"8/14/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":515,"Cost":432,"Date":"8/16/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":103,"Cost":77,"Date":"8/23/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":760,"Cost":695,"Date":"9/2/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":351,"Cost":274,"Date":"9/3/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":480,"Cost":252,"Date":"9/16/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":61,"Cost":34,"Date":"10/4/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":522,"Cost":298,"Date":"11/1/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":98,"Cost":89,"Date":"11/2/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":132,"Cost":113,"Date":"12/17/2022"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":795,"Cost":608,"Date":"2/10/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":865,"Cost":768,"Date":"2/28/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":210,"Cost":196,"Date":"3/4/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":195,"Cost":131,"Date":"3/9/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":480,"Cost":405,"Date":"3/9/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":100,"Cost":57,"Date":"3/11/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":913,"Cost":512,"Date":"3/17/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":15,"Cost":9,"Date":"3/17/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":195,"Cost":100,"Date":"3/23/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":222,"Cost":130,"Date":"4/1/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":490,"Cost":294,"Date":"5/7/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":675,"Cost":415,"Date":"5/10/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":5,"Cost":3,"Date":"5/20/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":609,"Cost":430,"Date":"6/2/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":470,"Cost":420,"Date":"6/11/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":414,"Cost":334,"Date":"6/16/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":743,"Cost":697,"Date":"6/16/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":509,"Cost":378,"Date":"7/10/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":163,"Cost":128,"Date":"7/11/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":281,"Cost":186,"Date":"8/28/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":862,"Cost":501,"Date":"8/29/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":890,"Cost":663,"Date":"8/31/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":565,"Cost":317,"Date":"9/8/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":965,"Cost":579,"Date":"9/13/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":138,"Cost":104,"Date":"9/14/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":452,"Cost":415,"Date":"9/19/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":888,"Cost":698,"Date":"9/25/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":798,"Cost":451,"Date":"10/4/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":508,"Cost":358,"Date":"10/10/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":751,"Cost":636,"Date":"10/17/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":729,"Cost":473,"Date":"10/28/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":286,"Cost":263,"Date":"10/30/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":532,"Cost":346,"Date":"11/1/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":599,"Cost":421,"Date":"11/15/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":234,"Cost":211,"Date":"11/25/2023"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":722,"Cost":653,"Date":"1/10/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":86,"Cost":76,"Date":"1/14/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":611,"Cost":354,"Date":"1/20/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":611,"Cost":451,"Date":"2/8/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":824,"Cost":677,"Date":"2/25/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":775,"Cost":607,"Date":"3/7/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":633,"Cost":360,"Date":"3/14/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":493,"Cost":367,"Date":"3/27/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":473,"Cost":443,"Date":"4/5/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":371,"Cost":214,"Date":"4/14/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":76,"Cost":40,"Date":"5/3/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":202,"Cost":110,"Date":"5/9/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":253,"Cost":218,"Date":"5/15/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":527,"Cost":401,"Date":"5/25/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":388,"Cost":344,"Date":"5/26/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":333,"Cost":316,"Date":"5/31/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":918,"Cost":872,"Date":"7/27/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":61,"Cost":40,"Date":"9/17/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":513,"Cost":469,"Date":"10/6/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":752,"Cost":547,"Date":"10/8/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":352,"Cost":200,"Date":"10/26/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":980,"Cost":578,"Date":"11/16/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":217,"Cost":187,"Date":"11/18/2024"},{"Store":"Westfield Bondi Junction, Sydney","Brand":"HM","Country":"Australia","Sale":28,"Cost":27,"Date":"12/1/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":836,"Cost":424,"Date":"2/9/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":338,"Cost":308,"Date":"2/11/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":209,"Cost":119,"Date":"3/10/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":36,"Cost":29,"Date":"3/16/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":264,"Cost":160,"Date":"3/18/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":172,"Cost":163,"Date":"3/20/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":377,"Cost":254,"Date":"3/26/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":555,"Cost":438,"Date":"6/2/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":428,"Cost":307,"Date":"6/10/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":545,"Cost":392,"Date":"6/16/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":729,"Cost":411,"Date":"6/25/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":653,"Cost":371,"Date":"7/19/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":894,"Cost":480,"Date":"7/21/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":540,"Cost":381,"Date":"7/25/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":449,"Cost":333,"Date":"8/4/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":597,"Cost":408,"Date":"9/2/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":107,"Cost":77,"Date":"9/4/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":386,"Cost":357,"Date":"9/19/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":598,"Cost":543,"Date":"9/29/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":520,"Cost":305,"Date":"10/2/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":842,"Cost":722,"Date":"10/15/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":222,"Cost":157,"Date":"10/30/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":836,"Cost":713,"Date":"11/9/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":962,"Cost":877,"Date":"11/23/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":438,"Cost":291,"Date":"11/30/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":171,"Cost":152,"Date":"12/8/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":536,"Cost":293,"Date":"12/11/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":75,"Cost":59,"Date":"1/15/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":32,"Cost":20,"Date":"1/24/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":791,"Cost":402,"Date":"2/3/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":885,"Cost":807,"Date":"2/4/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":874,"Cost":625,"Date":"3/9/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":860,"Cost":814,"Date":"3/12/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":493,"Cost":375,"Date":"4/19/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":18,"Cost":9,"Date":"5/3/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":142,"Cost":108,"Date":"5/4/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":503,"Cost":379,"Date":"6/8/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":414,"Cost":230,"Date":"6/26/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":864,"Cost":606,"Date":"7/4/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":903,"Cost":666,"Date":"7/13/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":698,"Cost":364,"Date":"8/8/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":109,"Cost":91,"Date":"8/26/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":627,"Cost":400,"Date":"9/2/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":262,"Cost":174,"Date":"9/29/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":327,"Cost":302,"Date":"10/12/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":42,"Cost":28,"Date":"11/2/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":960,"Cost":612,"Date":"11/4/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":722,"Cost":510,"Date":"11/7/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":708,"Cost":377,"Date":"12/1/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":575,"Cost":465,"Date":"12/4/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":51,"Cost":38,"Date":"12/7/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":201,"Cost":132,"Date":"12/18/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":363,"Cost":295,"Date":"12/20/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":819,"Cost":658,"Date":"12/20/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":771,"Cost":687,"Date":"12/21/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":787,"Cost":474,"Date":"1/9/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":375,"Cost":235,"Date":"2/5/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":319,"Cost":263,"Date":"2/16/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":747,"Cost":540,"Date":"2/16/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":746,"Cost":657,"Date":"2/18/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":686,"Cost":438,"Date":"2/22/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":162,"Cost":114,"Date":"2/25/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":197,"Cost":120,"Date":"3/8/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":806,"Cost":576,"Date":"4/2/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":983,"Cost":747,"Date":"4/3/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":530,"Cost":277,"Date":"4/9/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":136,"Cost":126,"Date":"4/10/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":26,"Cost":13,"Date":"4/19/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":147,"Cost":80,"Date":"5/17/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":830,"Cost":715,"Date":"5/22/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":85,"Cost":57,"Date":"6/20/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":611,"Cost":457,"Date":"7/1/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":829,"Cost":719,"Date":"7/4/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":822,"Cost":631,"Date":"7/8/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":108,"Cost":58,"Date":"7/9/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":87,"Cost":80,"Date":"7/14/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":153,"Cost":141,"Date":"7/19/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":242,"Cost":136,"Date":"8/1/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":518,"Cost":350,"Date":"8/6/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":171,"Cost":158,"Date":"8/7/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":106,"Cost":84,"Date":"8/22/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":39,"Cost":27,"Date":"8/31/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":894,"Cost":689,"Date":"9/1/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":209,"Cost":177,"Date":"9/1/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":728,"Cost":618,"Date":"9/17/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":574,"Cost":472,"Date":"9/29/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":667,"Cost":495,"Date":"11/7/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":688,"Cost":515,"Date":"11/26/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":905,"Cost":813,"Date":"11/27/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":138,"Cost":79,"Date":"12/5/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":572,"Cost":427,"Date":"12/26/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":788,"Cost":642,"Date":"12/31/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":509,"Cost":405,"Date":"1/20/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":297,"Cost":159,"Date":"2/2/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":953,"Cost":896,"Date":"2/8/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":918,"Cost":779,"Date":"2/27/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":429,"Cost":271,"Date":"3/1/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":179,"Cost":111,"Date":"3/1/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":175,"Cost":113,"Date":"3/19/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":721,"Cost":601,"Date":"3/28/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":205,"Cost":157,"Date":"5/21/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":267,"Cost":222,"Date":"7/21/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":85,"Cost":47,"Date":"8/5/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":802,"Cost":652,"Date":"8/12/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":557,"Cost":338,"Date":"8/21/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":215,"Cost":117,"Date":"8/23/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":687,"Cost":514,"Date":"9/3/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":914,"Cost":848,"Date":"9/5/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":880,"Cost":794,"Date":"10/6/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":976,"Cost":723,"Date":"10/19/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":744,"Cost":510,"Date":"11/15/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":625,"Cost":470,"Date":"12/8/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":290,"Cost":172,"Date":"1/8/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":659,"Cost":368,"Date":"1/14/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":21,"Cost":18,"Date":"1/19/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":848,"Cost":459,"Date":"1/28/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":342,"Cost":268,"Date":"1/31/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":319,"Cost":287,"Date":"3/27/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":627,"Cost":557,"Date":"4/20/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":849,"Cost":683,"Date":"4/24/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":127,"Cost":113,"Date":"4/28/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":925,"Cost":833,"Date":"5/15/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":701,"Cost":386,"Date":"5/16/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":719,"Cost":489,"Date":"5/18/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":14,"Cost":7,"Date":"6/2/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":365,"Cost":315,"Date":"6/3/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":11,"Cost":5,"Date":"6/5/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":621,"Cost":460,"Date":"6/7/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":931,"Cost":565,"Date":"6/14/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":143,"Cost":84,"Date":"6/20/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":647,"Cost":556,"Date":"6/24/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":910,"Cost":705,"Date":"7/4/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":878,"Cost":519,"Date":"7/9/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":543,"Cost":380,"Date":"7/12/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":121,"Cost":88,"Date":"8/14/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":438,"Cost":327,"Date":"8/16/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":654,"Cost":421,"Date":"8/23/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":557,"Cost":496,"Date":"9/2/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":931,"Cost":514,"Date":"9/3/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":188,"Cost":135,"Date":"9/16/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":321,"Cost":188,"Date":"10/4/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":62,"Cost":33,"Date":"11/1/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":663,"Cost":464,"Date":"11/2/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":164,"Cost":121,"Date":"12/17/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":399,"Cost":319,"Date":"2/10/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":884,"Cost":763,"Date":"2/28/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":510,"Cost":481,"Date":"3/4/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":200,"Cost":180,"Date":"3/9/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":132,"Cost":71,"Date":"3/9/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":482,"Cost":422,"Date":"3/11/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":588,"Cost":442,"Date":"3/17/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":561,"Cost":416,"Date":"3/17/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":955,"Cost":694,"Date":"3/23/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":409,"Cost":332,"Date":"4/1/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":129,"Cost":106,"Date":"5/7/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":671,"Cost":361,"Date":"5/10/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":473,"Cost":407,"Date":"5/20/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":20,"Cost":18,"Date":"6/2/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":619,"Cost":579,"Date":"6/11/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":547,"Cost":445,"Date":"6/16/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":152,"Cost":90,"Date":"6/16/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":395,"Cost":368,"Date":"7/10/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":249,"Cost":138,"Date":"7/11/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":51,"Cost":31,"Date":"8/28/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":443,"Cost":233,"Date":"8/29/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":86,"Cost":69,"Date":"8/31/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":208,"Cost":161,"Date":"9/8/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":529,"Cost":475,"Date":"9/13/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":135,"Cost":98,"Date":"9/14/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":25,"Cost":21,"Date":"9/19/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":232,"Cost":201,"Date":"9/25/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":246,"Cost":132,"Date":"10/4/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":815,"Cost":581,"Date":"10/10/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":197,"Cost":119,"Date":"10/17/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":603,"Cost":511,"Date":"10/28/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":994,"Cost":889,"Date":"10/30/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":88,"Cost":64,"Date":"11/1/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":305,"Cost":155,"Date":"11/15/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":657,"Cost":479,"Date":"11/25/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":801,"Cost":549,"Date":"1/10/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":439,"Cost":226,"Date":"1/14/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":618,"Cost":461,"Date":"1/20/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":258,"Cost":234,"Date":"2/8/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":976,"Cost":553,"Date":"2/25/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":138,"Cost":114,"Date":"3/7/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":578,"Cost":542,"Date":"3/14/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":310,"Cost":241,"Date":"3/27/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":352,"Cost":283,"Date":"4/5/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":517,"Cost":488,"Date":"4/14/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":534,"Cost":333,"Date":"5/3/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":198,"Cost":175,"Date":"5/9/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":597,"Cost":469,"Date":"5/15/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":971,"Cost":740,"Date":"5/25/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":428,"Cost":284,"Date":"5/26/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":723,"Cost":481,"Date":"5/31/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":285,"Cost":150,"Date":"7/27/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":863,"Cost":557,"Date":"9/17/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":882,"Cost":513,"Date":"10/6/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":769,"Cost":669,"Date":"10/8/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":408,"Cost":349,"Date":"10/26/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":3,"Cost":2,"Date":"11/16/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":447,"Cost":425,"Date":"11/18/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":87,"Cost":71,"Date":"12/1/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":365,"Cost":293,"Date":"2/9/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":739,"Cost":570,"Date":"2/11/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":462,"Cost":355,"Date":"3/10/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":402,"Cost":358,"Date":"3/16/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":270,"Cost":135,"Date":"3/18/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":692,"Cost":384,"Date":"3/20/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":472,"Cost":327,"Date":"3/26/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":563,"Cost":424,"Date":"6/2/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":132,"Cost":88,"Date":"6/10/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":241,"Cost":146,"Date":"6/16/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":482,"Cost":430,"Date":"6/25/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":185,"Cost":176,"Date":"7/19/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":430,"Cost":233,"Date":"7/21/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":305,"Cost":257,"Date":"7/25/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":147,"Cost":86,"Date":"8/4/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":852,"Cost":598,"Date":"9/2/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":827,"Cost":773,"Date":"9/4/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":303,"Cost":236,"Date":"9/19/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":204,"Cost":176,"Date":"9/29/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":797,"Cost":470,"Date":"10/2/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":957,"Cost":803,"Date":"10/15/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":245,"Cost":126,"Date":"10/30/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":582,"Cost":523,"Date":"11/9/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":427,"Cost":222,"Date":"11/23/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":954,"Cost":562,"Date":"11/30/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":461,"Cost":243,"Date":"12/8/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":462,"Cost":284,"Date":"12/11/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":800,"Cost":675,"Date":"1/15/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":902,"Cost":612,"Date":"1/24/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":607,"Cost":307,"Date":"2/3/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":190,"Cost":133,"Date":"2/4/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":415,"Cost":268,"Date":"3/9/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":28,"Cost":21,"Date":"3/12/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":613,"Cost":556,"Date":"4/19/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":782,"Cost":508,"Date":"5/3/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":345,"Cost":183,"Date":"5/4/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":766,"Cost":508,"Date":"6/8/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":597,"Cost":414,"Date":"6/26/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":810,"Cost":729,"Date":"7/4/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":656,"Cost":577,"Date":"7/13/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":691,"Cost":650,"Date":"8/8/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":352,"Cost":211,"Date":"8/26/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":630,"Cost":567,"Date":"9/2/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":193,"Cost":130,"Date":"9/29/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":453,"Cost":423,"Date":"10/12/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":936,"Cost":850,"Date":"11/2/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":977,"Cost":892,"Date":"11/4/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":389,"Cost":342,"Date":"11/7/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":489,"Cost":397,"Date":"12/1/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":48,"Cost":25,"Date":"12/4/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":71,"Cost":49,"Date":"12/7/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":735,"Cost":620,"Date":"12/18/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":332,"Cost":190,"Date":"12/20/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":676,"Cost":551,"Date":"12/20/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":125,"Cost":79,"Date":"12/21/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":859,"Cost":765,"Date":"1/9/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":804,"Cost":458,"Date":"2/5/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":833,"Cost":787,"Date":"2/16/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":827,"Cost":500,"Date":"2/16/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":45,"Cost":35,"Date":"2/18/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":449,"Cost":407,"Date":"2/22/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":144,"Cost":123,"Date":"2/25/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":36,"Cost":30,"Date":"3/8/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":219,"Cost":170,"Date":"4/2/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":624,"Cost":412,"Date":"4/3/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":816,"Cost":756,"Date":"4/9/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":779,"Cost":673,"Date":"4/10/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":869,"Cost":527,"Date":"4/19/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":141,"Cost":94,"Date":"5/17/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":776,"Cost":659,"Date":"5/22/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":793,"Cost":616,"Date":"6/20/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":610,"Cost":535,"Date":"7/1/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":488,"Cost":385,"Date":"7/4/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":799,"Cost":526,"Date":"7/8/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":13,"Cost":9,"Date":"7/9/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":383,"Cost":299,"Date":"7/14/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":171,"Cost":148,"Date":"7/19/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":488,"Cost":321,"Date":"8/1/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":614,"Cost":446,"Date":"8/6/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":885,"Cost":770,"Date":"8/7/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":506,"Cost":303,"Date":"8/22/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":113,"Cost":104,"Date":"8/31/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":395,"Cost":220,"Date":"9/1/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":952,"Cost":521,"Date":"9/1/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":796,"Cost":741,"Date":"9/17/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":364,"Cost":290,"Date":"9/29/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":958,"Cost":687,"Date":"11/7/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":13,"Cost":7,"Date":"11/26/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":292,"Cost":278,"Date":"11/27/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":904,"Cost":621,"Date":"12/5/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":263,"Cost":158,"Date":"12/26/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":218,"Cost":133,"Date":"12/31/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":502,"Cost":445,"Date":"1/20/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":374,"Cost":303,"Date":"2/2/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":364,"Cost":258,"Date":"2/8/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":678,"Cost":535,"Date":"2/27/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":487,"Cost":338,"Date":"3/1/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":880,"Cost":543,"Date":"3/1/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":348,"Cost":220,"Date":"3/19/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":802,"Cost":707,"Date":"3/28/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":527,"Cost":327,"Date":"5/21/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":657,"Cost":492,"Date":"7/21/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":531,"Cost":389,"Date":"8/5/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":671,"Cost":422,"Date":"8/12/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":54,"Cost":33,"Date":"8/21/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":89,"Cost":79,"Date":"8/23/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":937,"Cost":718,"Date":"9/3/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":999,"Cost":592,"Date":"9/5/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":595,"Cost":517,"Date":"10/6/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":887,"Cost":709,"Date":"10/19/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":405,"Cost":354,"Date":"11/15/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":845,"Cost":588,"Date":"12/8/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":395,"Cost":200,"Date":"1/8/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":48,"Cost":30,"Date":"1/14/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":534,"Cost":433,"Date":"1/19/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":255,"Cost":172,"Date":"1/28/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":24,"Cost":12,"Date":"1/31/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":945,"Cost":847,"Date":"3/27/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":835,"Cost":616,"Date":"4/20/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":502,"Cost":382,"Date":"4/24/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":19,"Cost":11,"Date":"4/28/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":929,"Cost":766,"Date":"5/15/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":430,"Cost":237,"Date":"5/16/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":446,"Cost":381,"Date":"5/18/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":999,"Cost":797,"Date":"6/2/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":415,"Cost":236,"Date":"6/3/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":176,"Cost":145,"Date":"6/5/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":740,"Cost":669,"Date":"6/7/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":341,"Cost":286,"Date":"6/14/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":729,"Cost":632,"Date":"6/20/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":146,"Cost":130,"Date":"6/24/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":838,"Cost":723,"Date":"7/4/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":638,"Cost":485,"Date":"7/9/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":140,"Cost":102,"Date":"7/12/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":799,"Cost":686,"Date":"8/14/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":839,"Cost":548,"Date":"8/16/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":585,"Cost":319,"Date":"8/23/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":2,"Cost":1,"Date":"9/2/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":136,"Cost":103,"Date":"9/3/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":511,"Cost":357,"Date":"9/16/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":343,"Cost":213,"Date":"10/4/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":865,"Cost":605,"Date":"11/1/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":321,"Cost":165,"Date":"11/2/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":552,"Cost":314,"Date":"12/17/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":688,"Cost":349,"Date":"2/10/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":461,"Cost":327,"Date":"2/28/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":319,"Cost":216,"Date":"3/4/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":656,"Cost":453,"Date":"3/9/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":917,"Cost":545,"Date":"3/9/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":576,"Cost":435,"Date":"3/11/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":432,"Cost":311,"Date":"3/17/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":892,"Cost":743,"Date":"3/17/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":831,"Cost":624,"Date":"3/23/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":733,"Cost":605,"Date":"4/1/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":957,"Cost":792,"Date":"5/7/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":110,"Cost":55,"Date":"5/10/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":634,"Cost":375,"Date":"5/20/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":37,"Cost":24,"Date":"6/2/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":389,"Cost":322,"Date":"6/11/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":327,"Cost":289,"Date":"6/16/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":175,"Cost":165,"Date":"6/16/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":741,"Cost":468,"Date":"7/10/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":52,"Cost":35,"Date":"7/11/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":264,"Cost":181,"Date":"8/28/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":38,"Cost":30,"Date":"8/29/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":81,"Cost":40,"Date":"8/31/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":582,"Cost":299,"Date":"9/8/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":507,"Cost":439,"Date":"9/13/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":986,"Cost":770,"Date":"9/14/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":268,"Cost":235,"Date":"9/19/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":806,"Cost":461,"Date":"9/25/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":815,"Cost":445,"Date":"10/4/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":83,"Cost":47,"Date":"10/10/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":74,"Cost":37,"Date":"10/17/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":640,"Cost":558,"Date":"10/28/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":590,"Cost":453,"Date":"10/30/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":918,"Cost":855,"Date":"11/1/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":409,"Cost":361,"Date":"11/15/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":637,"Cost":563,"Date":"11/25/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":908,"Cost":500,"Date":"1/10/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":119,"Cost":86,"Date":"1/14/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":286,"Cost":229,"Date":"1/20/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":967,"Cost":604,"Date":"2/8/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":681,"Cost":545,"Date":"2/25/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":209,"Cost":175,"Date":"3/7/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":525,"Cost":435,"Date":"3/14/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":599,"Cost":300,"Date":"3/27/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":937,"Cost":762,"Date":"4/5/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":121,"Cost":108,"Date":"4/14/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":22,"Cost":13,"Date":"5/3/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":713,"Cost":588,"Date":"5/9/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":590,"Cost":546,"Date":"5/15/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":932,"Cost":550,"Date":"5/25/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":181,"Cost":150,"Date":"5/26/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":355,"Cost":259,"Date":"5/31/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":968,"Cost":532,"Date":"7/27/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":396,"Cost":290,"Date":"9/17/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":979,"Cost":666,"Date":"10/6/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":99,"Cost":62,"Date":"10/8/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":422,"Cost":398,"Date":"10/26/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":329,"Cost":170,"Date":"11/16/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":830,"Cost":555,"Date":"11/18/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"Sellpy","Country":"Australia","Sale":322,"Cost":166,"Date":"12/1/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":913,"Cost":672,"Date":"2/9/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":987,"Cost":733,"Date":"2/11/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":310,"Cost":275,"Date":"3/10/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":990,"Cost":566,"Date":"3/16/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":486,"Cost":413,"Date":"3/18/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":850,"Cost":741,"Date":"3/20/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":254,"Cost":202,"Date":"3/26/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":185,"Cost":127,"Date":"6/2/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":411,"Cost":338,"Date":"6/10/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":646,"Cost":604,"Date":"6/16/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":111,"Cost":71,"Date":"6/25/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":53,"Cost":34,"Date":"7/19/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":305,"Cost":160,"Date":"7/21/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":343,"Cost":259,"Date":"7/25/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":992,"Cost":514,"Date":"8/4/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":430,"Cost":371,"Date":"9/2/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":755,"Cost":511,"Date":"9/4/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":420,"Cost":398,"Date":"9/19/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":2,"Cost":2,"Date":"9/29/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":181,"Cost":144,"Date":"10/2/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":565,"Cost":497,"Date":"10/15/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":772,"Cost":400,"Date":"10/30/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":254,"Cost":156,"Date":"11/9/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":902,"Cost":745,"Date":"11/23/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":5,"Cost":3,"Date":"11/30/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":818,"Cost":612,"Date":"12/8/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":33,"Cost":25,"Date":"12/11/2018"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":221,"Cost":192,"Date":"1/15/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":584,"Cost":325,"Date":"1/24/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":289,"Cost":208,"Date":"2/3/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":82,"Cost":66,"Date":"2/4/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":460,"Cost":242,"Date":"3/9/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":933,"Cost":569,"Date":"3/12/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":86,"Cost":78,"Date":"4/19/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":31,"Cost":29,"Date":"5/3/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":50,"Cost":39,"Date":"5/4/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":808,"Cost":608,"Date":"6/8/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":674,"Cost":504,"Date":"6/26/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":994,"Cost":839,"Date":"7/4/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":622,"Cost":337,"Date":"7/13/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":264,"Cost":147,"Date":"8/8/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":300,"Cost":282,"Date":"8/26/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":640,"Cost":583,"Date":"9/2/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":567,"Cost":380,"Date":"9/29/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":115,"Cost":72,"Date":"10/12/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":611,"Cost":482,"Date":"11/2/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":4,"Cost":3,"Date":"11/4/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":247,"Cost":143,"Date":"11/7/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":421,"Cost":394,"Date":"12/1/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":234,"Cost":194,"Date":"12/4/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":144,"Cost":104,"Date":"12/7/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":959,"Cost":560,"Date":"12/18/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":738,"Cost":569,"Date":"12/20/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":188,"Cost":113,"Date":"12/20/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":897,"Cost":814,"Date":"12/21/2019"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":363,"Cost":272,"Date":"1/9/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":461,"Cost":384,"Date":"2/5/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":157,"Cost":121,"Date":"2/16/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":353,"Cost":202,"Date":"2/16/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":129,"Cost":113,"Date":"2/18/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":912,"Cost":591,"Date":"2/22/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":264,"Cost":216,"Date":"2/25/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":986,"Cost":705,"Date":"3/8/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":695,"Cost":567,"Date":"4/2/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":310,"Cost":288,"Date":"4/3/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":146,"Cost":113,"Date":"4/9/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":170,"Cost":118,"Date":"4/10/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":154,"Cost":136,"Date":"4/19/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":870,"Cost":760,"Date":"5/17/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":582,"Cost":329,"Date":"5/22/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":305,"Cost":177,"Date":"6/20/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":272,"Cost":220,"Date":"7/1/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":167,"Cost":115,"Date":"7/4/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":30,"Cost":20,"Date":"7/8/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":243,"Cost":220,"Date":"7/9/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":278,"Cost":232,"Date":"7/14/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":177,"Cost":96,"Date":"7/19/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":269,"Cost":246,"Date":"8/1/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":399,"Cost":213,"Date":"8/6/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":569,"Cost":405,"Date":"8/7/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":48,"Cost":26,"Date":"8/22/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":415,"Cost":330,"Date":"8/31/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":752,"Cost":688,"Date":"9/1/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":661,"Cost":510,"Date":"9/1/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":939,"Cost":667,"Date":"9/17/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":467,"Cost":400,"Date":"9/29/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":287,"Cost":162,"Date":"11/7/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":589,"Cost":448,"Date":"11/26/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":792,"Cost":429,"Date":"11/27/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":186,"Cost":111,"Date":"12/5/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":113,"Cost":103,"Date":"12/26/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":204,"Cost":176,"Date":"12/31/2020"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":462,"Cost":382,"Date":"1/20/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":194,"Cost":156,"Date":"2/2/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":373,"Cost":251,"Date":"2/8/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":502,"Cost":443,"Date":"2/27/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":518,"Cost":327,"Date":"3/1/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":207,"Cost":171,"Date":"3/1/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":194,"Cost":162,"Date":"3/19/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":452,"Cost":384,"Date":"3/28/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":401,"Cost":374,"Date":"5/21/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":525,"Cost":373,"Date":"7/21/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":759,"Cost":578,"Date":"8/5/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":212,"Cost":138,"Date":"8/12/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":71,"Cost":52,"Date":"8/21/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":66,"Cost":44,"Date":"8/23/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":157,"Cost":91,"Date":"9/3/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":873,"Cost":535,"Date":"9/5/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":176,"Cost":148,"Date":"10/6/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":155,"Cost":85,"Date":"10/19/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":582,"Cost":337,"Date":"11/15/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":344,"Cost":244,"Date":"12/8/2021"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":779,"Cost":564,"Date":"1/8/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":989,"Cost":626,"Date":"1/14/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":455,"Cost":425,"Date":"1/19/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":756,"Cost":626,"Date":"1/28/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":138,"Cost":102,"Date":"1/31/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":527,"Cost":439,"Date":"3/27/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":519,"Cost":475,"Date":"4/20/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":431,"Cost":370,"Date":"4/24/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":38,"Cost":30,"Date":"4/28/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":963,"Cost":491,"Date":"5/15/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":438,"Cost":360,"Date":"5/16/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":198,"Cost":169,"Date":"5/18/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":934,"Cost":510,"Date":"6/2/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":12,"Cost":11,"Date":"6/3/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":629,"Cost":597,"Date":"6/5/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":347,"Cost":286,"Date":"6/7/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":671,"Cost":352,"Date":"6/14/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":524,"Cost":290,"Date":"6/20/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":17,"Cost":15,"Date":"6/24/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":301,"Cost":163,"Date":"7/4/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":168,"Cost":150,"Date":"7/9/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":575,"Cost":450,"Date":"7/12/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":131,"Cost":74,"Date":"8/14/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":336,"Cost":241,"Date":"8/16/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":261,"Cost":152,"Date":"8/23/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":93,"Cost":65,"Date":"9/2/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":565,"Cost":415,"Date":"9/3/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":401,"Cost":286,"Date":"9/16/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":882,"Cost":681,"Date":"10/4/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":700,"Cost":381,"Date":"11/1/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":369,"Cost":207,"Date":"11/2/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":773,"Cost":691,"Date":"12/17/2022"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":273,"Cost":170,"Date":"2/10/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":1000,"Cost":511,"Date":"2/28/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":217,"Cost":192,"Date":"3/4/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":256,"Cost":183,"Date":"3/9/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":220,"Cost":179,"Date":"3/9/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":631,"Cost":399,"Date":"3/11/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":758,"Cost":415,"Date":"3/17/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":151,"Cost":85,"Date":"3/17/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":9,"Cost":5,"Date":"3/23/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":197,"Cost":161,"Date":"4/1/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":791,"Cost":506,"Date":"5/7/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":145,"Cost":96,"Date":"5/10/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":281,"Cost":149,"Date":"5/20/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":985,"Cost":857,"Date":"6/2/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":485,"Cost":447,"Date":"6/11/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":225,"Cost":139,"Date":"6/16/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":782,"Cost":711,"Date":"6/16/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":459,"Cost":405,"Date":"7/10/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":902,"Cost":485,"Date":"7/11/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":842,"Cost":761,"Date":"8/28/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":906,"Cost":592,"Date":"8/29/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":238,"Cost":182,"Date":"8/31/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":321,"Cost":174,"Date":"9/8/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":985,"Cost":705,"Date":"9/13/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":993,"Cost":879,"Date":"9/14/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":390,"Cost":282,"Date":"9/19/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":974,"Cost":892,"Date":"9/25/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":266,"Cost":212,"Date":"10/4/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":358,"Cost":193,"Date":"10/10/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":687,"Cost":391,"Date":"10/17/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":531,"Cost":436,"Date":"10/28/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":241,"Cost":171,"Date":"10/30/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":113,"Cost":65,"Date":"11/1/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":77,"Cost":71,"Date":"11/15/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":255,"Cost":215,"Date":"11/25/2023"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":231,"Cost":206,"Date":"1/10/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":43,"Cost":26,"Date":"1/14/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":982,"Cost":757,"Date":"1/20/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":75,"Cost":68,"Date":"2/8/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":295,"Cost":252,"Date":"2/25/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":735,"Cost":378,"Date":"3/7/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":759,"Cost":483,"Date":"3/14/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":141,"Cost":112,"Date":"3/27/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":713,"Cost":635,"Date":"4/5/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":448,"Cost":320,"Date":"4/14/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":840,"Cost":557,"Date":"5/3/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":563,"Cost":373,"Date":"5/9/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":979,"Cost":873,"Date":"5/15/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":109,"Cost":87,"Date":"5/25/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":541,"Cost":394,"Date":"5/26/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":455,"Cost":274,"Date":"5/31/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":252,"Cost":182,"Date":"7/27/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":504,"Cost":440,"Date":"9/17/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":590,"Cost":376,"Date":"10/6/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":571,"Cost":422,"Date":"10/8/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":937,"Cost":866,"Date":"10/26/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":836,"Cost":603,"Date":"11/16/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":906,"Cost":649,"Date":"11/18/2024"},{"Store":"Chatswood Chase, Sydney","Brand":"COS","Country":"Australia","Sale":26,"Cost":18,"Date":"12/1/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":598,"Cost":564,"Date":"2/9/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":825,"Cost":643,"Date":"2/11/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":507,"Cost":449,"Date":"3/10/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":165,"Cost":101,"Date":"3/16/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":529,"Cost":280,"Date":"3/18/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":852,"Cost":687,"Date":"3/20/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":426,"Cost":284,"Date":"3/26/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":617,"Cost":360,"Date":"6/2/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":597,"Cost":441,"Date":"6/10/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":760,"Cost":433,"Date":"6/16/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":295,"Cost":253,"Date":"6/25/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":218,"Cost":149,"Date":"7/19/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":227,"Cost":175,"Date":"7/21/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":419,"Cost":321,"Date":"7/25/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":348,"Cost":181,"Date":"8/4/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":476,"Cost":272,"Date":"9/2/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":252,"Cost":240,"Date":"9/4/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":398,"Cost":284,"Date":"9/19/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":553,"Cost":490,"Date":"9/29/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":720,"Cost":534,"Date":"10/2/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":203,"Cost":166,"Date":"10/15/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":904,"Cost":645,"Date":"10/30/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":39,"Cost":31,"Date":"11/9/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":784,"Cost":558,"Date":"11/23/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":875,"Cost":558,"Date":"11/30/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":392,"Cost":371,"Date":"12/8/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":905,"Cost":675,"Date":"12/11/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":767,"Cost":595,"Date":"1/15/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":647,"Cost":544,"Date":"1/24/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":136,"Cost":89,"Date":"2/3/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":554,"Cost":477,"Date":"2/4/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":201,"Cost":130,"Date":"3/9/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":150,"Cost":100,"Date":"3/12/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":950,"Cost":797,"Date":"4/19/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":701,"Cost":484,"Date":"5/3/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":521,"Cost":378,"Date":"5/4/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":53,"Cost":48,"Date":"6/8/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":376,"Cost":239,"Date":"6/26/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":501,"Cost":447,"Date":"7/4/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":467,"Cost":309,"Date":"7/13/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":763,"Cost":514,"Date":"8/8/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":185,"Cost":173,"Date":"8/26/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":885,"Cost":795,"Date":"9/2/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":350,"Cost":247,"Date":"9/29/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":927,"Cost":482,"Date":"10/12/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":497,"Cost":449,"Date":"11/2/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":376,"Cost":356,"Date":"11/4/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":639,"Cost":337,"Date":"11/7/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":291,"Cost":151,"Date":"12/1/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":342,"Cost":221,"Date":"12/4/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":243,"Cost":129,"Date":"12/7/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":472,"Cost":378,"Date":"12/18/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":235,"Cost":180,"Date":"12/20/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":324,"Cost":177,"Date":"12/20/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":407,"Cost":285,"Date":"12/21/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":965,"Cost":744,"Date":"1/9/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":840,"Cost":529,"Date":"2/5/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":33,"Cost":26,"Date":"2/16/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":966,"Cost":814,"Date":"2/16/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":720,"Cost":507,"Date":"2/18/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":647,"Cost":482,"Date":"2/22/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":927,"Cost":482,"Date":"2/25/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":15,"Cost":12,"Date":"3/8/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":668,"Cost":632,"Date":"4/2/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":422,"Cost":342,"Date":"4/3/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":543,"Cost":409,"Date":"4/9/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":525,"Cost":491,"Date":"4/10/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":193,"Cost":128,"Date":"4/19/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":158,"Cost":96,"Date":"5/17/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":337,"Cost":309,"Date":"5/22/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":265,"Cost":192,"Date":"6/20/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":307,"Cost":180,"Date":"7/1/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":408,"Cost":255,"Date":"7/4/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":911,"Cost":595,"Date":"7/8/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":664,"Cost":630,"Date":"7/9/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":715,"Cost":636,"Date":"7/14/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":738,"Cost":700,"Date":"7/19/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":410,"Cost":247,"Date":"8/1/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":466,"Cost":275,"Date":"8/6/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":459,"Cost":268,"Date":"8/7/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":858,"Cost":678,"Date":"8/22/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":47,"Cost":26,"Date":"8/31/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":670,"Cost":482,"Date":"9/1/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":239,"Cost":172,"Date":"9/1/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":88,"Cost":84,"Date":"9/17/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":444,"Cost":250,"Date":"9/29/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":196,"Cost":123,"Date":"11/7/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":483,"Cost":445,"Date":"11/26/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":478,"Cost":294,"Date":"11/27/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":516,"Cost":317,"Date":"12/5/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":439,"Cost":395,"Date":"12/26/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":30,"Cost":29,"Date":"12/31/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":84,"Cost":51,"Date":"1/20/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":969,"Cost":825,"Date":"2/2/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":52,"Cost":30,"Date":"2/8/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":912,"Cost":844,"Date":"2/27/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":509,"Cost":258,"Date":"3/1/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":979,"Cost":500,"Date":"3/1/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":229,"Cost":163,"Date":"3/19/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":910,"Cost":727,"Date":"3/28/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":741,"Cost":389,"Date":"5/21/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":46,"Cost":43,"Date":"7/21/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":136,"Cost":98,"Date":"8/5/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":848,"Cost":745,"Date":"8/12/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":563,"Cost":521,"Date":"8/21/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":730,"Cost":510,"Date":"8/23/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":445,"Cost":355,"Date":"9/3/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":260,"Cost":191,"Date":"9/5/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":941,"Cost":813,"Date":"10/6/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":258,"Cost":165,"Date":"10/19/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":644,"Cost":532,"Date":"11/15/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":36,"Cost":18,"Date":"12/8/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":396,"Cost":300,"Date":"1/8/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":716,"Cost":496,"Date":"1/14/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":13,"Cost":8,"Date":"1/19/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":786,"Cost":595,"Date":"1/28/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":664,"Cost":419,"Date":"1/31/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":141,"Cost":83,"Date":"3/27/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":41,"Cost":28,"Date":"4/20/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":17,"Cost":9,"Date":"4/24/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":596,"Cost":378,"Date":"4/28/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":282,"Cost":260,"Date":"5/15/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":731,"Cost":522,"Date":"5/16/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":114,"Cost":99,"Date":"5/18/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":772,"Cost":605,"Date":"6/2/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":927,"Cost":872,"Date":"6/3/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":36,"Cost":35,"Date":"6/5/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":142,"Cost":125,"Date":"6/7/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":354,"Cost":269,"Date":"6/14/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":939,"Cost":739,"Date":"6/20/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":121,"Cost":71,"Date":"6/24/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":24,"Cost":20,"Date":"7/4/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":358,"Cost":323,"Date":"7/9/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":780,"Cost":699,"Date":"7/12/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":477,"Cost":351,"Date":"8/14/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":199,"Cost":188,"Date":"8/16/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":964,"Cost":526,"Date":"8/23/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":299,"Cost":246,"Date":"9/2/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":342,"Cost":268,"Date":"9/3/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":489,"Cost":249,"Date":"9/16/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":63,"Cost":43,"Date":"10/4/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":838,"Cost":722,"Date":"11/1/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":574,"Cost":452,"Date":"11/2/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":920,"Cost":493,"Date":"12/17/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":901,"Cost":538,"Date":"2/10/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":353,"Cost":227,"Date":"2/28/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":6,"Cost":3,"Date":"3/4/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":224,"Cost":142,"Date":"3/9/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":943,"Cost":652,"Date":"3/9/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":461,"Cost":422,"Date":"3/11/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":849,"Cost":571,"Date":"3/17/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":637,"Cost":348,"Date":"3/17/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":780,"Cost":637,"Date":"3/23/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":577,"Cost":336,"Date":"4/1/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":192,"Cost":163,"Date":"5/7/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":768,"Cost":521,"Date":"5/10/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":547,"Cost":324,"Date":"5/20/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":596,"Cost":465,"Date":"6/2/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":707,"Cost":391,"Date":"6/11/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":256,"Cost":222,"Date":"6/16/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":829,"Cost":661,"Date":"6/16/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":692,"Cost":404,"Date":"7/10/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":351,"Cost":265,"Date":"7/11/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":212,"Cost":110,"Date":"8/28/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":903,"Cost":659,"Date":"8/29/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":602,"Cost":493,"Date":"8/31/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":980,"Cost":741,"Date":"9/8/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":197,"Cost":179,"Date":"9/13/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":781,"Cost":576,"Date":"9/14/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":931,"Cost":820,"Date":"9/19/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":920,"Cost":818,"Date":"9/25/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":875,"Cost":824,"Date":"10/4/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":432,"Cost":306,"Date":"10/10/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":285,"Cost":232,"Date":"10/17/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":626,"Cost":429,"Date":"10/28/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":806,"Cost":638,"Date":"10/30/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":284,"Cost":257,"Date":"11/1/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":966,"Cost":558,"Date":"11/15/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":945,"Cost":595,"Date":"11/25/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":435,"Cost":295,"Date":"1/10/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":51,"Cost":30,"Date":"1/14/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":701,"Cost":354,"Date":"1/20/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":55,"Cost":45,"Date":"2/8/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":169,"Cost":130,"Date":"2/25/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":733,"Cost":580,"Date":"3/7/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":162,"Cost":85,"Date":"3/14/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":680,"Cost":400,"Date":"3/27/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":415,"Cost":211,"Date":"4/5/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":870,"Cost":756,"Date":"4/14/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":139,"Cost":115,"Date":"5/3/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":78,"Cost":63,"Date":"5/9/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":486,"Cost":346,"Date":"5/15/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":65,"Cost":42,"Date":"5/25/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":778,"Cost":660,"Date":"5/26/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":579,"Cost":412,"Date":"5/31/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":458,"Cost":280,"Date":"7/27/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":750,"Cost":440,"Date":"9/17/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":968,"Cost":510,"Date":"10/6/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":535,"Cost":340,"Date":"10/8/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":999,"Cost":841,"Date":"10/26/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":352,"Cost":193,"Date":"11/16/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":859,"Cost":615,"Date":"11/18/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"HM Home","Country":"Australia","Sale":476,"Cost":442,"Date":"12/1/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":676,"Cost":550,"Date":"2/9/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":528,"Cost":360,"Date":"2/11/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":828,"Cost":733,"Date":"3/10/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":700,"Cost":615,"Date":"3/16/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":911,"Cost":512,"Date":"3/18/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":195,"Cost":103,"Date":"3/20/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":237,"Cost":169,"Date":"3/26/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":404,"Cost":356,"Date":"6/2/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":994,"Cost":747,"Date":"6/10/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":125,"Cost":100,"Date":"6/16/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":291,"Cost":229,"Date":"6/25/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":865,"Cost":578,"Date":"7/19/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":287,"Cost":235,"Date":"7/21/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":589,"Cost":445,"Date":"7/25/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":655,"Cost":520,"Date":"8/4/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":310,"Cost":280,"Date":"9/2/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":95,"Cost":73,"Date":"9/4/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":635,"Cost":548,"Date":"9/19/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":872,"Cost":713,"Date":"9/29/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":209,"Cost":128,"Date":"10/2/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":791,"Cost":667,"Date":"10/15/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":112,"Cost":75,"Date":"10/30/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":499,"Cost":313,"Date":"11/9/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":709,"Cost":438,"Date":"11/23/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":583,"Cost":519,"Date":"11/30/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":368,"Cost":235,"Date":"12/8/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":843,"Cost":519,"Date":"12/11/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":64,"Cost":60,"Date":"1/15/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":4,"Cost":2,"Date":"1/24/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":63,"Cost":35,"Date":"2/3/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":396,"Cost":313,"Date":"2/4/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":205,"Cost":191,"Date":"3/9/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":217,"Cost":206,"Date":"3/12/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":261,"Cost":192,"Date":"4/19/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":7,"Cost":6,"Date":"5/3/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":299,"Cost":262,"Date":"5/4/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":32,"Cost":22,"Date":"6/8/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":399,"Cost":348,"Date":"6/26/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":944,"Cost":821,"Date":"7/4/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":515,"Cost":342,"Date":"7/13/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":802,"Cost":512,"Date":"8/8/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":523,"Cost":321,"Date":"8/26/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":65,"Cost":58,"Date":"9/2/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":988,"Cost":789,"Date":"9/29/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":67,"Cost":64,"Date":"10/12/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":394,"Cost":324,"Date":"11/2/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":80,"Cost":65,"Date":"11/4/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":727,"Cost":656,"Date":"11/7/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":764,"Cost":637,"Date":"12/1/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":425,"Cost":317,"Date":"12/4/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":176,"Cost":91,"Date":"12/7/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":150,"Cost":137,"Date":"12/18/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":603,"Cost":343,"Date":"12/20/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":723,"Cost":470,"Date":"12/20/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":611,"Cost":446,"Date":"12/21/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":228,"Cost":202,"Date":"1/9/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":701,"Cost":402,"Date":"2/5/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":446,"Cost":230,"Date":"2/16/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":839,"Cost":604,"Date":"2/16/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":665,"Cost":577,"Date":"2/18/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":971,"Cost":698,"Date":"2/22/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":595,"Cost":554,"Date":"2/25/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":611,"Cost":552,"Date":"3/8/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":602,"Cost":311,"Date":"4/2/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":436,"Cost":312,"Date":"4/3/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":257,"Cost":168,"Date":"4/9/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":37,"Cost":25,"Date":"4/10/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":154,"Cost":87,"Date":"4/19/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":664,"Cost":559,"Date":"5/17/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":793,"Cost":499,"Date":"5/22/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":184,"Cost":172,"Date":"6/20/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":548,"Cost":282,"Date":"7/1/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":393,"Cost":223,"Date":"7/4/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":493,"Cost":295,"Date":"7/8/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":352,"Cost":215,"Date":"7/9/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":933,"Cost":765,"Date":"7/14/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":274,"Cost":246,"Date":"7/19/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":499,"Cost":396,"Date":"8/1/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":259,"Cost":190,"Date":"8/6/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":165,"Cost":103,"Date":"8/7/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":70,"Cost":58,"Date":"8/22/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":390,"Cost":350,"Date":"8/31/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":707,"Cost":597,"Date":"9/1/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":442,"Cost":357,"Date":"9/1/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":643,"Cost":488,"Date":"9/17/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":600,"Cost":305,"Date":"9/29/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":322,"Cost":232,"Date":"11/7/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":27,"Cost":23,"Date":"11/26/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":209,"Cost":115,"Date":"11/27/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":171,"Cost":89,"Date":"12/5/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":759,"Cost":416,"Date":"12/26/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":533,"Cost":396,"Date":"12/31/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":300,"Cost":175,"Date":"1/20/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":718,"Cost":552,"Date":"2/2/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":738,"Cost":668,"Date":"2/8/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":291,"Cost":232,"Date":"2/27/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":794,"Cost":494,"Date":"3/1/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":371,"Cost":254,"Date":"3/1/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":402,"Cost":230,"Date":"3/19/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":944,"Cost":895,"Date":"3/28/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":418,"Cost":270,"Date":"5/21/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":946,"Cost":546,"Date":"7/21/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":647,"Cost":448,"Date":"8/5/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":596,"Cost":394,"Date":"8/12/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":705,"Cost":579,"Date":"8/21/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":539,"Cost":287,"Date":"8/23/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":689,"Cost":579,"Date":"9/3/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":469,"Cost":323,"Date":"9/5/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":297,"Cost":249,"Date":"10/6/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":792,"Cost":531,"Date":"10/19/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":302,"Cost":253,"Date":"11/15/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":424,"Cost":366,"Date":"12/8/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":43,"Cost":26,"Date":"1/8/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":324,"Cost":300,"Date":"1/14/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":811,"Cost":607,"Date":"1/19/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":701,"Cost":381,"Date":"1/28/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":970,"Cost":881,"Date":"1/31/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":474,"Cost":305,"Date":"3/27/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":409,"Cost":369,"Date":"4/20/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":198,"Cost":149,"Date":"4/24/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":853,"Cost":601,"Date":"4/28/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":961,"Cost":556,"Date":"5/15/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":738,"Cost":540,"Date":"5/16/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":670,"Cost":634,"Date":"5/18/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":648,"Cost":365,"Date":"6/2/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":16,"Cost":16,"Date":"6/3/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":822,"Cost":672,"Date":"6/5/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":988,"Cost":810,"Date":"6/7/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":973,"Cost":865,"Date":"6/14/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":572,"Cost":419,"Date":"6/20/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":377,"Cost":271,"Date":"6/24/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":496,"Cost":280,"Date":"7/4/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":721,"Cost":520,"Date":"7/9/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":416,"Cost":285,"Date":"7/12/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":52,"Cost":36,"Date":"8/14/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":397,"Cost":224,"Date":"8/16/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":289,"Cost":240,"Date":"8/23/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":730,"Cost":645,"Date":"9/2/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":498,"Cost":352,"Date":"9/3/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":772,"Cost":463,"Date":"9/16/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":357,"Cost":315,"Date":"10/4/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":578,"Cost":321,"Date":"11/1/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":426,"Cost":310,"Date":"11/2/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":113,"Cost":107,"Date":"12/17/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":351,"Cost":305,"Date":"2/10/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":936,"Cost":612,"Date":"2/28/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":909,"Cost":568,"Date":"3/4/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":331,"Cost":257,"Date":"3/9/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":973,"Cost":653,"Date":"3/9/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":450,"Cost":421,"Date":"3/11/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":980,"Cost":514,"Date":"3/17/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":298,"Cost":169,"Date":"3/17/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":911,"Cost":766,"Date":"3/23/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":353,"Cost":317,"Date":"4/1/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":992,"Cost":672,"Date":"5/7/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":86,"Cost":45,"Date":"5/10/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":594,"Cost":536,"Date":"5/20/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":609,"Cost":435,"Date":"6/2/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":385,"Cost":277,"Date":"6/11/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":907,"Cost":838,"Date":"6/16/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":738,"Cost":538,"Date":"6/16/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":386,"Cost":333,"Date":"7/10/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":334,"Cost":257,"Date":"7/11/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":80,"Cost":70,"Date":"8/28/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":32,"Cost":30,"Date":"8/29/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":457,"Cost":257,"Date":"8/31/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":207,"Cost":189,"Date":"9/8/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":782,"Cost":557,"Date":"9/13/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":85,"Cost":66,"Date":"9/14/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":931,"Cost":548,"Date":"9/19/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":642,"Cost":537,"Date":"9/25/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":786,"Cost":436,"Date":"10/4/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":855,"Cost":747,"Date":"10/10/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":171,"Cost":103,"Date":"10/17/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":639,"Cost":370,"Date":"10/28/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":733,"Cost":500,"Date":"10/30/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":113,"Cost":65,"Date":"11/1/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":534,"Cost":268,"Date":"11/15/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":381,"Cost":285,"Date":"11/25/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":576,"Cost":326,"Date":"1/10/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":177,"Cost":90,"Date":"1/14/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":167,"Cost":90,"Date":"1/20/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":478,"Cost":357,"Date":"2/8/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":26,"Cost":17,"Date":"2/25/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":126,"Cost":70,"Date":"3/7/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":123,"Cost":79,"Date":"3/14/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":192,"Cost":102,"Date":"3/27/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":756,"Cost":485,"Date":"4/5/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":179,"Cost":98,"Date":"4/14/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":202,"Cost":190,"Date":"5/3/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":223,"Cost":183,"Date":"5/9/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":813,"Cost":680,"Date":"5/15/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":206,"Cost":115,"Date":"5/25/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":141,"Cost":111,"Date":"5/26/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":699,"Cost":583,"Date":"5/31/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":799,"Cost":595,"Date":"7/27/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":540,"Cost":378,"Date":"9/17/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":712,"Cost":670,"Date":"10/6/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":829,"Cost":566,"Date":"10/8/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":864,"Cost":506,"Date":"10/26/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":913,"Cost":815,"Date":"11/16/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":91,"Cost":48,"Date":"11/18/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"COS","Country":"Australia","Sale":634,"Cost":538,"Date":"12/1/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":777,"Cost":514,"Date":"2/9/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":742,"Cost":532,"Date":"2/11/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":402,"Cost":239,"Date":"3/10/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":970,"Cost":874,"Date":"3/16/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":138,"Cost":92,"Date":"3/18/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":437,"Cost":295,"Date":"3/20/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":195,"Cost":114,"Date":"3/26/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":892,"Cost":796,"Date":"6/2/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":17,"Cost":11,"Date":"6/10/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":288,"Cost":163,"Date":"6/16/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":256,"Cost":140,"Date":"6/25/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":433,"Cost":251,"Date":"7/19/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":497,"Cost":333,"Date":"7/21/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":454,"Cost":419,"Date":"7/25/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":334,"Cost":223,"Date":"8/4/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":828,"Cost":650,"Date":"9/2/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":443,"Cost":273,"Date":"9/4/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":141,"Cost":129,"Date":"9/19/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":841,"Cost":431,"Date":"9/29/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":827,"Cost":620,"Date":"10/2/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":520,"Cost":444,"Date":"10/15/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":344,"Cost":179,"Date":"10/30/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":205,"Cost":110,"Date":"11/9/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":286,"Cost":268,"Date":"11/23/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":471,"Cost":251,"Date":"11/30/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":100,"Cost":67,"Date":"12/8/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":438,"Cost":224,"Date":"12/11/2018"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":93,"Cost":56,"Date":"1/15/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":212,"Cost":196,"Date":"1/24/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":713,"Cost":536,"Date":"2/3/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":566,"Cost":305,"Date":"2/4/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":310,"Cost":216,"Date":"3/9/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":92,"Cost":85,"Date":"3/12/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":478,"Cost":294,"Date":"4/19/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":981,"Cost":646,"Date":"5/3/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":326,"Cost":201,"Date":"5/4/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":913,"Cost":520,"Date":"6/8/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":683,"Cost":625,"Date":"6/26/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":110,"Cost":74,"Date":"7/4/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":343,"Cost":221,"Date":"7/13/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":704,"Cost":517,"Date":"8/8/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":197,"Cost":151,"Date":"8/26/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":629,"Cost":363,"Date":"9/2/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":336,"Cost":274,"Date":"9/29/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":989,"Cost":782,"Date":"10/12/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":773,"Cost":613,"Date":"11/2/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":184,"Cost":96,"Date":"11/4/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":829,"Cost":706,"Date":"11/7/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":260,"Cost":163,"Date":"12/1/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":729,"Cost":526,"Date":"12/4/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":252,"Cost":184,"Date":"12/7/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":848,"Cost":801,"Date":"12/18/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":911,"Cost":757,"Date":"12/20/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":596,"Cost":302,"Date":"12/20/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":31,"Cost":19,"Date":"12/21/2019"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":482,"Cost":416,"Date":"1/9/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":291,"Cost":258,"Date":"2/5/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":942,"Cost":625,"Date":"2/16/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":439,"Cost":292,"Date":"2/16/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":966,"Cost":743,"Date":"2/18/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":733,"Cost":541,"Date":"2/22/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":188,"Cost":161,"Date":"2/25/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":98,"Cost":67,"Date":"3/8/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":927,"Cost":553,"Date":"4/2/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":332,"Cost":201,"Date":"4/3/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":620,"Cost":335,"Date":"4/9/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":133,"Cost":70,"Date":"4/10/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":651,"Cost":412,"Date":"4/19/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":282,"Cost":175,"Date":"5/17/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":863,"Cost":465,"Date":"5/22/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":566,"Cost":324,"Date":"6/20/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":873,"Cost":700,"Date":"7/1/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":534,"Cost":439,"Date":"7/4/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":684,"Cost":348,"Date":"7/8/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":781,"Cost":541,"Date":"7/9/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":971,"Cost":821,"Date":"7/14/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":189,"Cost":119,"Date":"7/19/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":69,"Cost":55,"Date":"8/1/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":510,"Cost":276,"Date":"8/6/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":132,"Cost":69,"Date":"8/7/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":46,"Cost":24,"Date":"8/22/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":58,"Cost":39,"Date":"8/31/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":725,"Cost":516,"Date":"9/1/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":572,"Cost":418,"Date":"9/1/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":299,"Cost":278,"Date":"9/17/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":151,"Cost":90,"Date":"9/29/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":28,"Cost":18,"Date":"11/7/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":427,"Cost":278,"Date":"11/26/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":165,"Cost":94,"Date":"11/27/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":665,"Cost":359,"Date":"12/5/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":934,"Cost":828,"Date":"12/26/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":604,"Cost":426,"Date":"12/31/2020"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":159,"Cost":145,"Date":"1/20/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":30,"Cost":18,"Date":"2/2/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":343,"Cost":190,"Date":"2/8/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":845,"Cost":772,"Date":"2/27/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":540,"Cost":416,"Date":"3/1/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":899,"Cost":632,"Date":"3/1/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":466,"Cost":346,"Date":"3/19/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":507,"Cost":394,"Date":"3/28/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":170,"Cost":136,"Date":"5/21/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":147,"Cost":102,"Date":"7/21/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":643,"Cost":444,"Date":"8/5/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":15,"Cost":7,"Date":"8/12/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":811,"Cost":733,"Date":"8/21/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":414,"Cost":282,"Date":"8/23/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":449,"Cost":416,"Date":"9/3/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":595,"Cost":475,"Date":"9/5/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":763,"Cost":510,"Date":"10/6/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":229,"Cost":188,"Date":"10/19/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":610,"Cost":325,"Date":"11/15/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":732,"Cost":480,"Date":"12/8/2021"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":619,"Cost":313,"Date":"1/8/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":23,"Cost":11,"Date":"1/14/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":947,"Cost":865,"Date":"1/19/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":672,"Cost":498,"Date":"1/28/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":498,"Cost":424,"Date":"1/31/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":660,"Cost":559,"Date":"3/27/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":507,"Cost":374,"Date":"4/20/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":972,"Cost":708,"Date":"4/24/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":189,"Cost":137,"Date":"4/28/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":878,"Cost":508,"Date":"5/15/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":614,"Cost":495,"Date":"5/16/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":855,"Cost":486,"Date":"5/18/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":971,"Cost":674,"Date":"6/2/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":840,"Cost":465,"Date":"6/3/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":734,"Cost":691,"Date":"6/5/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":900,"Cost":492,"Date":"6/7/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":9,"Cost":7,"Date":"6/14/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":465,"Cost":439,"Date":"6/20/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":224,"Cost":190,"Date":"6/24/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":1000,"Cost":927,"Date":"7/4/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":25,"Cost":19,"Date":"7/9/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":419,"Cost":355,"Date":"7/12/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":539,"Cost":407,"Date":"8/14/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":184,"Cost":119,"Date":"8/16/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":449,"Cost":290,"Date":"8/23/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":747,"Cost":620,"Date":"9/2/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":76,"Cost":57,"Date":"9/3/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":118,"Cost":107,"Date":"9/16/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":24,"Cost":23,"Date":"10/4/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":837,"Cost":439,"Date":"11/1/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":590,"Cost":343,"Date":"11/2/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":871,"Cost":800,"Date":"12/17/2022"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":760,"Cost":487,"Date":"2/10/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":708,"Cost":648,"Date":"2/28/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":653,"Cost":469,"Date":"3/4/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":180,"Cost":162,"Date":"3/9/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":365,"Cost":229,"Date":"3/9/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":174,"Cost":106,"Date":"3/11/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":796,"Cost":561,"Date":"3/17/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":259,"Cost":209,"Date":"3/17/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":370,"Cost":286,"Date":"3/23/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":190,"Cost":163,"Date":"4/1/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":505,"Cost":397,"Date":"5/7/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":323,"Cost":256,"Date":"5/10/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":981,"Cost":706,"Date":"5/20/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":770,"Cost":635,"Date":"6/2/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":220,"Cost":144,"Date":"6/11/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":490,"Cost":406,"Date":"6/16/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":279,"Cost":256,"Date":"6/16/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":706,"Cost":535,"Date":"7/10/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":871,"Cost":495,"Date":"7/11/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":597,"Cost":458,"Date":"8/28/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":146,"Cost":98,"Date":"8/29/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":948,"Cost":765,"Date":"8/31/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":439,"Cost":290,"Date":"9/8/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":688,"Cost":639,"Date":"9/13/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":399,"Cost":367,"Date":"9/14/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":214,"Cost":119,"Date":"9/19/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":85,"Cost":72,"Date":"9/25/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":598,"Cost":439,"Date":"10/4/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":888,"Cost":833,"Date":"10/10/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":750,"Cost":379,"Date":"10/17/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":770,"Cost":624,"Date":"10/28/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":989,"Cost":688,"Date":"10/30/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":536,"Cost":457,"Date":"11/1/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":548,"Cost":316,"Date":"11/15/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":340,"Cost":218,"Date":"11/25/2023"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":573,"Cost":292,"Date":"1/10/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":186,"Cost":159,"Date":"1/14/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":75,"Cost":60,"Date":"1/20/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":941,"Cost":812,"Date":"2/8/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":621,"Cost":439,"Date":"2/25/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":237,"Cost":206,"Date":"3/7/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":229,"Cost":196,"Date":"3/14/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":94,"Cost":80,"Date":"3/27/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":778,"Cost":634,"Date":"4/5/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":822,"Cost":497,"Date":"4/14/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":706,"Cost":484,"Date":"5/3/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":671,"Cost":364,"Date":"5/9/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":303,"Cost":196,"Date":"5/15/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":92,"Cost":52,"Date":"5/25/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":382,"Cost":200,"Date":"5/26/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":607,"Cost":365,"Date":"5/31/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":265,"Cost":194,"Date":"7/27/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":550,"Cost":293,"Date":"9/17/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":606,"Cost":380,"Date":"10/6/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":682,"Cost":487,"Date":"10/8/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":944,"Cost":506,"Date":"10/26/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":890,"Cost":780,"Date":"11/16/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":964,"Cost":493,"Date":"11/18/2024"},{"Store":"QVB (Queen Victoria Building), Sydney","Brand":"Jeans","Country":"Australia","Sale":806,"Cost":430,"Date":"12/1/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":735,"Cost":692,"Date":"2/9/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":192,"Cost":151,"Date":"2/11/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":556,"Cost":516,"Date":"3/10/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":304,"Cost":282,"Date":"3/16/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":317,"Cost":163,"Date":"3/18/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":280,"Cost":212,"Date":"3/20/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":373,"Cost":226,"Date":"3/26/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":575,"Cost":492,"Date":"6/2/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":31,"Cost":15,"Date":"6/10/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":632,"Cost":358,"Date":"6/16/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":859,"Cost":678,"Date":"6/25/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":950,"Cost":797,"Date":"7/19/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":341,"Cost":305,"Date":"7/21/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":298,"Cost":226,"Date":"7/25/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":507,"Cost":289,"Date":"8/4/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":954,"Cost":827,"Date":"9/2/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":696,"Cost":581,"Date":"9/4/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":826,"Cost":425,"Date":"9/19/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":746,"Cost":674,"Date":"9/29/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":654,"Cost":569,"Date":"10/2/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":424,"Cost":299,"Date":"10/15/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":199,"Cost":137,"Date":"10/30/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":455,"Cost":342,"Date":"11/9/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":266,"Cost":206,"Date":"11/23/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":457,"Cost":316,"Date":"11/30/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":574,"Cost":319,"Date":"12/8/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":787,"Cost":555,"Date":"12/11/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":2,"Cost":1,"Date":"1/15/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":602,"Cost":457,"Date":"1/24/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":951,"Cost":638,"Date":"2/3/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":67,"Cost":35,"Date":"2/4/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":921,"Cost":709,"Date":"3/9/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":375,"Cost":263,"Date":"3/12/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":115,"Cost":60,"Date":"4/19/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":117,"Cost":61,"Date":"5/3/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":978,"Cost":704,"Date":"5/4/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":505,"Cost":312,"Date":"6/8/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":977,"Cost":876,"Date":"6/26/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":337,"Cost":239,"Date":"7/4/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":998,"Cost":678,"Date":"7/13/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":927,"Cost":875,"Date":"8/8/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":947,"Cost":878,"Date":"8/26/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":988,"Cost":550,"Date":"9/2/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":470,"Cost":359,"Date":"9/29/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":819,"Cost":498,"Date":"10/12/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":558,"Cost":446,"Date":"11/2/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":154,"Cost":131,"Date":"11/4/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":999,"Cost":673,"Date":"11/7/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":602,"Cost":320,"Date":"12/1/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":341,"Cost":301,"Date":"12/4/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":140,"Cost":91,"Date":"12/7/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":181,"Cost":120,"Date":"12/18/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":705,"Cost":657,"Date":"12/20/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":761,"Cost":631,"Date":"12/20/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":76,"Cost":55,"Date":"12/21/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":956,"Cost":501,"Date":"1/9/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":496,"Cost":395,"Date":"2/5/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":125,"Cost":95,"Date":"2/16/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":925,"Cost":546,"Date":"2/16/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":878,"Cost":719,"Date":"2/18/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":677,"Cost":512,"Date":"2/22/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":718,"Cost":399,"Date":"2/25/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":661,"Cost":590,"Date":"3/8/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":736,"Cost":374,"Date":"4/2/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":574,"Cost":362,"Date":"4/3/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":410,"Cost":332,"Date":"4/9/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":610,"Cost":543,"Date":"4/10/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":4,"Cost":3,"Date":"4/19/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":708,"Cost":657,"Date":"5/17/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":401,"Cost":227,"Date":"5/22/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":587,"Cost":326,"Date":"6/20/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":150,"Cost":100,"Date":"7/1/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":6,"Cost":4,"Date":"7/4/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":770,"Cost":725,"Date":"7/8/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":550,"Cost":334,"Date":"7/9/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":287,"Cost":273,"Date":"7/14/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":989,"Cost":544,"Date":"7/19/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":76,"Cost":72,"Date":"8/1/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":531,"Cost":311,"Date":"8/6/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":98,"Cost":92,"Date":"8/7/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":773,"Cost":613,"Date":"8/22/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":61,"Cost":57,"Date":"8/31/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":436,"Cost":382,"Date":"9/1/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":215,"Cost":147,"Date":"9/1/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":582,"Cost":423,"Date":"9/17/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":737,"Cost":663,"Date":"9/29/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":97,"Cost":80,"Date":"11/7/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":195,"Cost":179,"Date":"11/26/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":371,"Cost":313,"Date":"11/27/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":393,"Cost":337,"Date":"12/5/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":393,"Cost":237,"Date":"12/26/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":801,"Cost":594,"Date":"12/31/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":969,"Cost":692,"Date":"1/20/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":6,"Cost":5,"Date":"2/2/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":65,"Cost":48,"Date":"2/8/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":600,"Cost":456,"Date":"2/27/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":741,"Cost":693,"Date":"3/1/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":583,"Cost":319,"Date":"3/1/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":121,"Cost":66,"Date":"3/19/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":238,"Cost":179,"Date":"3/28/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":93,"Cost":66,"Date":"5/21/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":903,"Cost":667,"Date":"7/21/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":910,"Cost":545,"Date":"8/5/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":53,"Cost":47,"Date":"8/12/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":727,"Cost":478,"Date":"8/21/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":426,"Cost":335,"Date":"8/23/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":388,"Cost":240,"Date":"9/3/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":188,"Cost":103,"Date":"9/5/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":992,"Cost":603,"Date":"10/6/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":864,"Cost":603,"Date":"10/19/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":220,"Cost":204,"Date":"11/15/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":17,"Cost":15,"Date":"12/8/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":824,"Cost":429,"Date":"1/8/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":864,"Cost":535,"Date":"1/14/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":588,"Cost":543,"Date":"1/19/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":347,"Cost":285,"Date":"1/28/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":155,"Cost":141,"Date":"1/31/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":204,"Cost":165,"Date":"3/27/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":858,"Cost":534,"Date":"4/20/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":956,"Cost":802,"Date":"4/24/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":204,"Cost":170,"Date":"4/28/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":989,"Cost":507,"Date":"5/15/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":713,"Cost":620,"Date":"5/16/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":728,"Cost":544,"Date":"5/18/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":519,"Cost":372,"Date":"6/2/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":238,"Cost":214,"Date":"6/3/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":316,"Cost":258,"Date":"6/5/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":61,"Cost":41,"Date":"6/7/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":131,"Cost":86,"Date":"6/14/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":298,"Cost":174,"Date":"6/20/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":7,"Cost":3,"Date":"6/24/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":197,"Cost":115,"Date":"7/4/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":20,"Cost":17,"Date":"7/9/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":509,"Cost":325,"Date":"7/12/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":259,"Cost":157,"Date":"8/14/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":502,"Cost":457,"Date":"8/16/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":600,"Cost":555,"Date":"8/23/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":970,"Cost":838,"Date":"9/2/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":830,"Cost":706,"Date":"9/3/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":68,"Cost":47,"Date":"9/16/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":39,"Cost":28,"Date":"10/4/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":236,"Cost":212,"Date":"11/1/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":407,"Cost":275,"Date":"11/2/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":233,"Cost":215,"Date":"12/17/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":522,"Cost":355,"Date":"2/10/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":109,"Cost":81,"Date":"2/28/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":40,"Cost":26,"Date":"3/4/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":223,"Cost":114,"Date":"3/9/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":511,"Cost":436,"Date":"3/9/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":220,"Cost":206,"Date":"3/11/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":72,"Cost":54,"Date":"3/17/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":332,"Cost":187,"Date":"3/17/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":619,"Cost":563,"Date":"3/23/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":445,"Cost":385,"Date":"4/1/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":74,"Cost":60,"Date":"5/7/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":373,"Cost":208,"Date":"5/10/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":226,"Cost":206,"Date":"5/20/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":22,"Cost":19,"Date":"6/2/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":521,"Cost":345,"Date":"6/11/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":656,"Cost":491,"Date":"6/16/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":199,"Cost":144,"Date":"6/16/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":533,"Cost":432,"Date":"7/10/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":286,"Cost":208,"Date":"7/11/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":902,"Cost":759,"Date":"8/28/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":578,"Cost":334,"Date":"8/29/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":101,"Cost":70,"Date":"8/31/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":676,"Cost":382,"Date":"9/8/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":324,"Cost":306,"Date":"9/13/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":253,"Cost":133,"Date":"9/14/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":464,"Cost":313,"Date":"9/19/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":801,"Cost":481,"Date":"9/25/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":912,"Cost":676,"Date":"10/4/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":547,"Cost":274,"Date":"10/10/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":984,"Cost":856,"Date":"10/17/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":782,"Cost":537,"Date":"10/28/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":420,"Cost":295,"Date":"10/30/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":999,"Cost":786,"Date":"11/1/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":442,"Cost":255,"Date":"11/15/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":211,"Cost":107,"Date":"11/25/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":916,"Cost":474,"Date":"1/10/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":468,"Cost":410,"Date":"1/14/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":359,"Cost":328,"Date":"1/20/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":222,"Cost":173,"Date":"2/8/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":903,"Cost":587,"Date":"2/25/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":34,"Cost":24,"Date":"3/7/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":876,"Cost":680,"Date":"3/14/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":764,"Cost":452,"Date":"3/27/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":790,"Cost":520,"Date":"4/5/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":161,"Cost":98,"Date":"4/14/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":356,"Cost":261,"Date":"5/3/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":664,"Cost":380,"Date":"5/9/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":954,"Cost":805,"Date":"5/15/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":165,"Cost":130,"Date":"5/25/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":687,"Cost":585,"Date":"5/26/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":34,"Cost":21,"Date":"5/31/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":437,"Cost":387,"Date":"7/27/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":8,"Cost":4,"Date":"9/17/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":893,"Cost":838,"Date":"10/6/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":900,"Cost":483,"Date":"10/8/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":132,"Cost":97,"Date":"10/26/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":370,"Cost":219,"Date":"11/16/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":226,"Cost":149,"Date":"11/18/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"ARKET","Country":"Australia","Sale":47,"Cost":25,"Date":"12/1/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":268,"Cost":156,"Date":"2/9/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":648,"Cost":590,"Date":"2/11/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":917,"Cost":651,"Date":"3/10/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":465,"Cost":232,"Date":"3/16/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":940,"Cost":572,"Date":"3/18/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":324,"Cost":259,"Date":"3/20/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":598,"Cost":445,"Date":"3/26/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":670,"Cost":348,"Date":"6/2/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":760,"Cost":646,"Date":"6/10/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":663,"Cost":505,"Date":"6/16/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":232,"Cost":151,"Date":"6/25/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":288,"Cost":236,"Date":"7/19/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":895,"Cost":768,"Date":"7/21/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":250,"Cost":229,"Date":"7/25/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":622,"Cost":410,"Date":"8/4/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":440,"Cost":355,"Date":"9/2/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":458,"Cost":294,"Date":"9/4/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":505,"Cost":418,"Date":"9/19/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":76,"Cost":56,"Date":"9/29/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":408,"Cost":246,"Date":"10/2/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":439,"Cost":387,"Date":"10/15/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":749,"Cost":539,"Date":"10/30/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":56,"Cost":29,"Date":"11/9/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":534,"Cost":381,"Date":"11/23/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":508,"Cost":462,"Date":"11/30/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":37,"Cost":21,"Date":"12/8/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":361,"Cost":314,"Date":"12/11/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":673,"Cost":415,"Date":"1/15/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":498,"Cost":362,"Date":"1/24/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":280,"Cost":258,"Date":"2/3/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":698,"Cost":487,"Date":"2/4/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":874,"Cost":570,"Date":"3/9/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":974,"Cost":658,"Date":"3/12/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":71,"Cost":42,"Date":"4/19/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":915,"Cost":759,"Date":"5/3/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":417,"Cost":363,"Date":"5/4/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":791,"Cost":544,"Date":"6/8/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":212,"Cost":186,"Date":"6/26/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":886,"Cost":764,"Date":"7/4/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":671,"Cost":628,"Date":"7/13/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":50,"Cost":35,"Date":"8/8/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":687,"Cost":421,"Date":"8/26/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":728,"Cost":564,"Date":"9/2/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":998,"Cost":870,"Date":"9/29/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":491,"Cost":358,"Date":"10/12/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":493,"Cost":337,"Date":"11/2/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":428,"Cost":380,"Date":"11/4/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":953,"Cost":863,"Date":"11/7/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":724,"Cost":443,"Date":"12/1/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":559,"Cost":395,"Date":"12/4/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":860,"Cost":546,"Date":"12/7/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":50,"Cost":38,"Date":"12/18/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":319,"Cost":212,"Date":"12/20/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":19,"Cost":14,"Date":"12/20/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":725,"Cost":670,"Date":"12/21/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":560,"Cost":478,"Date":"1/9/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":110,"Cost":95,"Date":"2/5/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":796,"Cost":748,"Date":"2/16/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":69,"Cost":38,"Date":"2/16/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":287,"Cost":168,"Date":"2/18/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":966,"Cost":799,"Date":"2/22/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":126,"Cost":77,"Date":"2/25/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":403,"Cost":288,"Date":"3/8/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":973,"Cost":741,"Date":"4/2/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":539,"Cost":334,"Date":"4/3/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":702,"Cost":526,"Date":"4/9/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":281,"Cost":143,"Date":"4/10/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":41,"Cost":35,"Date":"4/19/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":101,"Cost":63,"Date":"5/17/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":234,"Cost":176,"Date":"5/22/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":270,"Cost":221,"Date":"6/20/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":259,"Cost":222,"Date":"7/1/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":928,"Cost":629,"Date":"7/4/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":498,"Cost":274,"Date":"7/8/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":648,"Cost":412,"Date":"7/9/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":818,"Cost":620,"Date":"7/14/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":38,"Cost":35,"Date":"7/19/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":562,"Cost":361,"Date":"8/1/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":591,"Cost":345,"Date":"8/6/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":455,"Cost":374,"Date":"8/7/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":847,"Cost":572,"Date":"8/22/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":955,"Cost":491,"Date":"8/31/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":915,"Cost":808,"Date":"9/1/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":300,"Cost":151,"Date":"9/1/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":733,"Cost":469,"Date":"9/17/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":383,"Cost":324,"Date":"9/29/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":907,"Cost":847,"Date":"11/7/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":555,"Cost":356,"Date":"11/26/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":459,"Cost":242,"Date":"11/27/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":479,"Cost":260,"Date":"12/5/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":676,"Cost":604,"Date":"12/26/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":448,"Cost":377,"Date":"12/31/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":659,"Cost":400,"Date":"1/20/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":583,"Cost":466,"Date":"2/2/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":93,"Cost":48,"Date":"2/8/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":15,"Cost":9,"Date":"2/27/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":721,"Cost":501,"Date":"3/1/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":905,"Cost":624,"Date":"3/1/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":692,"Cost":623,"Date":"3/19/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":409,"Cost":313,"Date":"3/28/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":75,"Cost":60,"Date":"5/21/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":874,"Cost":718,"Date":"7/21/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":90,"Cost":68,"Date":"8/5/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":426,"Cost":344,"Date":"8/12/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":367,"Cost":346,"Date":"8/21/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":557,"Cost":431,"Date":"8/23/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":226,"Cost":181,"Date":"9/3/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":857,"Cost":790,"Date":"9/5/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":463,"Cost":344,"Date":"10/6/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":206,"Cost":128,"Date":"10/19/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":87,"Cost":47,"Date":"11/15/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":877,"Cost":742,"Date":"12/8/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":904,"Cost":843,"Date":"1/8/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":406,"Cost":380,"Date":"1/14/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":49,"Cost":36,"Date":"1/19/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":479,"Cost":325,"Date":"1/28/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":795,"Cost":634,"Date":"1/31/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":879,"Cost":693,"Date":"3/27/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":722,"Cost":438,"Date":"4/20/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":504,"Cost":258,"Date":"4/24/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":988,"Cost":789,"Date":"4/28/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":310,"Cost":272,"Date":"5/15/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":407,"Cost":214,"Date":"5/16/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":6,"Cost":3,"Date":"5/18/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":866,"Cost":457,"Date":"6/2/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":149,"Cost":127,"Date":"6/3/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":495,"Cost":404,"Date":"6/5/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":853,"Cost":597,"Date":"6/7/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":998,"Cost":782,"Date":"6/14/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":295,"Cost":186,"Date":"6/20/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":974,"Cost":872,"Date":"6/24/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":68,"Cost":45,"Date":"7/4/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":133,"Cost":99,"Date":"7/9/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":730,"Cost":382,"Date":"7/12/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":127,"Cost":71,"Date":"8/14/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":752,"Cost":467,"Date":"8/16/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":470,"Cost":325,"Date":"8/23/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":259,"Cost":138,"Date":"9/2/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":5,"Cost":4,"Date":"9/3/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":974,"Cost":832,"Date":"9/16/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":962,"Cost":847,"Date":"10/4/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":394,"Cost":257,"Date":"11/1/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":551,"Cost":328,"Date":"11/2/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":261,"Cost":243,"Date":"12/17/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":894,"Cost":718,"Date":"2/10/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":389,"Cost":310,"Date":"2/28/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":637,"Cost":498,"Date":"3/4/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":240,"Cost":151,"Date":"3/9/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":545,"Cost":287,"Date":"3/9/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":223,"Cost":117,"Date":"3/11/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":608,"Cost":412,"Date":"3/17/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":58,"Cost":30,"Date":"3/17/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":882,"Cost":528,"Date":"3/23/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":385,"Cost":286,"Date":"4/1/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":8,"Cost":5,"Date":"5/7/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":248,"Cost":210,"Date":"5/10/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":719,"Cost":537,"Date":"5/20/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":983,"Cost":523,"Date":"6/2/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":584,"Cost":527,"Date":"6/11/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":776,"Cost":576,"Date":"6/16/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":640,"Cost":588,"Date":"6/16/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":66,"Cost":62,"Date":"7/10/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":363,"Cost":345,"Date":"7/11/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":252,"Cost":212,"Date":"8/28/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":903,"Cost":621,"Date":"8/29/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":116,"Cost":78,"Date":"8/31/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":819,"Cost":447,"Date":"9/8/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":718,"Cost":417,"Date":"9/13/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":332,"Cost":206,"Date":"9/14/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":322,"Cost":267,"Date":"9/19/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":365,"Cost":203,"Date":"9/25/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":275,"Cost":172,"Date":"10/4/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":562,"Cost":423,"Date":"10/10/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":280,"Cost":243,"Date":"10/17/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":462,"Cost":396,"Date":"10/28/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":283,"Cost":197,"Date":"10/30/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":639,"Cost":352,"Date":"11/1/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":713,"Cost":553,"Date":"11/15/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":105,"Cost":80,"Date":"11/25/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":710,"Cost":452,"Date":"1/10/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":111,"Cost":80,"Date":"1/14/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":633,"Cost":349,"Date":"1/20/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":645,"Cost":608,"Date":"2/8/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":807,"Cost":639,"Date":"2/25/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":602,"Cost":527,"Date":"3/7/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":21,"Cost":11,"Date":"3/14/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":285,"Cost":180,"Date":"3/27/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":694,"Cost":388,"Date":"4/5/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":156,"Cost":135,"Date":"4/14/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":709,"Cost":510,"Date":"5/3/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":894,"Cost":819,"Date":"5/9/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":562,"Cost":410,"Date":"5/15/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":764,"Cost":572,"Date":"5/25/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":453,"Cost":316,"Date":"5/26/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":809,"Cost":583,"Date":"5/31/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":532,"Cost":489,"Date":"7/27/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":238,"Cost":204,"Date":"9/17/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":69,"Cost":55,"Date":"10/6/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":680,"Cost":589,"Date":"10/8/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":168,"Cost":112,"Date":"10/26/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":758,"Cost":434,"Date":"11/16/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":292,"Cost":217,"Date":"11/18/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"HM","Country":"Australia","Sale":248,"Cost":161,"Date":"12/1/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":547,"Cost":358,"Date":"2/9/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":560,"Cost":461,"Date":"2/11/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":591,"Cost":299,"Date":"3/10/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":573,"Cost":453,"Date":"3/16/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":825,"Cost":746,"Date":"3/18/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":906,"Cost":650,"Date":"3/20/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":316,"Cost":236,"Date":"3/26/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":199,"Cost":172,"Date":"6/2/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":731,"Cost":649,"Date":"6/10/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":17,"Cost":11,"Date":"6/16/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":630,"Cost":410,"Date":"6/25/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":990,"Cost":668,"Date":"7/19/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":364,"Cost":294,"Date":"7/21/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":653,"Cost":361,"Date":"7/25/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":753,"Cost":449,"Date":"8/4/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":548,"Cost":424,"Date":"9/2/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":844,"Cost":653,"Date":"9/4/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":181,"Cost":100,"Date":"9/19/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":12,"Cost":6,"Date":"9/29/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":994,"Cost":764,"Date":"10/2/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":468,"Cost":344,"Date":"10/15/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":947,"Cost":899,"Date":"10/30/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":640,"Cost":607,"Date":"11/9/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":348,"Cost":218,"Date":"11/23/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":573,"Cost":318,"Date":"11/30/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":938,"Cost":648,"Date":"12/8/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":916,"Cost":848,"Date":"12/11/2018"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":304,"Cost":260,"Date":"1/15/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":874,"Cost":719,"Date":"1/24/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":570,"Cost":470,"Date":"2/3/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":937,"Cost":526,"Date":"2/4/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":80,"Cost":54,"Date":"3/9/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":197,"Cost":165,"Date":"3/12/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":925,"Cost":619,"Date":"4/19/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":364,"Cost":331,"Date":"5/3/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":185,"Cost":93,"Date":"5/4/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":557,"Cost":428,"Date":"6/8/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":10,"Cost":6,"Date":"6/26/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":259,"Cost":179,"Date":"7/4/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":811,"Cost":450,"Date":"7/13/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":352,"Cost":252,"Date":"8/8/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":989,"Cost":792,"Date":"8/26/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":541,"Cost":462,"Date":"9/2/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":663,"Cost":577,"Date":"9/29/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":302,"Cost":164,"Date":"10/12/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":392,"Cost":239,"Date":"11/2/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":824,"Cost":476,"Date":"11/4/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":580,"Cost":473,"Date":"11/7/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":569,"Cost":511,"Date":"12/1/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":615,"Cost":407,"Date":"12/4/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":884,"Cost":464,"Date":"12/7/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":348,"Cost":181,"Date":"12/18/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":550,"Cost":417,"Date":"12/20/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":269,"Cost":164,"Date":"12/20/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":806,"Cost":487,"Date":"12/21/2019"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":513,"Cost":462,"Date":"1/9/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":32,"Cost":27,"Date":"2/5/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":730,"Cost":542,"Date":"2/16/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":315,"Cost":253,"Date":"2/16/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":601,"Cost":417,"Date":"2/18/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":587,"Cost":432,"Date":"2/22/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":596,"Cost":399,"Date":"2/25/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":380,"Cost":335,"Date":"3/8/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":186,"Cost":135,"Date":"4/2/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":220,"Cost":202,"Date":"4/3/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":359,"Cost":250,"Date":"4/9/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":833,"Cost":453,"Date":"4/10/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":750,"Cost":548,"Date":"4/19/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":525,"Cost":318,"Date":"5/17/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":493,"Cost":464,"Date":"5/22/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":121,"Cost":77,"Date":"6/20/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":236,"Cost":221,"Date":"7/1/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":286,"Cost":231,"Date":"7/4/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":599,"Cost":309,"Date":"7/8/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":274,"Cost":183,"Date":"7/9/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":877,"Cost":488,"Date":"7/14/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":979,"Cost":911,"Date":"7/19/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":765,"Cost":474,"Date":"8/1/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":743,"Cost":506,"Date":"8/6/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":144,"Cost":92,"Date":"8/7/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":607,"Cost":451,"Date":"8/22/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":505,"Cost":426,"Date":"8/31/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":393,"Cost":259,"Date":"9/1/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":552,"Cost":363,"Date":"9/1/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":637,"Cost":389,"Date":"9/17/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":152,"Cost":102,"Date":"9/29/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":928,"Cost":601,"Date":"11/7/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":654,"Cost":472,"Date":"11/26/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":175,"Cost":143,"Date":"11/27/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":436,"Cost":310,"Date":"12/5/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":661,"Cost":380,"Date":"12/26/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":338,"Cost":282,"Date":"12/31/2020"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":273,"Cost":168,"Date":"1/20/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":529,"Cost":302,"Date":"2/2/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":346,"Cost":204,"Date":"2/8/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":988,"Cost":712,"Date":"2/27/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":510,"Cost":397,"Date":"3/1/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":497,"Cost":277,"Date":"3/1/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":801,"Cost":521,"Date":"3/19/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":558,"Cost":287,"Date":"3/28/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":478,"Cost":454,"Date":"5/21/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":483,"Cost":359,"Date":"7/21/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":163,"Cost":91,"Date":"8/5/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":365,"Cost":254,"Date":"8/12/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":77,"Cost":53,"Date":"8/21/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":877,"Cost":824,"Date":"8/23/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":984,"Cost":557,"Date":"9/3/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":161,"Cost":125,"Date":"9/5/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":431,"Cost":255,"Date":"10/6/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":570,"Cost":475,"Date":"10/19/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":948,"Cost":741,"Date":"11/15/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":403,"Cost":273,"Date":"12/8/2021"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":315,"Cost":171,"Date":"1/8/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":611,"Cost":407,"Date":"1/14/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":201,"Cost":145,"Date":"1/19/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":401,"Cost":346,"Date":"1/28/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":835,"Cost":718,"Date":"1/31/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":426,"Cost":279,"Date":"3/27/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":270,"Cost":206,"Date":"4/20/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":226,"Cost":180,"Date":"4/24/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":993,"Cost":722,"Date":"4/28/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":949,"Cost":510,"Date":"5/15/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":581,"Cost":536,"Date":"5/16/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":813,"Cost":523,"Date":"5/18/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":407,"Cost":293,"Date":"6/2/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":896,"Cost":654,"Date":"6/3/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":32,"Cost":30,"Date":"6/5/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":249,"Cost":126,"Date":"6/7/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":250,"Cost":162,"Date":"6/14/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":755,"Cost":427,"Date":"6/20/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":916,"Cost":844,"Date":"6/24/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":811,"Cost":498,"Date":"7/4/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":623,"Cost":394,"Date":"7/9/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":303,"Cost":278,"Date":"7/12/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":190,"Cost":123,"Date":"8/14/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":415,"Cost":215,"Date":"8/16/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":232,"Cost":159,"Date":"8/23/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":387,"Cost":353,"Date":"9/2/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":504,"Cost":404,"Date":"9/3/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":7,"Cost":6,"Date":"9/16/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":1000,"Cost":682,"Date":"10/4/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":70,"Cost":62,"Date":"11/1/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":767,"Cost":458,"Date":"11/2/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":425,"Cost":221,"Date":"12/17/2022"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":27,"Cost":22,"Date":"2/10/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":278,"Cost":254,"Date":"2/28/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":914,"Cost":562,"Date":"3/4/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":230,"Cost":168,"Date":"3/9/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":171,"Cost":100,"Date":"3/9/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":721,"Cost":365,"Date":"3/11/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":884,"Cost":471,"Date":"3/17/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":725,"Cost":573,"Date":"3/17/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":576,"Cost":442,"Date":"3/23/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":684,"Cost":541,"Date":"4/1/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":669,"Cost":441,"Date":"5/7/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":571,"Cost":424,"Date":"5/10/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":675,"Cost":362,"Date":"5/20/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":863,"Cost":548,"Date":"6/2/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":958,"Cost":854,"Date":"6/11/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":999,"Cost":756,"Date":"6/16/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":806,"Cost":619,"Date":"6/16/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":623,"Cost":341,"Date":"7/10/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":952,"Cost":744,"Date":"7/11/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":538,"Cost":506,"Date":"8/28/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":119,"Cost":110,"Date":"8/29/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":973,"Cost":585,"Date":"8/31/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":534,"Cost":467,"Date":"9/8/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":307,"Cost":217,"Date":"9/13/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":672,"Cost":604,"Date":"9/14/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":105,"Cost":82,"Date":"9/19/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":623,"Cost":341,"Date":"9/25/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":926,"Cost":572,"Date":"10/4/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":105,"Cost":62,"Date":"10/10/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":191,"Cost":180,"Date":"10/17/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":855,"Cost":725,"Date":"10/28/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":247,"Cost":188,"Date":"10/30/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":660,"Cost":608,"Date":"11/1/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":156,"Cost":94,"Date":"11/15/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":388,"Cost":216,"Date":"11/25/2023"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":615,"Cost":465,"Date":"1/10/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":497,"Cost":323,"Date":"1/14/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":7,"Cost":4,"Date":"1/20/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":542,"Cost":400,"Date":"2/8/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":51,"Cost":39,"Date":"2/25/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":65,"Cost":60,"Date":"3/7/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":405,"Cost":332,"Date":"3/14/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":859,"Cost":729,"Date":"3/27/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":806,"Cost":502,"Date":"4/5/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":702,"Cost":502,"Date":"4/14/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":620,"Cost":353,"Date":"5/3/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":138,"Cost":107,"Date":"5/9/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":147,"Cost":95,"Date":"5/15/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":354,"Cost":232,"Date":"5/25/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":949,"Cost":841,"Date":"5/26/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":748,"Cost":427,"Date":"5/31/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":904,"Cost":642,"Date":"7/27/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":940,"Cost":860,"Date":"9/17/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":765,"Cost":703,"Date":"10/6/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":840,"Cost":518,"Date":"10/8/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":324,"Cost":169,"Date":"10/26/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":949,"Cost":630,"Date":"11/16/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":861,"Cost":532,"Date":"11/18/2024"},{"Store":"Pitt Street Mall, Sydney","Brand":"COS","Country":"Australia","Sale":53,"Cost":34,"Date":"12/1/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":710,"Cost":624,"Date":"2/9/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":234,"Cost":178,"Date":"2/11/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":797,"Cost":647,"Date":"3/10/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":646,"Cost":438,"Date":"3/16/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":345,"Cost":208,"Date":"3/18/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":188,"Cost":147,"Date":"3/20/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":833,"Cost":651,"Date":"3/26/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":693,"Cost":362,"Date":"6/2/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":305,"Cost":227,"Date":"6/10/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":304,"Cost":192,"Date":"6/16/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":522,"Cost":279,"Date":"6/25/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":888,"Cost":785,"Date":"7/19/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":528,"Cost":288,"Date":"7/21/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":814,"Cost":699,"Date":"7/25/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":525,"Cost":383,"Date":"8/4/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":792,"Cost":564,"Date":"9/2/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":754,"Cost":454,"Date":"9/4/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":39,"Cost":32,"Date":"9/19/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":389,"Cost":209,"Date":"9/29/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":68,"Cost":62,"Date":"10/2/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":706,"Cost":579,"Date":"10/15/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":571,"Cost":532,"Date":"10/30/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":908,"Cost":751,"Date":"11/9/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":642,"Cost":391,"Date":"11/23/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":508,"Cost":446,"Date":"11/30/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":10,"Cost":8,"Date":"12/8/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":700,"Cost":519,"Date":"12/11/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":198,"Cost":176,"Date":"1/15/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":938,"Cost":693,"Date":"1/24/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":698,"Cost":377,"Date":"2/3/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":716,"Cost":433,"Date":"2/4/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":550,"Cost":396,"Date":"3/9/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":50,"Cost":40,"Date":"3/12/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":736,"Cost":685,"Date":"4/19/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":179,"Cost":119,"Date":"5/3/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":71,"Cost":42,"Date":"5/4/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":917,"Cost":790,"Date":"6/8/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":854,"Cost":498,"Date":"6/26/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":763,"Cost":483,"Date":"7/4/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":42,"Cost":25,"Date":"7/13/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":193,"Cost":107,"Date":"8/8/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":332,"Cost":202,"Date":"8/26/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":241,"Cost":211,"Date":"9/2/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":287,"Cost":210,"Date":"9/29/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":350,"Cost":311,"Date":"10/12/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":966,"Cost":792,"Date":"11/2/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":482,"Cost":391,"Date":"11/4/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":19,"Cost":18,"Date":"11/7/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":194,"Cost":145,"Date":"12/1/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":380,"Cost":258,"Date":"12/4/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":460,"Cost":324,"Date":"12/7/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":657,"Cost":412,"Date":"12/18/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":552,"Cost":519,"Date":"12/20/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":185,"Cost":114,"Date":"12/20/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":820,"Cost":638,"Date":"12/21/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":321,"Cost":171,"Date":"1/9/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":106,"Cost":84,"Date":"2/5/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":424,"Cost":386,"Date":"2/16/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":489,"Cost":411,"Date":"2/16/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":303,"Cost":273,"Date":"2/18/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":135,"Cost":127,"Date":"2/22/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":727,"Cost":435,"Date":"2/25/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":294,"Cost":190,"Date":"3/8/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":15,"Cost":14,"Date":"4/2/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":892,"Cost":677,"Date":"4/3/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":869,"Cost":814,"Date":"4/9/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":945,"Cost":474,"Date":"4/10/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":35,"Cost":18,"Date":"4/19/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":832,"Cost":484,"Date":"5/17/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":377,"Cost":230,"Date":"5/22/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":945,"Cost":535,"Date":"6/20/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":799,"Cost":541,"Date":"7/1/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":51,"Cost":40,"Date":"7/4/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":127,"Cost":82,"Date":"7/8/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":199,"Cost":168,"Date":"7/9/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":233,"Cost":162,"Date":"7/14/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":661,"Cost":558,"Date":"7/19/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":216,"Cost":200,"Date":"8/1/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":792,"Cost":432,"Date":"8/6/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":432,"Cost":324,"Date":"8/7/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":378,"Cost":299,"Date":"8/22/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":857,"Cost":709,"Date":"8/31/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":711,"Cost":529,"Date":"9/1/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":825,"Cost":462,"Date":"9/1/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":32,"Cost":29,"Date":"9/17/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":90,"Cost":55,"Date":"9/29/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":401,"Cost":271,"Date":"11/7/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":925,"Cost":570,"Date":"11/26/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":533,"Cost":474,"Date":"11/27/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":341,"Cost":221,"Date":"12/5/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":825,"Cost":448,"Date":"12/26/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":829,"Cost":532,"Date":"12/31/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":348,"Cost":267,"Date":"1/20/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":451,"Cost":387,"Date":"2/2/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":758,"Cost":715,"Date":"2/8/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":222,"Cost":137,"Date":"2/27/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":99,"Cost":77,"Date":"3/1/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":618,"Cost":391,"Date":"3/1/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":194,"Cost":145,"Date":"3/19/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":845,"Cost":672,"Date":"3/28/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":204,"Cost":121,"Date":"5/21/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":609,"Cost":350,"Date":"7/21/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":274,"Cost":197,"Date":"8/5/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":457,"Cost":270,"Date":"8/12/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":749,"Cost":632,"Date":"8/21/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":805,"Cost":435,"Date":"8/23/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":992,"Cost":902,"Date":"9/3/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":14,"Cost":7,"Date":"9/5/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":118,"Cost":90,"Date":"10/6/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":640,"Cost":576,"Date":"10/19/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":935,"Cost":805,"Date":"11/15/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":169,"Cost":158,"Date":"12/8/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":841,"Cost":768,"Date":"1/8/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":967,"Cost":519,"Date":"1/14/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":521,"Cost":404,"Date":"1/19/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":995,"Cost":936,"Date":"1/28/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":532,"Cost":419,"Date":"1/31/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":150,"Cost":119,"Date":"3/27/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":86,"Cost":73,"Date":"4/20/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":582,"Cost":303,"Date":"4/24/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":403,"Cost":303,"Date":"4/28/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":640,"Cost":417,"Date":"5/15/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":352,"Cost":304,"Date":"5/16/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":685,"Cost":573,"Date":"5/18/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":426,"Cost":295,"Date":"6/2/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":459,"Cost":243,"Date":"6/3/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":800,"Cost":512,"Date":"6/5/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":547,"Cost":334,"Date":"6/7/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":853,"Cost":667,"Date":"6/14/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":204,"Cost":106,"Date":"6/20/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":764,"Cost":503,"Date":"6/24/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":960,"Cost":837,"Date":"7/4/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":621,"Cost":519,"Date":"7/9/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":346,"Cost":256,"Date":"7/12/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":71,"Cost":47,"Date":"8/14/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":868,"Cost":752,"Date":"8/16/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":576,"Cost":473,"Date":"8/23/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":308,"Cost":239,"Date":"9/2/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":976,"Cost":802,"Date":"9/3/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":604,"Cost":494,"Date":"9/16/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":158,"Cost":98,"Date":"10/4/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":227,"Cost":122,"Date":"11/1/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":631,"Cost":420,"Date":"11/2/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":704,"Cost":507,"Date":"12/17/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":730,"Cost":372,"Date":"2/10/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":51,"Cost":31,"Date":"2/28/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":205,"Cost":126,"Date":"3/4/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":374,"Cost":245,"Date":"3/9/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":898,"Cost":557,"Date":"3/9/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":651,"Cost":607,"Date":"3/11/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":471,"Cost":335,"Date":"3/17/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":567,"Cost":430,"Date":"3/17/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":238,"Cost":204,"Date":"3/23/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":765,"Cost":456,"Date":"4/1/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":790,"Cost":404,"Date":"5/7/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":285,"Cost":163,"Date":"5/10/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":38,"Cost":21,"Date":"5/20/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":691,"Cost":495,"Date":"6/2/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":11,"Cost":7,"Date":"6/11/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":40,"Cost":28,"Date":"6/16/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":422,"Cost":234,"Date":"6/16/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":183,"Cost":164,"Date":"7/10/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":986,"Cost":821,"Date":"7/11/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":559,"Cost":354,"Date":"8/28/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":623,"Cost":457,"Date":"8/29/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":937,"Cost":796,"Date":"8/31/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":525,"Cost":267,"Date":"9/8/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":869,"Cost":756,"Date":"9/13/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":634,"Cost":334,"Date":"9/14/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":556,"Cost":393,"Date":"9/19/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":274,"Cost":197,"Date":"9/25/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":74,"Cost":67,"Date":"10/4/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":118,"Cost":66,"Date":"10/10/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":38,"Cost":19,"Date":"10/17/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":348,"Cost":186,"Date":"10/28/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":425,"Cost":301,"Date":"10/30/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":744,"Cost":641,"Date":"11/1/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":803,"Cost":498,"Date":"11/15/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":411,"Cost":251,"Date":"11/25/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":90,"Cost":64,"Date":"1/10/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":77,"Cost":53,"Date":"1/14/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":851,"Cost":786,"Date":"1/20/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":770,"Cost":505,"Date":"2/8/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":481,"Cost":260,"Date":"2/25/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":350,"Cost":325,"Date":"3/7/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":559,"Cost":525,"Date":"3/14/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":466,"Cost":381,"Date":"3/27/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":301,"Cost":201,"Date":"4/5/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":876,"Cost":795,"Date":"4/14/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":170,"Cost":151,"Date":"5/3/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":754,"Cost":425,"Date":"5/9/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":595,"Cost":519,"Date":"5/15/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":812,"Cost":409,"Date":"5/25/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":491,"Cost":257,"Date":"5/26/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":5,"Cost":5,"Date":"5/31/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":854,"Cost":653,"Date":"7/27/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":386,"Cost":275,"Date":"9/17/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":499,"Cost":442,"Date":"10/6/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":456,"Cost":368,"Date":"10/8/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":714,"Cost":379,"Date":"10/26/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":18,"Cost":15,"Date":"11/16/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":822,"Cost":554,"Date":"11/18/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":656,"Cost":556,"Date":"12/1/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":331,"Cost":179,"Date":"2/9/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":560,"Cost":321,"Date":"2/11/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":333,"Cost":299,"Date":"3/10/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":262,"Cost":165,"Date":"3/16/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":142,"Cost":72,"Date":"3/18/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":381,"Cost":300,"Date":"3/20/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":824,"Cost":421,"Date":"3/26/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":74,"Cost":68,"Date":"6/2/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":951,"Cost":754,"Date":"6/10/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":684,"Cost":545,"Date":"6/16/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":186,"Cost":124,"Date":"6/25/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":643,"Cost":371,"Date":"7/19/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":824,"Cost":571,"Date":"7/21/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":616,"Cost":478,"Date":"7/25/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":571,"Cost":487,"Date":"8/4/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":702,"Cost":611,"Date":"9/2/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":798,"Cost":725,"Date":"9/4/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":222,"Cost":149,"Date":"9/19/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":273,"Cost":146,"Date":"9/29/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":907,"Cost":472,"Date":"10/2/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":688,"Cost":554,"Date":"10/15/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":865,"Cost":538,"Date":"10/30/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":196,"Cost":159,"Date":"11/9/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":898,"Cost":613,"Date":"11/23/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":305,"Cost":222,"Date":"11/30/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":355,"Cost":183,"Date":"12/8/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":635,"Cost":548,"Date":"12/11/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":45,"Cost":38,"Date":"1/15/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":474,"Cost":333,"Date":"1/24/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":550,"Cost":362,"Date":"2/3/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":775,"Cost":409,"Date":"2/4/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":943,"Cost":892,"Date":"3/9/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":920,"Cost":651,"Date":"3/12/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":567,"Cost":317,"Date":"4/19/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":60,"Cost":56,"Date":"5/3/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":928,"Cost":502,"Date":"5/4/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":369,"Cost":326,"Date":"6/8/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":870,"Cost":735,"Date":"6/26/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":245,"Cost":217,"Date":"7/4/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":592,"Cost":448,"Date":"7/13/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":167,"Cost":119,"Date":"8/8/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":621,"Cost":366,"Date":"8/26/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":468,"Cost":294,"Date":"9/2/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":391,"Cost":210,"Date":"9/29/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":675,"Cost":507,"Date":"10/12/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":418,"Cost":241,"Date":"11/2/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":274,"Cost":167,"Date":"11/4/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":517,"Cost":277,"Date":"11/7/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":389,"Cost":275,"Date":"12/1/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":545,"Cost":313,"Date":"12/4/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":147,"Cost":135,"Date":"12/7/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":475,"Cost":278,"Date":"12/18/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":685,"Cost":573,"Date":"12/20/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":45,"Cost":24,"Date":"12/20/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":369,"Cost":282,"Date":"12/21/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":549,"Cost":491,"Date":"1/9/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":475,"Cost":428,"Date":"2/5/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":828,"Cost":600,"Date":"2/16/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":312,"Cost":252,"Date":"2/16/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":299,"Cost":183,"Date":"2/18/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":882,"Cost":648,"Date":"2/22/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":148,"Cost":81,"Date":"2/25/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":732,"Cost":615,"Date":"3/8/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":224,"Cost":126,"Date":"4/2/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":572,"Cost":338,"Date":"4/3/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":809,"Cost":658,"Date":"4/9/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":81,"Cost":66,"Date":"4/10/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":502,"Cost":303,"Date":"4/19/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":923,"Cost":493,"Date":"5/17/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":51,"Cost":47,"Date":"5/22/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":898,"Cost":614,"Date":"6/20/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":595,"Cost":312,"Date":"7/1/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":927,"Cost":692,"Date":"7/4/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":576,"Cost":402,"Date":"7/8/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":445,"Cost":390,"Date":"7/9/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":587,"Cost":553,"Date":"7/14/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":439,"Cost":336,"Date":"7/19/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":518,"Cost":301,"Date":"8/1/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":138,"Cost":96,"Date":"8/6/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":668,"Cost":437,"Date":"8/7/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":850,"Cost":770,"Date":"8/22/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":365,"Cost":311,"Date":"8/31/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":900,"Cost":819,"Date":"9/1/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":987,"Cost":836,"Date":"9/1/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":864,"Cost":457,"Date":"9/17/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":467,"Cost":388,"Date":"9/29/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":701,"Cost":613,"Date":"11/7/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":836,"Cost":531,"Date":"11/26/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":442,"Cost":265,"Date":"11/27/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":392,"Cost":288,"Date":"12/5/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":378,"Cost":356,"Date":"12/26/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":45,"Cost":38,"Date":"12/31/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":43,"Cost":26,"Date":"1/20/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":278,"Cost":259,"Date":"2/2/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":45,"Cost":31,"Date":"2/8/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":325,"Cost":197,"Date":"2/27/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":52,"Cost":36,"Date":"3/1/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":891,"Cost":816,"Date":"3/1/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":888,"Cost":712,"Date":"3/19/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":221,"Cost":125,"Date":"3/28/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":312,"Cost":216,"Date":"5/21/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":726,"Cost":658,"Date":"7/21/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":162,"Cost":104,"Date":"8/5/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":833,"Cost":546,"Date":"8/12/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":806,"Cost":425,"Date":"8/21/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":334,"Cost":276,"Date":"8/23/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":294,"Cost":251,"Date":"9/3/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":293,"Cost":199,"Date":"9/5/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":418,"Cost":216,"Date":"10/6/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":629,"Cost":524,"Date":"10/19/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":640,"Cost":430,"Date":"11/15/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":70,"Cost":52,"Date":"12/8/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":10,"Cost":9,"Date":"1/8/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":864,"Cost":509,"Date":"1/14/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":580,"Cost":302,"Date":"1/19/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":297,"Cost":200,"Date":"1/28/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":238,"Cost":119,"Date":"1/31/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":70,"Cost":42,"Date":"3/27/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":694,"Cost":368,"Date":"4/20/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":935,"Cost":716,"Date":"4/24/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":626,"Cost":482,"Date":"4/28/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":16,"Cost":11,"Date":"5/15/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":898,"Cost":607,"Date":"5/16/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":84,"Cost":49,"Date":"5/18/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":649,"Cost":468,"Date":"6/2/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":954,"Cost":765,"Date":"6/3/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":220,"Cost":110,"Date":"6/5/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":829,"Cost":690,"Date":"6/7/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":54,"Cost":45,"Date":"6/14/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":2,"Cost":2,"Date":"6/20/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":357,"Cost":275,"Date":"6/24/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":746,"Cost":700,"Date":"7/4/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":334,"Cost":223,"Date":"7/9/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":100,"Cost":56,"Date":"7/12/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":203,"Cost":171,"Date":"8/14/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":676,"Cost":635,"Date":"8/16/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":688,"Cost":565,"Date":"8/23/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":216,"Cost":165,"Date":"9/2/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":154,"Cost":110,"Date":"9/3/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":350,"Cost":193,"Date":"9/16/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":644,"Cost":377,"Date":"10/4/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":247,"Cost":188,"Date":"11/1/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":911,"Cost":506,"Date":"11/2/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":194,"Cost":170,"Date":"12/17/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":773,"Cost":407,"Date":"2/10/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":334,"Cost":272,"Date":"2/28/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":291,"Cost":181,"Date":"3/4/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":812,"Cost":595,"Date":"3/9/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":677,"Cost":605,"Date":"3/9/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":824,"Cost":765,"Date":"3/11/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":34,"Cost":27,"Date":"3/17/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":918,"Cost":682,"Date":"3/17/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":106,"Cost":97,"Date":"3/23/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":909,"Cost":712,"Date":"4/1/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":411,"Cost":221,"Date":"5/7/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":160,"Cost":92,"Date":"5/10/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":976,"Cost":790,"Date":"5/20/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":368,"Cost":279,"Date":"6/2/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":343,"Cost":276,"Date":"6/11/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":924,"Cost":822,"Date":"6/16/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":612,"Cost":448,"Date":"6/16/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":707,"Cost":573,"Date":"7/10/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":371,"Cost":298,"Date":"7/11/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":666,"Cost":451,"Date":"8/28/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":923,"Cost":817,"Date":"8/29/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":382,"Cost":320,"Date":"8/31/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":570,"Cost":397,"Date":"9/8/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":101,"Cost":95,"Date":"9/13/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":180,"Cost":158,"Date":"9/14/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":741,"Cost":509,"Date":"9/19/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":867,"Cost":600,"Date":"9/25/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":425,"Cost":301,"Date":"10/4/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":222,"Cost":155,"Date":"10/10/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":46,"Cost":41,"Date":"10/17/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":836,"Cost":429,"Date":"10/28/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":717,"Cost":543,"Date":"10/30/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":578,"Cost":472,"Date":"11/1/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":756,"Cost":494,"Date":"11/15/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":707,"Cost":502,"Date":"11/25/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":195,"Cost":105,"Date":"1/10/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":65,"Cost":36,"Date":"1/14/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":719,"Cost":508,"Date":"1/20/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":926,"Cost":725,"Date":"2/8/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":467,"Cost":356,"Date":"2/25/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":823,"Cost":471,"Date":"3/7/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":960,"Cost":795,"Date":"3/14/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":39,"Cost":24,"Date":"3/27/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":548,"Cost":387,"Date":"4/5/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":27,"Cost":16,"Date":"4/14/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":812,"Cost":429,"Date":"5/3/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":114,"Cost":107,"Date":"5/9/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":25,"Cost":23,"Date":"5/15/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":536,"Cost":471,"Date":"5/25/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":870,"Cost":652,"Date":"5/26/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":877,"Cost":441,"Date":"5/31/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":935,"Cost":636,"Date":"7/27/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":654,"Cost":465,"Date":"9/17/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":44,"Cost":30,"Date":"10/6/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":581,"Cost":369,"Date":"10/8/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":849,"Cost":612,"Date":"10/26/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":561,"Cost":456,"Date":"11/16/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":790,"Cost":554,"Date":"11/18/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM Home","Country":"Australia","Sale":235,"Cost":218,"Date":"12/1/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":104,"Cost":59,"Date":"2/9/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":414,"Cost":335,"Date":"2/11/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":627,"Cost":393,"Date":"3/10/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":739,"Cost":628,"Date":"3/16/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":296,"Cost":156,"Date":"3/18/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":683,"Cost":454,"Date":"3/20/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":403,"Cost":243,"Date":"3/26/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":411,"Cost":267,"Date":"6/2/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":365,"Cost":228,"Date":"6/10/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":598,"Cost":299,"Date":"6/16/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":1000,"Cost":855,"Date":"6/25/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":510,"Cost":381,"Date":"7/19/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":459,"Cost":415,"Date":"7/21/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":910,"Cost":688,"Date":"7/25/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":487,"Cost":260,"Date":"8/4/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":803,"Cost":502,"Date":"9/2/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":68,"Cost":41,"Date":"9/4/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":251,"Cost":221,"Date":"9/19/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":575,"Cost":498,"Date":"9/29/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":951,"Cost":659,"Date":"10/2/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":214,"Cost":170,"Date":"10/15/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":758,"Cost":421,"Date":"10/30/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":406,"Cost":313,"Date":"11/9/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":874,"Cost":477,"Date":"11/23/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":646,"Cost":540,"Date":"11/30/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":371,"Cost":259,"Date":"12/8/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":92,"Cost":74,"Date":"12/11/2018"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":149,"Cost":108,"Date":"1/15/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":858,"Cost":672,"Date":"1/24/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":944,"Cost":851,"Date":"2/3/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":86,"Cost":71,"Date":"2/4/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":53,"Cost":46,"Date":"3/9/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":170,"Cost":117,"Date":"3/12/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":792,"Cost":567,"Date":"4/19/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":100,"Cost":80,"Date":"5/3/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":967,"Cost":696,"Date":"5/4/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":262,"Cost":244,"Date":"6/8/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":48,"Cost":42,"Date":"6/26/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":914,"Cost":598,"Date":"7/4/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":805,"Cost":427,"Date":"7/13/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":160,"Cost":93,"Date":"8/8/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":324,"Cost":182,"Date":"8/26/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":240,"Cost":137,"Date":"9/2/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":685,"Cost":575,"Date":"9/29/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":524,"Cost":415,"Date":"10/12/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":697,"Cost":393,"Date":"11/2/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":178,"Cost":113,"Date":"11/4/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":221,"Cost":120,"Date":"11/7/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":197,"Cost":103,"Date":"12/1/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":326,"Cost":262,"Date":"12/4/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":176,"Cost":106,"Date":"12/7/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":448,"Cost":299,"Date":"12/18/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":926,"Cost":475,"Date":"12/20/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":736,"Cost":529,"Date":"12/20/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":773,"Cost":416,"Date":"12/21/2019"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":45,"Cost":41,"Date":"1/9/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":747,"Cost":641,"Date":"2/5/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":810,"Cost":439,"Date":"2/16/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":825,"Cost":725,"Date":"2/16/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":831,"Cost":618,"Date":"2/18/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":20,"Cost":18,"Date":"2/22/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":365,"Cost":228,"Date":"2/25/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":828,"Cost":511,"Date":"3/8/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":959,"Cost":838,"Date":"4/2/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":140,"Cost":115,"Date":"4/3/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":476,"Cost":381,"Date":"4/9/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":277,"Cost":212,"Date":"4/10/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":322,"Cost":222,"Date":"4/19/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":554,"Cost":361,"Date":"5/17/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":688,"Cost":618,"Date":"5/22/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":112,"Cost":99,"Date":"6/20/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":724,"Cost":607,"Date":"7/1/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":593,"Cost":315,"Date":"7/4/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":92,"Cost":66,"Date":"7/8/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":319,"Cost":202,"Date":"7/9/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":550,"Cost":363,"Date":"7/14/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":800,"Cost":608,"Date":"7/19/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":60,"Cost":34,"Date":"8/1/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":422,"Cost":378,"Date":"8/6/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":673,"Cost":336,"Date":"8/7/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":344,"Cost":223,"Date":"8/22/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":86,"Cost":43,"Date":"8/31/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":394,"Cost":268,"Date":"9/1/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":576,"Cost":488,"Date":"9/1/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":988,"Cost":865,"Date":"9/17/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":269,"Cost":210,"Date":"9/29/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":404,"Cost":254,"Date":"11/7/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":654,"Cost":416,"Date":"11/26/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":376,"Cost":349,"Date":"11/27/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":531,"Cost":425,"Date":"12/5/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":507,"Cost":458,"Date":"12/26/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":201,"Cost":133,"Date":"12/31/2020"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":759,"Cost":477,"Date":"1/20/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":730,"Cost":542,"Date":"2/2/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":575,"Cost":483,"Date":"2/8/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":610,"Cost":501,"Date":"2/27/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":503,"Cost":445,"Date":"3/1/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":58,"Cost":31,"Date":"3/1/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":653,"Cost":567,"Date":"3/19/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":856,"Cost":684,"Date":"3/28/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":351,"Cost":272,"Date":"5/21/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":869,"Cost":601,"Date":"7/21/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":714,"Cost":441,"Date":"8/5/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":436,"Cost":381,"Date":"8/12/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":120,"Cost":112,"Date":"8/21/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":199,"Cost":99,"Date":"8/23/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":149,"Cost":101,"Date":"9/3/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":228,"Cost":124,"Date":"9/5/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":390,"Cost":268,"Date":"10/6/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":943,"Cost":697,"Date":"10/19/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":735,"Cost":391,"Date":"11/15/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":589,"Cost":355,"Date":"12/8/2021"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":765,"Cost":562,"Date":"1/8/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":144,"Cost":130,"Date":"1/14/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":684,"Cost":396,"Date":"1/19/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":773,"Cost":714,"Date":"1/28/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":744,"Cost":664,"Date":"1/31/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":923,"Cost":533,"Date":"3/27/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":687,"Cost":479,"Date":"4/20/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":389,"Cost":328,"Date":"4/24/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":211,"Cost":116,"Date":"4/28/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":94,"Cost":87,"Date":"5/15/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":485,"Cost":388,"Date":"5/16/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":72,"Cost":63,"Date":"5/18/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":70,"Cost":58,"Date":"6/2/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":183,"Cost":139,"Date":"6/3/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":931,"Cost":761,"Date":"6/5/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":879,"Cost":727,"Date":"6/7/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":539,"Cost":456,"Date":"6/14/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":615,"Cost":378,"Date":"6/20/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":867,"Cost":806,"Date":"6/24/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":224,"Cost":157,"Date":"7/4/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":879,"Cost":683,"Date":"7/9/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":39,"Cost":34,"Date":"7/12/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":921,"Cost":689,"Date":"8/14/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":493,"Cost":288,"Date":"8/16/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":94,"Cost":60,"Date":"8/23/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":539,"Cost":286,"Date":"9/2/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":308,"Cost":176,"Date":"9/3/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":516,"Cost":343,"Date":"9/16/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":861,"Cost":532,"Date":"10/4/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":712,"Cost":673,"Date":"11/1/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":409,"Cost":314,"Date":"11/2/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":408,"Cost":362,"Date":"12/17/2022"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":579,"Cost":432,"Date":"2/10/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":497,"Cost":395,"Date":"2/28/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":25,"Cost":18,"Date":"3/4/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":609,"Cost":460,"Date":"3/9/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":366,"Cost":279,"Date":"3/9/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":388,"Cost":284,"Date":"3/11/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":936,"Cost":673,"Date":"3/17/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":872,"Cost":693,"Date":"3/17/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":460,"Cost":385,"Date":"3/23/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":779,"Cost":707,"Date":"4/1/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":903,"Cost":760,"Date":"5/7/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":165,"Cost":129,"Date":"5/10/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":7,"Cost":5,"Date":"5/20/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":696,"Cost":381,"Date":"6/2/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":330,"Cost":188,"Date":"6/11/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":612,"Cost":509,"Date":"6/16/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":183,"Cost":128,"Date":"6/16/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":501,"Cost":414,"Date":"7/10/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":863,"Cost":462,"Date":"7/11/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":60,"Cost":40,"Date":"8/28/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":549,"Cost":309,"Date":"8/29/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":337,"Cost":218,"Date":"8/31/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":375,"Cost":248,"Date":"9/8/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":914,"Cost":653,"Date":"9/13/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":458,"Cost":313,"Date":"9/14/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":961,"Cost":661,"Date":"9/19/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":235,"Cost":161,"Date":"9/25/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":61,"Cost":52,"Date":"10/4/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":560,"Cost":365,"Date":"10/10/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":266,"Cost":145,"Date":"10/17/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":625,"Cost":331,"Date":"10/28/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":669,"Cost":414,"Date":"10/30/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":457,"Cost":363,"Date":"11/1/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":302,"Cost":204,"Date":"11/15/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":756,"Cost":496,"Date":"11/25/2023"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":889,"Cost":457,"Date":"1/10/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":600,"Cost":326,"Date":"1/14/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":873,"Cost":507,"Date":"1/20/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":433,"Cost":380,"Date":"2/8/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":936,"Cost":702,"Date":"2/25/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":687,"Cost":358,"Date":"3/7/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":838,"Cost":628,"Date":"3/14/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":333,"Cost":175,"Date":"3/27/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":540,"Cost":425,"Date":"4/5/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":228,"Cost":116,"Date":"4/14/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":884,"Cost":632,"Date":"5/3/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":624,"Cost":436,"Date":"5/9/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":773,"Cost":472,"Date":"5/15/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":981,"Cost":531,"Date":"5/25/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":728,"Cost":555,"Date":"5/26/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":767,"Cost":560,"Date":"5/31/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":509,"Cost":257,"Date":"7/27/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":478,"Cost":311,"Date":"9/17/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":28,"Cost":22,"Date":"10/6/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":542,"Cost":344,"Date":"10/8/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":846,"Cost":468,"Date":"10/26/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":117,"Cost":81,"Date":"11/16/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":542,"Cost":410,"Date":"11/18/2024"},{"Store":"Macquarie Centre, Sydney","Brand":"HM","Country":"Australia","Sale":101,"Cost":71,"Date":"12/1/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":226,"Cost":206,"Date":"2/9/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":108,"Cost":69,"Date":"2/11/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":411,"Cost":358,"Date":"3/10/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":805,"Cost":486,"Date":"3/16/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":539,"Cost":349,"Date":"3/18/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":232,"Cost":119,"Date":"3/20/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":915,"Cost":604,"Date":"3/26/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":827,"Cost":601,"Date":"6/2/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":790,"Cost":605,"Date":"6/10/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":465,"Cost":270,"Date":"6/16/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":713,"Cost":382,"Date":"6/25/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":403,"Cost":365,"Date":"7/19/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":938,"Cost":839,"Date":"7/21/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":201,"Cost":161,"Date":"7/25/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":576,"Cost":481,"Date":"8/4/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":98,"Cost":52,"Date":"9/2/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":585,"Cost":545,"Date":"9/4/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":293,"Cost":148,"Date":"9/19/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":645,"Cost":496,"Date":"9/29/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":651,"Cost":359,"Date":"10/2/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":984,"Cost":867,"Date":"10/15/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":556,"Cost":381,"Date":"10/30/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":108,"Cost":75,"Date":"11/9/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":923,"Cost":872,"Date":"11/23/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":403,"Cost":271,"Date":"11/30/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":989,"Cost":566,"Date":"12/8/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":462,"Cost":235,"Date":"12/11/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":578,"Cost":387,"Date":"1/15/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":105,"Cost":59,"Date":"1/24/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":562,"Cost":353,"Date":"2/3/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":34,"Cost":28,"Date":"2/4/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":910,"Cost":683,"Date":"3/9/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":500,"Cost":445,"Date":"3/12/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":258,"Cost":204,"Date":"4/19/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":861,"Cost":643,"Date":"5/3/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":451,"Cost":253,"Date":"5/4/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":992,"Cost":685,"Date":"6/8/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":504,"Cost":338,"Date":"6/26/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":556,"Cost":305,"Date":"7/4/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":105,"Cost":52,"Date":"7/13/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":574,"Cost":329,"Date":"8/8/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":6,"Cost":5,"Date":"8/26/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":749,"Cost":494,"Date":"9/2/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":276,"Cost":260,"Date":"9/29/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":329,"Cost":270,"Date":"10/12/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":951,"Cost":597,"Date":"11/2/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":819,"Cost":640,"Date":"11/4/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":175,"Cost":87,"Date":"11/7/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":555,"Cost":457,"Date":"12/1/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":725,"Cost":393,"Date":"12/4/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":560,"Cost":383,"Date":"12/7/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":540,"Cost":321,"Date":"12/18/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":48,"Cost":38,"Date":"12/20/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":360,"Cost":186,"Date":"12/20/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":305,"Cost":220,"Date":"12/21/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":285,"Cost":149,"Date":"1/9/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":480,"Cost":445,"Date":"2/5/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":263,"Cost":200,"Date":"2/16/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":997,"Cost":621,"Date":"2/16/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":687,"Cost":383,"Date":"2/18/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":904,"Cost":609,"Date":"2/22/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":712,"Cost":431,"Date":"2/25/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":283,"Cost":174,"Date":"3/8/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":947,"Cost":535,"Date":"4/2/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":498,"Cost":259,"Date":"4/3/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":548,"Cost":499,"Date":"4/9/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":992,"Cost":669,"Date":"4/10/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":447,"Cost":280,"Date":"4/19/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":829,"Cost":629,"Date":"5/17/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":440,"Cost":364,"Date":"5/22/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":215,"Cost":170,"Date":"6/20/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":902,"Cost":651,"Date":"7/1/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":16,"Cost":8,"Date":"7/4/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":62,"Cost":40,"Date":"7/8/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":490,"Cost":465,"Date":"7/9/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":156,"Cost":125,"Date":"7/14/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":955,"Cost":735,"Date":"7/19/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":619,"Cost":329,"Date":"8/1/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":965,"Cost":782,"Date":"8/6/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":346,"Cost":246,"Date":"8/7/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":999,"Cost":923,"Date":"8/22/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":973,"Cost":875,"Date":"8/31/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":64,"Cost":49,"Date":"9/1/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":350,"Cost":324,"Date":"9/1/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":225,"Cost":214,"Date":"9/17/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":897,"Cost":630,"Date":"9/29/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":691,"Cost":602,"Date":"11/7/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":485,"Cost":301,"Date":"11/26/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":377,"Cost":214,"Date":"11/27/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":891,"Cost":634,"Date":"12/5/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":557,"Cost":466,"Date":"12/26/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":814,"Cost":582,"Date":"12/31/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":559,"Cost":318,"Date":"1/20/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":887,"Cost":645,"Date":"2/2/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":927,"Cost":531,"Date":"2/8/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":384,"Cost":307,"Date":"2/27/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":906,"Cost":673,"Date":"3/1/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":706,"Cost":602,"Date":"3/1/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":849,"Cost":497,"Date":"3/19/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":459,"Cost":387,"Date":"3/28/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":705,"Cost":554,"Date":"5/21/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":936,"Cost":470,"Date":"7/21/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":88,"Cost":80,"Date":"8/5/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":133,"Cost":68,"Date":"8/12/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":111,"Cost":101,"Date":"8/21/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":758,"Cost":462,"Date":"8/23/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":667,"Cost":469,"Date":"9/3/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":123,"Cost":98,"Date":"9/5/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":196,"Cost":150,"Date":"10/6/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":694,"Cost":408,"Date":"10/19/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":901,"Cost":588,"Date":"11/15/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":892,"Cost":702,"Date":"12/8/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":140,"Cost":100,"Date":"1/8/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":135,"Cost":113,"Date":"1/14/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":825,"Cost":687,"Date":"1/19/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":85,"Cost":64,"Date":"1/28/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":6,"Cost":4,"Date":"1/31/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":59,"Cost":47,"Date":"3/27/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":583,"Cost":369,"Date":"4/20/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":782,"Cost":421,"Date":"4/24/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":484,"Cost":424,"Date":"4/28/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":782,"Cost":653,"Date":"5/15/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":256,"Cost":147,"Date":"5/16/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":339,"Cost":300,"Date":"5/18/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":596,"Cost":339,"Date":"6/2/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":799,"Cost":590,"Date":"6/3/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":75,"Cost":49,"Date":"6/5/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":997,"Cost":772,"Date":"6/7/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":411,"Cost":280,"Date":"6/14/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":273,"Cost":176,"Date":"6/20/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":658,"Cost":464,"Date":"6/24/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":289,"Cost":247,"Date":"7/4/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":314,"Cost":236,"Date":"7/9/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":474,"Cost":360,"Date":"7/12/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":655,"Cost":349,"Date":"8/14/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":743,"Cost":672,"Date":"8/16/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":977,"Cost":603,"Date":"8/23/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":854,"Cost":789,"Date":"9/2/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":121,"Cost":86,"Date":"9/3/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":189,"Cost":136,"Date":"9/16/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":58,"Cost":47,"Date":"10/4/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":342,"Cost":254,"Date":"11/1/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":312,"Cost":227,"Date":"11/2/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":771,"Cost":633,"Date":"12/17/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":928,"Cost":742,"Date":"2/10/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":156,"Cost":115,"Date":"2/28/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":395,"Cost":352,"Date":"3/4/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":815,"Cost":552,"Date":"3/9/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":821,"Cost":540,"Date":"3/9/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":182,"Cost":150,"Date":"3/11/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":821,"Cost":675,"Date":"3/17/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":18,"Cost":15,"Date":"3/17/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":281,"Cost":262,"Date":"3/23/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":757,"Cost":445,"Date":"4/1/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":175,"Cost":97,"Date":"5/7/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":134,"Cost":74,"Date":"5/10/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":731,"Cost":429,"Date":"5/20/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":435,"Cost":376,"Date":"6/2/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":294,"Cost":254,"Date":"6/11/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":359,"Cost":326,"Date":"6/16/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":864,"Cost":457,"Date":"6/16/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":799,"Cost":637,"Date":"7/10/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":578,"Cost":433,"Date":"7/11/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":73,"Cost":55,"Date":"8/28/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":99,"Cost":82,"Date":"8/29/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":183,"Cost":173,"Date":"8/31/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":563,"Cost":334,"Date":"9/8/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":825,"Cost":469,"Date":"9/13/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":23,"Cost":20,"Date":"9/14/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":479,"Cost":440,"Date":"9/19/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":289,"Cost":225,"Date":"9/25/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":628,"Cost":418,"Date":"10/4/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":518,"Cost":426,"Date":"10/10/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":394,"Cost":371,"Date":"10/17/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":906,"Cost":676,"Date":"10/28/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":241,"Cost":178,"Date":"10/30/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":739,"Cost":600,"Date":"11/1/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":185,"Cost":105,"Date":"11/15/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":396,"Cost":358,"Date":"11/25/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":187,"Cost":120,"Date":"1/10/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":231,"Cost":121,"Date":"1/14/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":687,"Cost":559,"Date":"1/20/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":204,"Cost":138,"Date":"2/8/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":415,"Cost":324,"Date":"2/25/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":414,"Cost":301,"Date":"3/7/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":185,"Cost":158,"Date":"3/14/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":763,"Cost":454,"Date":"3/27/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":912,"Cost":852,"Date":"4/5/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":683,"Cost":587,"Date":"4/14/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":95,"Cost":73,"Date":"5/3/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":258,"Cost":239,"Date":"5/9/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":407,"Cost":346,"Date":"5/15/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":396,"Cost":235,"Date":"5/25/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":63,"Cost":49,"Date":"5/26/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":966,"Cost":717,"Date":"5/31/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":570,"Cost":442,"Date":"7/27/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":392,"Cost":352,"Date":"9/17/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":967,"Cost":559,"Date":"10/6/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":3,"Cost":2,"Date":"10/8/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":481,"Cost":369,"Date":"10/26/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":149,"Cost":125,"Date":"11/16/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":907,"Cost":605,"Date":"11/18/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Nova","Country":"Australia","Sale":325,"Cost":281,"Date":"12/1/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":536,"Cost":304,"Date":"2/9/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":596,"Cost":417,"Date":"2/11/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":459,"Cost":253,"Date":"3/10/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":191,"Cost":110,"Date":"3/16/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":580,"Cost":463,"Date":"3/18/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":990,"Cost":643,"Date":"3/20/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":273,"Cost":256,"Date":"3/26/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":605,"Cost":503,"Date":"6/2/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":966,"Cost":877,"Date":"6/10/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":56,"Cost":29,"Date":"6/16/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":770,"Cost":447,"Date":"6/25/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":249,"Cost":201,"Date":"7/19/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":673,"Cost":478,"Date":"7/21/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":246,"Cost":211,"Date":"7/25/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":167,"Cost":102,"Date":"8/4/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":961,"Cost":852,"Date":"9/2/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":202,"Cost":148,"Date":"9/4/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":753,"Cost":454,"Date":"9/19/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":710,"Cost":528,"Date":"9/29/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":180,"Cost":105,"Date":"10/2/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":190,"Cost":105,"Date":"10/15/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":238,"Cost":159,"Date":"10/30/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":909,"Cost":463,"Date":"11/9/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":380,"Cost":304,"Date":"11/23/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":54,"Cost":39,"Date":"11/30/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":680,"Cost":636,"Date":"12/8/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":383,"Cost":203,"Date":"12/11/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":266,"Cost":184,"Date":"1/15/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":607,"Cost":445,"Date":"1/24/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":891,"Cost":830,"Date":"2/3/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":167,"Cost":98,"Date":"2/4/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":637,"Cost":396,"Date":"3/9/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":778,"Cost":723,"Date":"3/12/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":269,"Cost":140,"Date":"4/19/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":987,"Cost":581,"Date":"5/3/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":555,"Cost":280,"Date":"5/4/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":740,"Cost":607,"Date":"6/8/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":432,"Cost":293,"Date":"6/26/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":368,"Cost":350,"Date":"7/4/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":523,"Cost":436,"Date":"7/13/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":52,"Cost":34,"Date":"8/8/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":643,"Cost":533,"Date":"8/26/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":362,"Cost":252,"Date":"9/2/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":181,"Cost":92,"Date":"9/29/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":400,"Cost":309,"Date":"10/12/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":563,"Cost":342,"Date":"11/2/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":297,"Cost":167,"Date":"11/4/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":95,"Cost":59,"Date":"11/7/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":202,"Cost":131,"Date":"12/1/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":601,"Cost":400,"Date":"12/4/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":521,"Cost":291,"Date":"12/7/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":146,"Cost":125,"Date":"12/18/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":773,"Cost":579,"Date":"12/20/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":583,"Cost":357,"Date":"12/20/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":829,"Cost":555,"Date":"12/21/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":614,"Cost":378,"Date":"1/9/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":831,"Cost":605,"Date":"2/5/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":382,"Cost":262,"Date":"2/16/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":366,"Cost":299,"Date":"2/16/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":87,"Cost":71,"Date":"2/18/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":101,"Cost":68,"Date":"2/22/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":561,"Cost":335,"Date":"2/25/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":977,"Cost":677,"Date":"3/8/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":633,"Cost":442,"Date":"4/2/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":404,"Cost":306,"Date":"4/3/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":108,"Cost":74,"Date":"4/9/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":403,"Cost":274,"Date":"4/10/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":70,"Cost":40,"Date":"4/19/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":531,"Cost":419,"Date":"5/17/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":975,"Cost":666,"Date":"5/22/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":820,"Cost":756,"Date":"6/20/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":741,"Cost":601,"Date":"7/1/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":237,"Cost":151,"Date":"7/4/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":932,"Cost":809,"Date":"7/8/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":975,"Cost":878,"Date":"7/9/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":673,"Cost":572,"Date":"7/14/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":456,"Cost":393,"Date":"7/19/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":685,"Cost":624,"Date":"8/1/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":213,"Cost":191,"Date":"8/6/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":689,"Cost":540,"Date":"8/7/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":817,"Cost":583,"Date":"8/22/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":924,"Cost":843,"Date":"8/31/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":773,"Cost":589,"Date":"9/1/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":159,"Cost":128,"Date":"9/1/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":426,"Cost":258,"Date":"9/17/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":887,"Cost":694,"Date":"9/29/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":486,"Cost":298,"Date":"11/7/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":197,"Cost":124,"Date":"11/26/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":941,"Cost":502,"Date":"11/27/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":263,"Cost":173,"Date":"12/5/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":808,"Cost":469,"Date":"12/26/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":599,"Cost":487,"Date":"12/31/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":742,"Cost":480,"Date":"1/20/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":101,"Cost":94,"Date":"2/2/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":245,"Cost":137,"Date":"2/8/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":174,"Cost":110,"Date":"2/27/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":629,"Cost":415,"Date":"3/1/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":821,"Cost":776,"Date":"3/1/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":565,"Cost":509,"Date":"3/19/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":904,"Cost":494,"Date":"3/28/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":114,"Cost":96,"Date":"5/21/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":405,"Cost":333,"Date":"7/21/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":792,"Cost":589,"Date":"8/5/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":668,"Cost":340,"Date":"8/12/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":647,"Cost":479,"Date":"8/21/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":678,"Cost":596,"Date":"8/23/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":991,"Cost":556,"Date":"9/3/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":697,"Cost":463,"Date":"9/5/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":813,"Cost":630,"Date":"10/6/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":577,"Cost":536,"Date":"10/19/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":643,"Cost":609,"Date":"11/15/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":364,"Cost":242,"Date":"12/8/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":795,"Cost":686,"Date":"1/8/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":191,"Cost":161,"Date":"1/14/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":186,"Cost":168,"Date":"1/19/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":905,"Cost":717,"Date":"1/28/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":246,"Cost":136,"Date":"1/31/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":328,"Cost":229,"Date":"3/27/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":7,"Cost":7,"Date":"4/20/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":37,"Cost":35,"Date":"4/24/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":606,"Cost":564,"Date":"4/28/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":20,"Cost":12,"Date":"5/15/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":218,"Cost":189,"Date":"5/16/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":593,"Cost":442,"Date":"5/18/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":337,"Cost":230,"Date":"6/2/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":216,"Cost":206,"Date":"6/3/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":765,"Cost":589,"Date":"6/5/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":152,"Cost":83,"Date":"6/7/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":950,"Cost":731,"Date":"6/14/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":969,"Cost":603,"Date":"6/20/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":764,"Cost":413,"Date":"6/24/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":38,"Cost":32,"Date":"7/4/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":140,"Cost":80,"Date":"7/9/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":507,"Cost":271,"Date":"7/12/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":676,"Cost":528,"Date":"8/14/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":181,"Cost":146,"Date":"8/16/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":872,"Cost":698,"Date":"8/23/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":96,"Cost":50,"Date":"9/2/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":272,"Cost":245,"Date":"9/3/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":705,"Cost":471,"Date":"9/16/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":139,"Cost":118,"Date":"10/4/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":437,"Cost":230,"Date":"11/1/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":550,"Cost":499,"Date":"11/2/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":29,"Cost":17,"Date":"12/17/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":285,"Cost":186,"Date":"2/10/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":587,"Cost":320,"Date":"2/28/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":507,"Cost":480,"Date":"3/4/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":582,"Cost":361,"Date":"3/9/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":742,"Cost":677,"Date":"3/9/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":438,"Cost":388,"Date":"3/11/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":321,"Cost":256,"Date":"3/17/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":55,"Cost":49,"Date":"3/17/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":256,"Cost":130,"Date":"3/23/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":452,"Cost":397,"Date":"4/1/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":617,"Cost":359,"Date":"5/7/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":17,"Cost":15,"Date":"5/10/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":339,"Cost":291,"Date":"5/20/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":570,"Cost":456,"Date":"6/2/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":279,"Cost":189,"Date":"6/11/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":348,"Cost":326,"Date":"6/16/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":871,"Cost":778,"Date":"6/16/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":118,"Cost":103,"Date":"7/10/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":574,"Cost":523,"Date":"7/11/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":72,"Cost":62,"Date":"8/28/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":554,"Cost":442,"Date":"8/29/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":870,"Cost":601,"Date":"8/31/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":966,"Cost":754,"Date":"9/8/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":628,"Cost":481,"Date":"9/13/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":266,"Cost":211,"Date":"9/14/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":645,"Cost":490,"Date":"9/19/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":962,"Cost":738,"Date":"9/25/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":670,"Cost":598,"Date":"10/4/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":955,"Cost":775,"Date":"10/10/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":997,"Cost":720,"Date":"10/17/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":678,"Cost":544,"Date":"10/28/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":436,"Cost":292,"Date":"10/30/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":989,"Cost":646,"Date":"11/1/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":955,"Cost":540,"Date":"11/15/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":716,"Cost":375,"Date":"11/25/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":858,"Cost":696,"Date":"1/10/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":406,"Cost":308,"Date":"1/14/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":261,"Cost":169,"Date":"1/20/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":928,"Cost":593,"Date":"2/8/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":428,"Cost":330,"Date":"2/25/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":183,"Cost":146,"Date":"3/7/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":226,"Cost":132,"Date":"3/14/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":917,"Cost":729,"Date":"3/27/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":207,"Cost":117,"Date":"4/5/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":319,"Cost":168,"Date":"4/14/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":273,"Cost":232,"Date":"5/3/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":734,"Cost":402,"Date":"5/9/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":390,"Cost":341,"Date":"5/15/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":850,"Cost":558,"Date":"5/25/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":545,"Cost":464,"Date":"5/26/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":472,"Cost":316,"Date":"5/31/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":170,"Cost":89,"Date":"7/27/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":467,"Cost":296,"Date":"9/17/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":470,"Cost":291,"Date":"10/6/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":896,"Cost":800,"Date":"10/8/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":983,"Cost":651,"Date":"10/26/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":505,"Cost":336,"Date":"11/16/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":54,"Cost":30,"Date":"11/18/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Sellpy","Country":"Australia","Sale":481,"Cost":410,"Date":"12/1/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":423,"Cost":216,"Date":"2/9/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":900,"Cost":503,"Date":"2/11/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":263,"Cost":227,"Date":"3/10/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":647,"Cost":485,"Date":"3/16/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":556,"Cost":527,"Date":"3/18/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":142,"Cost":106,"Date":"3/20/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":630,"Cost":536,"Date":"3/26/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":456,"Cost":337,"Date":"6/2/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":712,"Cost":535,"Date":"6/10/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":996,"Cost":851,"Date":"6/16/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":574,"Cost":522,"Date":"6/25/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":567,"Cost":360,"Date":"7/19/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":281,"Cost":181,"Date":"7/21/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":674,"Cost":366,"Date":"7/25/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":769,"Cost":604,"Date":"8/4/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":145,"Cost":79,"Date":"9/2/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":930,"Cost":858,"Date":"9/4/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":579,"Cost":367,"Date":"9/19/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":759,"Cost":452,"Date":"9/29/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":507,"Cost":338,"Date":"10/2/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":545,"Cost":340,"Date":"10/15/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":550,"Cost":318,"Date":"10/30/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":807,"Cost":669,"Date":"11/9/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":169,"Cost":155,"Date":"11/23/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":589,"Cost":539,"Date":"11/30/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":248,"Cost":216,"Date":"12/8/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":735,"Cost":609,"Date":"12/11/2018"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":176,"Cost":152,"Date":"1/15/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":386,"Cost":326,"Date":"1/24/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":447,"Cost":299,"Date":"2/3/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":173,"Cost":94,"Date":"2/4/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":684,"Cost":446,"Date":"3/9/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":369,"Cost":301,"Date":"3/12/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":121,"Cost":69,"Date":"4/19/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":668,"Cost":483,"Date":"5/3/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":340,"Cost":253,"Date":"5/4/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":543,"Cost":359,"Date":"6/8/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":182,"Cost":112,"Date":"6/26/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":253,"Cost":239,"Date":"7/4/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":712,"Cost":387,"Date":"7/13/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":964,"Cost":569,"Date":"8/8/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":878,"Cost":800,"Date":"8/26/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":212,"Cost":175,"Date":"9/2/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":152,"Cost":140,"Date":"9/29/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":750,"Cost":567,"Date":"10/12/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":797,"Cost":620,"Date":"11/2/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":9,"Cost":6,"Date":"11/4/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":242,"Cost":192,"Date":"11/7/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":650,"Cost":360,"Date":"12/1/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":468,"Cost":359,"Date":"12/4/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":238,"Cost":150,"Date":"12/7/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":668,"Cost":375,"Date":"12/18/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":403,"Cost":311,"Date":"12/20/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":176,"Cost":101,"Date":"12/20/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":721,"Cost":588,"Date":"12/21/2019"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":376,"Cost":301,"Date":"1/9/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":791,"Cost":566,"Date":"2/5/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":963,"Cost":520,"Date":"2/16/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":191,"Cost":169,"Date":"2/16/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":626,"Cost":419,"Date":"2/18/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":793,"Cost":598,"Date":"2/22/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":755,"Cost":639,"Date":"2/25/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":210,"Cost":171,"Date":"3/8/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":837,"Cost":741,"Date":"4/2/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":346,"Cost":209,"Date":"4/3/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":727,"Cost":456,"Date":"4/9/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":332,"Cost":290,"Date":"4/10/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":243,"Cost":197,"Date":"4/19/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":948,"Cost":595,"Date":"5/17/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":632,"Cost":596,"Date":"5/22/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":12,"Cost":8,"Date":"6/20/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":787,"Cost":606,"Date":"7/1/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":510,"Cost":348,"Date":"7/4/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":917,"Cost":499,"Date":"7/8/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":701,"Cost":540,"Date":"7/9/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":930,"Cost":635,"Date":"7/14/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":146,"Cost":119,"Date":"7/19/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":214,"Cost":197,"Date":"8/1/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":132,"Cost":102,"Date":"8/6/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":133,"Cost":99,"Date":"8/7/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":413,"Cost":323,"Date":"8/22/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":644,"Cost":563,"Date":"8/31/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":698,"Cost":605,"Date":"9/1/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":670,"Cost":423,"Date":"9/1/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":300,"Cost":262,"Date":"9/17/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":807,"Cost":653,"Date":"9/29/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":450,"Cost":245,"Date":"11/7/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":107,"Cost":56,"Date":"11/26/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":879,"Cost":667,"Date":"11/27/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":322,"Cost":239,"Date":"12/5/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":153,"Cost":86,"Date":"12/26/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":306,"Cost":167,"Date":"12/31/2020"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":399,"Cost":322,"Date":"1/20/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":989,"Cost":605,"Date":"2/2/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":123,"Cost":92,"Date":"2/8/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":807,"Cost":440,"Date":"2/27/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":276,"Cost":201,"Date":"3/1/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":624,"Cost":540,"Date":"3/1/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":22,"Cost":20,"Date":"3/19/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":447,"Cost":246,"Date":"3/28/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":655,"Cost":452,"Date":"5/21/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":224,"Cost":147,"Date":"7/21/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":527,"Cost":439,"Date":"8/5/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":940,"Cost":663,"Date":"8/12/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":816,"Cost":596,"Date":"8/21/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":866,"Cost":799,"Date":"8/23/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":761,"Cost":496,"Date":"9/3/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":265,"Cost":239,"Date":"9/5/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":905,"Cost":609,"Date":"10/6/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":9,"Cost":8,"Date":"10/19/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":19,"Cost":15,"Date":"11/15/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":146,"Cost":110,"Date":"12/8/2021"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":784,"Cost":693,"Date":"1/8/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":100,"Cost":71,"Date":"1/14/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":676,"Cost":411,"Date":"1/19/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":461,"Cost":391,"Date":"1/28/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":225,"Cost":186,"Date":"1/31/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":395,"Cost":205,"Date":"3/27/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":773,"Cost":572,"Date":"4/20/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":820,"Cost":671,"Date":"4/24/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":268,"Cost":203,"Date":"4/28/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":150,"Cost":99,"Date":"5/15/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":166,"Cost":106,"Date":"5/16/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":945,"Cost":749,"Date":"5/18/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":903,"Cost":536,"Date":"6/2/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":902,"Cost":495,"Date":"6/3/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":670,"Cost":382,"Date":"6/5/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":357,"Cost":229,"Date":"6/7/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":325,"Cost":210,"Date":"6/14/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":208,"Cost":159,"Date":"6/20/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":520,"Cost":341,"Date":"6/24/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":72,"Cost":62,"Date":"7/4/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":66,"Cost":61,"Date":"7/9/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":403,"Cost":383,"Date":"7/12/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":483,"Cost":247,"Date":"8/14/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":530,"Cost":326,"Date":"8/16/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":526,"Cost":428,"Date":"8/23/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":435,"Cost":332,"Date":"9/2/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":259,"Cost":171,"Date":"9/3/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":622,"Cost":440,"Date":"9/16/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":590,"Cost":440,"Date":"10/4/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":790,"Cost":747,"Date":"11/1/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":210,"Cost":137,"Date":"11/2/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":895,"Cost":575,"Date":"12/17/2022"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":374,"Cost":298,"Date":"2/10/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":758,"Cost":634,"Date":"2/28/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":634,"Cost":574,"Date":"3/4/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":961,"Cost":866,"Date":"3/9/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":881,"Cost":639,"Date":"3/9/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":217,"Cost":141,"Date":"3/11/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":41,"Cost":32,"Date":"3/17/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":358,"Cost":218,"Date":"3/17/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":220,"Cost":124,"Date":"3/23/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":863,"Cost":790,"Date":"4/1/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":372,"Cost":218,"Date":"5/7/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":705,"Cost":573,"Date":"5/10/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":710,"Cost":514,"Date":"5/20/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":951,"Cost":513,"Date":"6/2/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":647,"Cost":586,"Date":"6/11/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":347,"Cost":249,"Date":"6/16/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":40,"Cost":35,"Date":"6/16/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":30,"Cost":18,"Date":"7/10/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":220,"Cost":131,"Date":"7/11/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":90,"Cost":64,"Date":"8/28/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":31,"Cost":29,"Date":"8/29/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":989,"Cost":537,"Date":"8/31/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":926,"Cost":704,"Date":"9/8/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":633,"Cost":421,"Date":"9/13/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":88,"Cost":73,"Date":"9/14/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":234,"Cost":192,"Date":"9/19/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":541,"Cost":341,"Date":"9/25/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":331,"Cost":232,"Date":"10/4/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":662,"Cost":484,"Date":"10/10/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":366,"Cost":202,"Date":"10/17/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":394,"Cost":344,"Date":"10/28/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":357,"Cost":197,"Date":"10/30/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":793,"Cost":459,"Date":"11/1/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":116,"Cost":93,"Date":"11/15/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":700,"Cost":473,"Date":"11/25/2023"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":422,"Cost":243,"Date":"1/10/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":163,"Cost":109,"Date":"1/14/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":374,"Cost":259,"Date":"1/20/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":255,"Cost":140,"Date":"2/8/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":914,"Cost":752,"Date":"2/25/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":639,"Cost":466,"Date":"3/7/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":14,"Cost":8,"Date":"3/14/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":83,"Cost":74,"Date":"3/27/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":825,"Cost":621,"Date":"4/5/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":36,"Cost":24,"Date":"4/14/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":849,"Cost":487,"Date":"5/3/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":373,"Cost":332,"Date":"5/9/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":450,"Cost":226,"Date":"5/15/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":756,"Cost":497,"Date":"5/25/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":436,"Cost":355,"Date":"5/26/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":514,"Cost":468,"Date":"5/31/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":679,"Cost":630,"Date":"7/27/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":391,"Cost":224,"Date":"9/17/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":915,"Cost":596,"Date":"10/6/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":945,"Cost":511,"Date":"10/8/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":354,"Cost":246,"Date":"10/26/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":860,"Cost":609,"Date":"11/16/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":872,"Cost":471,"Date":"11/18/2024"},{"Store":"Chadstone Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":992,"Cost":671,"Date":"12/1/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":878,"Cost":750,"Date":"2/9/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":180,"Cost":163,"Date":"2/11/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":851,"Cost":599,"Date":"3/10/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":363,"Cost":314,"Date":"3/16/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":4,"Cost":3,"Date":"3/18/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":793,"Cost":617,"Date":"3/20/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":151,"Cost":128,"Date":"3/26/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":565,"Cost":464,"Date":"6/2/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":400,"Cost":341,"Date":"6/10/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":846,"Cost":464,"Date":"6/16/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":242,"Cost":173,"Date":"6/25/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":182,"Cost":154,"Date":"7/19/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":53,"Cost":27,"Date":"7/21/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":21,"Cost":14,"Date":"7/25/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":285,"Cost":153,"Date":"8/4/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":433,"Cost":220,"Date":"9/2/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":687,"Cost":417,"Date":"9/4/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":672,"Cost":344,"Date":"9/19/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":518,"Cost":449,"Date":"9/29/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":56,"Cost":28,"Date":"10/2/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":994,"Cost":588,"Date":"10/15/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":210,"Cost":155,"Date":"10/30/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":382,"Cost":293,"Date":"11/9/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":393,"Cost":304,"Date":"11/23/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":573,"Cost":539,"Date":"11/30/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":163,"Cost":138,"Date":"12/8/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":743,"Cost":551,"Date":"12/11/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":782,"Cost":609,"Date":"1/15/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":21,"Cost":14,"Date":"1/24/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":627,"Cost":373,"Date":"2/3/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":743,"Cost":445,"Date":"2/4/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":916,"Cost":603,"Date":"3/9/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":518,"Cost":343,"Date":"3/12/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":333,"Cost":174,"Date":"4/19/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":257,"Cost":172,"Date":"5/3/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":512,"Cost":428,"Date":"5/4/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":763,"Cost":477,"Date":"6/8/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":299,"Cost":195,"Date":"6/26/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":953,"Cost":843,"Date":"7/4/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":744,"Cost":639,"Date":"7/13/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":899,"Cost":621,"Date":"8/8/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":736,"Cost":654,"Date":"8/26/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":273,"Cost":229,"Date":"9/2/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":550,"Cost":431,"Date":"9/29/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":166,"Cost":150,"Date":"10/12/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":83,"Cost":73,"Date":"11/2/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":302,"Cost":234,"Date":"11/4/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":78,"Cost":45,"Date":"11/7/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":292,"Cost":184,"Date":"12/1/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":552,"Cost":488,"Date":"12/4/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":211,"Cost":130,"Date":"12/7/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":30,"Cost":17,"Date":"12/18/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":301,"Cost":183,"Date":"12/20/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":501,"Cost":342,"Date":"12/20/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":82,"Cost":77,"Date":"12/21/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":5,"Cost":2,"Date":"1/9/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":139,"Cost":130,"Date":"2/5/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":799,"Cost":473,"Date":"2/16/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":628,"Cost":470,"Date":"2/16/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":227,"Cost":144,"Date":"2/18/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":579,"Cost":370,"Date":"2/22/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":330,"Cost":298,"Date":"2/25/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":872,"Cost":789,"Date":"3/8/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":328,"Cost":308,"Date":"4/2/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":505,"Cost":464,"Date":"4/3/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":273,"Cost":188,"Date":"4/9/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":975,"Cost":751,"Date":"4/10/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":297,"Cost":175,"Date":"4/19/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":457,"Cost":317,"Date":"5/17/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":980,"Cost":746,"Date":"5/22/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":260,"Cost":199,"Date":"6/20/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":248,"Cost":139,"Date":"7/1/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":177,"Cost":115,"Date":"7/4/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":158,"Cost":87,"Date":"7/8/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":103,"Cost":64,"Date":"7/9/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":446,"Cost":236,"Date":"7/14/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":223,"Cost":160,"Date":"7/19/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":751,"Cost":607,"Date":"8/1/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":628,"Cost":445,"Date":"8/6/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":621,"Cost":428,"Date":"8/7/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":797,"Cost":570,"Date":"8/22/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":405,"Cost":235,"Date":"8/31/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":602,"Cost":565,"Date":"9/1/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":993,"Cost":768,"Date":"9/1/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":63,"Cost":60,"Date":"9/17/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":823,"Cost":626,"Date":"9/29/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":354,"Cost":290,"Date":"11/7/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":665,"Cost":621,"Date":"11/26/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":255,"Cost":132,"Date":"11/27/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":22,"Cost":11,"Date":"12/5/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":357,"Cost":312,"Date":"12/26/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":5,"Cost":3,"Date":"12/31/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":920,"Cost":502,"Date":"1/20/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":623,"Cost":527,"Date":"2/2/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":569,"Cost":424,"Date":"2/8/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":871,"Cost":530,"Date":"2/27/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":503,"Cost":270,"Date":"3/1/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":500,"Cost":453,"Date":"3/1/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":563,"Cost":381,"Date":"3/19/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":560,"Cost":395,"Date":"3/28/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":988,"Cost":922,"Date":"5/21/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":646,"Cost":493,"Date":"7/21/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":245,"Cost":147,"Date":"8/5/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":115,"Cost":104,"Date":"8/12/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":251,"Cost":225,"Date":"8/21/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":741,"Cost":502,"Date":"8/23/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":317,"Cost":211,"Date":"9/3/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":643,"Cost":435,"Date":"9/5/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":726,"Cost":591,"Date":"10/6/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":760,"Cost":652,"Date":"10/19/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":693,"Cost":364,"Date":"11/15/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":409,"Cost":389,"Date":"12/8/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":768,"Cost":622,"Date":"1/8/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":791,"Cost":455,"Date":"1/14/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":52,"Cost":49,"Date":"1/19/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":721,"Cost":683,"Date":"1/28/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":725,"Cost":440,"Date":"1/31/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":999,"Cost":887,"Date":"3/27/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":50,"Cost":41,"Date":"4/20/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":196,"Cost":137,"Date":"4/24/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":977,"Cost":927,"Date":"4/28/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":79,"Cost":59,"Date":"5/15/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":879,"Cost":613,"Date":"5/16/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":750,"Cost":622,"Date":"5/18/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":994,"Cost":864,"Date":"6/2/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":668,"Cost":393,"Date":"6/3/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":711,"Cost":386,"Date":"6/5/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":328,"Cost":167,"Date":"6/7/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":918,"Cost":516,"Date":"6/14/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":453,"Cost":378,"Date":"6/20/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":362,"Cost":243,"Date":"6/24/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":631,"Cost":388,"Date":"7/4/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":811,"Cost":463,"Date":"7/9/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":756,"Cost":572,"Date":"7/12/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":70,"Cost":39,"Date":"8/14/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":697,"Cost":659,"Date":"8/16/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":748,"Cost":456,"Date":"8/23/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":514,"Cost":283,"Date":"9/2/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":991,"Cost":660,"Date":"9/3/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":301,"Cost":231,"Date":"9/16/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":8,"Cost":4,"Date":"10/4/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":614,"Cost":387,"Date":"11/1/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":389,"Cost":237,"Date":"11/2/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":850,"Cost":549,"Date":"12/17/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":255,"Cost":155,"Date":"2/10/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":820,"Cost":686,"Date":"2/28/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":939,"Cost":531,"Date":"3/4/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":884,"Cost":545,"Date":"3/9/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":648,"Cost":549,"Date":"3/9/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":513,"Cost":359,"Date":"3/11/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":636,"Cost":406,"Date":"3/17/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":734,"Cost":410,"Date":"3/17/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":944,"Cost":685,"Date":"3/23/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":75,"Cost":38,"Date":"4/1/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":581,"Cost":311,"Date":"5/7/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":236,"Cost":163,"Date":"5/10/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":983,"Cost":931,"Date":"5/20/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":198,"Cost":163,"Date":"6/2/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":307,"Cost":289,"Date":"6/11/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":552,"Cost":376,"Date":"6/16/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":53,"Cost":47,"Date":"6/16/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":111,"Cost":73,"Date":"7/10/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":232,"Cost":119,"Date":"7/11/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":720,"Cost":472,"Date":"8/28/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":727,"Cost":681,"Date":"8/29/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":117,"Cost":94,"Date":"8/31/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":533,"Cost":280,"Date":"9/8/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":435,"Cost":225,"Date":"9/13/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":580,"Cost":328,"Date":"9/14/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":457,"Cost":381,"Date":"9/19/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":241,"Cost":221,"Date":"9/25/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":764,"Cost":525,"Date":"10/4/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":408,"Cost":371,"Date":"10/10/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":789,"Cost":677,"Date":"10/17/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":870,"Cost":527,"Date":"10/28/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":410,"Cost":242,"Date":"10/30/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":985,"Cost":525,"Date":"11/1/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":227,"Cost":175,"Date":"11/15/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":101,"Cost":61,"Date":"11/25/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":498,"Cost":289,"Date":"1/10/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":574,"Cost":304,"Date":"1/14/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":569,"Cost":354,"Date":"1/20/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":873,"Cost":569,"Date":"2/8/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":986,"Cost":778,"Date":"2/25/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":751,"Cost":614,"Date":"3/7/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":565,"Cost":466,"Date":"3/14/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":440,"Cost":252,"Date":"3/27/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":93,"Cost":67,"Date":"4/5/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":1,"Cost":1,"Date":"4/14/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":531,"Cost":392,"Date":"5/3/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":272,"Cost":240,"Date":"5/9/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":867,"Cost":788,"Date":"5/15/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":748,"Cost":633,"Date":"5/25/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":321,"Cost":263,"Date":"5/26/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":932,"Cost":812,"Date":"5/31/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":151,"Cost":77,"Date":"7/27/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":793,"Cost":559,"Date":"9/17/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":899,"Cost":694,"Date":"10/6/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":358,"Cost":283,"Date":"10/8/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":583,"Cost":383,"Date":"10/26/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":40,"Cost":28,"Date":"11/16/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":84,"Cost":77,"Date":"11/18/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":14,"Cost":12,"Date":"12/1/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":254,"Cost":192,"Date":"2/9/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":968,"Cost":723,"Date":"2/11/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":99,"Cost":59,"Date":"3/10/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":826,"Cost":741,"Date":"3/16/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":980,"Cost":848,"Date":"3/18/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":584,"Cost":531,"Date":"3/20/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":317,"Cost":280,"Date":"3/26/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":737,"Cost":618,"Date":"6/2/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":782,"Cost":476,"Date":"6/10/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":854,"Cost":686,"Date":"6/16/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":657,"Cost":431,"Date":"6/25/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":703,"Cost":361,"Date":"7/19/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":377,"Cost":333,"Date":"7/21/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":404,"Cost":248,"Date":"7/25/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":364,"Cost":217,"Date":"8/4/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":245,"Cost":163,"Date":"9/2/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":78,"Cost":64,"Date":"9/4/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":944,"Cost":762,"Date":"9/19/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":811,"Cost":639,"Date":"9/29/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":952,"Cost":544,"Date":"10/2/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":656,"Cost":450,"Date":"10/15/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":570,"Cost":433,"Date":"10/30/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":918,"Cost":628,"Date":"11/9/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":417,"Cost":341,"Date":"11/23/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":282,"Cost":147,"Date":"11/30/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":387,"Cost":258,"Date":"12/8/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":968,"Cost":510,"Date":"12/11/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":298,"Cost":164,"Date":"1/15/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":149,"Cost":97,"Date":"1/24/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":316,"Cost":175,"Date":"2/3/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":181,"Cost":142,"Date":"2/4/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":128,"Cost":75,"Date":"3/9/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":799,"Cost":740,"Date":"3/12/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":220,"Cost":207,"Date":"4/19/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":585,"Cost":366,"Date":"5/3/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":721,"Cost":551,"Date":"5/4/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":315,"Cost":161,"Date":"6/8/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":593,"Cost":397,"Date":"6/26/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":799,"Cost":707,"Date":"7/4/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":436,"Cost":270,"Date":"7/13/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":996,"Cost":780,"Date":"8/8/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":929,"Cost":762,"Date":"8/26/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":935,"Cost":562,"Date":"9/2/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":826,"Cost":623,"Date":"9/29/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":771,"Cost":391,"Date":"10/12/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":618,"Cost":331,"Date":"11/2/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":857,"Cost":501,"Date":"11/4/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":164,"Cost":100,"Date":"11/7/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":481,"Cost":434,"Date":"12/1/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":552,"Cost":429,"Date":"12/4/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":588,"Cost":301,"Date":"12/7/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":229,"Cost":190,"Date":"12/18/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":93,"Cost":79,"Date":"12/20/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":217,"Cost":201,"Date":"12/20/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":547,"Cost":311,"Date":"12/21/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":87,"Cost":83,"Date":"1/9/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":898,"Cost":618,"Date":"2/5/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":197,"Cost":170,"Date":"2/16/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":713,"Cost":433,"Date":"2/16/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":123,"Cost":117,"Date":"2/18/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":170,"Cost":132,"Date":"2/22/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":900,"Cost":530,"Date":"2/25/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":432,"Cost":392,"Date":"3/8/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":303,"Cost":230,"Date":"4/2/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":145,"Cost":122,"Date":"4/3/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":691,"Cost":464,"Date":"4/9/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":111,"Cost":86,"Date":"4/10/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":998,"Cost":687,"Date":"4/19/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":952,"Cost":831,"Date":"5/17/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":236,"Cost":182,"Date":"5/22/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":798,"Cost":612,"Date":"6/20/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":692,"Cost":550,"Date":"7/1/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":253,"Cost":232,"Date":"7/4/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":518,"Cost":279,"Date":"7/8/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":378,"Cost":331,"Date":"7/9/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":333,"Cost":224,"Date":"7/14/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":566,"Cost":522,"Date":"7/19/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":260,"Cost":131,"Date":"8/1/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":447,"Cost":392,"Date":"8/6/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":884,"Cost":461,"Date":"8/7/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":414,"Cost":380,"Date":"8/22/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":824,"Cost":517,"Date":"8/31/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":6,"Cost":6,"Date":"9/1/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":292,"Cost":273,"Date":"9/1/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":993,"Cost":535,"Date":"9/17/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":604,"Cost":380,"Date":"9/29/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":653,"Cost":605,"Date":"11/7/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":856,"Cost":434,"Date":"11/26/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":892,"Cost":546,"Date":"11/27/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":112,"Cost":69,"Date":"12/5/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":986,"Cost":660,"Date":"12/26/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":40,"Cost":31,"Date":"12/31/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":68,"Cost":35,"Date":"1/20/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":725,"Cost":469,"Date":"2/2/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":511,"Cost":448,"Date":"2/8/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":970,"Cost":503,"Date":"2/27/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":773,"Cost":468,"Date":"3/1/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":576,"Cost":306,"Date":"3/1/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":915,"Cost":679,"Date":"3/19/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":368,"Cost":301,"Date":"3/28/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":895,"Cost":740,"Date":"5/21/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":368,"Cost":229,"Date":"7/21/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":982,"Cost":563,"Date":"8/5/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":888,"Cost":678,"Date":"8/12/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":9,"Cost":5,"Date":"8/21/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":937,"Cost":591,"Date":"8/23/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":876,"Cost":819,"Date":"9/3/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":227,"Cost":198,"Date":"9/5/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":292,"Cost":184,"Date":"10/6/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":545,"Cost":348,"Date":"10/19/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":788,"Cost":669,"Date":"11/15/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":424,"Cost":367,"Date":"12/8/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":257,"Cost":164,"Date":"1/8/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":317,"Cost":207,"Date":"1/14/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":378,"Cost":344,"Date":"1/19/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":125,"Cost":119,"Date":"1/28/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":520,"Cost":436,"Date":"1/31/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":614,"Cost":324,"Date":"3/27/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":996,"Cost":870,"Date":"4/20/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":21,"Cost":18,"Date":"4/24/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":226,"Cost":122,"Date":"4/28/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":462,"Cost":420,"Date":"5/15/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":567,"Cost":478,"Date":"5/16/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":317,"Cost":232,"Date":"5/18/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":500,"Cost":343,"Date":"6/2/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":959,"Cost":834,"Date":"6/3/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":658,"Cost":480,"Date":"6/5/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":25,"Cost":22,"Date":"6/7/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":443,"Cost":344,"Date":"6/14/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":105,"Cost":61,"Date":"6/20/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":952,"Cost":521,"Date":"6/24/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":781,"Cost":620,"Date":"7/4/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":683,"Cost":548,"Date":"7/9/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":252,"Cost":192,"Date":"7/12/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":731,"Cost":609,"Date":"8/14/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":348,"Cost":230,"Date":"8/16/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":347,"Cost":235,"Date":"8/23/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":784,"Cost":402,"Date":"9/2/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":124,"Cost":70,"Date":"9/3/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":78,"Cost":50,"Date":"9/16/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":459,"Cost":230,"Date":"10/4/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":930,"Cost":841,"Date":"11/1/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":939,"Cost":547,"Date":"11/2/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":376,"Cost":259,"Date":"12/17/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":57,"Cost":42,"Date":"2/10/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":627,"Cost":373,"Date":"2/28/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":35,"Cost":17,"Date":"3/4/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":1000,"Cost":799,"Date":"3/9/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":817,"Cost":555,"Date":"3/9/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":999,"Cost":842,"Date":"3/11/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":752,"Cost":632,"Date":"3/17/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":273,"Cost":192,"Date":"3/17/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":105,"Cost":87,"Date":"3/23/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":418,"Cost":293,"Date":"4/1/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":530,"Cost":410,"Date":"5/7/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":404,"Cost":283,"Date":"5/10/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":200,"Cost":102,"Date":"5/20/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":357,"Cost":245,"Date":"6/2/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":695,"Cost":640,"Date":"6/11/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":970,"Cost":653,"Date":"6/16/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":491,"Cost":302,"Date":"6/16/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":281,"Cost":265,"Date":"7/10/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":303,"Cost":184,"Date":"7/11/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":665,"Cost":382,"Date":"8/28/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":329,"Cost":279,"Date":"8/29/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":467,"Cost":348,"Date":"8/31/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":342,"Cost":185,"Date":"9/8/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":33,"Cost":18,"Date":"9/13/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":727,"Cost":621,"Date":"9/14/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":457,"Cost":409,"Date":"9/19/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":848,"Cost":460,"Date":"9/25/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":306,"Cost":176,"Date":"10/4/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":314,"Cost":278,"Date":"10/10/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":365,"Cost":284,"Date":"10/17/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":340,"Cost":299,"Date":"10/28/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":390,"Cost":277,"Date":"10/30/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":196,"Cost":120,"Date":"11/1/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":710,"Cost":407,"Date":"11/15/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":867,"Cost":661,"Date":"11/25/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":431,"Cost":254,"Date":"1/10/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":783,"Cost":625,"Date":"1/14/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":697,"Cost":518,"Date":"1/20/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":683,"Cost":562,"Date":"2/8/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":336,"Cost":257,"Date":"2/25/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":885,"Cost":578,"Date":"3/7/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":296,"Cost":230,"Date":"3/14/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":294,"Cost":182,"Date":"3/27/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":646,"Cost":446,"Date":"4/5/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":753,"Cost":532,"Date":"4/14/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":677,"Cost":447,"Date":"5/3/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":95,"Cost":62,"Date":"5/9/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":824,"Cost":684,"Date":"5/15/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":465,"Cost":264,"Date":"5/25/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":84,"Cost":44,"Date":"5/26/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":68,"Cost":49,"Date":"5/31/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":317,"Cost":298,"Date":"7/27/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":883,"Cost":632,"Date":"9/17/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":371,"Cost":248,"Date":"10/6/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":312,"Cost":228,"Date":"10/8/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":90,"Cost":63,"Date":"10/26/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":193,"Cost":141,"Date":"11/16/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":309,"Cost":211,"Date":"11/18/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"COS","Country":"Australia","Sale":253,"Cost":228,"Date":"12/1/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":490,"Cost":432,"Date":"2/9/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":84,"Cost":65,"Date":"2/11/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":591,"Cost":316,"Date":"3/10/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":794,"Cost":724,"Date":"3/16/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":916,"Cost":558,"Date":"3/18/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":4,"Cost":3,"Date":"3/20/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":341,"Cost":178,"Date":"3/26/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":23,"Cost":18,"Date":"6/2/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":655,"Cost":338,"Date":"6/10/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":565,"Cost":453,"Date":"6/16/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":808,"Cost":691,"Date":"6/25/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":819,"Cost":709,"Date":"7/19/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":668,"Cost":494,"Date":"7/21/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":330,"Cost":194,"Date":"7/25/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":836,"Cost":765,"Date":"8/4/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":366,"Cost":244,"Date":"9/2/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":382,"Cost":305,"Date":"9/4/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":909,"Cost":832,"Date":"9/19/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":440,"Cost":240,"Date":"9/29/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":526,"Cost":304,"Date":"10/2/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":990,"Cost":509,"Date":"10/15/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":121,"Cost":74,"Date":"10/30/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":506,"Cost":348,"Date":"11/9/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":86,"Cost":54,"Date":"11/23/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":405,"Cost":364,"Date":"11/30/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":67,"Cost":36,"Date":"12/8/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":915,"Cost":503,"Date":"12/11/2018"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":546,"Cost":311,"Date":"1/15/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":182,"Cost":169,"Date":"1/24/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":98,"Cost":63,"Date":"2/3/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":412,"Cost":321,"Date":"2/4/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":659,"Cost":573,"Date":"3/9/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":872,"Cost":689,"Date":"3/12/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":778,"Cost":645,"Date":"4/19/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":463,"Cost":289,"Date":"5/3/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":540,"Cost":477,"Date":"5/4/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":536,"Cost":293,"Date":"6/8/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":314,"Cost":161,"Date":"6/26/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":315,"Cost":229,"Date":"7/4/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":843,"Cost":753,"Date":"7/13/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":25,"Cost":17,"Date":"8/8/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":691,"Cost":605,"Date":"8/26/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":902,"Cost":802,"Date":"9/2/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":268,"Cost":224,"Date":"9/29/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":353,"Cost":182,"Date":"10/12/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":4,"Cost":3,"Date":"11/2/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":353,"Cost":294,"Date":"11/4/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":852,"Cost":572,"Date":"11/7/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":85,"Cost":78,"Date":"12/1/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":463,"Cost":387,"Date":"12/4/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":321,"Cost":284,"Date":"12/7/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":640,"Cost":424,"Date":"12/18/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":986,"Cost":775,"Date":"12/20/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":997,"Cost":656,"Date":"12/20/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":47,"Cost":28,"Date":"12/21/2019"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":389,"Cost":279,"Date":"1/9/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":977,"Cost":599,"Date":"2/5/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":726,"Cost":494,"Date":"2/16/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":723,"Cost":658,"Date":"2/16/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":202,"Cost":181,"Date":"2/18/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":104,"Cost":69,"Date":"2/22/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":860,"Cost":495,"Date":"2/25/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":808,"Cost":583,"Date":"3/8/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":780,"Cost":442,"Date":"4/2/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":566,"Cost":296,"Date":"4/3/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":897,"Cost":520,"Date":"4/9/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":313,"Cost":268,"Date":"4/10/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":802,"Cost":535,"Date":"4/19/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":529,"Cost":424,"Date":"5/17/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":670,"Cost":558,"Date":"5/22/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":928,"Cost":645,"Date":"6/20/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":5,"Cost":3,"Date":"7/1/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":895,"Cost":752,"Date":"7/4/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":765,"Cost":568,"Date":"7/8/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":745,"Cost":389,"Date":"7/9/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":359,"Cost":321,"Date":"7/14/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":268,"Cost":181,"Date":"7/19/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":685,"Cost":489,"Date":"8/1/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":874,"Cost":522,"Date":"8/6/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":494,"Cost":397,"Date":"8/7/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":296,"Cost":238,"Date":"8/22/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":192,"Cost":170,"Date":"8/31/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":390,"Cost":337,"Date":"9/1/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":125,"Cost":107,"Date":"9/1/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":858,"Cost":769,"Date":"9/17/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":741,"Cost":458,"Date":"9/29/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":93,"Cost":73,"Date":"11/7/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":212,"Cost":166,"Date":"11/26/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":814,"Cost":436,"Date":"11/27/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":18,"Cost":14,"Date":"12/5/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":32,"Cost":23,"Date":"12/26/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":936,"Cost":843,"Date":"12/31/2020"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":953,"Cost":610,"Date":"1/20/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":372,"Cost":221,"Date":"2/2/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":399,"Cost":371,"Date":"2/8/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":132,"Cost":71,"Date":"2/27/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":720,"Cost":683,"Date":"3/1/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":276,"Cost":138,"Date":"3/1/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":227,"Cost":126,"Date":"3/19/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":734,"Cost":391,"Date":"3/28/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":667,"Cost":519,"Date":"5/21/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":622,"Cost":565,"Date":"7/21/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":646,"Cost":492,"Date":"8/5/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":309,"Cost":228,"Date":"8/12/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":183,"Cost":120,"Date":"8/21/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":874,"Cost":825,"Date":"8/23/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":597,"Cost":353,"Date":"9/3/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":45,"Cost":39,"Date":"9/5/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":803,"Cost":443,"Date":"10/6/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":454,"Cost":316,"Date":"10/19/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":347,"Cost":212,"Date":"11/15/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":554,"Cost":472,"Date":"12/8/2021"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":689,"Cost":482,"Date":"1/8/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":514,"Cost":425,"Date":"1/14/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":207,"Cost":148,"Date":"1/19/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":764,"Cost":690,"Date":"1/28/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":335,"Cost":194,"Date":"1/31/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":191,"Cost":146,"Date":"3/27/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":81,"Cost":47,"Date":"4/20/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":762,"Cost":628,"Date":"4/24/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":553,"Cost":326,"Date":"4/28/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":108,"Cost":57,"Date":"5/15/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":993,"Cost":817,"Date":"5/16/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":675,"Cost":428,"Date":"5/18/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":882,"Cost":473,"Date":"6/2/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":807,"Cost":666,"Date":"6/3/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":881,"Cost":779,"Date":"6/5/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":290,"Cost":254,"Date":"6/7/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":899,"Cost":818,"Date":"6/14/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":58,"Cost":54,"Date":"6/20/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":612,"Cost":463,"Date":"6/24/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":379,"Cost":313,"Date":"7/4/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":510,"Cost":414,"Date":"7/9/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":498,"Cost":398,"Date":"7/12/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":286,"Cost":208,"Date":"8/14/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":693,"Cost":511,"Date":"8/16/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":646,"Cost":369,"Date":"8/23/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":172,"Cost":137,"Date":"9/2/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":892,"Cost":833,"Date":"9/3/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":658,"Cost":351,"Date":"9/16/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":264,"Cost":195,"Date":"10/4/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":732,"Cost":434,"Date":"11/1/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":412,"Cost":356,"Date":"11/2/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":124,"Cost":106,"Date":"12/17/2022"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":488,"Cost":337,"Date":"2/10/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":885,"Cost":622,"Date":"2/28/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":178,"Cost":163,"Date":"3/4/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":299,"Cost":229,"Date":"3/9/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":217,"Cost":142,"Date":"3/9/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":185,"Cost":176,"Date":"3/11/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":849,"Cost":480,"Date":"3/17/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":315,"Cost":191,"Date":"3/17/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":669,"Cost":335,"Date":"3/23/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":125,"Cost":75,"Date":"4/1/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":758,"Cost":635,"Date":"5/7/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":749,"Cost":636,"Date":"5/10/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":340,"Cost":260,"Date":"5/20/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":214,"Cost":186,"Date":"6/2/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":894,"Cost":597,"Date":"6/11/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":54,"Cost":38,"Date":"6/16/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":893,"Cost":468,"Date":"6/16/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":966,"Cost":781,"Date":"7/10/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":501,"Cost":470,"Date":"7/11/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":292,"Cost":200,"Date":"8/28/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":369,"Cost":191,"Date":"8/29/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":398,"Cost":247,"Date":"8/31/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":986,"Cost":518,"Date":"9/8/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":188,"Cost":140,"Date":"9/13/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":76,"Cost":53,"Date":"9/14/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":757,"Cost":708,"Date":"9/19/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":93,"Cost":71,"Date":"9/25/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":269,"Cost":201,"Date":"10/4/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":459,"Cost":267,"Date":"10/10/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":18,"Cost":14,"Date":"10/17/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":747,"Cost":464,"Date":"10/28/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":459,"Cost":389,"Date":"10/30/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":922,"Cost":741,"Date":"11/1/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":936,"Cost":767,"Date":"11/15/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":904,"Cost":544,"Date":"11/25/2023"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":859,"Cost":597,"Date":"1/10/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":199,"Cost":107,"Date":"1/14/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":498,"Cost":331,"Date":"1/20/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":731,"Cost":618,"Date":"2/8/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":543,"Cost":370,"Date":"2/25/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":922,"Cost":684,"Date":"3/7/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":609,"Cost":402,"Date":"3/14/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":788,"Cost":563,"Date":"3/27/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":822,"Cost":661,"Date":"4/5/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":965,"Cost":555,"Date":"4/14/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":73,"Cost":50,"Date":"5/3/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":693,"Cost":625,"Date":"5/9/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":133,"Cost":70,"Date":"5/15/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":277,"Cost":216,"Date":"5/25/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":108,"Cost":74,"Date":"5/26/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":346,"Cost":302,"Date":"5/31/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":79,"Cost":56,"Date":"7/27/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":650,"Cost":465,"Date":"9/17/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":817,"Cost":673,"Date":"10/6/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":86,"Cost":75,"Date":"10/8/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":594,"Cost":323,"Date":"10/26/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":596,"Cost":566,"Date":"11/16/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":753,"Cost":699,"Date":"11/18/2024"},{"Store":"Westfield Doncaster, Melbourne","Brand":"Nova","Country":"Australia","Sale":110,"Cost":73,"Date":"12/1/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":453,"Cost":360,"Date":"2/9/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":918,"Cost":486,"Date":"2/11/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":550,"Cost":439,"Date":"3/10/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":569,"Cost":502,"Date":"3/16/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":864,"Cost":759,"Date":"3/18/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":160,"Cost":141,"Date":"3/20/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":633,"Cost":506,"Date":"3/26/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":760,"Cost":520,"Date":"6/2/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":954,"Cost":639,"Date":"6/10/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":455,"Cost":384,"Date":"6/16/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":89,"Cost":71,"Date":"6/25/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":624,"Cost":438,"Date":"7/19/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":385,"Cost":271,"Date":"7/21/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":251,"Cost":142,"Date":"7/25/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":613,"Cost":567,"Date":"8/4/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":81,"Cost":43,"Date":"9/2/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":448,"Cost":289,"Date":"9/4/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":431,"Cost":250,"Date":"9/19/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":91,"Cost":53,"Date":"9/29/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":187,"Cost":124,"Date":"10/2/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":669,"Cost":476,"Date":"10/15/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":122,"Cost":61,"Date":"10/30/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":606,"Cost":397,"Date":"11/9/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":823,"Cost":622,"Date":"11/23/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":766,"Cost":599,"Date":"11/30/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":624,"Cost":341,"Date":"12/8/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":214,"Cost":195,"Date":"12/11/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":906,"Cost":503,"Date":"1/15/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":55,"Cost":41,"Date":"1/24/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":361,"Cost":190,"Date":"2/3/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":830,"Cost":618,"Date":"2/4/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":359,"Cost":218,"Date":"3/9/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":556,"Cost":430,"Date":"3/12/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":508,"Cost":354,"Date":"4/19/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":215,"Cost":203,"Date":"5/3/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":862,"Cost":707,"Date":"5/4/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":490,"Cost":457,"Date":"6/8/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":26,"Cost":13,"Date":"6/26/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":346,"Cost":264,"Date":"7/4/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":959,"Cost":701,"Date":"7/13/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":475,"Cost":362,"Date":"8/8/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":538,"Cost":299,"Date":"8/26/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":609,"Cost":412,"Date":"9/2/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":324,"Cost":180,"Date":"9/29/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":411,"Cost":313,"Date":"10/12/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":616,"Cost":356,"Date":"11/2/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":378,"Cost":267,"Date":"11/4/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":191,"Cost":135,"Date":"11/7/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":994,"Cost":538,"Date":"12/1/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":359,"Cost":309,"Date":"12/4/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":772,"Cost":419,"Date":"12/7/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":554,"Cost":368,"Date":"12/18/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":443,"Cost":390,"Date":"12/20/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":685,"Cost":456,"Date":"12/20/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":182,"Cost":150,"Date":"12/21/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":903,"Cost":596,"Date":"1/9/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":449,"Cost":263,"Date":"2/5/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":618,"Cost":521,"Date":"2/16/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":502,"Cost":384,"Date":"2/16/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":93,"Cost":61,"Date":"2/18/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":388,"Cost":213,"Date":"2/22/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":736,"Cost":436,"Date":"2/25/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":57,"Cost":38,"Date":"3/8/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":314,"Cost":273,"Date":"4/2/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":999,"Cost":872,"Date":"4/3/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":273,"Cost":222,"Date":"4/9/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":268,"Cost":213,"Date":"4/10/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":433,"Cost":372,"Date":"4/19/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":142,"Cost":83,"Date":"5/17/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":794,"Cost":526,"Date":"5/22/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":50,"Cost":36,"Date":"6/20/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":569,"Cost":362,"Date":"7/1/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":22,"Cost":19,"Date":"7/4/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":389,"Cost":212,"Date":"7/8/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":699,"Cost":385,"Date":"7/9/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":351,"Cost":277,"Date":"7/14/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":374,"Cost":337,"Date":"7/19/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":912,"Cost":512,"Date":"8/1/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":693,"Cost":602,"Date":"8/6/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":840,"Cost":665,"Date":"8/7/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":275,"Cost":184,"Date":"8/22/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":344,"Cost":180,"Date":"8/31/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":755,"Cost":459,"Date":"9/1/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":929,"Cost":480,"Date":"9/1/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":655,"Cost":372,"Date":"9/17/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":330,"Cost":209,"Date":"9/29/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":699,"Cost":384,"Date":"11/7/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":319,"Cost":264,"Date":"11/26/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":668,"Cost":440,"Date":"11/27/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":176,"Cost":114,"Date":"12/5/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":552,"Cost":312,"Date":"12/26/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":153,"Cost":114,"Date":"12/31/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":172,"Cost":93,"Date":"1/20/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":228,"Cost":208,"Date":"2/2/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":444,"Cost":400,"Date":"2/8/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":792,"Cost":669,"Date":"2/27/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":759,"Cost":515,"Date":"3/1/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":527,"Cost":345,"Date":"3/1/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":304,"Cost":262,"Date":"3/19/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":570,"Cost":309,"Date":"3/28/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":480,"Cost":407,"Date":"5/21/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":509,"Cost":449,"Date":"7/21/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":289,"Cost":149,"Date":"8/5/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":555,"Cost":485,"Date":"8/12/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":996,"Cost":927,"Date":"8/21/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":154,"Cost":102,"Date":"8/23/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":628,"Cost":529,"Date":"9/3/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":593,"Cost":541,"Date":"9/5/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":62,"Cost":33,"Date":"10/6/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":527,"Cost":373,"Date":"10/19/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":536,"Cost":288,"Date":"11/15/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":279,"Cost":156,"Date":"12/8/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":251,"Cost":180,"Date":"1/8/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":72,"Cost":49,"Date":"1/14/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":15,"Cost":12,"Date":"1/19/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":653,"Cost":587,"Date":"1/28/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":119,"Cost":80,"Date":"1/31/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":36,"Cost":32,"Date":"3/27/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":85,"Cost":52,"Date":"4/20/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":245,"Cost":216,"Date":"4/24/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":382,"Cost":205,"Date":"4/28/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":176,"Cost":166,"Date":"5/15/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":882,"Cost":663,"Date":"5/16/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":650,"Cost":531,"Date":"5/18/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":368,"Cost":318,"Date":"6/2/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":794,"Cost":681,"Date":"6/3/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":448,"Cost":316,"Date":"6/5/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":971,"Cost":811,"Date":"6/7/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":76,"Cost":38,"Date":"6/14/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":918,"Cost":765,"Date":"6/20/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":400,"Cost":224,"Date":"6/24/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":797,"Cost":638,"Date":"7/4/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":426,"Cost":285,"Date":"7/9/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":226,"Cost":173,"Date":"7/12/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":426,"Cost":243,"Date":"8/14/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":653,"Cost":429,"Date":"8/16/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":966,"Cost":661,"Date":"8/23/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":516,"Cost":277,"Date":"9/2/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":550,"Cost":495,"Date":"9/3/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":481,"Cost":360,"Date":"9/16/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":319,"Cost":165,"Date":"10/4/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":55,"Cost":27,"Date":"11/1/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":577,"Cost":422,"Date":"11/2/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":756,"Cost":454,"Date":"12/17/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":22,"Cost":13,"Date":"2/10/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":674,"Cost":548,"Date":"2/28/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":273,"Cost":248,"Date":"3/4/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":626,"Cost":408,"Date":"3/9/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":627,"Cost":580,"Date":"3/9/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":985,"Cost":761,"Date":"3/11/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":91,"Cost":57,"Date":"3/17/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":128,"Cost":116,"Date":"3/17/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":804,"Cost":672,"Date":"3/23/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":138,"Cost":122,"Date":"4/1/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":71,"Cost":41,"Date":"5/7/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":271,"Cost":167,"Date":"5/10/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":414,"Cost":289,"Date":"5/20/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":43,"Cost":34,"Date":"6/2/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":408,"Cost":282,"Date":"6/11/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":874,"Cost":646,"Date":"6/16/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":440,"Cost":362,"Date":"6/16/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":610,"Cost":408,"Date":"7/10/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":769,"Cost":718,"Date":"7/11/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":783,"Cost":698,"Date":"8/28/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":884,"Cost":769,"Date":"8/29/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":375,"Cost":251,"Date":"8/31/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":913,"Cost":577,"Date":"9/8/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":542,"Cost":490,"Date":"9/13/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":465,"Cost":358,"Date":"9/14/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":375,"Cost":355,"Date":"9/19/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":754,"Cost":679,"Date":"9/25/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":674,"Cost":479,"Date":"10/4/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":72,"Cost":52,"Date":"10/10/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":431,"Cost":219,"Date":"10/17/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":971,"Cost":802,"Date":"10/28/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":357,"Cost":220,"Date":"10/30/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":376,"Cost":311,"Date":"11/1/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":10,"Cost":5,"Date":"11/15/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":323,"Cost":197,"Date":"11/25/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":340,"Cost":273,"Date":"1/10/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":979,"Cost":609,"Date":"1/14/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":68,"Cost":42,"Date":"1/20/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":698,"Cost":419,"Date":"2/8/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":429,"Cost":374,"Date":"2/25/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":611,"Cost":455,"Date":"3/7/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":920,"Cost":581,"Date":"3/14/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":769,"Cost":517,"Date":"3/27/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":588,"Cost":420,"Date":"4/5/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":322,"Cost":212,"Date":"4/14/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":214,"Cost":183,"Date":"5/3/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":522,"Cost":261,"Date":"5/9/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":162,"Cost":95,"Date":"5/15/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":36,"Cost":32,"Date":"5/25/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":41,"Cost":38,"Date":"5/26/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":470,"Cost":265,"Date":"5/31/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":414,"Cost":280,"Date":"7/27/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":385,"Cost":329,"Date":"9/17/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":884,"Cost":547,"Date":"10/6/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":484,"Cost":432,"Date":"10/8/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":675,"Cost":636,"Date":"10/26/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":422,"Cost":391,"Date":"11/16/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":350,"Cost":220,"Date":"11/18/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":56,"Cost":39,"Date":"12/1/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":1,"Cost":1,"Date":"2/9/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":413,"Cost":276,"Date":"2/11/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":143,"Cost":91,"Date":"3/10/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":264,"Cost":177,"Date":"3/16/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":255,"Cost":161,"Date":"3/18/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":491,"Cost":381,"Date":"3/20/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":368,"Cost":260,"Date":"3/26/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":496,"Cost":466,"Date":"6/2/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":911,"Cost":775,"Date":"6/10/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":351,"Cost":178,"Date":"6/16/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":345,"Cost":244,"Date":"6/25/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":955,"Cost":881,"Date":"7/19/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":424,"Cost":223,"Date":"7/21/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":179,"Cost":89,"Date":"7/25/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":186,"Cost":128,"Date":"8/4/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":795,"Cost":479,"Date":"9/2/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":170,"Cost":157,"Date":"9/4/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":965,"Cost":910,"Date":"9/19/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":397,"Cost":304,"Date":"9/29/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":757,"Cost":641,"Date":"10/2/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":864,"Cost":813,"Date":"10/15/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":560,"Cost":503,"Date":"10/30/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":921,"Cost":732,"Date":"11/9/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":366,"Cost":345,"Date":"11/23/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":38,"Cost":26,"Date":"11/30/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":629,"Cost":497,"Date":"12/8/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":918,"Cost":863,"Date":"12/11/2018"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":154,"Cost":117,"Date":"1/15/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":487,"Cost":281,"Date":"1/24/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":826,"Cost":646,"Date":"2/3/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":50,"Cost":33,"Date":"2/4/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":882,"Cost":682,"Date":"3/9/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":892,"Cost":470,"Date":"3/12/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":426,"Cost":367,"Date":"4/19/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":808,"Cost":646,"Date":"5/3/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":270,"Cost":251,"Date":"5/4/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":924,"Cost":577,"Date":"6/8/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":113,"Cost":61,"Date":"6/26/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":763,"Cost":525,"Date":"7/4/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":792,"Cost":727,"Date":"7/13/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":307,"Cost":272,"Date":"8/8/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":291,"Cost":216,"Date":"8/26/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":605,"Cost":559,"Date":"9/2/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":303,"Cost":174,"Date":"9/29/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":688,"Cost":616,"Date":"10/12/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":542,"Cost":369,"Date":"11/2/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":432,"Cost":237,"Date":"11/4/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":534,"Cost":403,"Date":"11/7/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":630,"Cost":317,"Date":"12/1/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":854,"Cost":762,"Date":"12/4/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":93,"Cost":82,"Date":"12/7/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":120,"Cost":72,"Date":"12/18/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":95,"Cost":76,"Date":"12/20/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":974,"Cost":553,"Date":"12/20/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":239,"Cost":127,"Date":"12/21/2019"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":771,"Cost":481,"Date":"1/9/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":230,"Cost":121,"Date":"2/5/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":141,"Cost":133,"Date":"2/16/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":410,"Cost":341,"Date":"2/16/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":910,"Cost":759,"Date":"2/18/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":247,"Cost":233,"Date":"2/22/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":404,"Cost":368,"Date":"2/25/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":15,"Cost":12,"Date":"3/8/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":859,"Cost":588,"Date":"4/2/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":621,"Cost":476,"Date":"4/3/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":131,"Cost":96,"Date":"4/9/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":241,"Cost":162,"Date":"4/10/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":150,"Cost":120,"Date":"4/19/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":717,"Cost":470,"Date":"5/17/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":928,"Cost":465,"Date":"5/22/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":499,"Cost":320,"Date":"6/20/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":779,"Cost":460,"Date":"7/1/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":176,"Cost":163,"Date":"7/4/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":20,"Cost":14,"Date":"7/8/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":16,"Cost":15,"Date":"7/9/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":279,"Cost":198,"Date":"7/14/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":133,"Cost":107,"Date":"7/19/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":92,"Cost":74,"Date":"8/1/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":559,"Cost":380,"Date":"8/6/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":114,"Cost":80,"Date":"8/7/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":911,"Cost":600,"Date":"8/22/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":163,"Cost":106,"Date":"8/31/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":950,"Cost":584,"Date":"9/1/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":771,"Cost":716,"Date":"9/1/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":27,"Cost":22,"Date":"9/17/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":817,"Cost":638,"Date":"9/29/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":6,"Cost":3,"Date":"11/7/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":411,"Cost":270,"Date":"11/26/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":138,"Cost":69,"Date":"11/27/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":611,"Cost":556,"Date":"12/5/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":773,"Cost":397,"Date":"12/26/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":100,"Cost":74,"Date":"12/31/2020"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":332,"Cost":220,"Date":"1/20/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":724,"Cost":601,"Date":"2/2/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":691,"Cost":413,"Date":"2/8/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":274,"Cost":226,"Date":"2/27/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":776,"Cost":612,"Date":"3/1/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":496,"Cost":303,"Date":"3/1/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":208,"Cost":175,"Date":"3/19/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":628,"Cost":501,"Date":"3/28/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":25,"Cost":16,"Date":"5/21/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":470,"Cost":282,"Date":"7/21/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":979,"Cost":703,"Date":"8/5/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":949,"Cost":689,"Date":"8/12/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":536,"Cost":491,"Date":"8/21/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":929,"Cost":529,"Date":"8/23/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":25,"Cost":12,"Date":"9/3/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":146,"Cost":100,"Date":"9/5/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":284,"Cost":243,"Date":"10/6/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":56,"Cost":36,"Date":"10/19/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":55,"Cost":39,"Date":"11/15/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":143,"Cost":95,"Date":"12/8/2021"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":568,"Cost":496,"Date":"1/8/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":331,"Cost":241,"Date":"1/14/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":965,"Cost":746,"Date":"1/19/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":833,"Cost":496,"Date":"1/28/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":825,"Cost":676,"Date":"1/31/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":751,"Cost":475,"Date":"3/27/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":89,"Cost":50,"Date":"4/20/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":24,"Cost":19,"Date":"4/24/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":762,"Cost":481,"Date":"4/28/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":382,"Cost":337,"Date":"5/15/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":760,"Cost":577,"Date":"5/16/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":209,"Cost":156,"Date":"5/18/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":227,"Cost":123,"Date":"6/2/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":186,"Cost":127,"Date":"6/3/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":169,"Cost":111,"Date":"6/5/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":171,"Cost":94,"Date":"6/7/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":485,"Cost":453,"Date":"6/14/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":129,"Cost":117,"Date":"6/20/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":241,"Cost":144,"Date":"6/24/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":168,"Cost":119,"Date":"7/4/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":246,"Cost":174,"Date":"7/9/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":561,"Cost":472,"Date":"7/12/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":710,"Cost":667,"Date":"8/14/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":360,"Cost":340,"Date":"8/16/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":685,"Cost":397,"Date":"8/23/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":229,"Cost":183,"Date":"9/2/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":775,"Cost":394,"Date":"9/3/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":558,"Cost":380,"Date":"9/16/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":737,"Cost":676,"Date":"10/4/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":42,"Cost":31,"Date":"11/1/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":366,"Cost":335,"Date":"11/2/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":666,"Cost":511,"Date":"12/17/2022"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":542,"Cost":336,"Date":"2/10/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":319,"Cost":278,"Date":"2/28/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":861,"Cost":777,"Date":"3/4/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":633,"Cost":557,"Date":"3/9/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":667,"Cost":345,"Date":"3/9/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":367,"Cost":335,"Date":"3/11/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":92,"Cost":70,"Date":"3/17/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":202,"Cost":129,"Date":"3/17/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":716,"Cost":520,"Date":"3/23/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":476,"Cost":297,"Date":"4/1/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":764,"Cost":544,"Date":"5/7/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":189,"Cost":99,"Date":"5/10/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":492,"Cost":330,"Date":"5/20/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":196,"Cost":148,"Date":"6/2/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":322,"Cost":241,"Date":"6/11/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":620,"Cost":518,"Date":"6/16/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":342,"Cost":196,"Date":"6/16/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":449,"Cost":385,"Date":"7/10/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":121,"Cost":105,"Date":"7/11/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":477,"Cost":417,"Date":"8/28/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":1000,"Cost":681,"Date":"8/29/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":355,"Cost":321,"Date":"8/31/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":408,"Cost":332,"Date":"9/8/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":217,"Cost":173,"Date":"9/13/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":35,"Cost":23,"Date":"9/14/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":782,"Cost":594,"Date":"9/19/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":982,"Cost":786,"Date":"9/25/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":32,"Cost":19,"Date":"10/4/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":757,"Cost":576,"Date":"10/10/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":221,"Cost":181,"Date":"10/17/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":643,"Cost":430,"Date":"10/28/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":918,"Cost":587,"Date":"10/30/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":952,"Cost":525,"Date":"11/1/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":350,"Cost":226,"Date":"11/15/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":778,"Cost":555,"Date":"11/25/2023"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":79,"Cost":74,"Date":"1/10/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":117,"Cost":85,"Date":"1/14/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":703,"Cost":513,"Date":"1/20/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":664,"Cost":427,"Date":"2/8/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":159,"Cost":87,"Date":"2/25/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":31,"Cost":20,"Date":"3/7/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":216,"Cost":178,"Date":"3/14/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":714,"Cost":547,"Date":"3/27/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":848,"Cost":662,"Date":"4/5/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":543,"Cost":474,"Date":"4/14/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":435,"Cost":235,"Date":"5/3/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":896,"Cost":693,"Date":"5/9/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":918,"Cost":755,"Date":"5/15/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":606,"Cost":546,"Date":"5/25/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":549,"Cost":324,"Date":"5/26/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":469,"Cost":444,"Date":"5/31/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":840,"Cost":730,"Date":"7/27/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":555,"Cost":413,"Date":"9/17/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":728,"Cost":612,"Date":"10/6/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":225,"Cost":163,"Date":"10/8/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":378,"Cost":198,"Date":"10/26/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":556,"Cost":306,"Date":"11/16/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":406,"Cost":276,"Date":"11/18/2024"},{"Store":"Emporium Melbourne","Brand":"HM","Country":"Australia","Sale":547,"Cost":397,"Date":"12/1/2024"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":246,"Cost":169,"Date":"2/9/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":281,"Cost":156,"Date":"2/11/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":382,"Cost":239,"Date":"3/10/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":981,"Cost":835,"Date":"3/16/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":433,"Cost":357,"Date":"3/18/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":48,"Cost":33,"Date":"3/20/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":269,"Cost":229,"Date":"3/26/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":731,"Cost":399,"Date":"6/2/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":138,"Cost":111,"Date":"6/10/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":305,"Cost":166,"Date":"6/16/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":774,"Cost":606,"Date":"6/25/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":459,"Cost":412,"Date":"7/19/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":261,"Cost":146,"Date":"7/21/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":20,"Cost":11,"Date":"7/25/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":120,"Cost":84,"Date":"8/4/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":948,"Cost":733,"Date":"9/2/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":332,"Cost":241,"Date":"9/4/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":556,"Cost":341,"Date":"9/19/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":646,"Cost":591,"Date":"9/29/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":970,"Cost":632,"Date":"10/2/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":711,"Cost":662,"Date":"10/15/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":90,"Cost":84,"Date":"10/30/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":419,"Cost":291,"Date":"11/9/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":497,"Cost":372,"Date":"11/23/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":49,"Cost":39,"Date":"11/30/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":42,"Cost":40,"Date":"12/8/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":928,"Cost":567,"Date":"12/11/2018"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":882,"Cost":664,"Date":"1/15/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":362,"Cost":311,"Date":"1/24/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":398,"Cost":276,"Date":"2/3/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":904,"Cost":547,"Date":"2/4/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":7,"Cost":6,"Date":"3/9/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":338,"Cost":278,"Date":"3/12/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":224,"Cost":160,"Date":"4/19/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":420,"Cost":337,"Date":"5/3/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":913,"Cost":537,"Date":"5/4/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":779,"Cost":585,"Date":"6/8/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":382,"Cost":318,"Date":"6/26/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":403,"Cost":299,"Date":"7/4/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":74,"Cost":52,"Date":"7/13/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":490,"Cost":312,"Date":"8/8/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":778,"Cost":549,"Date":"8/26/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":264,"Cost":220,"Date":"9/2/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":91,"Cost":65,"Date":"9/29/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":759,"Cost":496,"Date":"10/12/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":146,"Cost":124,"Date":"11/2/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":411,"Cost":329,"Date":"11/4/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":61,"Cost":57,"Date":"11/7/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":255,"Cost":236,"Date":"12/1/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":586,"Cost":440,"Date":"12/4/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":556,"Cost":444,"Date":"12/7/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":213,"Cost":115,"Date":"12/18/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":292,"Cost":247,"Date":"12/20/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":675,"Cost":585,"Date":"12/20/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":47,"Cost":26,"Date":"12/21/2019"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":43,"Cost":28,"Date":"1/9/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":738,"Cost":391,"Date":"2/5/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":337,"Cost":297,"Date":"2/16/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":565,"Cost":514,"Date":"2/16/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":781,"Cost":499,"Date":"2/18/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":620,"Cost":573,"Date":"2/22/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":193,"Cost":152,"Date":"2/25/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":796,"Cost":469,"Date":"3/8/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":969,"Cost":528,"Date":"4/2/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":594,"Cost":512,"Date":"4/3/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":731,"Cost":564,"Date":"4/9/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":160,"Cost":145,"Date":"4/10/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":74,"Cost":61,"Date":"4/19/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":900,"Cost":798,"Date":"5/17/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":59,"Cost":33,"Date":"5/22/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":948,"Cost":771,"Date":"6/20/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":484,"Cost":306,"Date":"7/1/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":801,"Cost":692,"Date":"7/4/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":88,"Cost":63,"Date":"7/8/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":377,"Cost":246,"Date":"7/9/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":709,"Cost":438,"Date":"7/14/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":272,"Cost":208,"Date":"7/19/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":115,"Cost":100,"Date":"8/1/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":77,"Cost":70,"Date":"8/6/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":885,"Cost":512,"Date":"8/7/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":497,"Cost":463,"Date":"8/22/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":249,"Cost":205,"Date":"8/31/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":621,"Cost":481,"Date":"9/1/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":502,"Cost":353,"Date":"9/1/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":304,"Cost":242,"Date":"9/17/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":670,"Cost":594,"Date":"9/29/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":961,"Cost":773,"Date":"11/7/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":466,"Cost":423,"Date":"11/26/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":563,"Cost":455,"Date":"11/27/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":422,"Cost":370,"Date":"12/5/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":658,"Cost":335,"Date":"12/26/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":310,"Cost":246,"Date":"12/31/2020"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":216,"Cost":194,"Date":"1/20/2021"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":849,"Cost":736,"Date":"2/2/2021"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":692,"Cost":524,"Date":"2/8/2021"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":872,"Cost":612,"Date":"2/27/2021"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":41,"Cost":39,"Date":"3/1/2021"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":544,"Cost":374,"Date":"3/1/2021"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":752,"Cost":640,"Date":"3/19/2021"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":643,"Cost":498,"Date":"3/28/2021"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":360,"Cost":243,"Date":"5/21/2021"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":314,"Cost":168,"Date":"7/21/2021"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":457,"Cost":307,"Date":"8/5/2021"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":343,"Cost":247,"Date":"8/12/2021"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":823,"Cost":584,"Date":"8/21/2021"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":486,"Cost":366,"Date":"8/23/2021"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":798,"Cost":659,"Date":"9/3/2021"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":123,"Cost":104,"Date":"9/5/2021"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":771,"Cost":590,"Date":"10/6/2021"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":882,"Cost":828,"Date":"10/19/2021"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":389,"Cost":224,"Date":"11/15/2021"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":157,"Cost":87,"Date":"12/8/2021"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":75,"Cost":50,"Date":"1/8/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":652,"Cost":451,"Date":"1/14/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":432,"Cost":389,"Date":"1/19/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":719,"Cost":654,"Date":"1/28/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":698,"Cost":367,"Date":"1/31/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":802,"Cost":514,"Date":"3/27/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":461,"Cost":249,"Date":"4/20/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":158,"Cost":140,"Date":"4/24/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":293,"Cost":216,"Date":"4/28/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":331,"Cost":217,"Date":"5/15/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":938,"Cost":593,"Date":"5/16/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":778,"Cost":697,"Date":"5/18/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":475,"Cost":344,"Date":"6/2/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":953,"Cost":596,"Date":"6/3/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":10,"Cost":10,"Date":"6/5/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":501,"Cost":427,"Date":"6/7/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":986,"Cost":845,"Date":"6/14/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":850,"Cost":428,"Date":"6/20/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":336,"Cost":189,"Date":"6/24/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":561,"Cost":527,"Date":"7/4/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":660,"Cost":535,"Date":"7/9/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":593,"Cost":421,"Date":"7/12/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":701,"Cost":441,"Date":"8/14/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":143,"Cost":127,"Date":"8/16/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":992,"Cost":933,"Date":"8/23/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":116,"Cost":106,"Date":"9/2/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":718,"Cost":417,"Date":"9/3/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":637,"Cost":474,"Date":"9/16/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":975,"Cost":925,"Date":"10/4/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":734,"Cost":551,"Date":"11/1/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":431,"Cost":331,"Date":"11/2/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":703,"Cost":470,"Date":"12/17/2022"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":766,"Cost":724,"Date":"2/10/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":955,"Cost":804,"Date":"2/28/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":380,"Cost":276,"Date":"3/4/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":120,"Cost":76,"Date":"3/9/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":998,"Cost":838,"Date":"3/9/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":133,"Cost":114,"Date":"3/11/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":817,"Cost":552,"Date":"3/17/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":983,"Cost":569,"Date":"3/17/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":100,"Cost":76,"Date":"3/23/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":489,"Cost":454,"Date":"4/1/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":197,"Cost":163,"Date":"5/7/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":338,"Cost":170,"Date":"5/10/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":505,"Cost":285,"Date":"5/20/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":128,"Cost":117,"Date":"6/2/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":556,"Cost":337,"Date":"6/11/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":117,"Cost":59,"Date":"6/16/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":305,"Cost":197,"Date":"6/16/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":505,"Cost":363,"Date":"7/10/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":748,"Cost":445,"Date":"7/11/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":628,"Cost":450,"Date":"8/28/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":561,"Cost":356,"Date":"8/29/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":614,"Cost":581,"Date":"8/31/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":640,"Cost":507,"Date":"9/8/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":105,"Cost":72,"Date":"9/13/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":712,"Cost":395,"Date":"9/14/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":413,"Cost":236,"Date":"9/19/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":996,"Cost":571,"Date":"9/25/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":280,"Cost":152,"Date":"10/4/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":122,"Cost":114,"Date":"10/10/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":352,"Cost":180,"Date":"10/17/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":471,"Cost":301,"Date":"10/28/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":316,"Cost":243,"Date":"10/30/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":467,"Cost":355,"Date":"11/1/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":729,"Cost":465,"Date":"11/15/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":660,"Cost":618,"Date":"11/25/2023"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":857,"Cost":434,"Date":"1/10/2024"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":589,"Cost":513,"Date":"1/14/2024"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":976,"Cost":560,"Date":"1/20/2024"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":879,"Cost":751,"Date":"2/8/2024"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":539,"Cost":324,"Date":"2/25/2024"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":621,"Cost":510,"Date":"3/7/2024"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":612,"Cost":546,"Date":"3/14/2024"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":889,"Cost":793,"Date":"3/27/2024"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":884,"Cost":727,"Date":"4/5/2024"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":596,"Cost":401,"Date":"4/14/2024"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":540,"Cost":456,"Date":"5/3/2024"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":527,"Cost":290,"Date":"5/9/2024"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":766,"Cost":427,"Date":"5/15/2024"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":527,"Cost":341,"Date":"5/25/2024"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":21,"Cost":11,"Date":"5/26/2024"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":917,"Cost":816,"Date":"5/31/2024"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":381,"Cost":195,"Date":"7/27/2024"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":348,"Cost":244,"Date":"9/17/2024"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":986,"Cost":555,"Date":"10/6/2024"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":473,"Cost":374,"Date":"10/8/2024"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":329,"Cost":251,"Date":"10/26/2024"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":57,"Cost":42,"Date":"11/16/2024"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":806,"Cost":403,"Date":"11/18/2024"},{"Store":"Emporium Melbourne","Brand":"ARKET","Country":"Australia","Sale":607,"Cost":344,"Date":"12/1/2024"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":334,"Cost":197,"Date":"2/9/2018"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":488,"Cost":277,"Date":"2/11/2018"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":332,"Cost":229,"Date":"3/10/2018"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":216,"Cost":120,"Date":"3/16/2018"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":40,"Cost":32,"Date":"3/18/2018"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":385,"Cost":360,"Date":"3/20/2018"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":878,"Cost":561,"Date":"3/26/2018"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":298,"Cost":265,"Date":"6/2/2018"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":885,"Cost":748,"Date":"6/10/2018"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":358,"Cost":303,"Date":"6/16/2018"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":495,"Cost":304,"Date":"6/25/2018"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":98,"Cost":86,"Date":"7/19/2018"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":452,"Cost":312,"Date":"7/21/2018"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":6,"Cost":4,"Date":"7/25/2018"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":383,"Cost":339,"Date":"8/4/2018"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":568,"Cost":522,"Date":"9/2/2018"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":344,"Cost":314,"Date":"9/4/2018"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":596,"Cost":432,"Date":"9/19/2018"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":972,"Cost":659,"Date":"9/29/2018"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":724,"Cost":413,"Date":"10/2/2018"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":209,"Cost":189,"Date":"10/15/2018"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":912,"Cost":465,"Date":"10/30/2018"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":144,"Cost":132,"Date":"11/9/2018"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":51,"Cost":41,"Date":"11/23/2018"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":827,"Cost":772,"Date":"11/30/2018"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":129,"Cost":89,"Date":"12/8/2018"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":72,"Cost":58,"Date":"12/11/2018"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":536,"Cost":355,"Date":"1/15/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":779,"Cost":589,"Date":"1/24/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":475,"Cost":447,"Date":"2/3/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":233,"Cost":210,"Date":"2/4/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":942,"Cost":818,"Date":"3/9/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":829,"Cost":668,"Date":"3/12/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":610,"Cost":529,"Date":"4/19/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":858,"Cost":691,"Date":"5/3/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":737,"Cost":635,"Date":"5/4/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":813,"Cost":531,"Date":"6/8/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":827,"Cost":603,"Date":"6/26/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":503,"Cost":368,"Date":"7/4/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":603,"Cost":319,"Date":"7/13/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":898,"Cost":743,"Date":"8/8/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":988,"Cost":586,"Date":"8/26/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":863,"Cost":520,"Date":"9/2/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":760,"Cost":688,"Date":"9/29/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":473,"Cost":302,"Date":"10/12/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":12,"Cost":9,"Date":"11/2/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":578,"Cost":398,"Date":"11/4/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":701,"Cost":431,"Date":"11/7/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":165,"Cost":137,"Date":"12/1/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":383,"Cost":232,"Date":"12/4/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":275,"Cost":190,"Date":"12/7/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":894,"Cost":719,"Date":"12/18/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":960,"Cost":775,"Date":"12/20/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":605,"Cost":429,"Date":"12/20/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":848,"Cost":795,"Date":"12/21/2019"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":409,"Cost":287,"Date":"1/9/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":534,"Cost":373,"Date":"2/5/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":301,"Cost":283,"Date":"2/16/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":691,"Cost":622,"Date":"2/16/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":445,"Cost":399,"Date":"2/18/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":241,"Cost":197,"Date":"2/22/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":136,"Cost":120,"Date":"2/25/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":488,"Cost":387,"Date":"3/8/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":834,"Cost":692,"Date":"4/2/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":168,"Cost":111,"Date":"4/3/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":400,"Cost":277,"Date":"4/9/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":937,"Cost":714,"Date":"4/10/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":492,"Cost":394,"Date":"4/19/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":706,"Cost":621,"Date":"5/17/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":768,"Cost":427,"Date":"5/22/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":258,"Cost":141,"Date":"6/20/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":196,"Cost":152,"Date":"7/1/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":320,"Cost":278,"Date":"7/4/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":713,"Cost":514,"Date":"7/8/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":36,"Cost":31,"Date":"7/9/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":199,"Cost":129,"Date":"7/14/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":66,"Cost":43,"Date":"7/19/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":451,"Cost":411,"Date":"8/1/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":828,"Cost":501,"Date":"8/6/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":358,"Cost":281,"Date":"8/7/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":850,"Cost":686,"Date":"8/22/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":755,"Cost":509,"Date":"8/31/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":11,"Cost":7,"Date":"9/1/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":845,"Cost":645,"Date":"9/1/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":382,"Cost":317,"Date":"9/17/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":999,"Cost":757,"Date":"9/29/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":678,"Cost":350,"Date":"11/7/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":222,"Cost":114,"Date":"11/26/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":313,"Cost":249,"Date":"11/27/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":182,"Cost":158,"Date":"12/5/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":489,"Cost":372,"Date":"12/26/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":426,"Cost":309,"Date":"12/31/2020"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":380,"Cost":193,"Date":"1/20/2021"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":761,"Cost":538,"Date":"2/2/2021"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":890,"Cost":835,"Date":"2/8/2021"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":4,"Cost":2,"Date":"2/27/2021"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":998,"Cost":817,"Date":"3/1/2021"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":370,"Cost":247,"Date":"3/1/2021"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":368,"Cost":231,"Date":"3/19/2021"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":720,"Cost":560,"Date":"3/28/2021"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":535,"Cost":453,"Date":"5/21/2021"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":213,"Cost":195,"Date":"7/21/2021"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":123,"Cost":71,"Date":"8/5/2021"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":404,"Cost":207,"Date":"8/12/2021"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":660,"Cost":337,"Date":"8/21/2021"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":187,"Cost":127,"Date":"8/23/2021"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":65,"Cost":44,"Date":"9/3/2021"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":959,"Cost":615,"Date":"9/5/2021"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":432,"Cost":266,"Date":"10/6/2021"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":560,"Cost":531,"Date":"10/19/2021"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":28,"Cost":19,"Date":"11/15/2021"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":325,"Cost":299,"Date":"12/8/2021"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":789,"Cost":568,"Date":"1/8/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":941,"Cost":714,"Date":"1/14/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":539,"Cost":367,"Date":"1/19/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":697,"Cost":349,"Date":"1/28/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":117,"Cost":61,"Date":"1/31/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":759,"Cost":582,"Date":"3/27/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":211,"Cost":133,"Date":"4/20/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":256,"Cost":239,"Date":"4/24/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":391,"Cost":219,"Date":"4/28/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":779,"Cost":515,"Date":"5/15/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":734,"Cost":429,"Date":"5/16/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":526,"Cost":297,"Date":"5/18/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":226,"Cost":149,"Date":"6/2/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":507,"Cost":476,"Date":"6/3/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":809,"Cost":564,"Date":"6/5/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":712,"Cost":538,"Date":"6/7/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":444,"Cost":330,"Date":"6/14/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":124,"Cost":90,"Date":"6/20/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":533,"Cost":316,"Date":"6/24/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":440,"Cost":356,"Date":"7/4/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":576,"Cost":431,"Date":"7/9/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":531,"Cost":388,"Date":"7/12/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":65,"Cost":41,"Date":"8/14/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":92,"Cost":53,"Date":"8/16/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":18,"Cost":10,"Date":"8/23/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":110,"Cost":57,"Date":"9/2/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":934,"Cost":804,"Date":"9/3/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":995,"Cost":880,"Date":"9/16/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":154,"Cost":78,"Date":"10/4/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":312,"Cost":166,"Date":"11/1/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":197,"Cost":115,"Date":"11/2/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":160,"Cost":108,"Date":"12/17/2022"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":847,"Cost":572,"Date":"2/10/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":177,"Cost":129,"Date":"2/28/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":953,"Cost":866,"Date":"3/4/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":799,"Cost":679,"Date":"3/9/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":588,"Cost":517,"Date":"3/9/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":209,"Cost":196,"Date":"3/11/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":846,"Cost":433,"Date":"3/17/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":456,"Cost":279,"Date":"3/17/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":968,"Cost":627,"Date":"3/23/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":114,"Cost":68,"Date":"4/1/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":688,"Cost":548,"Date":"5/7/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":874,"Cost":606,"Date":"5/10/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":171,"Cost":96,"Date":"5/20/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":217,"Cost":145,"Date":"6/2/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":270,"Cost":175,"Date":"6/11/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":498,"Cost":341,"Date":"6/16/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":643,"Cost":555,"Date":"6/16/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":251,"Cost":209,"Date":"7/10/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":315,"Cost":228,"Date":"7/11/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":785,"Cost":621,"Date":"8/28/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":833,"Cost":530,"Date":"8/29/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":923,"Cost":706,"Date":"8/31/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":271,"Cost":217,"Date":"9/8/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":284,"Cost":245,"Date":"9/13/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":214,"Cost":188,"Date":"9/14/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":891,"Cost":740,"Date":"9/19/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":925,"Cost":584,"Date":"9/25/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":672,"Cost":342,"Date":"10/4/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":932,"Cost":674,"Date":"10/10/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":393,"Cost":369,"Date":"10/17/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":115,"Cost":61,"Date":"10/28/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":297,"Cost":168,"Date":"10/30/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":657,"Cost":550,"Date":"11/1/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":383,"Cost":195,"Date":"11/15/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":321,"Cost":179,"Date":"11/25/2023"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":871,"Cost":624,"Date":"1/10/2024"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":874,"Cost":616,"Date":"1/14/2024"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":646,"Cost":554,"Date":"1/20/2024"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":870,"Cost":700,"Date":"2/8/2024"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":801,"Cost":497,"Date":"2/25/2024"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":393,"Cost":347,"Date":"3/7/2024"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":594,"Cost":525,"Date":"3/14/2024"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":139,"Cost":77,"Date":"3/27/2024"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":214,"Cost":115,"Date":"4/5/2024"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":898,"Cost":450,"Date":"4/14/2024"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":674,"Cost":490,"Date":"5/3/2024"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":999,"Cost":845,"Date":"5/9/2024"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":778,"Cost":460,"Date":"5/15/2024"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":662,"Cost":509,"Date":"5/25/2024"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":659,"Cost":486,"Date":"5/26/2024"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":844,"Cost":754,"Date":"5/31/2024"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":966,"Cost":620,"Date":"7/27/2024"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":652,"Cost":529,"Date":"9/17/2024"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":522,"Cost":469,"Date":"10/6/2024"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":658,"Cost":532,"Date":"10/8/2024"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":646,"Cost":352,"Date":"10/26/2024"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":848,"Cost":669,"Date":"11/16/2024"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":873,"Cost":547,"Date":"11/18/2024"},{"Store":"Melbourne Central","Brand":"HM","Country":"Australia","Sale":57,"Cost":29,"Date":"12/1/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":860,"Cost":585,"Date":"2/9/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":910,"Cost":643,"Date":"2/11/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":208,"Cost":142,"Date":"3/10/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":24,"Cost":13,"Date":"3/16/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":269,"Cost":224,"Date":"3/18/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":802,"Cost":716,"Date":"3/20/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":800,"Cost":620,"Date":"3/26/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":109,"Cost":87,"Date":"6/2/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":721,"Cost":411,"Date":"6/10/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":586,"Cost":478,"Date":"6/16/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":500,"Cost":286,"Date":"6/25/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":331,"Cost":260,"Date":"7/19/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":312,"Cost":242,"Date":"7/21/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":173,"Cost":142,"Date":"7/25/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":668,"Cost":590,"Date":"8/4/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":350,"Cost":247,"Date":"9/2/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":362,"Cost":250,"Date":"9/4/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":689,"Cost":363,"Date":"9/19/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":369,"Cost":189,"Date":"9/29/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":445,"Cost":272,"Date":"10/2/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":131,"Cost":105,"Date":"10/15/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":701,"Cost":622,"Date":"10/30/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":777,"Cost":561,"Date":"11/9/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":827,"Cost":785,"Date":"11/23/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":675,"Cost":404,"Date":"11/30/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":674,"Cost":367,"Date":"12/8/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":215,"Cost":118,"Date":"12/11/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":22,"Cost":21,"Date":"1/15/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":173,"Cost":104,"Date":"1/24/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":661,"Cost":340,"Date":"2/3/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":537,"Cost":452,"Date":"2/4/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":962,"Cost":677,"Date":"3/9/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":762,"Cost":547,"Date":"3/12/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":390,"Cost":270,"Date":"4/19/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":247,"Cost":147,"Date":"5/3/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":326,"Cost":246,"Date":"5/4/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":650,"Cost":442,"Date":"6/8/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":999,"Cost":788,"Date":"6/26/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":280,"Cost":174,"Date":"7/4/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":459,"Cost":399,"Date":"7/13/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":631,"Cost":467,"Date":"8/8/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":911,"Cost":491,"Date":"8/26/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":411,"Cost":322,"Date":"9/2/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":352,"Cost":268,"Date":"9/29/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":651,"Cost":554,"Date":"10/12/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":66,"Cost":46,"Date":"11/2/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":22,"Cost":18,"Date":"11/4/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":285,"Cost":234,"Date":"11/7/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":120,"Cost":92,"Date":"12/1/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":896,"Cost":629,"Date":"12/4/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":382,"Cost":343,"Date":"12/7/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":597,"Cost":424,"Date":"12/18/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":935,"Cost":740,"Date":"12/20/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":796,"Cost":402,"Date":"12/20/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":933,"Cost":780,"Date":"12/21/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":531,"Cost":281,"Date":"1/9/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":585,"Cost":532,"Date":"2/5/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":524,"Cost":494,"Date":"2/16/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":146,"Cost":115,"Date":"2/16/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":968,"Cost":509,"Date":"2/18/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":261,"Cost":197,"Date":"2/22/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":230,"Cost":157,"Date":"2/25/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":403,"Cost":267,"Date":"3/8/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":255,"Cost":224,"Date":"4/2/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":673,"Cost":496,"Date":"4/3/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":413,"Cost":385,"Date":"4/9/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":350,"Cost":327,"Date":"4/10/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":522,"Cost":347,"Date":"4/19/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":202,"Cost":161,"Date":"5/17/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":588,"Cost":425,"Date":"5/22/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":51,"Cost":38,"Date":"6/20/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":312,"Cost":225,"Date":"7/1/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":42,"Cost":32,"Date":"7/4/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":832,"Cost":498,"Date":"7/8/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":515,"Cost":374,"Date":"7/9/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":193,"Cost":127,"Date":"7/14/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":561,"Cost":401,"Date":"7/19/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":370,"Cost":271,"Date":"8/1/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":428,"Cost":279,"Date":"8/6/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":261,"Cost":212,"Date":"8/7/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":991,"Cost":851,"Date":"8/22/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":279,"Cost":156,"Date":"8/31/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":243,"Cost":165,"Date":"9/1/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":860,"Cost":512,"Date":"9/1/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":771,"Cost":580,"Date":"9/17/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":547,"Cost":448,"Date":"9/29/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":380,"Cost":354,"Date":"11/7/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":316,"Cost":240,"Date":"11/26/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":851,"Cost":516,"Date":"11/27/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":240,"Cost":149,"Date":"12/5/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":794,"Cost":746,"Date":"12/26/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":804,"Cost":408,"Date":"12/31/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":616,"Cost":328,"Date":"1/20/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":434,"Cost":402,"Date":"2/2/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":333,"Cost":185,"Date":"2/8/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":944,"Cost":688,"Date":"2/27/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":385,"Cost":322,"Date":"3/1/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":377,"Cost":276,"Date":"3/1/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":94,"Cost":49,"Date":"3/19/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":83,"Cost":79,"Date":"3/28/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":941,"Cost":473,"Date":"5/21/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":760,"Cost":680,"Date":"7/21/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":680,"Cost":535,"Date":"8/5/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":400,"Cost":202,"Date":"8/12/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":230,"Cost":148,"Date":"8/21/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":780,"Cost":680,"Date":"8/23/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":334,"Cost":261,"Date":"9/3/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":554,"Cost":514,"Date":"9/5/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":583,"Cost":420,"Date":"10/6/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":700,"Cost":450,"Date":"10/19/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":444,"Cost":308,"Date":"11/15/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":886,"Cost":841,"Date":"12/8/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":295,"Cost":180,"Date":"1/8/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":469,"Cost":429,"Date":"1/14/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":905,"Cost":754,"Date":"1/19/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":843,"Cost":672,"Date":"1/28/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":176,"Cost":125,"Date":"1/31/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":45,"Cost":34,"Date":"3/27/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":70,"Cost":42,"Date":"4/20/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":397,"Cost":274,"Date":"4/24/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":509,"Cost":478,"Date":"4/28/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":706,"Cost":597,"Date":"5/15/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":497,"Cost":403,"Date":"5/16/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":112,"Cost":57,"Date":"5/18/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":517,"Cost":301,"Date":"6/2/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":574,"Cost":388,"Date":"6/3/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":301,"Cost":209,"Date":"6/5/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":638,"Cost":463,"Date":"6/7/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":32,"Cost":21,"Date":"6/14/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":382,"Cost":235,"Date":"6/20/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":916,"Cost":458,"Date":"6/24/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":495,"Cost":294,"Date":"7/4/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":594,"Cost":485,"Date":"7/9/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":189,"Cost":111,"Date":"7/12/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":76,"Cost":72,"Date":"8/14/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":894,"Cost":662,"Date":"8/16/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":532,"Cost":425,"Date":"8/23/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":646,"Cost":599,"Date":"9/2/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":219,"Cost":147,"Date":"9/3/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":793,"Cost":486,"Date":"9/16/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":818,"Cost":467,"Date":"10/4/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":326,"Cost":282,"Date":"11/1/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":608,"Cost":500,"Date":"11/2/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":474,"Cost":244,"Date":"12/17/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":147,"Cost":107,"Date":"2/10/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":815,"Cost":634,"Date":"2/28/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":908,"Cost":828,"Date":"3/4/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":708,"Cost":469,"Date":"3/9/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":833,"Cost":782,"Date":"3/9/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":127,"Cost":80,"Date":"3/11/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":201,"Cost":102,"Date":"3/17/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":741,"Cost":654,"Date":"3/17/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":275,"Cost":260,"Date":"3/23/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":145,"Cost":98,"Date":"4/1/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":102,"Cost":91,"Date":"5/7/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":633,"Cost":546,"Date":"5/10/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":49,"Cost":35,"Date":"5/20/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":549,"Cost":451,"Date":"6/2/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":449,"Cost":256,"Date":"6/11/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":81,"Cost":72,"Date":"6/16/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":623,"Cost":527,"Date":"6/16/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":723,"Cost":527,"Date":"7/10/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":236,"Cost":205,"Date":"7/11/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":213,"Cost":188,"Date":"8/28/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":374,"Cost":269,"Date":"8/29/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":52,"Cost":32,"Date":"8/31/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":494,"Cost":308,"Date":"9/8/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":213,"Cost":121,"Date":"9/13/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":25,"Cost":21,"Date":"9/14/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":641,"Cost":572,"Date":"9/19/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":372,"Cost":230,"Date":"9/25/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":887,"Cost":517,"Date":"10/4/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":104,"Cost":91,"Date":"10/10/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":999,"Cost":733,"Date":"10/17/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":43,"Cost":39,"Date":"10/28/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":357,"Cost":303,"Date":"10/30/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":822,"Cost":743,"Date":"11/1/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":925,"Cost":845,"Date":"11/15/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":958,"Cost":683,"Date":"11/25/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":400,"Cost":367,"Date":"1/10/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":893,"Cost":705,"Date":"1/14/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":85,"Cost":64,"Date":"1/20/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":516,"Cost":275,"Date":"2/8/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":744,"Cost":436,"Date":"2/25/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":222,"Cost":192,"Date":"3/7/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":266,"Cost":216,"Date":"3/14/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":295,"Cost":216,"Date":"3/27/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":488,"Cost":368,"Date":"4/5/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":44,"Cost":36,"Date":"4/14/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":362,"Cost":277,"Date":"5/3/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":194,"Cost":167,"Date":"5/9/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":269,"Cost":194,"Date":"5/15/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":913,"Cost":627,"Date":"5/25/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":226,"Cost":170,"Date":"5/26/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":867,"Cost":469,"Date":"5/31/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":514,"Cost":380,"Date":"7/27/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":750,"Cost":701,"Date":"9/17/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":443,"Cost":305,"Date":"10/6/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":379,"Cost":322,"Date":"10/8/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":918,"Cost":637,"Date":"10/26/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":169,"Cost":97,"Date":"11/16/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":153,"Cost":90,"Date":"11/18/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":327,"Cost":193,"Date":"12/1/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":132,"Cost":91,"Date":"2/9/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":139,"Cost":70,"Date":"2/11/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":725,"Cost":386,"Date":"3/10/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":67,"Cost":52,"Date":"3/16/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":64,"Cost":52,"Date":"3/18/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":343,"Cost":264,"Date":"3/20/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":483,"Cost":375,"Date":"3/26/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":124,"Cost":105,"Date":"6/2/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":348,"Cost":292,"Date":"6/10/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":170,"Cost":155,"Date":"6/16/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":380,"Cost":327,"Date":"6/25/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":289,"Cost":200,"Date":"7/19/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":909,"Cost":691,"Date":"7/21/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":240,"Cost":167,"Date":"7/25/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":38,"Cost":26,"Date":"8/4/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":548,"Cost":399,"Date":"9/2/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":784,"Cost":660,"Date":"9/4/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":976,"Cost":817,"Date":"9/19/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":496,"Cost":364,"Date":"9/29/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":839,"Cost":478,"Date":"10/2/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":304,"Cost":279,"Date":"10/15/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":152,"Cost":86,"Date":"10/30/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":422,"Cost":242,"Date":"11/9/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":487,"Cost":303,"Date":"11/23/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":510,"Cost":485,"Date":"11/30/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":78,"Cost":65,"Date":"12/8/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":796,"Cost":648,"Date":"12/11/2018"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":354,"Cost":269,"Date":"1/15/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":712,"Cost":644,"Date":"1/24/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":141,"Cost":91,"Date":"2/3/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":540,"Cost":417,"Date":"2/4/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":130,"Cost":110,"Date":"3/9/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":861,"Cost":518,"Date":"3/12/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":156,"Cost":83,"Date":"4/19/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":193,"Cost":112,"Date":"5/3/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":24,"Cost":18,"Date":"5/4/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":372,"Cost":198,"Date":"6/8/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":827,"Cost":753,"Date":"6/26/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":164,"Cost":86,"Date":"7/4/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":653,"Cost":433,"Date":"7/13/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":123,"Cost":103,"Date":"8/8/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":902,"Cost":759,"Date":"8/26/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":312,"Cost":292,"Date":"9/2/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":576,"Cost":483,"Date":"9/29/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":360,"Cost":300,"Date":"10/12/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":406,"Cost":209,"Date":"11/2/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":432,"Cost":398,"Date":"11/4/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":508,"Cost":340,"Date":"11/7/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":244,"Cost":228,"Date":"12/1/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":94,"Cost":53,"Date":"12/4/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":486,"Cost":381,"Date":"12/7/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":191,"Cost":116,"Date":"12/18/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":691,"Cost":463,"Date":"12/20/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":142,"Cost":73,"Date":"12/20/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":272,"Cost":193,"Date":"12/21/2019"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":838,"Cost":481,"Date":"1/9/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":785,"Cost":582,"Date":"2/5/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":554,"Cost":489,"Date":"2/16/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":327,"Cost":251,"Date":"2/16/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":632,"Cost":590,"Date":"2/18/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":133,"Cost":84,"Date":"2/22/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":846,"Cost":476,"Date":"2/25/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":842,"Cost":466,"Date":"3/8/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":442,"Cost":281,"Date":"4/2/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":390,"Cost":245,"Date":"4/3/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":900,"Cost":794,"Date":"4/9/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":928,"Cost":679,"Date":"4/10/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":533,"Cost":473,"Date":"4/19/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":520,"Cost":390,"Date":"5/17/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":808,"Cost":506,"Date":"5/22/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":957,"Cost":565,"Date":"6/20/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":150,"Cost":111,"Date":"7/1/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":624,"Cost":545,"Date":"7/4/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":363,"Cost":260,"Date":"7/8/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":402,"Cost":368,"Date":"7/9/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":696,"Cost":447,"Date":"7/14/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":786,"Cost":583,"Date":"7/19/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":879,"Cost":747,"Date":"8/1/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":441,"Cost":392,"Date":"8/6/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":133,"Cost":79,"Date":"8/7/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":689,"Cost":497,"Date":"8/22/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":828,"Cost":617,"Date":"8/31/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":905,"Cost":704,"Date":"9/1/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":461,"Cost":250,"Date":"9/1/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":658,"Cost":434,"Date":"9/17/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":127,"Cost":109,"Date":"9/29/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":204,"Cost":154,"Date":"11/7/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":2,"Cost":2,"Date":"11/26/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":392,"Cost":224,"Date":"11/27/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":672,"Cost":355,"Date":"12/5/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":243,"Cost":223,"Date":"12/26/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":753,"Cost":397,"Date":"12/31/2020"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":288,"Cost":153,"Date":"1/20/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":489,"Cost":285,"Date":"2/2/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":678,"Cost":590,"Date":"2/8/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":750,"Cost":567,"Date":"2/27/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":306,"Cost":180,"Date":"3/1/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":878,"Cost":683,"Date":"3/1/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":948,"Cost":661,"Date":"3/19/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":884,"Cost":612,"Date":"3/28/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":77,"Cost":56,"Date":"5/21/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":41,"Cost":36,"Date":"7/21/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":492,"Cost":346,"Date":"8/5/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":346,"Cost":235,"Date":"8/12/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":271,"Cost":256,"Date":"8/21/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":610,"Cost":421,"Date":"8/23/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":39,"Cost":26,"Date":"9/3/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":278,"Cost":254,"Date":"9/5/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":561,"Cost":341,"Date":"10/6/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":586,"Cost":357,"Date":"10/19/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":737,"Cost":654,"Date":"11/15/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":389,"Cost":222,"Date":"12/8/2021"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":613,"Cost":468,"Date":"1/8/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":600,"Cost":379,"Date":"1/14/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":91,"Cost":63,"Date":"1/19/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":522,"Cost":360,"Date":"1/28/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":302,"Cost":276,"Date":"1/31/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":964,"Cost":862,"Date":"3/27/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":770,"Cost":465,"Date":"4/20/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":938,"Cost":680,"Date":"4/24/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":902,"Cost":551,"Date":"4/28/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":269,"Cost":247,"Date":"5/15/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":256,"Cost":174,"Date":"5/16/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":210,"Cost":124,"Date":"5/18/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":472,"Cost":315,"Date":"6/2/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":326,"Cost":210,"Date":"6/3/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":923,"Cost":550,"Date":"6/5/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":371,"Cost":202,"Date":"6/7/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":911,"Cost":846,"Date":"6/14/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":683,"Cost":463,"Date":"6/20/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":318,"Cost":275,"Date":"6/24/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":661,"Cost":552,"Date":"7/4/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":819,"Cost":709,"Date":"7/9/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":44,"Cost":31,"Date":"7/12/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":73,"Cost":50,"Date":"8/14/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":318,"Cost":165,"Date":"8/16/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":393,"Cost":294,"Date":"8/23/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":788,"Cost":456,"Date":"9/2/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":955,"Cost":574,"Date":"9/3/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":263,"Cost":230,"Date":"9/16/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":261,"Cost":215,"Date":"10/4/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":33,"Cost":27,"Date":"11/1/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":158,"Cost":135,"Date":"11/2/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":237,"Cost":165,"Date":"12/17/2022"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":347,"Cost":296,"Date":"2/10/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":450,"Cost":315,"Date":"2/28/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":94,"Cost":76,"Date":"3/4/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":976,"Cost":782,"Date":"3/9/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":566,"Cost":340,"Date":"3/9/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":789,"Cost":629,"Date":"3/11/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":90,"Cost":50,"Date":"3/17/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":476,"Cost":248,"Date":"3/17/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":185,"Cost":94,"Date":"3/23/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":579,"Cost":387,"Date":"4/1/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":826,"Cost":615,"Date":"5/7/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":944,"Cost":850,"Date":"5/10/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":196,"Cost":168,"Date":"5/20/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":609,"Cost":547,"Date":"6/2/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":988,"Cost":679,"Date":"6/11/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":966,"Cost":590,"Date":"6/16/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":626,"Cost":585,"Date":"6/16/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":853,"Cost":714,"Date":"7/10/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":284,"Cost":207,"Date":"7/11/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":219,"Cost":190,"Date":"8/28/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":204,"Cost":156,"Date":"8/29/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":836,"Cost":706,"Date":"8/31/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":461,"Cost":312,"Date":"9/8/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":298,"Cost":277,"Date":"9/13/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":11,"Cost":5,"Date":"9/14/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":98,"Cost":66,"Date":"9/19/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":226,"Cost":129,"Date":"9/25/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":996,"Cost":930,"Date":"10/4/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":496,"Cost":406,"Date":"10/10/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":428,"Cost":332,"Date":"10/17/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":819,"Cost":658,"Date":"10/28/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":472,"Cost":257,"Date":"10/30/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":108,"Cost":92,"Date":"11/1/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":149,"Cost":130,"Date":"11/15/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":602,"Cost":378,"Date":"11/25/2023"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":138,"Cost":103,"Date":"1/10/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":366,"Cost":263,"Date":"1/14/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":151,"Cost":110,"Date":"1/20/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":538,"Cost":307,"Date":"2/8/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":992,"Cost":632,"Date":"2/25/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":902,"Cost":741,"Date":"3/7/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":529,"Cost":486,"Date":"3/14/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":985,"Cost":602,"Date":"3/27/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":244,"Cost":131,"Date":"4/5/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":801,"Cost":518,"Date":"4/14/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":301,"Cost":258,"Date":"5/3/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":563,"Cost":427,"Date":"5/9/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":419,"Cost":251,"Date":"5/15/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":538,"Cost":405,"Date":"5/25/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":468,"Cost":302,"Date":"5/26/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":719,"Cost":527,"Date":"5/31/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":770,"Cost":399,"Date":"7/27/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":628,"Cost":443,"Date":"9/17/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":629,"Cost":540,"Date":"10/6/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":541,"Cost":514,"Date":"10/8/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":885,"Cost":581,"Date":"10/26/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":590,"Cost":333,"Date":"11/16/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":619,"Cost":579,"Date":"11/18/2024"},{"Store":"Melbourne Central","Brand":"Sellpy","Country":"Australia","Sale":647,"Cost":511,"Date":"12/1/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":842,"Cost":433,"Date":"2/9/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":793,"Cost":570,"Date":"2/11/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":699,"Cost":534,"Date":"3/10/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":658,"Cost":532,"Date":"3/16/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":776,"Cost":473,"Date":"3/18/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":931,"Cost":492,"Date":"3/20/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":782,"Cost":672,"Date":"3/26/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":106,"Cost":101,"Date":"6/2/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":146,"Cost":82,"Date":"6/10/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":513,"Cost":301,"Date":"6/16/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":442,"Cost":226,"Date":"6/25/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":47,"Cost":29,"Date":"7/19/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":37,"Cost":23,"Date":"7/21/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":423,"Cost":393,"Date":"7/25/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":830,"Cost":492,"Date":"8/4/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":693,"Cost":503,"Date":"9/2/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":63,"Cost":34,"Date":"9/4/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":679,"Cost":536,"Date":"9/19/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":495,"Cost":324,"Date":"9/29/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":920,"Cost":630,"Date":"10/2/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":951,"Cost":548,"Date":"10/15/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":970,"Cost":701,"Date":"10/30/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":394,"Cost":201,"Date":"11/9/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":539,"Cost":427,"Date":"11/23/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":456,"Cost":311,"Date":"11/30/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":950,"Cost":861,"Date":"12/8/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":760,"Cost":670,"Date":"12/11/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":326,"Cost":182,"Date":"1/15/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":702,"Cost":543,"Date":"1/24/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":751,"Cost":476,"Date":"2/3/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":246,"Cost":229,"Date":"2/4/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":37,"Cost":35,"Date":"3/9/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":991,"Cost":512,"Date":"3/12/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":281,"Cost":152,"Date":"4/19/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":837,"Cost":597,"Date":"5/3/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":511,"Cost":459,"Date":"5/4/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":426,"Cost":365,"Date":"6/8/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":517,"Cost":446,"Date":"6/26/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":736,"Cost":609,"Date":"7/4/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":830,"Cost":608,"Date":"7/13/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":767,"Cost":545,"Date":"8/8/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":90,"Cost":85,"Date":"8/26/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":525,"Cost":308,"Date":"9/2/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":147,"Cost":118,"Date":"9/29/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":124,"Cost":71,"Date":"10/12/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":795,"Cost":480,"Date":"11/2/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":886,"Cost":811,"Date":"11/4/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":932,"Cost":640,"Date":"11/7/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":193,"Cost":98,"Date":"12/1/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":190,"Cost":141,"Date":"12/4/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":682,"Cost":456,"Date":"12/7/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":229,"Cost":174,"Date":"12/18/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":805,"Cost":706,"Date":"12/20/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":92,"Cost":65,"Date":"12/20/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":432,"Cost":395,"Date":"12/21/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":738,"Cost":389,"Date":"1/9/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":188,"Cost":116,"Date":"2/5/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":460,"Cost":378,"Date":"2/16/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":501,"Cost":406,"Date":"2/16/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":144,"Cost":130,"Date":"2/18/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":740,"Cost":548,"Date":"2/22/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":439,"Cost":404,"Date":"2/25/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":637,"Cost":446,"Date":"3/8/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":182,"Cost":160,"Date":"4/2/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":69,"Cost":52,"Date":"4/3/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":662,"Cost":458,"Date":"4/9/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":98,"Cost":51,"Date":"4/10/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":854,"Cost":746,"Date":"4/19/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":809,"Cost":421,"Date":"5/17/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":32,"Cost":17,"Date":"5/22/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":819,"Cost":442,"Date":"6/20/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":285,"Cost":259,"Date":"7/1/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":891,"Cost":826,"Date":"7/4/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":546,"Cost":433,"Date":"7/8/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":784,"Cost":652,"Date":"7/9/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":135,"Cost":102,"Date":"7/14/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":450,"Cost":247,"Date":"7/19/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":586,"Cost":527,"Date":"8/1/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":211,"Cost":174,"Date":"8/6/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":228,"Cost":208,"Date":"8/7/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":54,"Cost":40,"Date":"8/22/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":394,"Cost":217,"Date":"8/31/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":941,"Cost":890,"Date":"9/1/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":794,"Cost":536,"Date":"9/1/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":302,"Cost":219,"Date":"9/17/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":624,"Cost":401,"Date":"9/29/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":4,"Cost":4,"Date":"11/7/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":658,"Cost":502,"Date":"11/26/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":304,"Cost":260,"Date":"11/27/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":12,"Cost":6,"Date":"12/5/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":331,"Cost":231,"Date":"12/26/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":784,"Cost":427,"Date":"12/31/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":622,"Cost":544,"Date":"1/20/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":787,"Cost":678,"Date":"2/2/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":662,"Cost":458,"Date":"2/8/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":315,"Cost":251,"Date":"2/27/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":903,"Cost":838,"Date":"3/1/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":850,"Cost":741,"Date":"3/1/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":888,"Cost":751,"Date":"3/19/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":958,"Cost":862,"Date":"3/28/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":866,"Cost":484,"Date":"5/21/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":816,"Cost":586,"Date":"7/21/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":558,"Cost":504,"Date":"8/5/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":585,"Cost":493,"Date":"8/12/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":497,"Cost":393,"Date":"8/21/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":440,"Cost":260,"Date":"8/23/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":200,"Cost":184,"Date":"9/3/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":9,"Cost":8,"Date":"9/5/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":71,"Cost":62,"Date":"10/6/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":517,"Cost":472,"Date":"10/19/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":574,"Cost":366,"Date":"11/15/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":213,"Cost":202,"Date":"12/8/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":813,"Cost":464,"Date":"1/8/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":818,"Cost":698,"Date":"1/14/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":560,"Cost":524,"Date":"1/19/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":453,"Cost":377,"Date":"1/28/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":390,"Cost":258,"Date":"1/31/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":86,"Cost":55,"Date":"3/27/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":199,"Cost":176,"Date":"4/20/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":468,"Cost":380,"Date":"4/24/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":61,"Cost":42,"Date":"4/28/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":291,"Cost":187,"Date":"5/15/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":45,"Cost":39,"Date":"5/16/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":623,"Cost":564,"Date":"5/18/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":354,"Cost":249,"Date":"6/2/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":599,"Cost":568,"Date":"6/3/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":371,"Cost":347,"Date":"6/5/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":100,"Cost":69,"Date":"6/7/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":407,"Cost":264,"Date":"6/14/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":396,"Cost":208,"Date":"6/20/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":856,"Cost":612,"Date":"6/24/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":860,"Cost":621,"Date":"7/4/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":505,"Cost":293,"Date":"7/9/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":367,"Cost":278,"Date":"7/12/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":78,"Cost":54,"Date":"8/14/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":88,"Cost":45,"Date":"8/16/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":948,"Cost":656,"Date":"8/23/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":310,"Cost":224,"Date":"9/2/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":698,"Cost":516,"Date":"9/3/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":19,"Cost":18,"Date":"9/16/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":472,"Cost":350,"Date":"10/4/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":196,"Cost":101,"Date":"11/1/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":774,"Cost":486,"Date":"11/2/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":777,"Cost":479,"Date":"12/17/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":653,"Cost":335,"Date":"2/10/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":699,"Cost":624,"Date":"2/28/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":578,"Cost":297,"Date":"3/4/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":167,"Cost":116,"Date":"3/9/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":110,"Cost":99,"Date":"3/9/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":337,"Cost":291,"Date":"3/11/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":299,"Cost":243,"Date":"3/17/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":619,"Cost":517,"Date":"3/17/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":969,"Cost":634,"Date":"3/23/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":426,"Cost":250,"Date":"4/1/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":424,"Cost":353,"Date":"5/7/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":343,"Cost":193,"Date":"5/10/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":416,"Cost":227,"Date":"5/20/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":859,"Cost":671,"Date":"6/2/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":693,"Cost":625,"Date":"6/11/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":142,"Cost":75,"Date":"6/16/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":331,"Cost":170,"Date":"6/16/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":406,"Cost":296,"Date":"7/10/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":632,"Cost":508,"Date":"7/11/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":604,"Cost":510,"Date":"8/28/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":743,"Cost":526,"Date":"8/29/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":966,"Cost":818,"Date":"8/31/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":294,"Cost":187,"Date":"9/8/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":999,"Cost":513,"Date":"9/13/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":763,"Cost":616,"Date":"9/14/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":734,"Cost":410,"Date":"9/19/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":171,"Cost":134,"Date":"9/25/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":65,"Cost":59,"Date":"10/4/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":743,"Cost":698,"Date":"10/10/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":55,"Cost":52,"Date":"10/17/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":986,"Cost":889,"Date":"10/28/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":841,"Cost":708,"Date":"10/30/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":754,"Cost":385,"Date":"11/1/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":445,"Cost":411,"Date":"11/15/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":120,"Cost":105,"Date":"11/25/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":129,"Cost":66,"Date":"1/10/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":338,"Cost":206,"Date":"1/14/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":624,"Cost":519,"Date":"1/20/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":162,"Cost":95,"Date":"2/8/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":532,"Cost":476,"Date":"2/25/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":388,"Cost":328,"Date":"3/7/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":607,"Cost":403,"Date":"3/14/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":376,"Cost":271,"Date":"3/27/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":548,"Cost":351,"Date":"4/5/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":249,"Cost":139,"Date":"4/14/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":448,"Cost":426,"Date":"5/3/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":897,"Cost":743,"Date":"5/9/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":118,"Cost":68,"Date":"5/15/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":897,"Cost":646,"Date":"5/25/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":406,"Cost":354,"Date":"5/26/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":2,"Cost":2,"Date":"5/31/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":679,"Cost":491,"Date":"7/27/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":642,"Cost":354,"Date":"9/17/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":365,"Cost":276,"Date":"10/6/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":785,"Cost":439,"Date":"10/8/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":67,"Cost":59,"Date":"10/26/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":255,"Cost":135,"Date":"11/16/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":285,"Cost":256,"Date":"11/18/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"COS","Country":"Australia","Sale":421,"Cost":218,"Date":"12/1/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":467,"Cost":315,"Date":"2/9/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":995,"Cost":659,"Date":"2/11/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":177,"Cost":103,"Date":"3/10/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":853,"Cost":651,"Date":"3/16/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":590,"Cost":387,"Date":"3/18/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":917,"Cost":629,"Date":"3/20/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":33,"Cost":31,"Date":"3/26/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":364,"Cost":236,"Date":"6/2/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":655,"Cost":501,"Date":"6/10/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":894,"Cost":753,"Date":"6/16/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":222,"Cost":179,"Date":"6/25/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":862,"Cost":778,"Date":"7/19/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":512,"Cost":317,"Date":"7/21/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":103,"Cost":91,"Date":"7/25/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":511,"Cost":289,"Date":"8/4/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":602,"Cost":553,"Date":"9/2/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":541,"Cost":332,"Date":"9/4/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":105,"Cost":65,"Date":"9/19/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":18,"Cost":11,"Date":"9/29/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":770,"Cost":682,"Date":"10/2/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":550,"Cost":412,"Date":"10/15/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":757,"Cost":620,"Date":"10/30/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":43,"Cost":31,"Date":"11/9/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":397,"Cost":227,"Date":"11/23/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":188,"Cost":115,"Date":"11/30/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":688,"Cost":467,"Date":"12/8/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":763,"Cost":597,"Date":"12/11/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":672,"Cost":399,"Date":"1/15/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":996,"Cost":942,"Date":"1/24/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":301,"Cost":243,"Date":"2/3/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":1000,"Cost":815,"Date":"2/4/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":66,"Cost":60,"Date":"3/9/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":522,"Cost":327,"Date":"3/12/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":168,"Cost":96,"Date":"4/19/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":572,"Cost":457,"Date":"5/3/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":513,"Cost":258,"Date":"5/4/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":461,"Cost":296,"Date":"6/8/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":412,"Cost":386,"Date":"6/26/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":82,"Cost":66,"Date":"7/4/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":908,"Cost":781,"Date":"7/13/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":655,"Cost":554,"Date":"8/8/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":508,"Cost":322,"Date":"8/26/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":135,"Cost":126,"Date":"9/2/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":250,"Cost":174,"Date":"9/29/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":328,"Cost":239,"Date":"10/12/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":990,"Cost":750,"Date":"11/2/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":66,"Cost":55,"Date":"11/4/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":260,"Cost":162,"Date":"11/7/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":183,"Cost":122,"Date":"12/1/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":681,"Cost":381,"Date":"12/4/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":369,"Cost":339,"Date":"12/7/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":811,"Cost":439,"Date":"12/18/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":359,"Cost":312,"Date":"12/20/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":732,"Cost":586,"Date":"12/20/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":462,"Cost":347,"Date":"12/21/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":182,"Cost":103,"Date":"1/9/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":749,"Cost":500,"Date":"2/5/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":955,"Cost":571,"Date":"2/16/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":715,"Cost":481,"Date":"2/16/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":159,"Cost":145,"Date":"2/18/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":38,"Cost":26,"Date":"2/22/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":104,"Cost":93,"Date":"2/25/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":295,"Cost":215,"Date":"3/8/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":844,"Cost":542,"Date":"4/2/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":24,"Cost":21,"Date":"4/3/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":600,"Cost":511,"Date":"4/9/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":654,"Cost":395,"Date":"4/10/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":535,"Cost":343,"Date":"4/19/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":103,"Cost":60,"Date":"5/17/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":575,"Cost":288,"Date":"5/22/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":746,"Cost":551,"Date":"6/20/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":158,"Cost":83,"Date":"7/1/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":447,"Cost":367,"Date":"7/4/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":846,"Cost":687,"Date":"7/8/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":756,"Cost":713,"Date":"7/9/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":467,"Cost":333,"Date":"7/14/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":245,"Cost":160,"Date":"7/19/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":609,"Cost":349,"Date":"8/1/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":699,"Cost":532,"Date":"8/6/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":915,"Cost":685,"Date":"8/7/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":10,"Cost":7,"Date":"8/22/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":574,"Cost":444,"Date":"8/31/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":228,"Cost":141,"Date":"9/1/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":774,"Cost":414,"Date":"9/1/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":556,"Cost":527,"Date":"9/17/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":95,"Cost":49,"Date":"9/29/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":335,"Cost":316,"Date":"11/7/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":817,"Cost":467,"Date":"11/26/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":159,"Cost":123,"Date":"11/27/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":643,"Cost":388,"Date":"12/5/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":11,"Cost":9,"Date":"12/26/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":506,"Cost":432,"Date":"12/31/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":706,"Cost":538,"Date":"1/20/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":962,"Cost":658,"Date":"2/2/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":94,"Cost":65,"Date":"2/8/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":288,"Cost":213,"Date":"2/27/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":874,"Cost":820,"Date":"3/1/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":340,"Cost":269,"Date":"3/1/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":842,"Cost":682,"Date":"3/19/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":499,"Cost":335,"Date":"3/28/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":458,"Cost":362,"Date":"5/21/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":345,"Cost":286,"Date":"7/21/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":212,"Cost":181,"Date":"8/5/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":154,"Cost":144,"Date":"8/12/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":19,"Cost":9,"Date":"8/21/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":835,"Cost":442,"Date":"8/23/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":916,"Cost":722,"Date":"9/3/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":869,"Cost":677,"Date":"9/5/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":536,"Cost":387,"Date":"10/6/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":482,"Cost":286,"Date":"10/19/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":855,"Cost":566,"Date":"11/15/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":807,"Cost":601,"Date":"12/8/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":433,"Cost":319,"Date":"1/8/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":161,"Cost":135,"Date":"1/14/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":545,"Cost":375,"Date":"1/19/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":485,"Cost":454,"Date":"1/28/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":685,"Cost":608,"Date":"1/31/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":60,"Cost":54,"Date":"3/27/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":375,"Cost":231,"Date":"4/20/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":125,"Cost":98,"Date":"4/24/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":207,"Cost":174,"Date":"4/28/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":893,"Cost":564,"Date":"5/15/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":228,"Cost":131,"Date":"5/16/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":274,"Cost":223,"Date":"5/18/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":816,"Cost":485,"Date":"6/2/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":299,"Cost":244,"Date":"6/3/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":62,"Cost":36,"Date":"6/5/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":209,"Cost":170,"Date":"6/7/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":290,"Cost":238,"Date":"6/14/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":480,"Cost":354,"Date":"6/20/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":779,"Cost":473,"Date":"6/24/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":332,"Cost":295,"Date":"7/4/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":914,"Cost":648,"Date":"7/9/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":731,"Cost":551,"Date":"7/12/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":423,"Cost":368,"Date":"8/14/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":830,"Cost":514,"Date":"8/16/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":258,"Cost":210,"Date":"8/23/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":122,"Cost":111,"Date":"9/2/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":431,"Cost":257,"Date":"9/3/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":493,"Cost":265,"Date":"9/16/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":556,"Cost":514,"Date":"10/4/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":532,"Cost":412,"Date":"11/1/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":865,"Cost":738,"Date":"11/2/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":593,"Cost":453,"Date":"12/17/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":918,"Cost":570,"Date":"2/10/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":473,"Cost":376,"Date":"2/28/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":92,"Cost":54,"Date":"3/4/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":368,"Cost":326,"Date":"3/9/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":833,"Cost":709,"Date":"3/9/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":939,"Cost":703,"Date":"3/11/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":950,"Cost":856,"Date":"3/17/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":836,"Cost":658,"Date":"3/17/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":682,"Cost":531,"Date":"3/23/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":219,"Cost":154,"Date":"4/1/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":287,"Cost":186,"Date":"5/7/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":997,"Cost":808,"Date":"5/10/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":978,"Cost":619,"Date":"5/20/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":211,"Cost":111,"Date":"6/2/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":571,"Cost":495,"Date":"6/11/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":4,"Cost":2,"Date":"6/16/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":507,"Cost":276,"Date":"6/16/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":232,"Cost":121,"Date":"7/10/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":263,"Cost":226,"Date":"7/11/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":136,"Cost":70,"Date":"8/28/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":569,"Cost":427,"Date":"8/29/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":249,"Cost":178,"Date":"8/31/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":753,"Cost":476,"Date":"9/8/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":438,"Cost":242,"Date":"9/13/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":245,"Cost":214,"Date":"9/14/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":945,"Cost":666,"Date":"9/19/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":940,"Cost":632,"Date":"9/25/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":97,"Cost":67,"Date":"10/4/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":877,"Cost":564,"Date":"10/10/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":557,"Cost":492,"Date":"10/17/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":608,"Cost":393,"Date":"10/28/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":48,"Cost":26,"Date":"10/30/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":190,"Cost":105,"Date":"11/1/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":711,"Cost":567,"Date":"11/15/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":681,"Cost":487,"Date":"11/25/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":746,"Cost":451,"Date":"1/10/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":346,"Cost":296,"Date":"1/14/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":766,"Cost":660,"Date":"1/20/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":708,"Cost":577,"Date":"2/8/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":786,"Cost":721,"Date":"2/25/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":347,"Cost":251,"Date":"3/7/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":18,"Cost":16,"Date":"3/14/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":373,"Cost":327,"Date":"3/27/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":309,"Cost":251,"Date":"4/5/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":324,"Cost":165,"Date":"4/14/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":537,"Cost":308,"Date":"5/3/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":826,"Cost":663,"Date":"5/9/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":684,"Cost":463,"Date":"5/15/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":490,"Cost":405,"Date":"5/25/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":565,"Cost":393,"Date":"5/26/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":451,"Cost":242,"Date":"5/31/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":25,"Cost":16,"Date":"7/27/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":945,"Cost":553,"Date":"9/17/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":984,"Cost":727,"Date":"10/6/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":996,"Cost":807,"Date":"10/8/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":923,"Cost":707,"Date":"10/26/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":139,"Cost":129,"Date":"11/16/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":1,"Cost":0,"Date":"11/18/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":715,"Cost":369,"Date":"12/1/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":860,"Cost":591,"Date":"2/9/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":180,"Cost":166,"Date":"2/11/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":34,"Cost":23,"Date":"3/10/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":182,"Cost":93,"Date":"3/16/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":352,"Cost":295,"Date":"3/18/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":124,"Cost":70,"Date":"3/20/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":984,"Cost":929,"Date":"3/26/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":515,"Cost":404,"Date":"6/2/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":708,"Cost":670,"Date":"6/10/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":134,"Cost":105,"Date":"6/16/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":454,"Cost":411,"Date":"6/25/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":647,"Cost":606,"Date":"7/19/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":182,"Cost":101,"Date":"7/21/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":153,"Cost":82,"Date":"7/25/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":983,"Cost":853,"Date":"8/4/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":893,"Cost":496,"Date":"9/2/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":880,"Cost":626,"Date":"9/4/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":865,"Cost":817,"Date":"9/19/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":232,"Cost":191,"Date":"9/29/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":418,"Cost":346,"Date":"10/2/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":491,"Cost":446,"Date":"10/15/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":758,"Cost":440,"Date":"10/30/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":853,"Cost":465,"Date":"11/9/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":460,"Cost":322,"Date":"11/23/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":816,"Cost":683,"Date":"11/30/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":800,"Cost":410,"Date":"12/8/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":130,"Cost":99,"Date":"12/11/2018"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":276,"Cost":178,"Date":"1/15/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":480,"Cost":437,"Date":"1/24/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":584,"Cost":541,"Date":"2/3/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":394,"Cost":276,"Date":"2/4/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":855,"Cost":690,"Date":"3/9/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":998,"Cost":654,"Date":"3/12/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":922,"Cost":607,"Date":"4/19/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":263,"Cost":214,"Date":"5/3/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":593,"Cost":541,"Date":"5/4/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":132,"Cost":67,"Date":"6/8/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":748,"Cost":374,"Date":"6/26/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":572,"Cost":381,"Date":"7/4/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":963,"Cost":817,"Date":"7/13/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":775,"Cost":557,"Date":"8/8/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":575,"Cost":472,"Date":"8/26/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":866,"Cost":771,"Date":"9/2/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":804,"Cost":673,"Date":"9/29/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":476,"Cost":330,"Date":"10/12/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":394,"Cost":261,"Date":"11/2/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":271,"Cost":209,"Date":"11/4/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":910,"Cost":767,"Date":"11/7/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":653,"Cost":362,"Date":"12/1/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":64,"Cost":59,"Date":"12/4/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":401,"Cost":374,"Date":"12/7/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":408,"Cost":250,"Date":"12/18/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":613,"Cost":348,"Date":"12/20/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":248,"Cost":209,"Date":"12/20/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":415,"Cost":380,"Date":"12/21/2019"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":199,"Cost":113,"Date":"1/9/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":93,"Cost":60,"Date":"2/5/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":580,"Cost":305,"Date":"2/16/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":907,"Cost":721,"Date":"2/16/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":6,"Cost":4,"Date":"2/18/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":437,"Cost":337,"Date":"2/22/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":619,"Cost":390,"Date":"2/25/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":911,"Cost":689,"Date":"3/8/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":277,"Cost":194,"Date":"4/2/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":866,"Cost":608,"Date":"4/3/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":392,"Cost":343,"Date":"4/9/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":519,"Cost":343,"Date":"4/10/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":521,"Cost":276,"Date":"4/19/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":485,"Cost":334,"Date":"5/17/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":646,"Cost":462,"Date":"5/22/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":500,"Cost":260,"Date":"6/20/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":892,"Cost":611,"Date":"7/1/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":224,"Cost":181,"Date":"7/4/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":791,"Cost":595,"Date":"7/8/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":769,"Cost":652,"Date":"7/9/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":965,"Cost":901,"Date":"7/14/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":918,"Cost":530,"Date":"7/19/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":27,"Cost":25,"Date":"8/1/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":677,"Cost":408,"Date":"8/6/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":339,"Cost":184,"Date":"8/7/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":403,"Cost":287,"Date":"8/22/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":724,"Cost":516,"Date":"8/31/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":378,"Cost":306,"Date":"9/1/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":544,"Cost":405,"Date":"9/1/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":898,"Cost":756,"Date":"9/17/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":656,"Cost":571,"Date":"9/29/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":509,"Cost":292,"Date":"11/7/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":481,"Cost":403,"Date":"11/26/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":296,"Cost":214,"Date":"11/27/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":294,"Cost":248,"Date":"12/5/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":430,"Cost":228,"Date":"12/26/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":764,"Cost":711,"Date":"12/31/2020"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":468,"Cost":422,"Date":"1/20/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":664,"Cost":548,"Date":"2/2/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":292,"Cost":254,"Date":"2/8/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":137,"Cost":109,"Date":"2/27/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":798,"Cost":735,"Date":"3/1/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":134,"Cost":118,"Date":"3/1/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":673,"Cost":399,"Date":"3/19/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":347,"Cost":325,"Date":"3/28/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":234,"Cost":201,"Date":"5/21/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":834,"Cost":784,"Date":"7/21/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":151,"Cost":128,"Date":"8/5/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":330,"Cost":272,"Date":"8/12/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":195,"Cost":132,"Date":"8/21/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":235,"Cost":175,"Date":"8/23/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":819,"Cost":705,"Date":"9/3/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":984,"Cost":641,"Date":"9/5/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":258,"Cost":174,"Date":"10/6/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":977,"Cost":566,"Date":"10/19/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":89,"Cost":81,"Date":"11/15/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":355,"Cost":336,"Date":"12/8/2021"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":82,"Cost":41,"Date":"1/8/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":330,"Cost":258,"Date":"1/14/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":216,"Cost":153,"Date":"1/19/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":465,"Cost":396,"Date":"1/28/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":321,"Cost":295,"Date":"1/31/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":939,"Cost":643,"Date":"3/27/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":459,"Cost":362,"Date":"4/20/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":646,"Cost":450,"Date":"4/24/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":736,"Cost":550,"Date":"4/28/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":229,"Cost":150,"Date":"5/15/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":592,"Cost":349,"Date":"5/16/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":609,"Cost":389,"Date":"5/18/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":140,"Cost":119,"Date":"6/2/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":124,"Cost":114,"Date":"6/3/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":193,"Cost":112,"Date":"6/5/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":281,"Cost":169,"Date":"6/7/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":223,"Cost":190,"Date":"6/14/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":370,"Cost":271,"Date":"6/20/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":606,"Cost":362,"Date":"6/24/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":696,"Cost":371,"Date":"7/4/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":793,"Cost":490,"Date":"7/9/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":950,"Cost":803,"Date":"7/12/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":355,"Cost":313,"Date":"8/14/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":759,"Cost":474,"Date":"8/16/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":924,"Cost":719,"Date":"8/23/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":739,"Cost":604,"Date":"9/2/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":465,"Cost":322,"Date":"9/3/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":935,"Cost":626,"Date":"9/16/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":378,"Cost":272,"Date":"10/4/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":163,"Cost":94,"Date":"11/1/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":92,"Cost":59,"Date":"11/2/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":56,"Cost":29,"Date":"12/17/2022"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":598,"Cost":511,"Date":"2/10/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":808,"Cost":640,"Date":"2/28/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":857,"Cost":447,"Date":"3/4/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":315,"Cost":201,"Date":"3/9/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":179,"Cost":154,"Date":"3/9/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":204,"Cost":128,"Date":"3/11/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":845,"Cost":492,"Date":"3/17/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":389,"Cost":298,"Date":"3/17/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":119,"Cost":108,"Date":"3/23/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":531,"Cost":451,"Date":"4/1/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":748,"Cost":623,"Date":"5/7/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":334,"Cost":235,"Date":"5/10/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":870,"Cost":750,"Date":"5/20/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":892,"Cost":542,"Date":"6/2/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":264,"Cost":144,"Date":"6/11/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":212,"Cost":176,"Date":"6/16/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":815,"Cost":672,"Date":"6/16/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":93,"Cost":58,"Date":"7/10/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":267,"Cost":186,"Date":"7/11/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":960,"Cost":506,"Date":"8/28/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":183,"Cost":128,"Date":"8/29/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":478,"Cost":322,"Date":"8/31/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":363,"Cost":264,"Date":"9/8/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":431,"Cost":319,"Date":"9/13/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":604,"Cost":430,"Date":"9/14/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":441,"Cost":381,"Date":"9/19/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":869,"Cost":687,"Date":"9/25/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":678,"Cost":528,"Date":"10/4/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":194,"Cost":146,"Date":"10/10/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":110,"Cost":87,"Date":"10/17/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":125,"Cost":105,"Date":"10/28/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":754,"Cost":493,"Date":"10/30/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":575,"Cost":520,"Date":"11/1/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":897,"Cost":623,"Date":"11/15/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":263,"Cost":186,"Date":"11/25/2023"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":827,"Cost":608,"Date":"1/10/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":169,"Cost":87,"Date":"1/14/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":159,"Cost":121,"Date":"1/20/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":261,"Cost":143,"Date":"2/8/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":775,"Cost":446,"Date":"2/25/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":519,"Cost":379,"Date":"3/7/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":750,"Cost":543,"Date":"3/14/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":144,"Cost":116,"Date":"3/27/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":405,"Cost":316,"Date":"4/5/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":213,"Cost":203,"Date":"4/14/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":918,"Cost":738,"Date":"5/3/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":681,"Cost":424,"Date":"5/9/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":581,"Cost":311,"Date":"5/15/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":587,"Cost":442,"Date":"5/25/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":709,"Cost":460,"Date":"5/26/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":591,"Cost":489,"Date":"5/31/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":736,"Cost":409,"Date":"7/27/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":318,"Cost":169,"Date":"9/17/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":383,"Cost":238,"Date":"10/6/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":532,"Cost":480,"Date":"10/8/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":785,"Cost":529,"Date":"10/26/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":384,"Cost":323,"Date":"11/16/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":815,"Cost":528,"Date":"11/18/2024"},{"Store":"DFO South Wharf, Melbourne","Brand":"HM","Country":"Australia","Sale":731,"Cost":372,"Date":"12/1/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":289,"Cost":239,"Date":"2/9/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":455,"Cost":350,"Date":"2/11/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":516,"Cost":393,"Date":"3/10/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":932,"Cost":552,"Date":"3/16/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":108,"Cost":94,"Date":"3/18/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":34,"Cost":26,"Date":"3/20/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":473,"Cost":409,"Date":"3/26/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":956,"Cost":647,"Date":"6/2/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":422,"Cost":335,"Date":"6/10/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":433,"Cost":352,"Date":"6/16/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":425,"Cost":310,"Date":"6/25/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":143,"Cost":129,"Date":"7/19/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":460,"Cost":387,"Date":"7/21/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":518,"Cost":371,"Date":"7/25/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":627,"Cost":360,"Date":"8/4/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":818,"Cost":482,"Date":"9/2/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":989,"Cost":534,"Date":"9/4/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":314,"Cost":174,"Date":"9/19/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":471,"Cost":322,"Date":"9/29/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":864,"Cost":780,"Date":"10/2/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":238,"Cost":207,"Date":"10/15/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":144,"Cost":95,"Date":"10/30/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":950,"Cost":494,"Date":"11/9/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":93,"Cost":59,"Date":"11/23/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":668,"Cost":634,"Date":"11/30/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":680,"Cost":525,"Date":"12/8/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":436,"Cost":230,"Date":"12/11/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":471,"Cost":311,"Date":"1/15/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":174,"Cost":89,"Date":"1/24/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":917,"Cost":710,"Date":"2/3/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":915,"Cost":546,"Date":"2/4/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":443,"Cost":332,"Date":"3/9/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":162,"Cost":104,"Date":"3/12/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":357,"Cost":238,"Date":"4/19/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":989,"Cost":708,"Date":"5/3/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":507,"Cost":446,"Date":"5/4/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":506,"Cost":457,"Date":"6/8/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":508,"Cost":277,"Date":"6/26/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":75,"Cost":41,"Date":"7/4/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":468,"Cost":416,"Date":"7/13/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":989,"Cost":713,"Date":"8/8/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":413,"Cost":272,"Date":"8/26/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":919,"Cost":762,"Date":"9/2/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":418,"Cost":374,"Date":"9/29/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":996,"Cost":785,"Date":"10/12/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":270,"Cost":170,"Date":"11/2/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":239,"Cost":212,"Date":"11/4/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":958,"Cost":861,"Date":"11/7/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":957,"Cost":694,"Date":"12/1/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":887,"Cost":627,"Date":"12/4/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":597,"Cost":548,"Date":"12/7/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":273,"Cost":255,"Date":"12/18/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":117,"Cost":67,"Date":"12/20/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":311,"Cost":216,"Date":"12/20/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":547,"Cost":440,"Date":"12/21/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":980,"Cost":884,"Date":"1/9/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":486,"Cost":312,"Date":"2/5/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":416,"Cost":367,"Date":"2/16/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":707,"Cost":542,"Date":"2/16/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":356,"Cost":286,"Date":"2/18/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":353,"Cost":326,"Date":"2/22/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":812,"Cost":519,"Date":"2/25/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":82,"Cost":53,"Date":"3/8/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":541,"Cost":390,"Date":"4/2/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":183,"Cost":116,"Date":"4/3/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":937,"Cost":644,"Date":"4/9/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":413,"Cost":366,"Date":"4/10/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":882,"Cost":566,"Date":"4/19/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":55,"Cost":52,"Date":"5/17/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":171,"Cost":142,"Date":"5/22/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":363,"Cost":338,"Date":"6/20/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":485,"Cost":324,"Date":"7/1/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":790,"Cost":718,"Date":"7/4/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":357,"Cost":261,"Date":"7/8/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":588,"Cost":501,"Date":"7/9/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":64,"Cost":36,"Date":"7/14/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":403,"Cost":292,"Date":"7/19/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":590,"Cost":452,"Date":"8/1/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":543,"Cost":349,"Date":"8/6/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":63,"Cost":32,"Date":"8/7/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":544,"Cost":426,"Date":"8/22/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":704,"Cost":412,"Date":"8/31/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":613,"Cost":375,"Date":"9/1/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":286,"Cost":244,"Date":"9/1/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":500,"Cost":373,"Date":"9/17/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":481,"Cost":349,"Date":"9/29/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":698,"Cost":500,"Date":"11/7/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":175,"Cost":109,"Date":"11/26/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":230,"Cost":182,"Date":"11/27/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":432,"Cost":238,"Date":"12/5/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":321,"Cost":300,"Date":"12/26/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":449,"Cost":250,"Date":"12/31/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":106,"Cost":69,"Date":"1/20/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":259,"Cost":228,"Date":"2/2/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":738,"Cost":444,"Date":"2/8/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":330,"Cost":211,"Date":"2/27/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":660,"Cost":418,"Date":"3/1/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":289,"Cost":224,"Date":"3/1/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":855,"Cost":789,"Date":"3/19/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":222,"Cost":134,"Date":"3/28/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":952,"Cost":744,"Date":"5/21/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":44,"Cost":22,"Date":"7/21/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":97,"Cost":82,"Date":"8/5/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":796,"Cost":560,"Date":"8/12/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":331,"Cost":308,"Date":"8/21/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":746,"Cost":532,"Date":"8/23/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":852,"Cost":503,"Date":"9/3/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":427,"Cost":328,"Date":"9/5/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":473,"Cost":254,"Date":"10/6/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":100,"Cost":95,"Date":"10/19/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":683,"Cost":470,"Date":"11/15/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":742,"Cost":673,"Date":"12/8/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":206,"Cost":132,"Date":"1/8/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":882,"Cost":532,"Date":"1/14/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":333,"Cost":188,"Date":"1/19/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":366,"Cost":329,"Date":"1/28/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":322,"Cost":227,"Date":"1/31/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":375,"Cost":274,"Date":"3/27/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":591,"Cost":355,"Date":"4/20/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":288,"Cost":184,"Date":"4/24/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":102,"Cost":55,"Date":"4/28/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":38,"Cost":26,"Date":"5/15/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":365,"Cost":258,"Date":"5/16/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":748,"Cost":475,"Date":"5/18/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":365,"Cost":250,"Date":"6/2/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":914,"Cost":689,"Date":"6/3/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":904,"Cost":479,"Date":"6/5/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":671,"Cost":363,"Date":"6/7/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":506,"Cost":394,"Date":"6/14/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":243,"Cost":144,"Date":"6/20/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":213,"Cost":192,"Date":"6/24/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":274,"Cost":155,"Date":"7/4/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":492,"Cost":294,"Date":"7/9/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":443,"Cost":292,"Date":"7/12/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":557,"Cost":345,"Date":"8/14/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":961,"Cost":583,"Date":"8/16/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":353,"Cost":224,"Date":"8/23/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":506,"Cost":284,"Date":"9/2/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":792,"Cost":451,"Date":"9/3/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":741,"Cost":510,"Date":"9/16/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":297,"Cost":211,"Date":"10/4/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":127,"Cost":78,"Date":"11/1/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":622,"Cost":417,"Date":"11/2/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":479,"Cost":318,"Date":"12/17/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":903,"Cost":668,"Date":"2/10/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":456,"Cost":315,"Date":"2/28/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":589,"Cost":477,"Date":"3/4/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":868,"Cost":687,"Date":"3/9/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":864,"Cost":534,"Date":"3/9/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":213,"Cost":146,"Date":"3/11/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":639,"Cost":555,"Date":"3/17/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":55,"Cost":52,"Date":"3/17/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":216,"Cost":198,"Date":"3/23/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":543,"Cost":321,"Date":"4/1/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":957,"Cost":686,"Date":"5/7/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":78,"Cost":59,"Date":"5/10/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":928,"Cost":836,"Date":"5/20/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":677,"Cost":454,"Date":"6/2/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":394,"Cost":374,"Date":"6/11/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":642,"Cost":601,"Date":"6/16/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":274,"Cost":260,"Date":"6/16/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":541,"Cost":304,"Date":"7/10/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":771,"Cost":630,"Date":"7/11/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":863,"Cost":819,"Date":"8/28/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":498,"Cost":283,"Date":"8/29/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":691,"Cost":556,"Date":"8/31/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":754,"Cost":650,"Date":"9/8/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":85,"Cost":44,"Date":"9/13/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":353,"Cost":240,"Date":"9/14/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":114,"Cost":74,"Date":"9/19/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":398,"Cost":288,"Date":"9/25/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":706,"Cost":405,"Date":"10/4/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":564,"Cost":350,"Date":"10/10/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":751,"Cost":482,"Date":"10/17/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":59,"Cost":30,"Date":"10/28/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":520,"Cost":384,"Date":"10/30/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":802,"Cost":655,"Date":"11/1/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":786,"Cost":710,"Date":"11/15/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":877,"Cost":614,"Date":"11/25/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":506,"Cost":426,"Date":"1/10/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":447,"Cost":395,"Date":"1/14/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":597,"Cost":433,"Date":"1/20/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":6,"Cost":6,"Date":"2/8/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":865,"Cost":645,"Date":"2/25/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":466,"Cost":239,"Date":"3/7/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":688,"Cost":472,"Date":"3/14/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":304,"Cost":173,"Date":"3/27/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":655,"Cost":427,"Date":"4/5/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":40,"Cost":25,"Date":"4/14/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":204,"Cost":121,"Date":"5/3/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":816,"Cost":688,"Date":"5/9/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":630,"Cost":576,"Date":"5/15/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":843,"Cost":604,"Date":"5/25/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":928,"Cost":532,"Date":"5/26/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":872,"Cost":728,"Date":"5/31/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":118,"Cost":105,"Date":"7/27/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":49,"Cost":46,"Date":"9/17/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":431,"Cost":382,"Date":"10/6/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":804,"Cost":568,"Date":"10/8/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":90,"Cost":65,"Date":"10/26/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":432,"Cost":273,"Date":"11/16/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":924,"Cost":675,"Date":"11/18/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":278,"Cost":169,"Date":"12/1/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":434,"Cost":222,"Date":"2/9/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":8,"Cost":6,"Date":"2/11/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":621,"Cost":569,"Date":"3/10/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":784,"Cost":698,"Date":"3/16/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":417,"Cost":285,"Date":"3/18/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":141,"Cost":86,"Date":"3/20/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":136,"Cost":114,"Date":"3/26/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":625,"Cost":491,"Date":"6/2/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":823,"Cost":448,"Date":"6/10/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":256,"Cost":220,"Date":"6/16/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":785,"Cost":393,"Date":"6/25/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":563,"Cost":434,"Date":"7/19/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":320,"Cost":192,"Date":"7/21/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":434,"Cost":256,"Date":"7/25/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":579,"Cost":318,"Date":"8/4/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":522,"Cost":417,"Date":"9/2/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":941,"Cost":493,"Date":"9/4/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":149,"Cost":114,"Date":"9/19/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":542,"Cost":377,"Date":"9/29/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":337,"Cost":179,"Date":"10/2/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":189,"Cost":104,"Date":"10/15/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":263,"Cost":169,"Date":"10/30/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":139,"Cost":99,"Date":"11/9/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":486,"Cost":334,"Date":"11/23/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":853,"Cost":648,"Date":"11/30/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":414,"Cost":335,"Date":"12/8/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":489,"Cost":317,"Date":"12/11/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":776,"Cost":649,"Date":"1/15/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":183,"Cost":117,"Date":"1/24/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":714,"Cost":572,"Date":"2/3/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":730,"Cost":500,"Date":"2/4/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":364,"Cost":248,"Date":"3/9/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":87,"Cost":82,"Date":"3/12/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":20,"Cost":17,"Date":"4/19/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":319,"Cost":278,"Date":"5/3/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":704,"Cost":486,"Date":"5/4/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":483,"Cost":370,"Date":"6/8/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":950,"Cost":489,"Date":"6/26/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":372,"Cost":282,"Date":"7/4/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":188,"Cost":112,"Date":"7/13/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":356,"Cost":318,"Date":"8/8/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":38,"Cost":22,"Date":"8/26/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":170,"Cost":140,"Date":"9/2/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":964,"Cost":642,"Date":"9/29/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":818,"Cost":659,"Date":"10/12/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":533,"Cost":404,"Date":"11/2/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":968,"Cost":894,"Date":"11/4/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":456,"Cost":332,"Date":"11/7/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":518,"Cost":275,"Date":"12/1/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":124,"Cost":98,"Date":"12/4/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":779,"Cost":589,"Date":"12/7/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":265,"Cost":144,"Date":"12/18/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":800,"Cost":438,"Date":"12/20/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":740,"Cost":588,"Date":"12/20/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":252,"Cost":176,"Date":"12/21/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":553,"Cost":484,"Date":"1/9/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":14,"Cost":12,"Date":"2/5/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":901,"Cost":736,"Date":"2/16/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":385,"Cost":254,"Date":"2/16/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":532,"Cost":505,"Date":"2/18/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":346,"Cost":205,"Date":"2/22/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":949,"Cost":725,"Date":"2/25/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":899,"Cost":640,"Date":"3/8/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":579,"Cost":446,"Date":"4/2/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":830,"Cost":628,"Date":"4/3/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":574,"Cost":389,"Date":"4/9/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":773,"Cost":493,"Date":"4/10/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":675,"Cost":641,"Date":"4/19/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":180,"Cost":136,"Date":"5/17/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":68,"Cost":43,"Date":"5/22/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":155,"Cost":93,"Date":"6/20/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":876,"Cost":768,"Date":"7/1/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":377,"Cost":306,"Date":"7/4/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":223,"Cost":133,"Date":"7/8/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":640,"Cost":550,"Date":"7/9/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":247,"Cost":223,"Date":"7/14/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":93,"Cost":64,"Date":"7/19/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":626,"Cost":583,"Date":"8/1/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":708,"Cost":570,"Date":"8/6/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":763,"Cost":593,"Date":"8/7/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":704,"Cost":657,"Date":"8/22/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":94,"Cost":70,"Date":"8/31/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":217,"Cost":121,"Date":"9/1/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":537,"Cost":357,"Date":"9/1/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":672,"Cost":436,"Date":"9/17/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":380,"Cost":300,"Date":"9/29/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":438,"Cost":244,"Date":"11/7/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":893,"Cost":826,"Date":"11/26/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":614,"Cost":388,"Date":"11/27/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":896,"Cost":758,"Date":"12/5/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":589,"Cost":339,"Date":"12/26/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":751,"Cost":665,"Date":"12/31/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":127,"Cost":82,"Date":"1/20/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":577,"Cost":509,"Date":"2/2/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":886,"Cost":530,"Date":"2/8/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":143,"Cost":125,"Date":"2/27/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":850,"Cost":513,"Date":"3/1/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":880,"Cost":698,"Date":"3/1/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":780,"Cost":559,"Date":"3/19/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":350,"Cost":286,"Date":"3/28/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":195,"Cost":131,"Date":"5/21/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":737,"Cost":551,"Date":"7/21/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":456,"Cost":276,"Date":"8/5/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":144,"Cost":87,"Date":"8/12/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":475,"Cost":306,"Date":"8/21/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":421,"Cost":299,"Date":"8/23/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":210,"Cost":130,"Date":"9/3/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":979,"Cost":902,"Date":"9/5/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":250,"Cost":211,"Date":"10/6/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":552,"Cost":463,"Date":"10/19/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":172,"Cost":151,"Date":"11/15/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":574,"Cost":461,"Date":"12/8/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":868,"Cost":818,"Date":"1/8/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":792,"Cost":653,"Date":"1/14/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":301,"Cost":168,"Date":"1/19/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":185,"Cost":106,"Date":"1/28/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":690,"Cost":475,"Date":"1/31/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":816,"Cost":507,"Date":"3/27/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":945,"Cost":571,"Date":"4/20/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":947,"Cost":486,"Date":"4/24/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":679,"Cost":477,"Date":"4/28/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":249,"Cost":172,"Date":"5/15/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":502,"Cost":399,"Date":"5/16/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":802,"Cost":633,"Date":"5/18/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":917,"Cost":659,"Date":"6/2/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":874,"Cost":457,"Date":"6/3/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":763,"Cost":644,"Date":"6/5/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":862,"Cost":817,"Date":"6/7/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":306,"Cost":229,"Date":"6/14/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":32,"Cost":20,"Date":"6/20/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":540,"Cost":326,"Date":"6/24/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":962,"Cost":551,"Date":"7/4/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":577,"Cost":434,"Date":"7/9/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":639,"Cost":492,"Date":"7/12/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":359,"Cost":298,"Date":"8/14/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":601,"Cost":526,"Date":"8/16/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":135,"Cost":120,"Date":"8/23/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":129,"Cost":81,"Date":"9/2/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":390,"Cost":214,"Date":"9/3/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":571,"Cost":529,"Date":"9/16/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":671,"Cost":392,"Date":"10/4/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":801,"Cost":752,"Date":"11/1/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":954,"Cost":582,"Date":"11/2/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":897,"Cost":695,"Date":"12/17/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":979,"Cost":804,"Date":"2/10/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":123,"Cost":63,"Date":"2/28/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":89,"Cost":59,"Date":"3/4/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":147,"Cost":133,"Date":"3/9/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":497,"Cost":350,"Date":"3/9/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":70,"Cost":64,"Date":"3/11/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":67,"Cost":46,"Date":"3/17/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":986,"Cost":531,"Date":"3/17/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":305,"Cost":163,"Date":"3/23/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":187,"Cost":140,"Date":"4/1/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":92,"Cost":54,"Date":"5/7/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":869,"Cost":466,"Date":"5/10/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":178,"Cost":103,"Date":"5/20/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":788,"Cost":430,"Date":"6/2/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":614,"Cost":495,"Date":"6/11/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":282,"Cost":210,"Date":"6/16/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":930,"Cost":569,"Date":"6/16/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":865,"Cost":766,"Date":"7/10/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":278,"Cost":165,"Date":"7/11/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":780,"Cost":608,"Date":"8/28/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":880,"Cost":797,"Date":"8/29/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":378,"Cost":303,"Date":"8/31/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":375,"Cost":288,"Date":"9/8/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":1,"Cost":0,"Date":"9/13/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":368,"Cost":190,"Date":"9/14/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":212,"Cost":125,"Date":"9/19/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":667,"Cost":438,"Date":"9/25/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":397,"Cost":273,"Date":"10/4/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":514,"Cost":458,"Date":"10/10/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":60,"Cost":48,"Date":"10/17/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":290,"Cost":233,"Date":"10/28/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":22,"Cost":16,"Date":"10/30/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":67,"Cost":38,"Date":"11/1/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":328,"Cost":303,"Date":"11/15/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":481,"Cost":254,"Date":"11/25/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":268,"Cost":248,"Date":"1/10/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":975,"Cost":582,"Date":"1/14/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":280,"Cost":173,"Date":"1/20/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":52,"Cost":39,"Date":"2/8/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":506,"Cost":279,"Date":"2/25/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":293,"Cost":265,"Date":"3/7/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":872,"Cost":763,"Date":"3/14/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":919,"Cost":766,"Date":"3/27/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":848,"Cost":637,"Date":"4/5/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":574,"Cost":341,"Date":"4/14/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":782,"Cost":589,"Date":"5/3/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":647,"Cost":439,"Date":"5/9/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":857,"Cost":603,"Date":"5/15/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":345,"Cost":195,"Date":"5/25/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":404,"Cost":311,"Date":"5/26/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":271,"Cost":152,"Date":"5/31/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":287,"Cost":251,"Date":"7/27/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":304,"Cost":260,"Date":"9/17/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":984,"Cost":932,"Date":"10/6/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":239,"Cost":131,"Date":"10/8/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":526,"Cost":392,"Date":"10/26/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":23,"Cost":21,"Date":"11/16/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":365,"Cost":262,"Date":"11/18/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"Jeans","Country":"Australia","Sale":758,"Cost":446,"Date":"12/1/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":498,"Cost":425,"Date":"2/9/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":12,"Cost":9,"Date":"2/11/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":571,"Cost":478,"Date":"3/10/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":335,"Cost":287,"Date":"3/16/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":121,"Cost":103,"Date":"3/18/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":900,"Cost":799,"Date":"3/20/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":643,"Cost":506,"Date":"3/26/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":233,"Cost":125,"Date":"6/2/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":602,"Cost":337,"Date":"6/10/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":813,"Cost":640,"Date":"6/16/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":985,"Cost":492,"Date":"6/25/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":313,"Cost":165,"Date":"7/19/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":9,"Cost":4,"Date":"7/21/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":510,"Cost":394,"Date":"7/25/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":974,"Cost":555,"Date":"8/4/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":77,"Cost":43,"Date":"9/2/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":610,"Cost":573,"Date":"9/4/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":50,"Cost":32,"Date":"9/19/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":347,"Cost":185,"Date":"9/29/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":230,"Cost":200,"Date":"10/2/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":343,"Cost":249,"Date":"10/15/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":859,"Cost":468,"Date":"10/30/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":244,"Cost":212,"Date":"11/9/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":263,"Cost":222,"Date":"11/23/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":884,"Cost":746,"Date":"11/30/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":909,"Cost":499,"Date":"12/8/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":559,"Cost":514,"Date":"12/11/2018"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":631,"Cost":329,"Date":"1/15/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":440,"Cost":304,"Date":"1/24/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":303,"Cost":179,"Date":"2/3/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":86,"Cost":46,"Date":"2/4/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":938,"Cost":678,"Date":"3/9/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":859,"Cost":646,"Date":"3/12/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":705,"Cost":535,"Date":"4/19/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":565,"Cost":478,"Date":"5/3/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":202,"Cost":130,"Date":"5/4/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":185,"Cost":141,"Date":"6/8/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":820,"Cost":690,"Date":"6/26/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":627,"Cost":390,"Date":"7/4/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":370,"Cost":350,"Date":"7/13/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":153,"Cost":123,"Date":"8/8/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":147,"Cost":101,"Date":"8/26/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":793,"Cost":554,"Date":"9/2/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":60,"Cost":40,"Date":"9/29/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":340,"Cost":213,"Date":"10/12/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":577,"Cost":449,"Date":"11/2/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":292,"Cost":217,"Date":"11/4/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":663,"Cost":580,"Date":"11/7/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":787,"Cost":477,"Date":"12/1/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":476,"Cost":432,"Date":"12/4/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":285,"Cost":225,"Date":"12/7/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":221,"Cost":157,"Date":"12/18/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":977,"Cost":494,"Date":"12/20/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":99,"Cost":82,"Date":"12/20/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":974,"Cost":641,"Date":"12/21/2019"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":253,"Cost":143,"Date":"1/9/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":565,"Cost":482,"Date":"2/5/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":231,"Cost":161,"Date":"2/16/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":252,"Cost":155,"Date":"2/16/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":708,"Cost":623,"Date":"2/18/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":405,"Cost":288,"Date":"2/22/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":753,"Cost":606,"Date":"2/25/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":279,"Cost":166,"Date":"3/8/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":869,"Cost":765,"Date":"4/2/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":905,"Cost":625,"Date":"4/3/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":254,"Cost":170,"Date":"4/9/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":852,"Cost":517,"Date":"4/10/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":919,"Cost":714,"Date":"4/19/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":614,"Cost":423,"Date":"5/17/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":506,"Cost":278,"Date":"5/22/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":163,"Cost":131,"Date":"6/20/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":314,"Cost":245,"Date":"7/1/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":29,"Cost":26,"Date":"7/4/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":645,"Cost":568,"Date":"7/8/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":4,"Cost":4,"Date":"7/9/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":502,"Cost":450,"Date":"7/14/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":612,"Cost":485,"Date":"7/19/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":366,"Cost":187,"Date":"8/1/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":953,"Cost":739,"Date":"8/6/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":439,"Cost":381,"Date":"8/7/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":408,"Cost":338,"Date":"8/22/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":969,"Cost":647,"Date":"8/31/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":578,"Cost":330,"Date":"9/1/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":783,"Cost":421,"Date":"9/1/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":485,"Cost":395,"Date":"9/17/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":931,"Cost":543,"Date":"9/29/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":334,"Cost":221,"Date":"11/7/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":474,"Cost":286,"Date":"11/26/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":709,"Cost":636,"Date":"11/27/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":484,"Cost":339,"Date":"12/5/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":514,"Cost":271,"Date":"12/26/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":223,"Cost":209,"Date":"12/31/2020"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":467,"Cost":312,"Date":"1/20/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":502,"Cost":375,"Date":"2/2/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":153,"Cost":126,"Date":"2/8/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":470,"Cost":305,"Date":"2/27/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":101,"Cost":78,"Date":"3/1/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":798,"Cost":554,"Date":"3/1/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":707,"Cost":531,"Date":"3/19/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":883,"Cost":566,"Date":"3/28/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":843,"Cost":461,"Date":"5/21/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":632,"Cost":557,"Date":"7/21/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":374,"Cost":234,"Date":"8/5/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":31,"Cost":20,"Date":"8/12/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":386,"Cost":282,"Date":"8/21/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":305,"Cost":228,"Date":"8/23/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":323,"Cost":253,"Date":"9/3/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":315,"Cost":298,"Date":"9/5/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":853,"Cost":723,"Date":"10/6/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":615,"Cost":477,"Date":"10/19/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":290,"Cost":146,"Date":"11/15/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":310,"Cost":247,"Date":"12/8/2021"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":872,"Cost":735,"Date":"1/8/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":327,"Cost":219,"Date":"1/14/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":621,"Cost":573,"Date":"1/19/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":529,"Cost":289,"Date":"1/28/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":510,"Cost":452,"Date":"1/31/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":79,"Cost":55,"Date":"3/27/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":624,"Cost":541,"Date":"4/20/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":874,"Cost":657,"Date":"4/24/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":675,"Cost":424,"Date":"4/28/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":770,"Cost":541,"Date":"5/15/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":440,"Cost":234,"Date":"5/16/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":869,"Cost":766,"Date":"5/18/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":22,"Cost":17,"Date":"6/2/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":98,"Cost":91,"Date":"6/3/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":146,"Cost":84,"Date":"6/5/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":410,"Cost":300,"Date":"6/7/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":305,"Cost":226,"Date":"6/14/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":286,"Cost":270,"Date":"6/20/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":940,"Cost":686,"Date":"6/24/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":533,"Cost":485,"Date":"7/4/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":416,"Cost":325,"Date":"7/9/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":381,"Cost":257,"Date":"7/12/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":40,"Cost":28,"Date":"8/14/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":28,"Cost":15,"Date":"8/16/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":385,"Cost":208,"Date":"8/23/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":539,"Cost":508,"Date":"9/2/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":28,"Cost":15,"Date":"9/3/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":249,"Cost":194,"Date":"9/16/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":453,"Cost":310,"Date":"10/4/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":376,"Cost":198,"Date":"11/1/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":345,"Cost":225,"Date":"11/2/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":574,"Cost":456,"Date":"12/17/2022"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":781,"Cost":583,"Date":"2/10/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":799,"Cost":554,"Date":"2/28/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":257,"Cost":223,"Date":"3/4/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":58,"Cost":29,"Date":"3/9/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":681,"Cost":515,"Date":"3/9/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":163,"Cost":153,"Date":"3/11/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":369,"Cost":222,"Date":"3/17/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":818,"Cost":542,"Date":"3/17/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":287,"Cost":208,"Date":"3/23/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":15,"Cost":10,"Date":"4/1/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":514,"Cost":272,"Date":"5/7/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":876,"Cost":481,"Date":"5/10/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":446,"Cost":390,"Date":"5/20/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":890,"Cost":575,"Date":"6/2/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":613,"Cost":543,"Date":"6/11/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":862,"Cost":559,"Date":"6/16/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":531,"Cost":400,"Date":"6/16/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":228,"Cost":119,"Date":"7/10/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":835,"Cost":612,"Date":"7/11/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":949,"Cost":808,"Date":"8/28/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":4,"Cost":4,"Date":"8/29/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":727,"Cost":662,"Date":"8/31/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":736,"Cost":681,"Date":"9/8/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":802,"Cost":726,"Date":"9/13/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":471,"Cost":313,"Date":"9/14/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":275,"Cost":261,"Date":"9/19/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":410,"Cost":344,"Date":"9/25/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":903,"Cost":844,"Date":"10/4/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":429,"Cost":273,"Date":"10/10/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":858,"Cost":795,"Date":"10/17/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":795,"Cost":414,"Date":"10/28/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":600,"Cost":403,"Date":"10/30/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":60,"Cost":35,"Date":"11/1/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":579,"Cost":326,"Date":"11/15/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":311,"Cost":208,"Date":"11/25/2023"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":792,"Cost":750,"Date":"1/10/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":464,"Cost":243,"Date":"1/14/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":959,"Cost":505,"Date":"1/20/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":607,"Cost":477,"Date":"2/8/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":68,"Cost":57,"Date":"2/25/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":440,"Cost":399,"Date":"3/7/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":570,"Cost":414,"Date":"3/14/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":776,"Cost":533,"Date":"3/27/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":577,"Cost":319,"Date":"4/5/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":645,"Cost":423,"Date":"4/14/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":308,"Cost":237,"Date":"5/3/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":868,"Cost":459,"Date":"5/9/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":427,"Cost":352,"Date":"5/15/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":964,"Cost":712,"Date":"5/25/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":269,"Cost":256,"Date":"5/26/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":671,"Cost":586,"Date":"5/31/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":605,"Cost":477,"Date":"7/27/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":219,"Cost":129,"Date":"9/17/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":829,"Cost":418,"Date":"10/6/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":919,"Cost":869,"Date":"10/8/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":9,"Cost":9,"Date":"10/26/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":62,"Cost":47,"Date":"11/16/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":656,"Cost":434,"Date":"11/18/2024"},{"Store":"Highpoint Shopping Centre, Melbourne","Brand":"ARKET","Country":"Australia","Sale":926,"Cost":572,"Date":"12/1/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":804,"Cost":746,"Date":"2/9/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":967,"Cost":637,"Date":"2/11/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":609,"Cost":574,"Date":"3/10/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":585,"Cost":459,"Date":"3/16/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":599,"Cost":503,"Date":"3/18/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":578,"Cost":427,"Date":"3/20/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":640,"Cost":406,"Date":"3/26/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":985,"Cost":776,"Date":"6/2/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":345,"Cost":246,"Date":"6/10/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":83,"Cost":46,"Date":"6/16/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":406,"Cost":225,"Date":"6/25/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":247,"Cost":158,"Date":"7/19/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":515,"Cost":271,"Date":"7/21/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":196,"Cost":150,"Date":"7/25/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":73,"Cost":41,"Date":"8/4/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":574,"Cost":531,"Date":"9/2/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":580,"Cost":297,"Date":"9/4/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":67,"Cost":54,"Date":"9/19/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":141,"Cost":118,"Date":"9/29/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":622,"Cost":482,"Date":"10/2/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":565,"Cost":294,"Date":"10/15/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":349,"Cost":275,"Date":"10/30/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":359,"Cost":336,"Date":"11/9/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":356,"Cost":187,"Date":"11/23/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":233,"Cost":197,"Date":"11/30/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":984,"Cost":900,"Date":"12/8/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":553,"Cost":524,"Date":"12/11/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":956,"Cost":829,"Date":"1/15/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":329,"Cost":206,"Date":"1/24/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":961,"Cost":521,"Date":"2/3/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":467,"Cost":389,"Date":"2/4/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":261,"Cost":156,"Date":"3/9/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":923,"Cost":530,"Date":"3/12/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":44,"Cost":29,"Date":"4/19/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":187,"Cost":105,"Date":"5/3/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":603,"Cost":471,"Date":"5/4/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":451,"Cost":274,"Date":"6/8/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":797,"Cost":608,"Date":"6/26/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":755,"Cost":417,"Date":"7/4/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":696,"Cost":522,"Date":"7/13/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":469,"Cost":320,"Date":"8/8/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":714,"Cost":661,"Date":"8/26/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":258,"Cost":218,"Date":"9/2/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":579,"Cost":352,"Date":"9/29/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":77,"Cost":59,"Date":"10/12/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":237,"Cost":167,"Date":"11/2/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":726,"Cost":521,"Date":"11/4/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":467,"Cost":299,"Date":"11/7/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":946,"Cost":699,"Date":"12/1/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":54,"Cost":31,"Date":"12/4/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":205,"Cost":123,"Date":"12/7/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":457,"Cost":347,"Date":"12/18/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":796,"Cost":555,"Date":"12/20/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":390,"Cost":280,"Date":"12/20/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":176,"Cost":112,"Date":"12/21/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":993,"Cost":809,"Date":"1/9/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":490,"Cost":383,"Date":"2/5/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":273,"Cost":235,"Date":"2/16/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":387,"Cost":325,"Date":"2/16/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":57,"Cost":55,"Date":"2/18/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":298,"Cost":224,"Date":"2/22/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":895,"Cost":640,"Date":"2/25/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":370,"Cost":211,"Date":"3/8/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":676,"Cost":562,"Date":"4/2/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":278,"Cost":144,"Date":"4/3/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":167,"Cost":110,"Date":"4/9/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":352,"Cost":271,"Date":"4/10/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":797,"Cost":696,"Date":"4/19/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":488,"Cost":315,"Date":"5/17/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":205,"Cost":135,"Date":"5/22/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":664,"Cost":549,"Date":"6/20/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":749,"Cost":540,"Date":"7/1/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":191,"Cost":161,"Date":"7/4/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":187,"Cost":129,"Date":"7/8/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":477,"Cost":274,"Date":"7/9/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":830,"Cost":779,"Date":"7/14/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":814,"Cost":584,"Date":"7/19/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":876,"Cost":820,"Date":"8/1/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":499,"Cost":334,"Date":"8/6/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":936,"Cost":578,"Date":"8/7/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":930,"Cost":560,"Date":"8/22/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":562,"Cost":408,"Date":"8/31/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":358,"Cost":275,"Date":"9/1/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":412,"Cost":229,"Date":"9/1/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":686,"Cost":566,"Date":"9/17/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":379,"Cost":216,"Date":"9/29/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":252,"Cost":176,"Date":"11/7/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":328,"Cost":190,"Date":"11/26/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":447,"Cost":315,"Date":"11/27/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":232,"Cost":145,"Date":"12/5/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":468,"Cost":361,"Date":"12/26/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":40,"Cost":38,"Date":"12/31/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":896,"Cost":527,"Date":"1/20/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":436,"Cost":321,"Date":"2/2/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":680,"Cost":479,"Date":"2/8/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":951,"Cost":508,"Date":"2/27/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":130,"Cost":69,"Date":"3/1/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":955,"Cost":740,"Date":"3/1/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":865,"Cost":737,"Date":"3/19/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":700,"Cost":389,"Date":"3/28/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":823,"Cost":663,"Date":"5/21/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":861,"Cost":792,"Date":"7/21/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":898,"Cost":456,"Date":"8/5/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":163,"Cost":105,"Date":"8/12/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":62,"Cost":39,"Date":"8/21/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":322,"Cost":238,"Date":"8/23/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":640,"Cost":336,"Date":"9/3/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":632,"Cost":464,"Date":"9/5/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":566,"Cost":511,"Date":"10/6/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":96,"Cost":82,"Date":"10/19/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":567,"Cost":469,"Date":"11/15/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":564,"Cost":435,"Date":"12/8/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":485,"Cost":289,"Date":"1/8/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":504,"Cost":403,"Date":"1/14/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":773,"Cost":639,"Date":"1/19/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":226,"Cost":211,"Date":"1/28/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":742,"Cost":560,"Date":"1/31/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":78,"Cost":59,"Date":"3/27/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":913,"Cost":577,"Date":"4/20/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":98,"Cost":72,"Date":"4/24/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":176,"Cost":90,"Date":"4/28/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":500,"Cost":295,"Date":"5/15/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":268,"Cost":160,"Date":"5/16/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":145,"Cost":117,"Date":"5/18/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":885,"Cost":484,"Date":"6/2/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":75,"Cost":56,"Date":"6/3/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":60,"Cost":38,"Date":"6/5/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":59,"Cost":48,"Date":"6/7/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":510,"Cost":268,"Date":"6/14/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":602,"Cost":524,"Date":"6/20/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":918,"Cost":627,"Date":"6/24/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":120,"Cost":62,"Date":"7/4/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":516,"Cost":449,"Date":"7/9/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":26,"Cost":22,"Date":"7/12/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":330,"Cost":212,"Date":"8/14/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":21,"Cost":15,"Date":"8/16/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":73,"Cost":61,"Date":"8/23/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":852,"Cost":656,"Date":"9/2/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":932,"Cost":863,"Date":"9/3/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":3,"Cost":2,"Date":"9/16/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":142,"Cost":100,"Date":"10/4/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":420,"Cost":376,"Date":"11/1/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":486,"Cost":333,"Date":"11/2/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":106,"Cost":79,"Date":"12/17/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":172,"Cost":117,"Date":"2/10/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":254,"Cost":129,"Date":"2/28/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":556,"Cost":500,"Date":"3/4/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":895,"Cost":762,"Date":"3/9/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":218,"Cost":125,"Date":"3/9/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":541,"Cost":498,"Date":"3/11/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":699,"Cost":466,"Date":"3/17/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":558,"Cost":361,"Date":"3/17/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":915,"Cost":517,"Date":"3/23/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":544,"Cost":288,"Date":"4/1/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":434,"Cost":235,"Date":"5/7/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":756,"Cost":713,"Date":"5/10/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":382,"Cost":248,"Date":"5/20/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":665,"Cost":616,"Date":"6/2/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":864,"Cost":800,"Date":"6/11/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":155,"Cost":105,"Date":"6/16/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":169,"Cost":106,"Date":"6/16/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":989,"Cost":623,"Date":"7/10/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":799,"Cost":747,"Date":"7/11/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":316,"Cost":281,"Date":"8/28/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":129,"Cost":84,"Date":"8/29/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":826,"Cost":732,"Date":"8/31/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":222,"Cost":199,"Date":"9/8/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":277,"Cost":148,"Date":"9/13/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":690,"Cost":355,"Date":"9/14/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":529,"Cost":380,"Date":"9/19/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":582,"Cost":356,"Date":"9/25/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":138,"Cost":102,"Date":"10/4/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":512,"Cost":453,"Date":"10/10/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":55,"Cost":36,"Date":"10/17/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":105,"Cost":71,"Date":"10/28/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":395,"Cost":244,"Date":"10/30/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":898,"Cost":678,"Date":"11/1/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":601,"Cost":362,"Date":"11/15/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":354,"Cost":199,"Date":"11/25/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":528,"Cost":442,"Date":"1/10/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":776,"Cost":425,"Date":"1/14/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":353,"Cost":218,"Date":"1/20/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":994,"Cost":603,"Date":"2/8/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":528,"Cost":281,"Date":"2/25/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":440,"Cost":418,"Date":"3/7/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":884,"Cost":556,"Date":"3/14/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":210,"Cost":140,"Date":"3/27/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":147,"Cost":98,"Date":"4/5/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":773,"Cost":579,"Date":"4/14/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":924,"Cost":713,"Date":"5/3/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":465,"Cost":242,"Date":"5/9/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":214,"Cost":194,"Date":"5/15/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":272,"Cost":218,"Date":"5/25/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":685,"Cost":643,"Date":"5/26/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":847,"Cost":661,"Date":"5/31/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":61,"Cost":45,"Date":"7/27/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":801,"Cost":480,"Date":"9/17/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":172,"Cost":119,"Date":"10/6/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":53,"Cost":30,"Date":"10/8/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":852,"Cost":608,"Date":"10/26/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":260,"Cost":242,"Date":"11/16/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":624,"Cost":529,"Date":"11/18/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"ARKET","Country":"Australia","Sale":512,"Cost":333,"Date":"12/1/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":654,"Cost":614,"Date":"2/9/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":184,"Cost":131,"Date":"2/11/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":915,"Cost":804,"Date":"3/10/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":85,"Cost":59,"Date":"3/16/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":43,"Cost":40,"Date":"3/18/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":208,"Cost":161,"Date":"3/20/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":433,"Cost":221,"Date":"3/26/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":244,"Cost":230,"Date":"6/2/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":316,"Cost":180,"Date":"6/10/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":563,"Cost":372,"Date":"6/16/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":138,"Cost":75,"Date":"6/25/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":781,"Cost":732,"Date":"7/19/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":504,"Cost":388,"Date":"7/21/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":687,"Cost":616,"Date":"7/25/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":524,"Cost":382,"Date":"8/4/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":273,"Cost":220,"Date":"9/2/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":791,"Cost":477,"Date":"9/4/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":979,"Cost":772,"Date":"9/19/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":767,"Cost":710,"Date":"9/29/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":608,"Cost":444,"Date":"10/2/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":147,"Cost":77,"Date":"10/15/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":668,"Cost":480,"Date":"10/30/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":164,"Cost":84,"Date":"11/9/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":696,"Cost":601,"Date":"11/23/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":371,"Cost":294,"Date":"11/30/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":517,"Cost":460,"Date":"12/8/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":616,"Cost":388,"Date":"12/11/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":90,"Cost":80,"Date":"1/15/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":765,"Cost":415,"Date":"1/24/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":731,"Cost":666,"Date":"2/3/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":38,"Cost":29,"Date":"2/4/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":692,"Cost":541,"Date":"3/9/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":471,"Cost":286,"Date":"3/12/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":167,"Cost":133,"Date":"4/19/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":17,"Cost":11,"Date":"5/3/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":797,"Cost":660,"Date":"5/4/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":935,"Cost":692,"Date":"6/8/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":665,"Cost":410,"Date":"6/26/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":562,"Cost":527,"Date":"7/4/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":147,"Cost":118,"Date":"7/13/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":427,"Cost":248,"Date":"8/8/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":679,"Cost":474,"Date":"8/26/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":263,"Cost":223,"Date":"9/2/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":847,"Cost":558,"Date":"9/29/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":923,"Cost":699,"Date":"10/12/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":159,"Cost":122,"Date":"11/2/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":883,"Cost":640,"Date":"11/4/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":80,"Cost":57,"Date":"11/7/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":605,"Cost":538,"Date":"12/1/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":696,"Cost":634,"Date":"12/4/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":154,"Cost":80,"Date":"12/7/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":450,"Cost":372,"Date":"12/18/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":478,"Cost":284,"Date":"12/20/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":25,"Cost":24,"Date":"12/20/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":684,"Cost":448,"Date":"12/21/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":709,"Cost":425,"Date":"1/9/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":737,"Cost":474,"Date":"2/5/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":379,"Cost":198,"Date":"2/16/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":871,"Cost":699,"Date":"2/16/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":153,"Cost":135,"Date":"2/18/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":398,"Cost":305,"Date":"2/22/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":942,"Cost":830,"Date":"2/25/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":772,"Cost":528,"Date":"3/8/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":331,"Cost":291,"Date":"4/2/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":133,"Cost":70,"Date":"4/3/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":675,"Cost":588,"Date":"4/9/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":831,"Cost":422,"Date":"4/10/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":896,"Cost":533,"Date":"4/19/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":649,"Cost":496,"Date":"5/17/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":305,"Cost":160,"Date":"5/22/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":164,"Cost":94,"Date":"6/20/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":268,"Cost":147,"Date":"7/1/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":858,"Cost":794,"Date":"7/4/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":567,"Cost":291,"Date":"7/8/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":523,"Cost":494,"Date":"7/9/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":716,"Cost":398,"Date":"7/14/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":556,"Cost":305,"Date":"7/19/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":264,"Cost":149,"Date":"8/1/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":514,"Cost":386,"Date":"8/6/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":910,"Cost":703,"Date":"8/7/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":804,"Cost":434,"Date":"8/22/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":660,"Cost":426,"Date":"8/31/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":266,"Cost":135,"Date":"9/1/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":794,"Cost":568,"Date":"9/1/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":852,"Cost":616,"Date":"9/17/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":566,"Cost":458,"Date":"9/29/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":419,"Cost":249,"Date":"11/7/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":43,"Cost":32,"Date":"11/26/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":284,"Cost":170,"Date":"11/27/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":610,"Cost":362,"Date":"12/5/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":219,"Cost":110,"Date":"12/26/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":47,"Cost":26,"Date":"12/31/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":228,"Cost":132,"Date":"1/20/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":119,"Cost":105,"Date":"2/2/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":333,"Cost":193,"Date":"2/8/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":137,"Cost":85,"Date":"2/27/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":434,"Cost":265,"Date":"3/1/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":859,"Cost":635,"Date":"3/1/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":868,"Cost":661,"Date":"3/19/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":897,"Cost":720,"Date":"3/28/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":656,"Cost":486,"Date":"5/21/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":789,"Cost":483,"Date":"7/21/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":137,"Cost":78,"Date":"8/5/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":547,"Cost":284,"Date":"8/12/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":557,"Cost":507,"Date":"8/21/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":805,"Cost":745,"Date":"8/23/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":385,"Cost":362,"Date":"9/3/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":740,"Cost":591,"Date":"9/5/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":747,"Cost":403,"Date":"10/6/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":885,"Cost":727,"Date":"10/19/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":374,"Cost":247,"Date":"11/15/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":89,"Cost":57,"Date":"12/8/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":50,"Cost":27,"Date":"1/8/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":760,"Cost":452,"Date":"1/14/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":669,"Cost":603,"Date":"1/19/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":209,"Cost":184,"Date":"1/28/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":307,"Cost":219,"Date":"1/31/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":462,"Cost":385,"Date":"3/27/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":779,"Cost":426,"Date":"4/20/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":352,"Cost":304,"Date":"4/24/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":660,"Cost":526,"Date":"4/28/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":411,"Cost":273,"Date":"5/15/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":983,"Cost":574,"Date":"5/16/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":548,"Cost":317,"Date":"5/18/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":616,"Cost":541,"Date":"6/2/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":28,"Cost":22,"Date":"6/3/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":393,"Cost":246,"Date":"6/5/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":459,"Cost":355,"Date":"6/7/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":944,"Cost":565,"Date":"6/14/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":399,"Cost":199,"Date":"6/20/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":516,"Cost":281,"Date":"6/24/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":352,"Cost":291,"Date":"7/4/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":575,"Cost":493,"Date":"7/9/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":173,"Cost":122,"Date":"7/12/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":691,"Cost":386,"Date":"8/14/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":582,"Cost":469,"Date":"8/16/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":11,"Cost":9,"Date":"8/23/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":465,"Cost":277,"Date":"9/2/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":500,"Cost":326,"Date":"9/3/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":581,"Cost":321,"Date":"9/16/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":639,"Cost":436,"Date":"10/4/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":66,"Cost":45,"Date":"11/1/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":302,"Cost":187,"Date":"11/2/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":388,"Cost":202,"Date":"12/17/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":877,"Cost":724,"Date":"2/10/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":411,"Cost":350,"Date":"2/28/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":542,"Cost":506,"Date":"3/4/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":664,"Cost":539,"Date":"3/9/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":34,"Cost":26,"Date":"3/9/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":580,"Cost":549,"Date":"3/11/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":501,"Cost":304,"Date":"3/17/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":96,"Cost":81,"Date":"3/17/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":406,"Cost":238,"Date":"3/23/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":531,"Cost":443,"Date":"4/1/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":578,"Cost":298,"Date":"5/7/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":471,"Cost":329,"Date":"5/10/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":373,"Cost":218,"Date":"5/20/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":253,"Cost":230,"Date":"6/2/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":769,"Cost":641,"Date":"6/11/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":682,"Cost":612,"Date":"6/16/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":8,"Cost":7,"Date":"6/16/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":1000,"Cost":724,"Date":"7/10/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":430,"Cost":370,"Date":"7/11/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":961,"Cost":665,"Date":"8/28/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":128,"Cost":110,"Date":"8/29/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":569,"Cost":525,"Date":"8/31/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":875,"Cost":653,"Date":"9/8/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":96,"Cost":60,"Date":"9/13/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":301,"Cost":252,"Date":"9/14/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":260,"Cost":207,"Date":"9/19/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":567,"Cost":289,"Date":"9/25/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":47,"Cost":30,"Date":"10/4/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":789,"Cost":700,"Date":"10/10/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":727,"Cost":525,"Date":"10/17/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":142,"Cost":89,"Date":"10/28/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":299,"Cost":170,"Date":"10/30/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":195,"Cost":133,"Date":"11/1/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":540,"Cost":444,"Date":"11/15/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":313,"Cost":262,"Date":"11/25/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":435,"Cost":259,"Date":"1/10/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":488,"Cost":343,"Date":"1/14/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":684,"Cost":423,"Date":"1/20/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":699,"Cost":372,"Date":"2/8/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":628,"Cost":496,"Date":"2/25/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":412,"Cost":282,"Date":"3/7/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":239,"Cost":163,"Date":"3/14/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":734,"Cost":569,"Date":"3/27/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":113,"Cost":108,"Date":"4/5/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":584,"Cost":509,"Date":"4/14/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":149,"Cost":105,"Date":"5/3/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":278,"Cost":197,"Date":"5/9/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":306,"Cost":183,"Date":"5/15/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":485,"Cost":340,"Date":"5/25/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":764,"Cost":449,"Date":"5/26/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":358,"Cost":244,"Date":"5/31/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":885,"Cost":760,"Date":"7/27/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":49,"Cost":35,"Date":"9/17/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":186,"Cost":159,"Date":"10/6/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":118,"Cost":73,"Date":"10/8/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":865,"Cost":461,"Date":"10/26/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":538,"Cost":452,"Date":"11/16/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":300,"Cost":202,"Date":"11/18/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":498,"Cost":416,"Date":"12/1/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":31,"Cost":28,"Date":"2/9/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":882,"Cost":467,"Date":"2/11/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":191,"Cost":135,"Date":"3/10/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":480,"Cost":247,"Date":"3/16/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":95,"Cost":84,"Date":"3/18/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":36,"Cost":25,"Date":"3/20/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":16,"Cost":10,"Date":"3/26/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":737,"Cost":439,"Date":"6/2/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":534,"Cost":439,"Date":"6/10/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":400,"Cost":236,"Date":"6/16/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":31,"Cost":22,"Date":"6/25/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":230,"Cost":184,"Date":"7/19/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":871,"Cost":699,"Date":"7/21/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":792,"Cost":649,"Date":"7/25/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":746,"Cost":387,"Date":"8/4/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":133,"Cost":97,"Date":"9/2/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":709,"Cost":493,"Date":"9/4/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":431,"Cost":269,"Date":"9/19/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":684,"Cost":364,"Date":"9/29/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":768,"Cost":648,"Date":"10/2/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":604,"Cost":322,"Date":"10/15/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":611,"Cost":371,"Date":"10/30/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":643,"Cost":415,"Date":"11/9/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":964,"Cost":614,"Date":"11/23/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":464,"Cost":289,"Date":"11/30/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":723,"Cost":488,"Date":"12/8/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":997,"Cost":591,"Date":"12/11/2018"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":991,"Cost":626,"Date":"1/15/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":231,"Cost":139,"Date":"1/24/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":611,"Cost":566,"Date":"2/3/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":58,"Cost":42,"Date":"2/4/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":11,"Cost":8,"Date":"3/9/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":368,"Cost":201,"Date":"3/12/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":342,"Cost":228,"Date":"4/19/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":793,"Cost":710,"Date":"5/3/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":464,"Cost":307,"Date":"5/4/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":515,"Cost":300,"Date":"6/8/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":120,"Cost":109,"Date":"6/26/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":377,"Cost":309,"Date":"7/4/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":793,"Cost":713,"Date":"7/13/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":360,"Cost":203,"Date":"8/8/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":501,"Cost":381,"Date":"8/26/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":274,"Cost":212,"Date":"9/2/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":568,"Cost":424,"Date":"9/29/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":691,"Cost":593,"Date":"10/12/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":411,"Cost":321,"Date":"11/2/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":395,"Cost":287,"Date":"11/4/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":568,"Cost":517,"Date":"11/7/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":727,"Cost":456,"Date":"12/1/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":118,"Cost":101,"Date":"12/4/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":580,"Cost":341,"Date":"12/7/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":745,"Cost":446,"Date":"12/18/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":578,"Cost":291,"Date":"12/20/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":472,"Cost":380,"Date":"12/20/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":338,"Cost":282,"Date":"12/21/2019"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":215,"Cost":112,"Date":"1/9/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":943,"Cost":531,"Date":"2/5/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":983,"Cost":727,"Date":"2/16/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":369,"Cost":216,"Date":"2/16/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":185,"Cost":148,"Date":"2/18/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":74,"Cost":43,"Date":"2/22/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":479,"Cost":277,"Date":"2/25/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":990,"Cost":750,"Date":"3/8/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":284,"Cost":178,"Date":"4/2/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":493,"Cost":277,"Date":"4/3/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":369,"Cost":301,"Date":"4/9/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":423,"Cost":222,"Date":"4/10/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":65,"Cost":36,"Date":"4/19/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":264,"Cost":190,"Date":"5/17/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":685,"Cost":480,"Date":"5/22/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":639,"Cost":469,"Date":"6/20/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":598,"Cost":423,"Date":"7/1/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":53,"Cost":48,"Date":"7/4/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":14,"Cost":10,"Date":"7/8/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":277,"Cost":194,"Date":"7/9/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":445,"Cost":323,"Date":"7/14/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":835,"Cost":639,"Date":"7/19/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":339,"Cost":284,"Date":"8/1/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":164,"Cost":121,"Date":"8/6/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":858,"Cost":778,"Date":"8/7/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":543,"Cost":501,"Date":"8/22/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":205,"Cost":183,"Date":"8/31/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":214,"Cost":160,"Date":"9/1/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":905,"Cost":759,"Date":"9/1/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":420,"Cost":244,"Date":"9/17/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":744,"Cost":460,"Date":"9/29/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":960,"Cost":612,"Date":"11/7/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":300,"Cost":260,"Date":"11/26/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":326,"Cost":169,"Date":"11/27/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":251,"Cost":210,"Date":"12/5/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":682,"Cost":601,"Date":"12/26/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":33,"Cost":25,"Date":"12/31/2020"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":433,"Cost":260,"Date":"1/20/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":633,"Cost":400,"Date":"2/2/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":400,"Cost":223,"Date":"2/8/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":798,"Cost":573,"Date":"2/27/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":327,"Cost":210,"Date":"3/1/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":111,"Cost":94,"Date":"3/1/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":899,"Cost":788,"Date":"3/19/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":205,"Cost":131,"Date":"3/28/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":801,"Cost":588,"Date":"5/21/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":8,"Cost":5,"Date":"7/21/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":552,"Cost":500,"Date":"8/5/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":356,"Cost":260,"Date":"8/12/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":571,"Cost":355,"Date":"8/21/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":290,"Cost":207,"Date":"8/23/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":321,"Cost":283,"Date":"9/3/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":504,"Cost":315,"Date":"9/5/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":490,"Cost":437,"Date":"10/6/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":776,"Cost":446,"Date":"10/19/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":437,"Cost":415,"Date":"11/15/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":672,"Cost":618,"Date":"12/8/2021"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":680,"Cost":449,"Date":"1/8/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":651,"Cost":446,"Date":"1/14/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":67,"Cost":39,"Date":"1/19/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":172,"Cost":154,"Date":"1/28/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":647,"Cost":332,"Date":"1/31/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":733,"Cost":684,"Date":"3/27/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":325,"Cost":277,"Date":"4/20/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":266,"Cost":162,"Date":"4/24/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":420,"Cost":339,"Date":"4/28/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":978,"Cost":546,"Date":"5/15/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":810,"Cost":606,"Date":"5/16/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":95,"Cost":58,"Date":"5/18/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":327,"Cost":178,"Date":"6/2/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":414,"Cost":310,"Date":"6/3/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":801,"Cost":599,"Date":"6/5/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":51,"Cost":43,"Date":"6/7/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":677,"Cost":418,"Date":"6/14/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":116,"Cost":70,"Date":"6/20/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":96,"Cost":75,"Date":"6/24/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":913,"Cost":838,"Date":"7/4/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":108,"Cost":72,"Date":"7/9/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":406,"Cost":258,"Date":"7/12/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":945,"Cost":494,"Date":"8/14/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":362,"Cost":224,"Date":"8/16/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":353,"Cost":303,"Date":"8/23/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":404,"Cost":256,"Date":"9/2/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":790,"Cost":426,"Date":"9/3/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":614,"Cost":405,"Date":"9/16/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":832,"Cost":611,"Date":"10/4/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":202,"Cost":117,"Date":"11/1/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":864,"Cost":656,"Date":"11/2/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":566,"Cost":356,"Date":"12/17/2022"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":242,"Cost":218,"Date":"2/10/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":640,"Cost":409,"Date":"2/28/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":893,"Cost":659,"Date":"3/4/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":280,"Cost":245,"Date":"3/9/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":805,"Cost":614,"Date":"3/9/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":909,"Cost":773,"Date":"3/11/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":897,"Cost":637,"Date":"3/17/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":486,"Cost":454,"Date":"3/17/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":891,"Cost":605,"Date":"3/23/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":662,"Cost":546,"Date":"4/1/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":278,"Cost":150,"Date":"5/7/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":627,"Cost":520,"Date":"5/10/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":763,"Cost":722,"Date":"5/20/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":632,"Cost":328,"Date":"6/2/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":13,"Cost":12,"Date":"6/11/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":838,"Cost":684,"Date":"6/16/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":143,"Cost":111,"Date":"6/16/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":921,"Cost":645,"Date":"7/10/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":832,"Cost":774,"Date":"7/11/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":547,"Cost":488,"Date":"8/28/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":720,"Cost":684,"Date":"8/29/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":618,"Cost":549,"Date":"8/31/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":713,"Cost":474,"Date":"9/8/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":571,"Cost":353,"Date":"9/13/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":509,"Cost":448,"Date":"9/14/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":899,"Cost":474,"Date":"9/19/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":438,"Cost":252,"Date":"9/25/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":553,"Cost":308,"Date":"10/4/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":162,"Cost":133,"Date":"10/10/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":558,"Cost":333,"Date":"10/17/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":155,"Cost":136,"Date":"10/28/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":87,"Cost":48,"Date":"10/30/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":175,"Cost":106,"Date":"11/1/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":305,"Cost":230,"Date":"11/15/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":301,"Cost":202,"Date":"11/25/2023"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":23,"Cost":17,"Date":"1/10/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":892,"Cost":540,"Date":"1/14/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":630,"Cost":571,"Date":"1/20/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":7,"Cost":5,"Date":"2/8/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":707,"Cost":384,"Date":"2/25/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":250,"Cost":164,"Date":"3/7/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":293,"Cost":253,"Date":"3/14/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":255,"Cost":184,"Date":"3/27/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":924,"Cost":633,"Date":"4/5/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":315,"Cost":181,"Date":"4/14/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":809,"Cost":688,"Date":"5/3/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":848,"Cost":655,"Date":"5/9/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":500,"Cost":454,"Date":"5/15/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":899,"Cost":566,"Date":"5/25/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":547,"Cost":293,"Date":"5/26/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":587,"Cost":392,"Date":"5/31/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":708,"Cost":447,"Date":"7/27/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":196,"Cost":172,"Date":"9/17/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":16,"Cost":12,"Date":"10/6/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":962,"Cost":485,"Date":"10/8/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":998,"Cost":652,"Date":"10/26/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":847,"Cost":485,"Date":"11/16/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":806,"Cost":484,"Date":"11/18/2024"},{"Store":"Queen Street Mall, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":674,"Cost":527,"Date":"12/1/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":630,"Cost":505,"Date":"2/9/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":900,"Cost":808,"Date":"2/11/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":765,"Cost":409,"Date":"3/10/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":217,"Cost":151,"Date":"3/16/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":731,"Cost":588,"Date":"3/18/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":450,"Cost":409,"Date":"3/20/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":159,"Cost":106,"Date":"3/26/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":148,"Cost":105,"Date":"6/2/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":236,"Cost":123,"Date":"6/10/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":182,"Cost":132,"Date":"6/16/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":850,"Cost":609,"Date":"6/25/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":672,"Cost":609,"Date":"7/19/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":1000,"Cost":546,"Date":"7/21/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":442,"Cost":332,"Date":"7/25/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":256,"Cost":220,"Date":"8/4/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":720,"Cost":512,"Date":"9/2/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":39,"Cost":25,"Date":"9/4/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":515,"Cost":277,"Date":"9/19/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":708,"Cost":533,"Date":"9/29/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":97,"Cost":77,"Date":"10/2/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":993,"Cost":526,"Date":"10/15/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":967,"Cost":561,"Date":"10/30/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":864,"Cost":674,"Date":"11/9/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":386,"Cost":281,"Date":"11/23/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":340,"Cost":172,"Date":"11/30/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":760,"Cost":700,"Date":"12/8/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":333,"Cost":250,"Date":"12/11/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":32,"Cost":17,"Date":"1/15/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":802,"Cost":575,"Date":"1/24/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":572,"Cost":422,"Date":"2/3/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":18,"Cost":17,"Date":"2/4/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":246,"Cost":139,"Date":"3/9/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":554,"Cost":327,"Date":"3/12/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":893,"Cost":590,"Date":"4/19/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":882,"Cost":723,"Date":"5/3/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":203,"Cost":172,"Date":"5/4/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":112,"Cost":88,"Date":"6/8/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":781,"Cost":431,"Date":"6/26/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":294,"Cost":187,"Date":"7/4/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":990,"Cost":851,"Date":"7/13/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":894,"Cost":829,"Date":"8/8/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":646,"Cost":577,"Date":"8/26/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":506,"Cost":340,"Date":"9/2/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":526,"Cost":438,"Date":"9/29/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":450,"Cost":398,"Date":"10/12/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":985,"Cost":906,"Date":"11/2/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":896,"Cost":517,"Date":"11/4/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":142,"Cost":134,"Date":"11/7/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":355,"Cost":301,"Date":"12/1/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":568,"Cost":371,"Date":"12/4/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":211,"Cost":155,"Date":"12/7/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":56,"Cost":39,"Date":"12/18/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":733,"Cost":566,"Date":"12/20/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":5,"Cost":4,"Date":"12/20/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":961,"Cost":517,"Date":"12/21/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":425,"Cost":333,"Date":"1/9/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":245,"Cost":198,"Date":"2/5/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":300,"Cost":200,"Date":"2/16/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":198,"Cost":161,"Date":"2/16/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":199,"Cost":119,"Date":"2/18/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":102,"Cost":64,"Date":"2/22/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":715,"Cost":529,"Date":"2/25/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":193,"Cost":149,"Date":"3/8/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":454,"Cost":303,"Date":"4/2/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":775,"Cost":533,"Date":"4/3/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":595,"Cost":496,"Date":"4/9/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":708,"Cost":538,"Date":"4/10/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":44,"Cost":38,"Date":"4/19/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":667,"Cost":450,"Date":"5/17/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":979,"Cost":540,"Date":"5/22/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":888,"Cost":792,"Date":"6/20/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":883,"Cost":444,"Date":"7/1/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":708,"Cost":463,"Date":"7/4/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":241,"Cost":149,"Date":"7/8/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":30,"Cost":16,"Date":"7/9/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":714,"Cost":558,"Date":"7/14/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":10,"Cost":6,"Date":"7/19/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":547,"Cost":391,"Date":"8/1/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":241,"Cost":206,"Date":"8/6/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":317,"Cost":189,"Date":"8/7/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":335,"Cost":259,"Date":"8/22/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":44,"Cost":29,"Date":"8/31/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":157,"Cost":120,"Date":"9/1/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":924,"Cost":516,"Date":"9/1/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":434,"Cost":276,"Date":"9/17/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":965,"Cost":608,"Date":"9/29/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":101,"Cost":59,"Date":"11/7/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":157,"Cost":140,"Date":"11/26/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":718,"Cost":524,"Date":"11/27/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":210,"Cost":187,"Date":"12/5/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":322,"Cost":205,"Date":"12/26/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":999,"Cost":653,"Date":"12/31/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":390,"Cost":245,"Date":"1/20/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":446,"Cost":407,"Date":"2/2/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":118,"Cost":71,"Date":"2/8/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":818,"Cost":433,"Date":"2/27/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":935,"Cost":705,"Date":"3/1/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":508,"Cost":387,"Date":"3/1/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":460,"Cost":411,"Date":"3/19/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":335,"Cost":282,"Date":"3/28/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":666,"Cost":414,"Date":"5/21/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":502,"Cost":257,"Date":"7/21/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":210,"Cost":121,"Date":"8/5/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":937,"Cost":699,"Date":"8/12/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":373,"Cost":216,"Date":"8/21/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":41,"Cost":37,"Date":"8/23/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":829,"Cost":636,"Date":"9/3/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":687,"Cost":595,"Date":"9/5/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":251,"Cost":163,"Date":"10/6/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":927,"Cost":573,"Date":"10/19/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":223,"Cost":205,"Date":"11/15/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":530,"Cost":467,"Date":"12/8/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":268,"Cost":245,"Date":"1/8/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":220,"Cost":125,"Date":"1/14/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":800,"Cost":757,"Date":"1/19/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":785,"Cost":675,"Date":"1/28/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":285,"Cost":168,"Date":"1/31/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":32,"Cost":24,"Date":"3/27/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":361,"Cost":266,"Date":"4/20/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":580,"Cost":419,"Date":"4/24/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":560,"Cost":358,"Date":"4/28/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":329,"Cost":275,"Date":"5/15/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":152,"Cost":140,"Date":"5/16/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":991,"Cost":664,"Date":"5/18/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":755,"Cost":434,"Date":"6/2/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":987,"Cost":809,"Date":"6/3/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":179,"Cost":103,"Date":"6/5/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":265,"Cost":252,"Date":"6/7/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":315,"Cost":260,"Date":"6/14/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":687,"Cost":397,"Date":"6/20/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":940,"Cost":499,"Date":"6/24/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":769,"Cost":421,"Date":"7/4/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":296,"Cost":220,"Date":"7/9/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":790,"Cost":718,"Date":"7/12/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":392,"Cost":348,"Date":"8/14/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":595,"Cost":388,"Date":"8/16/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":681,"Cost":358,"Date":"8/23/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":574,"Cost":463,"Date":"9/2/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":578,"Cost":296,"Date":"9/3/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":850,"Cost":601,"Date":"9/16/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":650,"Cost":349,"Date":"10/4/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":424,"Cost":399,"Date":"11/1/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":553,"Cost":455,"Date":"11/2/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":466,"Cost":433,"Date":"12/17/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":265,"Cost":177,"Date":"2/10/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":913,"Cost":670,"Date":"2/28/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":741,"Cost":643,"Date":"3/4/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":263,"Cost":219,"Date":"3/9/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":555,"Cost":439,"Date":"3/9/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":480,"Cost":288,"Date":"3/11/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":679,"Cost":429,"Date":"3/17/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":695,"Cost":423,"Date":"3/17/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":906,"Cost":776,"Date":"3/23/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":673,"Cost":383,"Date":"4/1/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":333,"Cost":182,"Date":"5/7/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":842,"Cost":612,"Date":"5/10/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":646,"Cost":606,"Date":"5/20/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":904,"Cost":803,"Date":"6/2/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":650,"Cost":439,"Date":"6/11/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":101,"Cost":74,"Date":"6/16/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":877,"Cost":541,"Date":"6/16/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":586,"Cost":557,"Date":"7/10/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":908,"Cost":774,"Date":"7/11/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":958,"Cost":561,"Date":"8/28/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":995,"Cost":885,"Date":"8/29/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":969,"Cost":730,"Date":"8/31/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":248,"Cost":196,"Date":"9/8/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":53,"Cost":34,"Date":"9/13/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":539,"Cost":368,"Date":"9/14/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":552,"Cost":464,"Date":"9/19/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":8,"Cost":4,"Date":"9/25/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":308,"Cost":200,"Date":"10/4/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":261,"Cost":229,"Date":"10/10/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":181,"Cost":127,"Date":"10/17/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":365,"Cost":188,"Date":"10/28/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":35,"Cost":30,"Date":"10/30/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":857,"Cost":438,"Date":"11/1/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":566,"Cost":391,"Date":"11/15/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":913,"Cost":553,"Date":"11/25/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":723,"Cost":609,"Date":"1/10/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":255,"Cost":186,"Date":"1/14/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":300,"Cost":235,"Date":"1/20/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":19,"Cost":18,"Date":"2/8/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":269,"Cost":173,"Date":"2/25/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":133,"Cost":80,"Date":"3/7/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":906,"Cost":809,"Date":"3/14/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":223,"Cost":143,"Date":"3/27/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":28,"Cost":18,"Date":"4/5/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":513,"Cost":419,"Date":"4/14/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":668,"Cost":425,"Date":"5/3/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":931,"Cost":727,"Date":"5/9/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":985,"Cost":852,"Date":"5/15/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":451,"Cost":304,"Date":"5/25/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":165,"Cost":92,"Date":"5/26/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":280,"Cost":235,"Date":"5/31/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":312,"Cost":250,"Date":"7/27/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":658,"Cost":408,"Date":"9/17/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":960,"Cost":699,"Date":"10/6/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":594,"Cost":379,"Date":"10/8/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":745,"Cost":600,"Date":"10/26/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":721,"Cost":424,"Date":"11/16/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":666,"Cost":475,"Date":"11/18/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"ARKET","Country":"Australia","Sale":487,"Cost":287,"Date":"12/1/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":648,"Cost":506,"Date":"2/9/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":686,"Cost":553,"Date":"2/11/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":179,"Cost":168,"Date":"3/10/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":778,"Cost":402,"Date":"3/16/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":629,"Cost":456,"Date":"3/18/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":632,"Cost":561,"Date":"3/20/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":797,"Cost":675,"Date":"3/26/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":423,"Cost":401,"Date":"6/2/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":744,"Cost":626,"Date":"6/10/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":58,"Cost":39,"Date":"6/16/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":619,"Cost":467,"Date":"6/25/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":933,"Cost":864,"Date":"7/19/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":132,"Cost":76,"Date":"7/21/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":247,"Cost":182,"Date":"7/25/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":956,"Cost":526,"Date":"8/4/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":11,"Cost":10,"Date":"9/2/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":654,"Cost":365,"Date":"9/4/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":716,"Cost":431,"Date":"9/19/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":195,"Cost":118,"Date":"9/29/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":183,"Cost":167,"Date":"10/2/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":931,"Cost":851,"Date":"10/15/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":830,"Cost":432,"Date":"10/30/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":477,"Cost":320,"Date":"11/9/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":739,"Cost":592,"Date":"11/23/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":526,"Cost":409,"Date":"11/30/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":421,"Cost":296,"Date":"12/8/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":68,"Cost":49,"Date":"12/11/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":302,"Cost":203,"Date":"1/15/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":608,"Cost":413,"Date":"1/24/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":429,"Cost":218,"Date":"2/3/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":416,"Cost":376,"Date":"2/4/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":795,"Cost":408,"Date":"3/9/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":336,"Cost":205,"Date":"3/12/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":171,"Cost":110,"Date":"4/19/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":236,"Cost":209,"Date":"5/3/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":748,"Cost":502,"Date":"5/4/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":58,"Cost":46,"Date":"6/8/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":308,"Cost":267,"Date":"6/26/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":275,"Cost":147,"Date":"7/4/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":150,"Cost":127,"Date":"7/13/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":205,"Cost":119,"Date":"8/8/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":258,"Cost":218,"Date":"8/26/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":573,"Cost":445,"Date":"9/2/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":602,"Cost":335,"Date":"9/29/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":698,"Cost":439,"Date":"10/12/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":502,"Cost":450,"Date":"11/2/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":215,"Cost":201,"Date":"11/4/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":809,"Cost":563,"Date":"11/7/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":484,"Cost":275,"Date":"12/1/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":723,"Cost":686,"Date":"12/4/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":885,"Cost":795,"Date":"12/7/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":563,"Cost":436,"Date":"12/18/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":188,"Cost":99,"Date":"12/20/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":933,"Cost":478,"Date":"12/20/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":907,"Cost":538,"Date":"12/21/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":944,"Cost":850,"Date":"1/9/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":191,"Cost":136,"Date":"2/5/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":75,"Cost":61,"Date":"2/16/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":521,"Cost":356,"Date":"2/16/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":881,"Cost":625,"Date":"2/18/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":769,"Cost":658,"Date":"2/22/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":510,"Cost":475,"Date":"2/25/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":153,"Cost":77,"Date":"3/8/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":751,"Cost":645,"Date":"4/2/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":265,"Cost":141,"Date":"4/3/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":577,"Cost":323,"Date":"4/9/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":68,"Cost":48,"Date":"4/10/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":294,"Cost":170,"Date":"4/19/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":478,"Cost":321,"Date":"5/17/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":467,"Cost":269,"Date":"5/22/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":757,"Cost":461,"Date":"6/20/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":176,"Cost":89,"Date":"7/1/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":538,"Cost":465,"Date":"7/4/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":416,"Cost":305,"Date":"7/8/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":741,"Cost":596,"Date":"7/9/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":10,"Cost":7,"Date":"7/14/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":775,"Cost":423,"Date":"7/19/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":439,"Cost":300,"Date":"8/1/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":216,"Cost":202,"Date":"8/6/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":10,"Cost":5,"Date":"8/7/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":293,"Cost":171,"Date":"8/22/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":752,"Cost":439,"Date":"8/31/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":541,"Cost":306,"Date":"9/1/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":894,"Cost":588,"Date":"9/1/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":282,"Cost":239,"Date":"9/17/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":189,"Cost":148,"Date":"9/29/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":785,"Cost":510,"Date":"11/7/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":621,"Cost":467,"Date":"11/26/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":59,"Cost":38,"Date":"11/27/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":57,"Cost":47,"Date":"12/5/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":531,"Cost":476,"Date":"12/26/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":112,"Cost":99,"Date":"12/31/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":517,"Cost":452,"Date":"1/20/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":940,"Cost":867,"Date":"2/2/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":741,"Cost":435,"Date":"2/8/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":707,"Cost":635,"Date":"2/27/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":924,"Cost":596,"Date":"3/1/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":435,"Cost":338,"Date":"3/1/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":305,"Cost":201,"Date":"3/19/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":215,"Cost":147,"Date":"3/28/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":614,"Cost":394,"Date":"5/21/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":550,"Cost":370,"Date":"7/21/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":321,"Cost":208,"Date":"8/5/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":210,"Cost":114,"Date":"8/12/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":643,"Cost":357,"Date":"8/21/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":301,"Cost":247,"Date":"8/23/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":824,"Cost":460,"Date":"9/3/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":74,"Cost":63,"Date":"9/5/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":619,"Cost":439,"Date":"10/6/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":73,"Cost":64,"Date":"10/19/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":674,"Cost":505,"Date":"11/15/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":113,"Cost":73,"Date":"12/8/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":766,"Cost":393,"Date":"1/8/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":655,"Cost":439,"Date":"1/14/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":481,"Cost":282,"Date":"1/19/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":338,"Cost":186,"Date":"1/28/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":842,"Cost":612,"Date":"1/31/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":731,"Cost":567,"Date":"3/27/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":317,"Cost":287,"Date":"4/20/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":218,"Cost":161,"Date":"4/24/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":843,"Cost":471,"Date":"4/28/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":380,"Cost":208,"Date":"5/15/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":71,"Cost":36,"Date":"5/16/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":962,"Cost":907,"Date":"5/18/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":884,"Cost":629,"Date":"6/2/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":784,"Cost":714,"Date":"6/3/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":795,"Cost":659,"Date":"6/5/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":618,"Cost":487,"Date":"6/7/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":649,"Cost":600,"Date":"6/14/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":566,"Cost":456,"Date":"6/20/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":794,"Cost":410,"Date":"6/24/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":16,"Cost":8,"Date":"7/4/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":491,"Cost":340,"Date":"7/9/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":362,"Cost":333,"Date":"7/12/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":447,"Cost":306,"Date":"8/14/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":461,"Cost":360,"Date":"8/16/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":924,"Cost":676,"Date":"8/23/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":180,"Cost":167,"Date":"9/2/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":246,"Cost":152,"Date":"9/3/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":777,"Cost":588,"Date":"9/16/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":241,"Cost":140,"Date":"10/4/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":426,"Cost":355,"Date":"11/1/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":301,"Cost":263,"Date":"11/2/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":193,"Cost":114,"Date":"12/17/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":337,"Cost":193,"Date":"2/10/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":638,"Cost":335,"Date":"2/28/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":163,"Cost":87,"Date":"3/4/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":762,"Cost":582,"Date":"3/9/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":415,"Cost":358,"Date":"3/9/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":325,"Cost":281,"Date":"3/11/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":630,"Cost":324,"Date":"3/17/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":904,"Cost":752,"Date":"3/17/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":863,"Cost":712,"Date":"3/23/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":941,"Cost":714,"Date":"4/1/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":840,"Cost":589,"Date":"5/7/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":829,"Cost":550,"Date":"5/10/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":585,"Cost":353,"Date":"5/20/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":859,"Cost":522,"Date":"6/2/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":625,"Cost":368,"Date":"6/11/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":113,"Cost":101,"Date":"6/16/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":89,"Cost":54,"Date":"6/16/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":59,"Cost":35,"Date":"7/10/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":190,"Cost":103,"Date":"7/11/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":662,"Cost":584,"Date":"8/28/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":494,"Cost":289,"Date":"8/29/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":786,"Cost":541,"Date":"8/31/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":715,"Cost":406,"Date":"9/8/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":93,"Cost":59,"Date":"9/13/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":294,"Cost":184,"Date":"9/14/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":166,"Cost":144,"Date":"9/19/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":267,"Cost":222,"Date":"9/25/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":392,"Cost":351,"Date":"10/4/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":909,"Cost":478,"Date":"10/10/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":602,"Cost":556,"Date":"10/17/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":949,"Cost":544,"Date":"10/28/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":401,"Cost":263,"Date":"10/30/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":348,"Cost":277,"Date":"11/1/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":512,"Cost":471,"Date":"11/15/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":286,"Cost":170,"Date":"11/25/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":850,"Cost":512,"Date":"1/10/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":269,"Cost":240,"Date":"1/14/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":473,"Cost":398,"Date":"1/20/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":632,"Cost":370,"Date":"2/8/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":841,"Cost":564,"Date":"2/25/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":435,"Cost":374,"Date":"3/7/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":304,"Cost":277,"Date":"3/14/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":847,"Cost":467,"Date":"3/27/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":611,"Cost":412,"Date":"4/5/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":644,"Cost":577,"Date":"4/14/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":436,"Cost":405,"Date":"5/3/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":694,"Cost":520,"Date":"5/9/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":453,"Cost":259,"Date":"5/15/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":907,"Cost":822,"Date":"5/25/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":571,"Cost":497,"Date":"5/26/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":461,"Cost":310,"Date":"5/31/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":982,"Cost":680,"Date":"7/27/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":701,"Cost":437,"Date":"9/17/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":435,"Cost":343,"Date":"10/6/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":877,"Cost":759,"Date":"10/8/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":711,"Cost":388,"Date":"10/26/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":196,"Cost":161,"Date":"11/16/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":203,"Cost":170,"Date":"11/18/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"COS","Country":"Australia","Sale":74,"Cost":63,"Date":"12/1/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":797,"Cost":723,"Date":"2/9/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":379,"Cost":359,"Date":"2/11/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":15,"Cost":10,"Date":"3/10/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":697,"Cost":350,"Date":"3/16/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":83,"Cost":77,"Date":"3/18/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":759,"Cost":564,"Date":"3/20/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":125,"Cost":66,"Date":"3/26/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":368,"Cost":184,"Date":"6/2/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":178,"Cost":168,"Date":"6/10/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":724,"Cost":644,"Date":"6/16/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":190,"Cost":165,"Date":"6/25/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":99,"Cost":83,"Date":"7/19/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":594,"Cost":301,"Date":"7/21/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":680,"Cost":471,"Date":"7/25/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":354,"Cost":208,"Date":"8/4/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":421,"Cost":268,"Date":"9/2/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":849,"Cost":522,"Date":"9/4/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":244,"Cost":212,"Date":"9/19/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":822,"Cost":426,"Date":"9/29/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":604,"Cost":489,"Date":"10/2/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":238,"Cost":147,"Date":"10/15/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":202,"Cost":159,"Date":"10/30/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":276,"Cost":165,"Date":"11/9/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":198,"Cost":135,"Date":"11/23/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":559,"Cost":369,"Date":"11/30/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":757,"Cost":424,"Date":"12/8/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":793,"Cost":556,"Date":"12/11/2018"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":640,"Cost":572,"Date":"1/15/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":246,"Cost":133,"Date":"1/24/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":349,"Cost":321,"Date":"2/3/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":184,"Cost":135,"Date":"2/4/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":109,"Cost":83,"Date":"3/9/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":461,"Cost":305,"Date":"3/12/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":73,"Cost":66,"Date":"4/19/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":742,"Cost":608,"Date":"5/3/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":720,"Cost":462,"Date":"5/4/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":375,"Cost":199,"Date":"6/8/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":718,"Cost":550,"Date":"6/26/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":865,"Cost":543,"Date":"7/4/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":472,"Cost":242,"Date":"7/13/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":587,"Cost":557,"Date":"8/8/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":753,"Cost":485,"Date":"8/26/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":714,"Cost":443,"Date":"9/2/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":704,"Cost":517,"Date":"9/29/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":871,"Cost":570,"Date":"10/12/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":401,"Cost":341,"Date":"11/2/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":926,"Cost":676,"Date":"11/4/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":314,"Cost":290,"Date":"11/7/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":394,"Cost":320,"Date":"12/1/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":371,"Cost":253,"Date":"12/4/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":639,"Cost":596,"Date":"12/7/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":483,"Cost":389,"Date":"12/18/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":108,"Cost":60,"Date":"12/20/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":53,"Cost":27,"Date":"12/20/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":175,"Cost":118,"Date":"12/21/2019"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":902,"Cost":541,"Date":"1/9/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":778,"Cost":638,"Date":"2/5/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":981,"Cost":923,"Date":"2/16/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":404,"Cost":308,"Date":"2/16/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":118,"Cost":93,"Date":"2/18/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":877,"Cost":753,"Date":"2/22/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":179,"Cost":160,"Date":"2/25/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":91,"Cost":86,"Date":"3/8/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":300,"Cost":177,"Date":"4/2/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":654,"Cost":529,"Date":"4/3/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":55,"Cost":47,"Date":"4/9/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":820,"Cost":651,"Date":"4/10/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":460,"Cost":253,"Date":"4/19/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":109,"Cost":67,"Date":"5/17/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":921,"Cost":776,"Date":"5/22/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":618,"Cost":528,"Date":"6/20/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":655,"Cost":349,"Date":"7/1/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":737,"Cost":560,"Date":"7/4/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":824,"Cost":609,"Date":"7/8/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":908,"Cost":819,"Date":"7/9/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":602,"Cost":314,"Date":"7/14/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":549,"Cost":418,"Date":"7/19/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":847,"Cost":481,"Date":"8/1/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":515,"Cost":412,"Date":"8/6/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":474,"Cost":449,"Date":"8/7/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":299,"Cost":188,"Date":"8/22/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":586,"Cost":476,"Date":"8/31/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":585,"Cost":476,"Date":"9/1/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":229,"Cost":138,"Date":"9/1/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":694,"Cost":501,"Date":"9/17/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":588,"Cost":320,"Date":"9/29/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":469,"Cost":434,"Date":"11/7/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":190,"Cost":115,"Date":"11/26/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":203,"Cost":149,"Date":"11/27/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":49,"Cost":45,"Date":"12/5/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":405,"Cost":244,"Date":"12/26/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":168,"Cost":115,"Date":"12/31/2020"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":290,"Cost":249,"Date":"1/20/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":621,"Cost":404,"Date":"2/2/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":856,"Cost":789,"Date":"2/8/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":31,"Cost":28,"Date":"2/27/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":402,"Cost":218,"Date":"3/1/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":483,"Cost":361,"Date":"3/1/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":379,"Cost":313,"Date":"3/19/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":801,"Cost":429,"Date":"3/28/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":181,"Cost":107,"Date":"5/21/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":871,"Cost":758,"Date":"7/21/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":358,"Cost":209,"Date":"8/5/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":803,"Cost":666,"Date":"8/12/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":55,"Cost":52,"Date":"8/21/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":968,"Cost":906,"Date":"8/23/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":191,"Cost":100,"Date":"9/3/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":884,"Cost":706,"Date":"9/5/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":26,"Cost":14,"Date":"10/6/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":580,"Cost":540,"Date":"10/19/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":657,"Cost":363,"Date":"11/15/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":600,"Cost":515,"Date":"12/8/2021"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":468,"Cost":393,"Date":"1/8/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":918,"Cost":821,"Date":"1/14/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":923,"Cost":767,"Date":"1/19/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":948,"Cost":544,"Date":"1/28/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":234,"Cost":158,"Date":"1/31/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":649,"Cost":454,"Date":"3/27/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":50,"Cost":40,"Date":"4/20/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":231,"Cost":168,"Date":"4/24/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":840,"Cost":610,"Date":"4/28/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":786,"Cost":605,"Date":"5/15/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":201,"Cost":133,"Date":"5/16/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":222,"Cost":210,"Date":"5/18/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":534,"Cost":320,"Date":"6/2/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":790,"Cost":695,"Date":"6/3/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":263,"Cost":141,"Date":"6/5/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":602,"Cost":427,"Date":"6/7/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":904,"Cost":756,"Date":"6/14/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":160,"Cost":106,"Date":"6/20/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":617,"Cost":496,"Date":"6/24/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":733,"Cost":669,"Date":"7/4/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":358,"Cost":337,"Date":"7/9/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":418,"Cost":354,"Date":"7/12/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":583,"Cost":392,"Date":"8/14/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":359,"Cost":325,"Date":"8/16/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":474,"Cost":428,"Date":"8/23/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":918,"Cost":857,"Date":"9/2/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":635,"Cost":588,"Date":"9/3/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":132,"Cost":126,"Date":"9/16/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":431,"Cost":265,"Date":"10/4/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":516,"Cost":289,"Date":"11/1/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":472,"Cost":312,"Date":"11/2/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":624,"Cost":352,"Date":"12/17/2022"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":870,"Cost":566,"Date":"2/10/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":295,"Cost":228,"Date":"2/28/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":653,"Cost":567,"Date":"3/4/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":283,"Cost":159,"Date":"3/9/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":77,"Cost":41,"Date":"3/9/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":641,"Cost":550,"Date":"3/11/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":604,"Cost":565,"Date":"3/17/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":242,"Cost":200,"Date":"3/17/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":461,"Cost":380,"Date":"3/23/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":784,"Cost":716,"Date":"4/1/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":551,"Cost":510,"Date":"5/7/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":379,"Cost":285,"Date":"5/10/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":520,"Cost":356,"Date":"5/20/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":938,"Cost":734,"Date":"6/2/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":105,"Cost":100,"Date":"6/11/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":314,"Cost":282,"Date":"6/16/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":375,"Cost":198,"Date":"6/16/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":83,"Cost":67,"Date":"7/10/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":993,"Cost":654,"Date":"7/11/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":257,"Cost":212,"Date":"8/28/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":172,"Cost":116,"Date":"8/29/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":419,"Cost":233,"Date":"8/31/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":994,"Cost":695,"Date":"9/8/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":537,"Cost":394,"Date":"9/13/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":828,"Cost":714,"Date":"9/14/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":60,"Cost":55,"Date":"9/19/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":165,"Cost":135,"Date":"9/25/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":187,"Cost":157,"Date":"10/4/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":391,"Cost":345,"Date":"10/10/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":426,"Cost":227,"Date":"10/17/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":38,"Cost":21,"Date":"10/28/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":492,"Cost":271,"Date":"10/30/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":702,"Cost":578,"Date":"11/1/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":631,"Cost":558,"Date":"11/15/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":276,"Cost":155,"Date":"11/25/2023"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":853,"Cost":558,"Date":"1/10/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":695,"Cost":545,"Date":"1/14/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":308,"Cost":204,"Date":"1/20/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":615,"Cost":322,"Date":"2/8/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":476,"Cost":294,"Date":"2/25/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":185,"Cost":117,"Date":"3/7/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":438,"Cost":262,"Date":"3/14/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":50,"Cost":29,"Date":"3/27/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":821,"Cost":766,"Date":"4/5/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":805,"Cost":626,"Date":"4/14/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":186,"Cost":113,"Date":"5/3/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":625,"Cost":425,"Date":"5/9/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":973,"Cost":623,"Date":"5/15/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":175,"Cost":148,"Date":"5/25/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":634,"Cost":515,"Date":"5/26/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":21,"Cost":15,"Date":"5/31/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":857,"Cost":678,"Date":"7/27/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":43,"Cost":21,"Date":"9/17/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":393,"Cost":299,"Date":"10/6/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":559,"Cost":380,"Date":"10/8/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":686,"Cost":382,"Date":"10/26/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":511,"Cost":451,"Date":"11/16/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":423,"Cost":358,"Date":"11/18/2024"},{"Store":"Westfield Chermside, Brisbane","Brand":"HM","Country":"Australia","Sale":753,"Cost":715,"Date":"12/1/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":55,"Cost":29,"Date":"2/9/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":784,"Cost":439,"Date":"2/11/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":112,"Cost":83,"Date":"3/10/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":874,"Cost":451,"Date":"3/16/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":399,"Cost":362,"Date":"3/18/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":675,"Cost":543,"Date":"3/20/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":119,"Cost":112,"Date":"3/26/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":805,"Cost":451,"Date":"6/2/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":81,"Cost":60,"Date":"6/10/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":134,"Cost":120,"Date":"6/16/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":724,"Cost":501,"Date":"6/25/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":76,"Cost":46,"Date":"7/19/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":453,"Cost":320,"Date":"7/21/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":993,"Cost":587,"Date":"7/25/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":744,"Cost":435,"Date":"8/4/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":894,"Cost":805,"Date":"9/2/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":593,"Cost":466,"Date":"9/4/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":713,"Cost":491,"Date":"9/19/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":1,"Cost":1,"Date":"9/29/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":537,"Cost":469,"Date":"10/2/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":57,"Cost":42,"Date":"10/15/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":247,"Cost":132,"Date":"10/30/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":465,"Cost":307,"Date":"11/9/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":826,"Cost":754,"Date":"11/23/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":896,"Cost":500,"Date":"11/30/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":32,"Cost":17,"Date":"12/8/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":823,"Cost":485,"Date":"12/11/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":779,"Cost":517,"Date":"1/15/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":605,"Cost":535,"Date":"1/24/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":754,"Cost":643,"Date":"2/3/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":632,"Cost":354,"Date":"2/4/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":111,"Cost":82,"Date":"3/9/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":966,"Cost":815,"Date":"3/12/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":304,"Cost":239,"Date":"4/19/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":529,"Cost":473,"Date":"5/3/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":761,"Cost":566,"Date":"5/4/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":759,"Cost":478,"Date":"6/8/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":388,"Cost":299,"Date":"6/26/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":301,"Cost":224,"Date":"7/4/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":72,"Cost":52,"Date":"7/13/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":409,"Cost":347,"Date":"8/8/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":538,"Cost":317,"Date":"8/26/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":49,"Cost":46,"Date":"9/2/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":263,"Cost":213,"Date":"9/29/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":138,"Cost":77,"Date":"10/12/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":711,"Cost":363,"Date":"11/2/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":154,"Cost":115,"Date":"11/4/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":959,"Cost":851,"Date":"11/7/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":500,"Cost":266,"Date":"12/1/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":469,"Cost":406,"Date":"12/4/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":424,"Cost":387,"Date":"12/7/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":475,"Cost":402,"Date":"12/18/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":97,"Cost":81,"Date":"12/20/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":237,"Cost":131,"Date":"12/20/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":741,"Cost":661,"Date":"12/21/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":464,"Cost":441,"Date":"1/9/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":199,"Cost":123,"Date":"2/5/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":580,"Cost":317,"Date":"2/16/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":744,"Cost":477,"Date":"2/16/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":196,"Cost":102,"Date":"2/18/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":144,"Cost":114,"Date":"2/22/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":951,"Cost":478,"Date":"2/25/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":37,"Cost":32,"Date":"3/8/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":361,"Cost":233,"Date":"4/2/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":593,"Cost":332,"Date":"4/3/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":548,"Cost":387,"Date":"4/9/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":209,"Cost":146,"Date":"4/10/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":197,"Cost":159,"Date":"4/19/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":869,"Cost":664,"Date":"5/17/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":112,"Cost":86,"Date":"5/22/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":769,"Cost":431,"Date":"6/20/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":383,"Cost":267,"Date":"7/1/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":25,"Cost":16,"Date":"7/4/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":838,"Cost":738,"Date":"7/8/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":885,"Cost":481,"Date":"7/9/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":399,"Cost":337,"Date":"7/14/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":601,"Cost":361,"Date":"7/19/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":299,"Cost":245,"Date":"8/1/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":384,"Cost":364,"Date":"8/6/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":683,"Cost":507,"Date":"8/7/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":546,"Cost":320,"Date":"8/22/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":36,"Cost":19,"Date":"8/31/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":682,"Cost":488,"Date":"9/1/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":782,"Cost":602,"Date":"9/1/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":358,"Cost":260,"Date":"9/17/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":79,"Cost":55,"Date":"9/29/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":528,"Cost":426,"Date":"11/7/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":72,"Cost":66,"Date":"11/26/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":745,"Cost":380,"Date":"11/27/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":306,"Cost":224,"Date":"12/5/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":859,"Cost":791,"Date":"12/26/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":301,"Cost":232,"Date":"12/31/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":279,"Cost":188,"Date":"1/20/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":355,"Cost":184,"Date":"2/2/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":933,"Cost":563,"Date":"2/8/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":808,"Cost":501,"Date":"2/27/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":90,"Cost":70,"Date":"3/1/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":608,"Cost":519,"Date":"3/1/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":617,"Cost":341,"Date":"3/19/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":588,"Cost":414,"Date":"3/28/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":829,"Cost":598,"Date":"5/21/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":119,"Cost":103,"Date":"7/21/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":793,"Cost":623,"Date":"8/5/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":21,"Cost":18,"Date":"8/12/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":766,"Cost":632,"Date":"8/21/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":220,"Cost":201,"Date":"8/23/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":95,"Cost":85,"Date":"9/3/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":782,"Cost":679,"Date":"9/5/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":40,"Cost":22,"Date":"10/6/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":484,"Cost":391,"Date":"10/19/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":270,"Cost":233,"Date":"11/15/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":745,"Cost":616,"Date":"12/8/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":457,"Cost":380,"Date":"1/8/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":573,"Cost":467,"Date":"1/14/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":783,"Cost":717,"Date":"1/19/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":891,"Cost":843,"Date":"1/28/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":845,"Cost":577,"Date":"1/31/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":602,"Cost":524,"Date":"3/27/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":797,"Cost":725,"Date":"4/20/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":873,"Cost":456,"Date":"4/24/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":456,"Cost":321,"Date":"4/28/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":372,"Cost":339,"Date":"5/15/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":665,"Cost":493,"Date":"5/16/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":810,"Cost":568,"Date":"5/18/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":946,"Cost":473,"Date":"6/2/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":231,"Cost":194,"Date":"6/3/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":256,"Cost":137,"Date":"6/5/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":506,"Cost":368,"Date":"6/7/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":385,"Cost":201,"Date":"6/14/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":587,"Cost":371,"Date":"6/20/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":89,"Cost":53,"Date":"6/24/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":560,"Cost":416,"Date":"7/4/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":470,"Cost":306,"Date":"7/9/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":685,"Cost":362,"Date":"7/12/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":843,"Cost":651,"Date":"8/14/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":650,"Cost":350,"Date":"8/16/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":885,"Cost":489,"Date":"8/23/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":571,"Cost":510,"Date":"9/2/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":309,"Cost":188,"Date":"9/3/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":134,"Cost":118,"Date":"9/16/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":133,"Cost":101,"Date":"10/4/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":873,"Cost":589,"Date":"11/1/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":889,"Cost":629,"Date":"11/2/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":943,"Cost":758,"Date":"12/17/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":227,"Cost":196,"Date":"2/10/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":653,"Cost":571,"Date":"2/28/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":56,"Cost":40,"Date":"3/4/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":67,"Cost":63,"Date":"3/9/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":925,"Cost":632,"Date":"3/9/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":756,"Cost":605,"Date":"3/11/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":678,"Cost":611,"Date":"3/17/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":471,"Cost":287,"Date":"3/17/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":778,"Cost":489,"Date":"3/23/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":655,"Cost":480,"Date":"4/1/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":899,"Cost":676,"Date":"5/7/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":414,"Cost":291,"Date":"5/10/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":686,"Cost":476,"Date":"5/20/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":864,"Cost":436,"Date":"6/2/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":854,"Cost":788,"Date":"6/11/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":78,"Cost":68,"Date":"6/16/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":93,"Cost":70,"Date":"6/16/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":754,"Cost":693,"Date":"7/10/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":732,"Cost":397,"Date":"7/11/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":373,"Cost":341,"Date":"8/28/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":102,"Cost":78,"Date":"8/29/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":791,"Cost":671,"Date":"8/31/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":830,"Cost":433,"Date":"9/8/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":675,"Cost":633,"Date":"9/13/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":606,"Cost":439,"Date":"9/14/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":434,"Cost":218,"Date":"9/19/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":796,"Cost":750,"Date":"9/25/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":787,"Cost":512,"Date":"10/4/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":154,"Cost":99,"Date":"10/10/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":933,"Cost":555,"Date":"10/17/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":78,"Cost":41,"Date":"10/28/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":382,"Cost":327,"Date":"10/30/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":781,"Cost":495,"Date":"11/1/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":381,"Cost":191,"Date":"11/15/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":56,"Cost":54,"Date":"11/25/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":763,"Cost":512,"Date":"1/10/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":702,"Cost":534,"Date":"1/14/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":47,"Cost":33,"Date":"1/20/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":187,"Cost":118,"Date":"2/8/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":223,"Cost":154,"Date":"2/25/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":409,"Cost":358,"Date":"3/7/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":494,"Cost":451,"Date":"3/14/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":715,"Cost":444,"Date":"3/27/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":452,"Cost":430,"Date":"4/5/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":67,"Cost":47,"Date":"4/14/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":656,"Cost":547,"Date":"5/3/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":790,"Cost":477,"Date":"5/9/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":633,"Cost":381,"Date":"5/15/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":373,"Cost":222,"Date":"5/25/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":869,"Cost":490,"Date":"5/26/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":754,"Cost":680,"Date":"5/31/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":738,"Cost":561,"Date":"7/27/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":962,"Cost":554,"Date":"9/17/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":897,"Cost":509,"Date":"10/6/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":62,"Cost":47,"Date":"10/8/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":370,"Cost":265,"Date":"10/26/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":974,"Cost":799,"Date":"11/16/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":317,"Cost":265,"Date":"11/18/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":993,"Cost":787,"Date":"12/1/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":434,"Cost":217,"Date":"2/9/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":907,"Cost":551,"Date":"2/11/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":497,"Cost":360,"Date":"3/10/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":605,"Cost":407,"Date":"3/16/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":651,"Cost":565,"Date":"3/18/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":732,"Cost":543,"Date":"3/20/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":958,"Cost":619,"Date":"3/26/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":120,"Cost":107,"Date":"6/2/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":81,"Cost":43,"Date":"6/10/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":324,"Cost":262,"Date":"6/16/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":901,"Cost":543,"Date":"6/25/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":308,"Cost":261,"Date":"7/19/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":525,"Cost":295,"Date":"7/21/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":716,"Cost":393,"Date":"7/25/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":991,"Cost":807,"Date":"8/4/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":568,"Cost":430,"Date":"9/2/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":483,"Cost":326,"Date":"9/4/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":243,"Cost":129,"Date":"9/19/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":703,"Cost":474,"Date":"9/29/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":673,"Cost":639,"Date":"10/2/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":161,"Cost":112,"Date":"10/15/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":220,"Cost":151,"Date":"10/30/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":753,"Cost":563,"Date":"11/9/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":291,"Cost":269,"Date":"11/23/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":946,"Cost":734,"Date":"11/30/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":854,"Cost":588,"Date":"12/8/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":771,"Cost":689,"Date":"12/11/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":117,"Cost":61,"Date":"1/15/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":342,"Cost":313,"Date":"1/24/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":904,"Cost":496,"Date":"2/3/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":116,"Cost":67,"Date":"2/4/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":790,"Cost":626,"Date":"3/9/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":761,"Cost":480,"Date":"3/12/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":589,"Cost":302,"Date":"4/19/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":819,"Cost":761,"Date":"5/3/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":110,"Cost":101,"Date":"5/4/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":208,"Cost":136,"Date":"6/8/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":664,"Cost":534,"Date":"6/26/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":907,"Cost":858,"Date":"7/4/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":951,"Cost":859,"Date":"7/13/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":719,"Cost":486,"Date":"8/8/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":583,"Cost":355,"Date":"8/26/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":158,"Cost":140,"Date":"9/2/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":339,"Cost":225,"Date":"9/29/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":375,"Cost":345,"Date":"10/12/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":137,"Cost":74,"Date":"11/2/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":444,"Cost":344,"Date":"11/4/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":814,"Cost":512,"Date":"11/7/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":321,"Cost":167,"Date":"12/1/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":391,"Cost":284,"Date":"12/4/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":905,"Cost":839,"Date":"12/7/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":283,"Cost":246,"Date":"12/18/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":683,"Cost":584,"Date":"12/20/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":572,"Cost":534,"Date":"12/20/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":709,"Cost":547,"Date":"12/21/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":894,"Cost":829,"Date":"1/9/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":537,"Cost":338,"Date":"2/5/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":721,"Cost":475,"Date":"2/16/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":587,"Cost":344,"Date":"2/16/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":750,"Cost":482,"Date":"2/18/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":199,"Cost":182,"Date":"2/22/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":685,"Cost":611,"Date":"2/25/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":158,"Cost":82,"Date":"3/8/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":336,"Cost":287,"Date":"4/2/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":519,"Cost":310,"Date":"4/3/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":904,"Cost":649,"Date":"4/9/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":601,"Cost":322,"Date":"4/10/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":448,"Cost":330,"Date":"4/19/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":807,"Cost":667,"Date":"5/17/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":130,"Cost":67,"Date":"5/22/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":56,"Cost":43,"Date":"6/20/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":47,"Cost":43,"Date":"7/1/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":81,"Cost":65,"Date":"7/4/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":366,"Cost":334,"Date":"7/8/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":569,"Cost":421,"Date":"7/9/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":221,"Cost":118,"Date":"7/14/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":983,"Cost":797,"Date":"7/19/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":932,"Cost":705,"Date":"8/1/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":750,"Cost":646,"Date":"8/6/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":645,"Cost":449,"Date":"8/7/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":19,"Cost":18,"Date":"8/22/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":536,"Cost":448,"Date":"8/31/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":874,"Cost":596,"Date":"9/1/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":609,"Cost":519,"Date":"9/1/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":156,"Cost":112,"Date":"9/17/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":599,"Cost":532,"Date":"9/29/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":766,"Cost":576,"Date":"11/7/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":538,"Cost":396,"Date":"11/26/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":598,"Cost":536,"Date":"11/27/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":971,"Cost":756,"Date":"12/5/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":80,"Cost":41,"Date":"12/26/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":531,"Cost":363,"Date":"12/31/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":20,"Cost":17,"Date":"1/20/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":175,"Cost":161,"Date":"2/2/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":390,"Cost":272,"Date":"2/8/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":762,"Cost":418,"Date":"2/27/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":245,"Cost":165,"Date":"3/1/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":425,"Cost":242,"Date":"3/1/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":889,"Cost":553,"Date":"3/19/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":294,"Cost":242,"Date":"3/28/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":996,"Cost":922,"Date":"5/21/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":471,"Cost":300,"Date":"7/21/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":836,"Cost":504,"Date":"8/5/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":505,"Cost":428,"Date":"8/12/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":960,"Cost":566,"Date":"8/21/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":241,"Cost":175,"Date":"8/23/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":340,"Cost":297,"Date":"9/3/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":612,"Cost":502,"Date":"9/5/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":830,"Cost":596,"Date":"10/6/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":668,"Cost":455,"Date":"10/19/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":440,"Cost":368,"Date":"11/15/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":509,"Cost":387,"Date":"12/8/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":467,"Cost":284,"Date":"1/8/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":950,"Cost":717,"Date":"1/14/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":142,"Cost":126,"Date":"1/19/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":967,"Cost":510,"Date":"1/28/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":719,"Cost":475,"Date":"1/31/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":343,"Cost":246,"Date":"3/27/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":751,"Cost":651,"Date":"4/20/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":245,"Cost":208,"Date":"4/24/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":222,"Cost":159,"Date":"4/28/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":485,"Cost":389,"Date":"5/15/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":702,"Cost":471,"Date":"5/16/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":127,"Cost":72,"Date":"5/18/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":652,"Cost":524,"Date":"6/2/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":91,"Cost":52,"Date":"6/3/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":380,"Cost":299,"Date":"6/5/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":734,"Cost":368,"Date":"6/7/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":541,"Cost":427,"Date":"6/14/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":666,"Cost":551,"Date":"6/20/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":929,"Cost":744,"Date":"6/24/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":184,"Cost":141,"Date":"7/4/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":562,"Cost":282,"Date":"7/9/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":995,"Cost":682,"Date":"7/12/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":165,"Cost":152,"Date":"8/14/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":150,"Cost":101,"Date":"8/16/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":240,"Cost":136,"Date":"8/23/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":182,"Cost":111,"Date":"9/2/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":816,"Cost":576,"Date":"9/3/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":513,"Cost":383,"Date":"9/16/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":171,"Cost":162,"Date":"10/4/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":369,"Cost":241,"Date":"11/1/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":533,"Cost":432,"Date":"11/2/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":335,"Cost":266,"Date":"12/17/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":850,"Cost":540,"Date":"2/10/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":157,"Cost":96,"Date":"2/28/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":54,"Cost":50,"Date":"3/4/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":910,"Cost":599,"Date":"3/9/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":430,"Cost":401,"Date":"3/9/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":25,"Cost":21,"Date":"3/11/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":974,"Cost":901,"Date":"3/17/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":246,"Cost":134,"Date":"3/17/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":727,"Cost":454,"Date":"3/23/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":467,"Cost":430,"Date":"4/1/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":133,"Cost":117,"Date":"5/7/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":699,"Cost":456,"Date":"5/10/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":699,"Cost":387,"Date":"5/20/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":151,"Cost":109,"Date":"6/2/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":433,"Cost":290,"Date":"6/11/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":838,"Cost":673,"Date":"6/16/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":112,"Cost":100,"Date":"6/16/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":180,"Cost":145,"Date":"7/10/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":662,"Cost":357,"Date":"7/11/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":132,"Cost":95,"Date":"8/28/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":508,"Cost":335,"Date":"8/29/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":111,"Cost":102,"Date":"8/31/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":325,"Cost":242,"Date":"9/8/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":77,"Cost":49,"Date":"9/13/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":441,"Cost":329,"Date":"9/14/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":197,"Cost":109,"Date":"9/19/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":109,"Cost":93,"Date":"9/25/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":684,"Cost":478,"Date":"10/4/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":801,"Cost":749,"Date":"10/10/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":967,"Cost":901,"Date":"10/17/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":604,"Cost":533,"Date":"10/28/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":155,"Cost":117,"Date":"10/30/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":15,"Cost":13,"Date":"11/1/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":417,"Cost":236,"Date":"11/15/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":948,"Cost":789,"Date":"11/25/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":375,"Cost":300,"Date":"1/10/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":931,"Cost":781,"Date":"1/14/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":309,"Cost":241,"Date":"1/20/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":2,"Cost":2,"Date":"2/8/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":78,"Cost":54,"Date":"2/25/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":239,"Cost":169,"Date":"3/7/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":402,"Cost":312,"Date":"3/14/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":371,"Cost":219,"Date":"3/27/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":436,"Cost":279,"Date":"4/5/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":894,"Cost":823,"Date":"4/14/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":662,"Cost":390,"Date":"5/3/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":579,"Cost":485,"Date":"5/9/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":401,"Cost":304,"Date":"5/15/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":287,"Cost":181,"Date":"5/25/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":295,"Cost":193,"Date":"5/26/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":34,"Cost":25,"Date":"5/31/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":105,"Cost":56,"Date":"7/27/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":824,"Cost":597,"Date":"9/17/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":363,"Cost":246,"Date":"10/6/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":403,"Cost":299,"Date":"10/8/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":584,"Cost":515,"Date":"10/26/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":237,"Cost":190,"Date":"11/16/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":548,"Cost":521,"Date":"11/18/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"Jeans","Country":"Australia","Sale":578,"Cost":419,"Date":"12/1/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":601,"Cost":537,"Date":"2/9/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":819,"Cost":540,"Date":"2/11/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":978,"Cost":813,"Date":"3/10/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":996,"Cost":547,"Date":"3/16/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":178,"Cost":123,"Date":"3/18/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":620,"Cost":566,"Date":"3/20/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":720,"Cost":650,"Date":"3/26/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":615,"Cost":353,"Date":"6/2/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":131,"Cost":92,"Date":"6/10/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":288,"Cost":270,"Date":"6/16/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":151,"Cost":94,"Date":"6/25/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":153,"Cost":113,"Date":"7/19/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":438,"Cost":334,"Date":"7/21/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":653,"Cost":427,"Date":"7/25/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":672,"Cost":536,"Date":"8/4/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":765,"Cost":621,"Date":"9/2/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":502,"Cost":401,"Date":"9/4/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":536,"Cost":442,"Date":"9/19/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":633,"Cost":443,"Date":"9/29/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":656,"Cost":521,"Date":"10/2/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":88,"Cost":70,"Date":"10/15/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":323,"Cost":182,"Date":"10/30/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":472,"Cost":406,"Date":"11/9/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":130,"Cost":70,"Date":"11/23/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":617,"Cost":382,"Date":"11/30/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":896,"Cost":511,"Date":"12/8/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":605,"Cost":464,"Date":"12/11/2018"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":903,"Cost":596,"Date":"1/15/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":320,"Cost":207,"Date":"1/24/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":295,"Cost":267,"Date":"2/3/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":719,"Cost":454,"Date":"2/4/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":862,"Cost":439,"Date":"3/9/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":395,"Cost":281,"Date":"3/12/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":27,"Cost":24,"Date":"4/19/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":593,"Cost":381,"Date":"5/3/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":265,"Cost":233,"Date":"5/4/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":677,"Cost":430,"Date":"6/8/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":259,"Cost":159,"Date":"6/26/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":299,"Cost":196,"Date":"7/4/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":335,"Cost":295,"Date":"7/13/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":361,"Cost":280,"Date":"8/8/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":81,"Cost":60,"Date":"8/26/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":775,"Cost":530,"Date":"9/2/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":585,"Cost":353,"Date":"9/29/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":695,"Cost":651,"Date":"10/12/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":825,"Cost":471,"Date":"11/2/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":327,"Cost":193,"Date":"11/4/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":481,"Cost":241,"Date":"11/7/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":385,"Cost":239,"Date":"12/1/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":858,"Cost":521,"Date":"12/4/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":748,"Cost":648,"Date":"12/7/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":643,"Cost":461,"Date":"12/18/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":209,"Cost":105,"Date":"12/20/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":400,"Cost":371,"Date":"12/20/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":392,"Cost":288,"Date":"12/21/2019"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":466,"Cost":318,"Date":"1/9/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":990,"Cost":635,"Date":"2/5/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":673,"Cost":407,"Date":"2/16/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":854,"Cost":595,"Date":"2/16/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":420,"Cost":285,"Date":"2/18/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":458,"Cost":387,"Date":"2/22/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":242,"Cost":199,"Date":"2/25/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":512,"Cost":382,"Date":"3/8/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":391,"Cost":347,"Date":"4/2/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":280,"Cost":161,"Date":"4/3/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":306,"Cost":252,"Date":"4/9/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":325,"Cost":269,"Date":"4/10/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":642,"Cost":575,"Date":"4/19/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":687,"Cost":587,"Date":"5/17/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":41,"Cost":26,"Date":"5/22/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":276,"Cost":140,"Date":"6/20/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":142,"Cost":118,"Date":"7/1/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":222,"Cost":160,"Date":"7/4/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":823,"Cost":690,"Date":"7/8/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":958,"Cost":547,"Date":"7/9/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":623,"Cost":449,"Date":"7/14/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":572,"Cost":509,"Date":"7/19/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":77,"Cost":68,"Date":"8/1/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":216,"Cost":120,"Date":"8/6/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":542,"Cost":341,"Date":"8/7/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":433,"Cost":292,"Date":"8/22/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":105,"Cost":63,"Date":"8/31/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":326,"Cost":261,"Date":"9/1/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":716,"Cost":616,"Date":"9/1/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":268,"Cost":227,"Date":"9/17/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":311,"Cost":263,"Date":"9/29/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":689,"Cost":448,"Date":"11/7/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":273,"Cost":189,"Date":"11/26/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":783,"Cost":495,"Date":"11/27/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":876,"Cost":710,"Date":"12/5/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":234,"Cost":171,"Date":"12/26/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":11,"Cost":8,"Date":"12/31/2020"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":391,"Cost":352,"Date":"1/20/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":340,"Cost":274,"Date":"2/2/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":146,"Cost":103,"Date":"2/8/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":42,"Cost":25,"Date":"2/27/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":854,"Cost":524,"Date":"3/1/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":916,"Cost":859,"Date":"3/1/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":772,"Cost":550,"Date":"3/19/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":742,"Cost":428,"Date":"3/28/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":816,"Cost":711,"Date":"5/21/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":625,"Cost":497,"Date":"7/21/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":923,"Cost":638,"Date":"8/5/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":550,"Cost":487,"Date":"8/12/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":653,"Cost":486,"Date":"8/21/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":295,"Cost":153,"Date":"8/23/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":464,"Cost":307,"Date":"9/3/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":562,"Cost":389,"Date":"9/5/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":475,"Cost":308,"Date":"10/6/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":991,"Cost":594,"Date":"10/19/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":847,"Cost":755,"Date":"11/15/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":895,"Cost":777,"Date":"12/8/2021"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":243,"Cost":199,"Date":"1/8/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":219,"Cost":147,"Date":"1/14/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":981,"Cost":844,"Date":"1/19/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":286,"Cost":213,"Date":"1/28/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":411,"Cost":227,"Date":"1/31/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":133,"Cost":67,"Date":"3/27/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":241,"Cost":164,"Date":"4/20/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":918,"Cost":471,"Date":"4/24/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":519,"Cost":263,"Date":"4/28/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":800,"Cost":527,"Date":"5/15/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":269,"Cost":164,"Date":"5/16/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":123,"Cost":91,"Date":"5/18/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":835,"Cost":446,"Date":"6/2/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":853,"Cost":645,"Date":"6/3/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":601,"Cost":451,"Date":"6/5/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":562,"Cost":461,"Date":"6/7/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":246,"Cost":156,"Date":"6/14/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":932,"Cost":822,"Date":"6/20/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":105,"Cost":68,"Date":"6/24/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":217,"Cost":133,"Date":"7/4/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":487,"Cost":403,"Date":"7/9/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":609,"Cost":424,"Date":"7/12/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":613,"Cost":504,"Date":"8/14/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":964,"Cost":894,"Date":"8/16/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":392,"Cost":205,"Date":"8/23/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":487,"Cost":316,"Date":"9/2/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":469,"Cost":348,"Date":"9/3/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":273,"Cost":168,"Date":"9/16/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":605,"Cost":487,"Date":"10/4/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":45,"Cost":27,"Date":"11/1/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":268,"Cost":248,"Date":"11/2/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":683,"Cost":380,"Date":"12/17/2022"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":395,"Cost":254,"Date":"2/10/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":766,"Cost":548,"Date":"2/28/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":935,"Cost":501,"Date":"3/4/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":618,"Cost":578,"Date":"3/9/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":1,"Cost":1,"Date":"3/9/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":62,"Cost":42,"Date":"3/11/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":798,"Cost":539,"Date":"3/17/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":489,"Cost":354,"Date":"3/17/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":580,"Cost":486,"Date":"3/23/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":461,"Cost":337,"Date":"4/1/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":399,"Cost":220,"Date":"5/7/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":826,"Cost":762,"Date":"5/10/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":441,"Cost":361,"Date":"5/20/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":400,"Cost":346,"Date":"6/2/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":260,"Cost":157,"Date":"6/11/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":148,"Cost":93,"Date":"6/16/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":730,"Cost":480,"Date":"6/16/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":852,"Cost":434,"Date":"7/10/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":260,"Cost":192,"Date":"7/11/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":548,"Cost":344,"Date":"8/28/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":221,"Cost":112,"Date":"8/29/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":623,"Cost":554,"Date":"8/31/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":306,"Cost":287,"Date":"9/8/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":807,"Cost":679,"Date":"9/13/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":185,"Cost":125,"Date":"9/14/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":392,"Cost":268,"Date":"9/19/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":979,"Cost":802,"Date":"9/25/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":35,"Cost":21,"Date":"10/4/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":328,"Cost":221,"Date":"10/10/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":14,"Cost":12,"Date":"10/17/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":469,"Cost":413,"Date":"10/28/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":522,"Cost":452,"Date":"10/30/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":522,"Cost":362,"Date":"11/1/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":562,"Cost":304,"Date":"11/15/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":730,"Cost":423,"Date":"11/25/2023"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":247,"Cost":193,"Date":"1/10/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":608,"Cost":499,"Date":"1/14/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":657,"Cost":620,"Date":"1/20/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":37,"Cost":21,"Date":"2/8/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":77,"Cost":70,"Date":"2/25/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":313,"Cost":204,"Date":"3/7/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":829,"Cost":741,"Date":"3/14/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":264,"Cost":225,"Date":"3/27/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":66,"Cost":47,"Date":"4/5/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":285,"Cost":258,"Date":"4/14/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":556,"Cost":346,"Date":"5/3/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":23,"Cost":19,"Date":"5/9/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":850,"Cost":693,"Date":"5/15/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":1000,"Cost":658,"Date":"5/25/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":817,"Cost":410,"Date":"5/26/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":112,"Cost":91,"Date":"5/31/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":911,"Cost":766,"Date":"7/27/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":941,"Cost":736,"Date":"9/17/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":13,"Cost":11,"Date":"10/6/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":704,"Cost":373,"Date":"10/8/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":316,"Cost":289,"Date":"10/26/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":320,"Cost":169,"Date":"11/16/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":799,"Cost":670,"Date":"11/18/2024"},{"Store":"Garden City Shopping Centre, Brisbane","Brand":"ARKET","Country":"Australia","Sale":777,"Cost":686,"Date":"12/1/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":89,"Cost":84,"Date":"2/9/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":953,"Cost":531,"Date":"2/11/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":763,"Cost":673,"Date":"3/10/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":534,"Cost":320,"Date":"3/16/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":298,"Cost":213,"Date":"3/18/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":513,"Cost":446,"Date":"3/20/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":441,"Cost":249,"Date":"3/26/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":282,"Cost":163,"Date":"6/2/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":186,"Cost":167,"Date":"6/10/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":160,"Cost":87,"Date":"6/16/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":562,"Cost":307,"Date":"6/25/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":974,"Cost":532,"Date":"7/19/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":483,"Cost":244,"Date":"7/21/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":457,"Cost":281,"Date":"7/25/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":581,"Cost":396,"Date":"8/4/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":648,"Cost":422,"Date":"9/2/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":707,"Cost":446,"Date":"9/4/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":364,"Cost":196,"Date":"9/19/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":159,"Cost":111,"Date":"9/29/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":437,"Cost":254,"Date":"10/2/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":572,"Cost":490,"Date":"10/15/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":9,"Cost":8,"Date":"10/30/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":973,"Cost":784,"Date":"11/9/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":37,"Cost":33,"Date":"11/23/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":565,"Cost":491,"Date":"11/30/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":299,"Cost":266,"Date":"12/8/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":82,"Cost":64,"Date":"12/11/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":814,"Cost":754,"Date":"1/15/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":202,"Cost":173,"Date":"1/24/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":580,"Cost":354,"Date":"2/3/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":566,"Cost":419,"Date":"2/4/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":307,"Cost":225,"Date":"3/9/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":974,"Cost":545,"Date":"3/12/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":171,"Cost":140,"Date":"4/19/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":951,"Cost":901,"Date":"5/3/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":336,"Cost":198,"Date":"5/4/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":610,"Cost":521,"Date":"6/8/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":520,"Cost":272,"Date":"6/26/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":770,"Cost":641,"Date":"7/4/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":457,"Cost":406,"Date":"7/13/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":373,"Cost":329,"Date":"8/8/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":425,"Cost":220,"Date":"8/26/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":853,"Cost":450,"Date":"9/2/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":613,"Cost":403,"Date":"9/29/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":237,"Cost":186,"Date":"10/12/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":955,"Cost":598,"Date":"11/2/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":98,"Cost":92,"Date":"11/4/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":293,"Cost":155,"Date":"11/7/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":86,"Cost":54,"Date":"12/1/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":643,"Cost":441,"Date":"12/4/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":959,"Cost":561,"Date":"12/7/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":507,"Cost":265,"Date":"12/18/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":331,"Cost":242,"Date":"12/20/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":900,"Cost":586,"Date":"12/20/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":598,"Cost":545,"Date":"12/21/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":557,"Cost":398,"Date":"1/9/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":797,"Cost":478,"Date":"2/5/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":81,"Cost":59,"Date":"2/16/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":45,"Cost":40,"Date":"2/16/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":112,"Cost":103,"Date":"2/18/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":510,"Cost":426,"Date":"2/22/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":762,"Cost":675,"Date":"2/25/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":706,"Cost":432,"Date":"3/8/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":858,"Cost":459,"Date":"4/2/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":400,"Cost":210,"Date":"4/3/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":122,"Cost":70,"Date":"4/9/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":646,"Cost":435,"Date":"4/10/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":602,"Cost":406,"Date":"4/19/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":18,"Cost":15,"Date":"5/17/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":656,"Cost":356,"Date":"5/22/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":532,"Cost":314,"Date":"6/20/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":898,"Cost":750,"Date":"7/1/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":773,"Cost":645,"Date":"7/4/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":731,"Cost":588,"Date":"7/8/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":262,"Cost":156,"Date":"7/9/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":44,"Cost":31,"Date":"7/14/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":177,"Cost":100,"Date":"7/19/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":219,"Cost":153,"Date":"8/1/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":523,"Cost":383,"Date":"8/6/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":480,"Cost":290,"Date":"8/7/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":293,"Cost":176,"Date":"8/22/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":285,"Cost":256,"Date":"8/31/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":788,"Cost":746,"Date":"9/1/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":799,"Cost":526,"Date":"9/1/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":232,"Cost":130,"Date":"9/17/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":720,"Cost":526,"Date":"9/29/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":512,"Cost":317,"Date":"11/7/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":600,"Cost":503,"Date":"11/26/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":468,"Cost":386,"Date":"11/27/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":209,"Cost":157,"Date":"12/5/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":197,"Cost":113,"Date":"12/26/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":582,"Cost":368,"Date":"12/31/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":99,"Cost":55,"Date":"1/20/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":384,"Cost":279,"Date":"2/2/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":965,"Cost":548,"Date":"2/8/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":716,"Cost":534,"Date":"2/27/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":975,"Cost":888,"Date":"3/1/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":935,"Cost":600,"Date":"3/1/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":682,"Cost":544,"Date":"3/19/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":108,"Cost":85,"Date":"3/28/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":801,"Cost":619,"Date":"5/21/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":516,"Cost":364,"Date":"7/21/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":549,"Cost":373,"Date":"8/5/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":264,"Cost":133,"Date":"8/12/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":4,"Cost":3,"Date":"8/21/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":551,"Cost":398,"Date":"8/23/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":880,"Cost":802,"Date":"9/3/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":155,"Cost":88,"Date":"9/5/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":3,"Cost":3,"Date":"10/6/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":160,"Cost":115,"Date":"10/19/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":842,"Cost":758,"Date":"11/15/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":150,"Cost":134,"Date":"12/8/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":482,"Cost":298,"Date":"1/8/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":333,"Cost":203,"Date":"1/14/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":354,"Cost":195,"Date":"1/19/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":179,"Cost":168,"Date":"1/28/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":631,"Cost":385,"Date":"1/31/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":603,"Cost":419,"Date":"3/27/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":237,"Cost":204,"Date":"4/20/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":681,"Cost":394,"Date":"4/24/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":1,"Cost":1,"Date":"4/28/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":907,"Cost":826,"Date":"5/15/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":970,"Cost":498,"Date":"5/16/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":642,"Cost":471,"Date":"5/18/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":158,"Cost":128,"Date":"6/2/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":780,"Cost":494,"Date":"6/3/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":99,"Cost":91,"Date":"6/5/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":303,"Cost":284,"Date":"6/7/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":172,"Cost":154,"Date":"6/14/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":907,"Cost":458,"Date":"6/20/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":164,"Cost":149,"Date":"6/24/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":955,"Cost":686,"Date":"7/4/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":249,"Cost":162,"Date":"7/9/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":748,"Cost":708,"Date":"7/12/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":960,"Cost":678,"Date":"8/14/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":842,"Cost":523,"Date":"8/16/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":768,"Cost":496,"Date":"8/23/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":812,"Cost":651,"Date":"9/2/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":298,"Cost":186,"Date":"9/3/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":479,"Cost":325,"Date":"9/16/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":663,"Cost":352,"Date":"10/4/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":298,"Cost":205,"Date":"11/1/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":56,"Cost":41,"Date":"11/2/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":620,"Cost":403,"Date":"12/17/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":483,"Cost":259,"Date":"2/10/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":893,"Cost":488,"Date":"2/28/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":604,"Cost":551,"Date":"3/4/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":760,"Cost":565,"Date":"3/9/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":733,"Cost":609,"Date":"3/9/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":85,"Cost":70,"Date":"3/11/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":855,"Cost":620,"Date":"3/17/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":583,"Cost":527,"Date":"3/17/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":629,"Cost":560,"Date":"3/23/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":521,"Cost":397,"Date":"4/1/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":670,"Cost":341,"Date":"5/7/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":899,"Cost":807,"Date":"5/10/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":454,"Cost":265,"Date":"5/20/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":171,"Cost":131,"Date":"6/2/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":976,"Cost":926,"Date":"6/11/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":563,"Cost":519,"Date":"6/16/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":890,"Cost":718,"Date":"6/16/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":151,"Cost":101,"Date":"7/10/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":886,"Cost":835,"Date":"7/11/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":397,"Cost":214,"Date":"8/28/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":700,"Cost":511,"Date":"8/29/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":107,"Cost":98,"Date":"8/31/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":452,"Cost":427,"Date":"9/8/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":125,"Cost":79,"Date":"9/13/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":268,"Cost":148,"Date":"9/14/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":880,"Cost":592,"Date":"9/19/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":522,"Cost":313,"Date":"9/25/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":627,"Cost":362,"Date":"10/4/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":971,"Cost":863,"Date":"10/10/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":154,"Cost":129,"Date":"10/17/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":316,"Cost":281,"Date":"10/28/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":472,"Cost":445,"Date":"10/30/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":915,"Cost":459,"Date":"11/1/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":358,"Cost":257,"Date":"11/15/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":416,"Cost":238,"Date":"11/25/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":331,"Cost":235,"Date":"1/10/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":111,"Cost":57,"Date":"1/14/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":965,"Cost":803,"Date":"1/20/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":787,"Cost":727,"Date":"2/8/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":562,"Cost":315,"Date":"2/25/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":960,"Cost":836,"Date":"3/7/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":987,"Cost":816,"Date":"3/14/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":351,"Cost":259,"Date":"3/27/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":581,"Cost":396,"Date":"4/5/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":258,"Cost":223,"Date":"4/14/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":690,"Cost":465,"Date":"5/3/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":210,"Cost":106,"Date":"5/9/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":685,"Cost":419,"Date":"5/15/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":502,"Cost":258,"Date":"5/25/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":503,"Cost":299,"Date":"5/26/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":1000,"Cost":763,"Date":"5/31/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":220,"Cost":174,"Date":"7/27/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":599,"Cost":501,"Date":"9/17/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":223,"Cost":148,"Date":"10/6/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":792,"Cost":494,"Date":"10/8/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":103,"Cost":54,"Date":"10/26/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":853,"Cost":429,"Date":"11/16/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":160,"Cost":145,"Date":"11/18/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":538,"Cost":369,"Date":"12/1/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":98,"Cost":69,"Date":"2/9/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":703,"Cost":580,"Date":"2/11/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":874,"Cost":726,"Date":"3/10/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":72,"Cost":64,"Date":"3/16/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":278,"Cost":140,"Date":"3/18/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":172,"Cost":99,"Date":"3/20/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":955,"Cost":639,"Date":"3/26/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":761,"Cost":556,"Date":"6/2/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":112,"Cost":105,"Date":"6/10/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":160,"Cost":85,"Date":"6/16/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":395,"Cost":240,"Date":"6/25/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":553,"Cost":469,"Date":"7/19/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":144,"Cost":129,"Date":"7/21/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":448,"Cost":415,"Date":"7/25/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":218,"Cost":137,"Date":"8/4/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":662,"Cost":473,"Date":"9/2/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":773,"Cost":482,"Date":"9/4/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":237,"Cost":190,"Date":"9/19/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":1000,"Cost":850,"Date":"9/29/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":857,"Cost":783,"Date":"10/2/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":278,"Cost":191,"Date":"10/15/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":680,"Cost":627,"Date":"10/30/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":801,"Cost":749,"Date":"11/9/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":816,"Cost":704,"Date":"11/23/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":895,"Cost":525,"Date":"11/30/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":723,"Cost":439,"Date":"12/8/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":143,"Cost":106,"Date":"12/11/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":682,"Cost":571,"Date":"1/15/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":499,"Cost":375,"Date":"1/24/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":282,"Cost":144,"Date":"2/3/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":138,"Cost":131,"Date":"2/4/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":199,"Cost":141,"Date":"3/9/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":636,"Cost":473,"Date":"3/12/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":907,"Cost":473,"Date":"4/19/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":689,"Cost":639,"Date":"5/3/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":394,"Cost":312,"Date":"5/4/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":31,"Cost":20,"Date":"6/8/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":368,"Cost":317,"Date":"6/26/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":777,"Cost":494,"Date":"7/4/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":406,"Cost":262,"Date":"7/13/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":438,"Cost":306,"Date":"8/8/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":876,"Cost":578,"Date":"8/26/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":832,"Cost":527,"Date":"9/2/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":3,"Cost":2,"Date":"9/29/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":184,"Cost":133,"Date":"10/12/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":79,"Cost":62,"Date":"11/2/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":810,"Cost":685,"Date":"11/4/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":90,"Cost":73,"Date":"11/7/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":910,"Cost":699,"Date":"12/1/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":923,"Cost":646,"Date":"12/4/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":208,"Cost":167,"Date":"12/7/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":996,"Cost":709,"Date":"12/18/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":95,"Cost":72,"Date":"12/20/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":4,"Cost":2,"Date":"12/20/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":456,"Cost":304,"Date":"12/21/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":641,"Cost":324,"Date":"1/9/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":669,"Cost":449,"Date":"2/5/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":753,"Cost":378,"Date":"2/16/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":810,"Cost":610,"Date":"2/16/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":256,"Cost":199,"Date":"2/18/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":600,"Cost":514,"Date":"2/22/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":432,"Cost":279,"Date":"2/25/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":580,"Cost":290,"Date":"3/8/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":220,"Cost":193,"Date":"4/2/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":781,"Cost":679,"Date":"4/3/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":62,"Cost":52,"Date":"4/9/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":860,"Cost":653,"Date":"4/10/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":503,"Cost":279,"Date":"4/19/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":813,"Cost":426,"Date":"5/17/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":160,"Cost":113,"Date":"5/22/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":57,"Cost":32,"Date":"6/20/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":840,"Cost":565,"Date":"7/1/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":897,"Cost":489,"Date":"7/4/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":363,"Cost":204,"Date":"7/8/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":253,"Cost":224,"Date":"7/9/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":91,"Cost":69,"Date":"7/14/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":460,"Cost":409,"Date":"7/19/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":578,"Cost":404,"Date":"8/1/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":443,"Cost":294,"Date":"8/6/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":254,"Cost":229,"Date":"8/7/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":804,"Cost":729,"Date":"8/22/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":614,"Cost":468,"Date":"8/31/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":461,"Cost":282,"Date":"9/1/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":561,"Cost":368,"Date":"9/1/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":127,"Cost":121,"Date":"9/17/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":607,"Cost":475,"Date":"9/29/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":174,"Cost":152,"Date":"11/7/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":984,"Cost":880,"Date":"11/26/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":92,"Cost":79,"Date":"11/27/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":305,"Cost":174,"Date":"12/5/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":684,"Cost":580,"Date":"12/26/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":862,"Cost":549,"Date":"12/31/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":272,"Cost":167,"Date":"1/20/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":979,"Cost":647,"Date":"2/2/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":326,"Cost":240,"Date":"2/8/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":418,"Cost":248,"Date":"2/27/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":302,"Cost":235,"Date":"3/1/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":900,"Cost":509,"Date":"3/1/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":352,"Cost":301,"Date":"3/19/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":942,"Cost":847,"Date":"3/28/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":421,"Cost":345,"Date":"5/21/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":113,"Cost":76,"Date":"7/21/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":673,"Cost":615,"Date":"8/5/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":270,"Cost":188,"Date":"8/12/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":639,"Cost":351,"Date":"8/21/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":545,"Cost":433,"Date":"8/23/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":588,"Cost":439,"Date":"9/3/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":622,"Cost":586,"Date":"9/5/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":521,"Cost":446,"Date":"10/6/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":846,"Cost":452,"Date":"10/19/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":268,"Cost":141,"Date":"11/15/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":361,"Cost":316,"Date":"12/8/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":864,"Cost":494,"Date":"1/8/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":401,"Cost":272,"Date":"1/14/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":838,"Cost":443,"Date":"1/19/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":79,"Cost":69,"Date":"1/28/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":283,"Cost":212,"Date":"1/31/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":541,"Cost":280,"Date":"3/27/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":608,"Cost":333,"Date":"4/20/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":513,"Cost":318,"Date":"4/24/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":5,"Cost":2,"Date":"4/28/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":2,"Cost":2,"Date":"5/15/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":320,"Cost":184,"Date":"5/16/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":816,"Cost":449,"Date":"5/18/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":22,"Cost":16,"Date":"6/2/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":830,"Cost":441,"Date":"6/3/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":543,"Cost":467,"Date":"6/5/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":747,"Cost":680,"Date":"6/7/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":340,"Cost":257,"Date":"6/14/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":489,"Cost":261,"Date":"6/20/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":593,"Cost":467,"Date":"6/24/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":185,"Cost":117,"Date":"7/4/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":54,"Cost":34,"Date":"7/9/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":436,"Cost":323,"Date":"7/12/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":817,"Cost":763,"Date":"8/14/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":330,"Cost":268,"Date":"8/16/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":838,"Cost":716,"Date":"8/23/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":113,"Cost":70,"Date":"9/2/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":865,"Cost":632,"Date":"9/3/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":506,"Cost":391,"Date":"9/16/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":822,"Cost":442,"Date":"10/4/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":488,"Cost":278,"Date":"11/1/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":691,"Cost":478,"Date":"11/2/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":741,"Cost":587,"Date":"12/17/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":660,"Cost":565,"Date":"2/10/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":648,"Cost":432,"Date":"2/28/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":66,"Cost":55,"Date":"3/4/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":394,"Cost":342,"Date":"3/9/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":806,"Cost":644,"Date":"3/9/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":983,"Cost":578,"Date":"3/11/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":317,"Cost":243,"Date":"3/17/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":641,"Cost":558,"Date":"3/17/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":581,"Cost":478,"Date":"3/23/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":315,"Cost":278,"Date":"4/1/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":216,"Cost":121,"Date":"5/7/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":876,"Cost":595,"Date":"5/10/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":760,"Cost":467,"Date":"5/20/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":421,"Cost":282,"Date":"6/2/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":273,"Cost":153,"Date":"6/11/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":533,"Cost":486,"Date":"6/16/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":811,"Cost":613,"Date":"6/16/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":182,"Cost":147,"Date":"7/10/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":631,"Cost":381,"Date":"7/11/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":938,"Cost":498,"Date":"8/28/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":677,"Cost":345,"Date":"8/29/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":759,"Cost":651,"Date":"8/31/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":658,"Cost":442,"Date":"9/8/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":552,"Cost":466,"Date":"9/13/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":509,"Cost":314,"Date":"9/14/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":434,"Cost":374,"Date":"9/19/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":389,"Cost":199,"Date":"9/25/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":587,"Cost":390,"Date":"10/4/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":434,"Cost":281,"Date":"10/10/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":90,"Cost":52,"Date":"10/17/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":165,"Cost":108,"Date":"10/28/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":250,"Cost":226,"Date":"10/30/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":318,"Cost":254,"Date":"11/1/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":336,"Cost":215,"Date":"11/15/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":287,"Cost":264,"Date":"11/25/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":884,"Cost":778,"Date":"1/10/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":747,"Cost":621,"Date":"1/14/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":41,"Cost":31,"Date":"1/20/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":343,"Cost":253,"Date":"2/8/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":680,"Cost":414,"Date":"2/25/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":200,"Cost":116,"Date":"3/7/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":338,"Cost":178,"Date":"3/14/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":463,"Cost":404,"Date":"3/27/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":986,"Cost":643,"Date":"4/5/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":495,"Cost":305,"Date":"4/14/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":926,"Cost":812,"Date":"5/3/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":731,"Cost":575,"Date":"5/9/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":910,"Cost":842,"Date":"5/15/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":784,"Cost":458,"Date":"5/25/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":633,"Cost":487,"Date":"5/26/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":311,"Cost":294,"Date":"5/31/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":933,"Cost":709,"Date":"7/27/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":657,"Cost":393,"Date":"9/17/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":562,"Cost":373,"Date":"10/6/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":233,"Cost":222,"Date":"10/8/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":958,"Cost":859,"Date":"10/26/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":6,"Cost":3,"Date":"11/16/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":863,"Cost":767,"Date":"11/18/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"HM Home","Country":"Australia","Sale":506,"Cost":366,"Date":"12/1/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":105,"Cost":53,"Date":"2/9/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":66,"Cost":49,"Date":"2/11/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":563,"Cost":328,"Date":"3/10/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":374,"Cost":347,"Date":"3/16/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":33,"Cost":23,"Date":"3/18/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":317,"Cost":168,"Date":"3/20/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":877,"Cost":522,"Date":"3/26/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":127,"Cost":66,"Date":"6/2/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":458,"Cost":238,"Date":"6/10/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":538,"Cost":473,"Date":"6/16/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":669,"Cost":452,"Date":"6/25/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":166,"Cost":121,"Date":"7/19/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":926,"Cost":685,"Date":"7/21/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":160,"Cost":92,"Date":"7/25/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":775,"Cost":396,"Date":"8/4/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":116,"Cost":66,"Date":"9/2/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":850,"Cost":621,"Date":"9/4/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":702,"Cost":518,"Date":"9/19/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":511,"Cost":322,"Date":"9/29/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":979,"Cost":799,"Date":"10/2/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":311,"Cost":244,"Date":"10/15/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":623,"Cost":480,"Date":"10/30/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":277,"Cost":226,"Date":"11/9/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":127,"Cost":113,"Date":"11/23/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":321,"Cost":232,"Date":"11/30/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":866,"Cost":716,"Date":"12/8/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":491,"Cost":387,"Date":"12/11/2018"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":800,"Cost":575,"Date":"1/15/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":321,"Cost":278,"Date":"1/24/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":246,"Cost":160,"Date":"2/3/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":630,"Cost":483,"Date":"2/4/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":167,"Cost":132,"Date":"3/9/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":222,"Cost":139,"Date":"3/12/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":586,"Cost":374,"Date":"4/19/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":911,"Cost":669,"Date":"5/3/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":379,"Cost":351,"Date":"5/4/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":562,"Cost":439,"Date":"6/8/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":92,"Cost":62,"Date":"6/26/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":670,"Cost":579,"Date":"7/4/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":277,"Cost":198,"Date":"7/13/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":276,"Cost":248,"Date":"8/8/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":465,"Cost":300,"Date":"8/26/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":442,"Cost":379,"Date":"9/2/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":442,"Cost":270,"Date":"9/29/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":672,"Cost":485,"Date":"10/12/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":325,"Cost":278,"Date":"11/2/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":653,"Cost":461,"Date":"11/4/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":302,"Cost":212,"Date":"11/7/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":381,"Cost":194,"Date":"12/1/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":292,"Cost":272,"Date":"12/4/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":623,"Cost":412,"Date":"12/7/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":442,"Cost":245,"Date":"12/18/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":722,"Cost":390,"Date":"12/20/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":255,"Cost":208,"Date":"12/20/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":51,"Cost":39,"Date":"12/21/2019"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":514,"Cost":313,"Date":"1/9/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":459,"Cost":419,"Date":"2/5/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":713,"Cost":583,"Date":"2/16/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":822,"Cost":471,"Date":"2/16/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":530,"Cost":502,"Date":"2/18/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":538,"Cost":459,"Date":"2/22/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":34,"Cost":27,"Date":"2/25/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":855,"Cost":545,"Date":"3/8/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":946,"Cost":828,"Date":"4/2/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":813,"Cost":603,"Date":"4/3/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":666,"Cost":606,"Date":"4/9/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":955,"Cost":902,"Date":"4/10/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":229,"Cost":158,"Date":"4/19/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":762,"Cost":416,"Date":"5/17/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":283,"Cost":212,"Date":"5/22/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":605,"Cost":358,"Date":"6/20/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":144,"Cost":132,"Date":"7/1/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":603,"Cost":332,"Date":"7/4/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":174,"Cost":150,"Date":"7/8/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":731,"Cost":601,"Date":"7/9/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":197,"Cost":111,"Date":"7/14/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":497,"Cost":382,"Date":"7/19/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":712,"Cost":648,"Date":"8/1/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":507,"Cost":358,"Date":"8/6/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":405,"Cost":315,"Date":"8/7/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":830,"Cost":564,"Date":"8/22/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":332,"Cost":293,"Date":"8/31/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":438,"Cost":324,"Date":"9/1/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":222,"Cost":150,"Date":"9/1/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":822,"Cost":749,"Date":"9/17/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":123,"Cost":110,"Date":"9/29/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":61,"Cost":58,"Date":"11/7/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":798,"Cost":601,"Date":"11/26/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":245,"Cost":128,"Date":"11/27/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":596,"Cost":342,"Date":"12/5/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":296,"Cost":256,"Date":"12/26/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":903,"Cost":727,"Date":"12/31/2020"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":466,"Cost":351,"Date":"1/20/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":654,"Cost":376,"Date":"2/2/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":202,"Cost":113,"Date":"2/8/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":54,"Cost":31,"Date":"2/27/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":753,"Cost":536,"Date":"3/1/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":235,"Cost":136,"Date":"3/1/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":945,"Cost":848,"Date":"3/19/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":284,"Cost":181,"Date":"3/28/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":826,"Cost":764,"Date":"5/21/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":482,"Cost":259,"Date":"7/21/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":652,"Cost":414,"Date":"8/5/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":311,"Cost":277,"Date":"8/12/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":750,"Cost":521,"Date":"8/21/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":775,"Cost":580,"Date":"8/23/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":28,"Cost":17,"Date":"9/3/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":853,"Cost":802,"Date":"9/5/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":494,"Cost":448,"Date":"10/6/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":620,"Cost":579,"Date":"10/19/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":686,"Cost":371,"Date":"11/15/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":18,"Cost":12,"Date":"12/8/2021"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":377,"Cost":276,"Date":"1/8/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":971,"Cost":574,"Date":"1/14/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":650,"Cost":347,"Date":"1/19/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":860,"Cost":510,"Date":"1/28/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":42,"Cost":32,"Date":"1/31/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":386,"Cost":291,"Date":"3/27/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":126,"Cost":93,"Date":"4/20/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":563,"Cost":389,"Date":"4/24/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":534,"Cost":480,"Date":"4/28/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":360,"Cost":271,"Date":"5/15/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":401,"Cost":335,"Date":"5/16/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":712,"Cost":595,"Date":"5/18/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":657,"Cost":472,"Date":"6/2/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":810,"Cost":648,"Date":"6/3/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":83,"Cost":79,"Date":"6/5/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":820,"Cost":540,"Date":"6/7/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":33,"Cost":26,"Date":"6/14/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":532,"Cost":396,"Date":"6/20/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":230,"Cost":184,"Date":"6/24/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":988,"Cost":785,"Date":"7/4/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":239,"Cost":154,"Date":"7/9/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":577,"Cost":380,"Date":"7/12/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":11,"Cost":9,"Date":"8/14/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":361,"Cost":249,"Date":"8/16/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":474,"Cost":297,"Date":"8/23/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":716,"Cost":600,"Date":"9/2/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":747,"Cost":671,"Date":"9/3/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":347,"Cost":175,"Date":"9/16/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":169,"Cost":141,"Date":"10/4/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":305,"Cost":175,"Date":"11/1/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":104,"Cost":65,"Date":"11/2/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":949,"Cost":513,"Date":"12/17/2022"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":2,"Cost":2,"Date":"2/10/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":62,"Cost":55,"Date":"2/28/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":356,"Cost":329,"Date":"3/4/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":763,"Cost":463,"Date":"3/9/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":381,"Cost":242,"Date":"3/9/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":34,"Cost":20,"Date":"3/11/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":323,"Cost":271,"Date":"3/17/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":608,"Cost":350,"Date":"3/17/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":428,"Cost":392,"Date":"3/23/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":982,"Cost":750,"Date":"4/1/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":614,"Cost":555,"Date":"5/7/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":500,"Cost":423,"Date":"5/10/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":195,"Cost":180,"Date":"5/20/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":648,"Cost":508,"Date":"6/2/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":692,"Cost":465,"Date":"6/11/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":825,"Cost":755,"Date":"6/16/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":915,"Cost":729,"Date":"6/16/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":125,"Cost":108,"Date":"7/10/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":568,"Cost":329,"Date":"7/11/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":896,"Cost":498,"Date":"8/28/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":690,"Cost":437,"Date":"8/29/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":125,"Cost":96,"Date":"8/31/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":691,"Cost":576,"Date":"9/8/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":369,"Cost":266,"Date":"9/13/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":569,"Cost":389,"Date":"9/14/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":176,"Cost":90,"Date":"9/19/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":611,"Cost":527,"Date":"9/25/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":525,"Cost":379,"Date":"10/4/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":305,"Cost":286,"Date":"10/10/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":268,"Cost":201,"Date":"10/17/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":974,"Cost":495,"Date":"10/28/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":826,"Cost":697,"Date":"10/30/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":302,"Cost":224,"Date":"11/1/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":999,"Cost":674,"Date":"11/15/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":662,"Cost":513,"Date":"11/25/2023"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":365,"Cost":288,"Date":"1/10/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":957,"Cost":757,"Date":"1/14/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":258,"Cost":187,"Date":"1/20/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":764,"Cost":535,"Date":"2/8/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":574,"Cost":499,"Date":"2/25/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":888,"Cost":494,"Date":"3/7/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":896,"Cost":565,"Date":"3/14/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":698,"Cost":394,"Date":"3/27/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":264,"Cost":144,"Date":"4/5/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":971,"Cost":547,"Date":"4/14/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":266,"Cost":225,"Date":"5/3/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":852,"Cost":713,"Date":"5/9/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":861,"Cost":702,"Date":"5/15/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":932,"Cost":740,"Date":"5/25/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":551,"Cost":275,"Date":"5/26/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":752,"Cost":558,"Date":"5/31/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":933,"Cost":641,"Date":"7/27/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":50,"Cost":28,"Date":"9/17/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":285,"Cost":156,"Date":"10/6/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":484,"Cost":414,"Date":"10/8/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":731,"Cost":499,"Date":"10/26/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":632,"Cost":440,"Date":"11/16/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":605,"Cost":372,"Date":"11/18/2024"},{"Store":"Pacific Fair Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":359,"Cost":309,"Date":"12/1/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":817,"Cost":694,"Date":"2/9/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":88,"Cost":47,"Date":"2/11/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":864,"Cost":780,"Date":"3/10/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":866,"Cost":662,"Date":"3/16/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":700,"Cost":597,"Date":"3/18/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":319,"Cost":257,"Date":"3/20/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":210,"Cost":197,"Date":"3/26/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":863,"Cost":697,"Date":"6/2/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":327,"Cost":307,"Date":"6/10/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":991,"Cost":636,"Date":"6/16/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":105,"Cost":81,"Date":"6/25/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":34,"Cost":18,"Date":"7/19/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":199,"Cost":117,"Date":"7/21/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":834,"Cost":662,"Date":"7/25/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":189,"Cost":142,"Date":"8/4/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":836,"Cost":597,"Date":"9/2/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":462,"Cost":296,"Date":"9/4/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":869,"Cost":533,"Date":"9/19/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":747,"Cost":585,"Date":"9/29/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":917,"Cost":677,"Date":"10/2/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":925,"Cost":475,"Date":"10/15/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":127,"Cost":72,"Date":"10/30/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":60,"Cost":41,"Date":"11/9/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":4,"Cost":3,"Date":"11/23/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":353,"Cost":286,"Date":"11/30/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":865,"Cost":760,"Date":"12/8/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":169,"Cost":128,"Date":"12/11/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":574,"Cost":367,"Date":"1/15/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":453,"Cost":344,"Date":"1/24/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":910,"Cost":559,"Date":"2/3/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":243,"Cost":170,"Date":"2/4/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":641,"Cost":527,"Date":"3/9/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":698,"Cost":381,"Date":"3/12/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":632,"Cost":508,"Date":"4/19/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":411,"Cost":351,"Date":"5/3/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":1,"Cost":0,"Date":"5/4/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":714,"Cost":556,"Date":"6/8/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":876,"Cost":696,"Date":"6/26/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":109,"Cost":71,"Date":"7/4/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":667,"Cost":522,"Date":"7/13/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":62,"Cost":34,"Date":"8/8/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":264,"Cost":155,"Date":"8/26/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":946,"Cost":847,"Date":"9/2/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":892,"Cost":834,"Date":"9/29/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":291,"Cost":223,"Date":"10/12/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":967,"Cost":909,"Date":"11/2/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":870,"Cost":686,"Date":"11/4/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":508,"Cost":333,"Date":"11/7/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":35,"Cost":17,"Date":"12/1/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":820,"Cost":542,"Date":"12/4/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":952,"Cost":569,"Date":"12/7/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":354,"Cost":315,"Date":"12/18/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":491,"Cost":300,"Date":"12/20/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":142,"Cost":102,"Date":"12/20/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":57,"Cost":50,"Date":"12/21/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":560,"Cost":508,"Date":"1/9/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":731,"Cost":370,"Date":"2/5/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":485,"Cost":261,"Date":"2/16/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":145,"Cost":78,"Date":"2/16/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":610,"Cost":551,"Date":"2/18/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":137,"Cost":106,"Date":"2/22/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":212,"Cost":149,"Date":"2/25/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":817,"Cost":656,"Date":"3/8/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":495,"Cost":248,"Date":"4/2/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":644,"Cost":612,"Date":"4/3/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":147,"Cost":124,"Date":"4/9/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":951,"Cost":650,"Date":"4/10/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":960,"Cost":730,"Date":"4/19/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":28,"Cost":23,"Date":"5/17/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":185,"Cost":146,"Date":"5/22/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":892,"Cost":755,"Date":"6/20/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":716,"Cost":519,"Date":"7/1/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":294,"Cost":260,"Date":"7/4/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":714,"Cost":428,"Date":"7/8/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":357,"Cost":307,"Date":"7/9/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":161,"Cost":107,"Date":"7/14/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":996,"Cost":573,"Date":"7/19/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":799,"Cost":407,"Date":"8/1/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":861,"Cost":668,"Date":"8/6/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":270,"Cost":217,"Date":"8/7/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":600,"Cost":324,"Date":"8/22/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":304,"Cost":186,"Date":"8/31/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":305,"Cost":280,"Date":"9/1/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":582,"Cost":366,"Date":"9/1/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":911,"Cost":590,"Date":"9/17/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":57,"Cost":29,"Date":"9/29/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":881,"Cost":557,"Date":"11/7/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":920,"Cost":782,"Date":"11/26/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":680,"Cost":615,"Date":"11/27/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":203,"Cost":171,"Date":"12/5/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":92,"Cost":55,"Date":"12/26/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":923,"Cost":527,"Date":"12/31/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":759,"Cost":625,"Date":"1/20/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":447,"Cost":316,"Date":"2/2/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":711,"Cost":514,"Date":"2/8/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":706,"Cost":658,"Date":"2/27/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":660,"Cost":561,"Date":"3/1/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":548,"Cost":394,"Date":"3/1/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":515,"Cost":481,"Date":"3/19/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":602,"Cost":315,"Date":"3/28/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":126,"Cost":102,"Date":"5/21/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":948,"Cost":723,"Date":"7/21/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":241,"Cost":183,"Date":"8/5/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":954,"Cost":651,"Date":"8/12/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":526,"Cost":296,"Date":"8/21/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":134,"Cost":73,"Date":"8/23/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":51,"Cost":48,"Date":"9/3/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":839,"Cost":439,"Date":"9/5/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":33,"Cost":20,"Date":"10/6/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":404,"Cost":360,"Date":"10/19/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":715,"Cost":435,"Date":"11/15/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":793,"Cost":616,"Date":"12/8/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":611,"Cost":305,"Date":"1/8/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":652,"Cost":345,"Date":"1/14/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":973,"Cost":821,"Date":"1/19/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":779,"Cost":659,"Date":"1/28/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":128,"Cost":99,"Date":"1/31/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":519,"Cost":346,"Date":"3/27/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":979,"Cost":929,"Date":"4/20/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":678,"Cost":443,"Date":"4/24/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":167,"Cost":127,"Date":"4/28/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":517,"Cost":371,"Date":"5/15/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":776,"Cost":429,"Date":"5/16/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":508,"Cost":369,"Date":"5/18/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":498,"Cost":382,"Date":"6/2/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":299,"Cost":168,"Date":"6/3/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":386,"Cost":206,"Date":"6/5/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":124,"Cost":102,"Date":"6/7/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":831,"Cost":710,"Date":"6/14/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":133,"Cost":114,"Date":"6/20/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":855,"Cost":609,"Date":"6/24/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":131,"Cost":95,"Date":"7/4/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":905,"Cost":725,"Date":"7/9/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":456,"Cost":406,"Date":"7/12/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":532,"Cost":307,"Date":"8/14/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":325,"Cost":296,"Date":"8/16/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":926,"Cost":674,"Date":"8/23/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":477,"Cost":333,"Date":"9/2/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":780,"Cost":606,"Date":"9/3/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":443,"Cost":264,"Date":"9/16/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":346,"Cost":193,"Date":"10/4/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":927,"Cost":526,"Date":"11/1/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":331,"Cost":262,"Date":"11/2/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":210,"Cost":132,"Date":"12/17/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":744,"Cost":630,"Date":"2/10/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":116,"Cost":90,"Date":"2/28/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":780,"Cost":527,"Date":"3/4/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":316,"Cost":228,"Date":"3/9/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":357,"Cost":220,"Date":"3/9/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":862,"Cost":682,"Date":"3/11/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":178,"Cost":167,"Date":"3/17/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":469,"Cost":397,"Date":"3/17/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":926,"Cost":787,"Date":"3/23/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":850,"Cost":634,"Date":"4/1/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":98,"Cost":91,"Date":"5/7/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":779,"Cost":517,"Date":"5/10/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":947,"Cost":607,"Date":"5/20/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":221,"Cost":142,"Date":"6/2/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":28,"Cost":15,"Date":"6/11/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":477,"Cost":391,"Date":"6/16/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":215,"Cost":158,"Date":"6/16/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":546,"Cost":502,"Date":"7/10/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":667,"Cost":335,"Date":"7/11/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":324,"Cost":243,"Date":"8/28/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":967,"Cost":794,"Date":"8/29/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":974,"Cost":727,"Date":"8/31/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":623,"Cost":492,"Date":"9/8/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":337,"Cost":171,"Date":"9/13/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":457,"Cost":347,"Date":"9/14/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":426,"Cost":399,"Date":"9/19/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":523,"Cost":394,"Date":"9/25/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":82,"Cost":50,"Date":"10/4/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":140,"Cost":121,"Date":"10/10/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":834,"Cost":573,"Date":"10/17/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":144,"Cost":81,"Date":"10/28/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":685,"Cost":395,"Date":"10/30/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":822,"Cost":414,"Date":"11/1/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":494,"Cost":391,"Date":"11/15/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":732,"Cost":433,"Date":"11/25/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":97,"Cost":88,"Date":"1/10/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":140,"Cost":94,"Date":"1/14/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":883,"Cost":472,"Date":"1/20/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":129,"Cost":72,"Date":"2/8/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":625,"Cost":567,"Date":"2/25/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":433,"Cost":359,"Date":"3/7/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":753,"Cost":445,"Date":"3/14/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":361,"Cost":219,"Date":"3/27/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":352,"Cost":254,"Date":"4/5/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":189,"Cost":109,"Date":"4/14/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":890,"Cost":689,"Date":"5/3/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":497,"Cost":295,"Date":"5/9/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":996,"Cost":809,"Date":"5/15/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":1,"Cost":0,"Date":"5/25/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":377,"Cost":337,"Date":"5/26/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":130,"Cost":87,"Date":"5/31/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":295,"Cost":215,"Date":"7/27/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":38,"Cost":23,"Date":"9/17/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":587,"Cost":525,"Date":"10/6/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":766,"Cost":644,"Date":"10/8/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":616,"Cost":423,"Date":"10/26/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":205,"Cost":160,"Date":"11/16/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":493,"Cost":442,"Date":"11/18/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":506,"Cost":336,"Date":"12/1/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":273,"Cost":227,"Date":"2/9/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":777,"Cost":432,"Date":"2/11/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":801,"Cost":710,"Date":"3/10/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":894,"Cost":515,"Date":"3/16/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":534,"Cost":404,"Date":"3/18/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":342,"Cost":223,"Date":"3/20/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":321,"Cost":190,"Date":"3/26/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":610,"Cost":368,"Date":"6/2/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":502,"Cost":389,"Date":"6/10/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":212,"Cost":122,"Date":"6/16/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":648,"Cost":604,"Date":"6/25/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":147,"Cost":89,"Date":"7/19/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":782,"Cost":631,"Date":"7/21/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":420,"Cost":268,"Date":"7/25/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":542,"Cost":361,"Date":"8/4/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":686,"Cost":461,"Date":"9/2/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":917,"Cost":851,"Date":"9/4/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":354,"Cost":236,"Date":"9/19/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":267,"Cost":181,"Date":"9/29/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":571,"Cost":340,"Date":"10/2/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":769,"Cost":698,"Date":"10/15/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":994,"Cost":560,"Date":"10/30/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":574,"Cost":457,"Date":"11/9/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":980,"Cost":620,"Date":"11/23/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":971,"Cost":776,"Date":"11/30/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":542,"Cost":454,"Date":"12/8/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":751,"Cost":589,"Date":"12/11/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":972,"Cost":501,"Date":"1/15/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":808,"Cost":704,"Date":"1/24/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":889,"Cost":459,"Date":"2/3/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":880,"Cost":813,"Date":"2/4/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":805,"Cost":554,"Date":"3/9/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":400,"Cost":218,"Date":"3/12/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":15,"Cost":9,"Date":"4/19/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":594,"Cost":489,"Date":"5/3/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":978,"Cost":676,"Date":"5/4/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":842,"Cost":542,"Date":"6/8/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":75,"Cost":65,"Date":"6/26/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":988,"Cost":747,"Date":"7/4/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":74,"Cost":64,"Date":"7/13/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":219,"Cost":143,"Date":"8/8/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":981,"Cost":871,"Date":"8/26/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":807,"Cost":708,"Date":"9/2/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":8,"Cost":5,"Date":"9/29/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":799,"Cost":484,"Date":"10/12/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":616,"Cost":370,"Date":"11/2/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":9,"Cost":5,"Date":"11/4/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":678,"Cost":643,"Date":"11/7/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":788,"Cost":597,"Date":"12/1/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":985,"Cost":510,"Date":"12/4/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":845,"Cost":577,"Date":"12/7/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":996,"Cost":836,"Date":"12/18/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":21,"Cost":20,"Date":"12/20/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":676,"Cost":433,"Date":"12/20/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":675,"Cost":343,"Date":"12/21/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":166,"Cost":144,"Date":"1/9/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":235,"Cost":168,"Date":"2/5/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":422,"Cost":391,"Date":"2/16/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":339,"Cost":248,"Date":"2/16/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":587,"Cost":426,"Date":"2/18/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":310,"Cost":197,"Date":"2/22/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":5,"Cost":2,"Date":"2/25/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":568,"Cost":497,"Date":"3/8/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":221,"Cost":120,"Date":"4/2/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":10,"Cost":5,"Date":"4/3/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":499,"Cost":387,"Date":"4/9/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":727,"Cost":572,"Date":"4/10/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":244,"Cost":132,"Date":"4/19/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":892,"Cost":612,"Date":"5/17/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":749,"Cost":501,"Date":"5/22/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":887,"Cost":710,"Date":"6/20/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":621,"Cost":519,"Date":"7/1/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":714,"Cost":576,"Date":"7/4/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":495,"Cost":306,"Date":"7/8/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":514,"Cost":424,"Date":"7/9/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":509,"Cost":311,"Date":"7/14/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":394,"Cost":336,"Date":"7/19/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":56,"Cost":45,"Date":"8/1/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":612,"Cost":478,"Date":"8/6/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":355,"Cost":320,"Date":"8/7/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":35,"Cost":25,"Date":"8/22/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":159,"Cost":144,"Date":"8/31/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":914,"Cost":828,"Date":"9/1/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":49,"Cost":44,"Date":"9/1/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":239,"Cost":155,"Date":"9/17/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":168,"Cost":147,"Date":"9/29/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":392,"Cost":265,"Date":"11/7/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":430,"Cost":229,"Date":"11/26/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":993,"Cost":660,"Date":"11/27/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":116,"Cost":98,"Date":"12/5/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":881,"Cost":746,"Date":"12/26/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":935,"Cost":819,"Date":"12/31/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":907,"Cost":501,"Date":"1/20/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":754,"Cost":704,"Date":"2/2/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":840,"Cost":449,"Date":"2/8/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":121,"Cost":77,"Date":"2/27/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":537,"Cost":344,"Date":"3/1/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":835,"Cost":504,"Date":"3/1/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":972,"Cost":514,"Date":"3/19/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":949,"Cost":868,"Date":"3/28/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":695,"Cost":573,"Date":"5/21/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":312,"Cost":247,"Date":"7/21/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":573,"Cost":479,"Date":"8/5/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":285,"Cost":243,"Date":"8/12/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":939,"Cost":782,"Date":"8/21/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":223,"Cost":201,"Date":"8/23/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":37,"Cost":26,"Date":"9/3/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":904,"Cost":538,"Date":"9/5/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":97,"Cost":71,"Date":"10/6/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":19,"Cost":9,"Date":"10/19/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":41,"Cost":39,"Date":"11/15/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":630,"Cost":406,"Date":"12/8/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":982,"Cost":597,"Date":"1/8/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":472,"Cost":314,"Date":"1/14/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":517,"Cost":407,"Date":"1/19/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":62,"Cost":48,"Date":"1/28/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":325,"Cost":184,"Date":"1/31/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":393,"Cost":347,"Date":"3/27/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":470,"Cost":270,"Date":"4/20/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":759,"Cost":520,"Date":"4/24/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":914,"Cost":777,"Date":"4/28/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":578,"Cost":358,"Date":"5/15/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":715,"Cost":389,"Date":"5/16/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":43,"Cost":34,"Date":"5/18/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":232,"Cost":167,"Date":"6/2/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":556,"Cost":316,"Date":"6/3/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":229,"Cost":132,"Date":"6/5/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":848,"Cost":641,"Date":"6/7/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":728,"Cost":476,"Date":"6/14/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":174,"Cost":150,"Date":"6/20/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":630,"Cost":495,"Date":"6/24/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":669,"Cost":629,"Date":"7/4/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":865,"Cost":594,"Date":"7/9/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":137,"Cost":75,"Date":"7/12/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":893,"Cost":754,"Date":"8/14/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":654,"Cost":454,"Date":"8/16/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":749,"Cost":546,"Date":"8/23/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":805,"Cost":437,"Date":"9/2/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":745,"Cost":392,"Date":"9/3/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":969,"Cost":877,"Date":"9/16/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":506,"Cost":416,"Date":"10/4/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":949,"Cost":719,"Date":"11/1/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":449,"Cost":279,"Date":"11/2/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":722,"Cost":400,"Date":"12/17/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":257,"Cost":187,"Date":"2/10/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":655,"Cost":446,"Date":"2/28/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":501,"Cost":396,"Date":"3/4/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":298,"Cost":177,"Date":"3/9/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":680,"Cost":445,"Date":"3/9/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":193,"Cost":161,"Date":"3/11/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":587,"Cost":487,"Date":"3/17/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":154,"Cost":110,"Date":"3/17/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":479,"Cost":269,"Date":"3/23/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":95,"Cost":67,"Date":"4/1/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":275,"Cost":161,"Date":"5/7/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":31,"Cost":18,"Date":"5/10/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":732,"Cost":407,"Date":"5/20/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":460,"Cost":428,"Date":"6/2/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":331,"Cost":279,"Date":"6/11/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":549,"Cost":275,"Date":"6/16/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":898,"Cost":791,"Date":"6/16/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":666,"Cost":391,"Date":"7/10/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":523,"Cost":453,"Date":"7/11/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":99,"Cost":57,"Date":"8/28/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":923,"Cost":568,"Date":"8/29/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":950,"Cost":711,"Date":"8/31/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":240,"Cost":157,"Date":"9/8/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":945,"Cost":815,"Date":"9/13/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":952,"Cost":800,"Date":"9/14/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":969,"Cost":851,"Date":"9/19/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":719,"Cost":381,"Date":"9/25/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":369,"Cost":346,"Date":"10/4/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":969,"Cost":743,"Date":"10/10/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":233,"Cost":155,"Date":"10/17/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":606,"Cost":453,"Date":"10/28/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":914,"Cost":557,"Date":"10/30/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":304,"Cost":160,"Date":"11/1/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":318,"Cost":176,"Date":"11/15/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":758,"Cost":604,"Date":"11/25/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":258,"Cost":160,"Date":"1/10/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":385,"Cost":343,"Date":"1/14/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":447,"Cost":310,"Date":"1/20/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":354,"Cost":296,"Date":"2/8/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":689,"Cost":468,"Date":"2/25/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":986,"Cost":587,"Date":"3/7/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":379,"Cost":290,"Date":"3/14/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":137,"Cost":118,"Date":"3/27/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":556,"Cost":492,"Date":"4/5/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":147,"Cost":101,"Date":"4/14/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":804,"Cost":659,"Date":"5/3/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":512,"Cost":276,"Date":"5/9/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":142,"Cost":105,"Date":"5/15/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":170,"Cost":150,"Date":"5/25/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":165,"Cost":131,"Date":"5/26/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":531,"Cost":402,"Date":"5/31/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":90,"Cost":74,"Date":"7/27/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":983,"Cost":930,"Date":"9/17/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":867,"Cost":779,"Date":"10/6/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":809,"Cost":684,"Date":"10/8/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":222,"Cost":157,"Date":"10/26/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":869,"Cost":480,"Date":"11/16/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":289,"Cost":184,"Date":"11/18/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"COS","Country":"Australia","Sale":383,"Cost":316,"Date":"12/1/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":128,"Cost":71,"Date":"2/9/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":323,"Cost":267,"Date":"2/11/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":666,"Cost":518,"Date":"3/10/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":243,"Cost":125,"Date":"3/16/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":131,"Cost":79,"Date":"3/18/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":331,"Cost":238,"Date":"3/20/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":574,"Cost":348,"Date":"3/26/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":412,"Cost":302,"Date":"6/2/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":577,"Cost":304,"Date":"6/10/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":921,"Cost":631,"Date":"6/16/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":503,"Cost":476,"Date":"6/25/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":239,"Cost":124,"Date":"7/19/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":923,"Cost":552,"Date":"7/21/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":745,"Cost":618,"Date":"7/25/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":474,"Cost":273,"Date":"8/4/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":911,"Cost":600,"Date":"9/2/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":596,"Cost":386,"Date":"9/4/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":162,"Cost":92,"Date":"9/19/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":412,"Cost":307,"Date":"9/29/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":596,"Cost":412,"Date":"10/2/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":353,"Cost":247,"Date":"10/15/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":401,"Cost":271,"Date":"10/30/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":38,"Cost":26,"Date":"11/9/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":935,"Cost":751,"Date":"11/23/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":842,"Cost":601,"Date":"11/30/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":601,"Cost":427,"Date":"12/8/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":480,"Cost":391,"Date":"12/11/2018"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":111,"Cost":62,"Date":"1/15/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":217,"Cost":130,"Date":"1/24/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":773,"Cost":387,"Date":"2/3/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":987,"Cost":915,"Date":"2/4/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":882,"Cost":592,"Date":"3/9/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":614,"Cost":316,"Date":"3/12/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":832,"Cost":450,"Date":"4/19/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":894,"Cost":674,"Date":"5/3/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":876,"Cost":470,"Date":"5/4/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":963,"Cost":580,"Date":"6/8/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":412,"Cost":266,"Date":"6/26/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":971,"Cost":521,"Date":"7/4/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":489,"Cost":409,"Date":"7/13/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":483,"Cost":276,"Date":"8/8/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":802,"Cost":502,"Date":"8/26/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":292,"Cost":227,"Date":"9/2/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":449,"Cost":238,"Date":"9/29/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":231,"Cost":213,"Date":"10/12/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":503,"Cost":264,"Date":"11/2/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":931,"Cost":857,"Date":"11/4/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":114,"Cost":98,"Date":"11/7/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":493,"Cost":455,"Date":"12/1/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":150,"Cost":104,"Date":"12/4/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":570,"Cost":301,"Date":"12/7/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":225,"Cost":130,"Date":"12/18/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":412,"Cost":288,"Date":"12/20/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":485,"Cost":458,"Date":"12/20/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":887,"Cost":643,"Date":"12/21/2019"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":4,"Cost":2,"Date":"1/9/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":75,"Cost":64,"Date":"2/5/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":37,"Cost":32,"Date":"2/16/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":609,"Cost":373,"Date":"2/16/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":747,"Cost":383,"Date":"2/18/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":328,"Cost":233,"Date":"2/22/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":8,"Cost":6,"Date":"2/25/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":169,"Cost":130,"Date":"3/8/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":432,"Cost":316,"Date":"4/2/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":295,"Cost":235,"Date":"4/3/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":357,"Cost":333,"Date":"4/9/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":1,"Cost":1,"Date":"4/10/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":541,"Cost":488,"Date":"4/19/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":650,"Cost":482,"Date":"5/17/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":1000,"Cost":683,"Date":"5/22/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":362,"Cost":240,"Date":"6/20/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":970,"Cost":640,"Date":"7/1/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":482,"Cost":306,"Date":"7/4/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":629,"Cost":431,"Date":"7/8/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":640,"Cost":514,"Date":"7/9/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":795,"Cost":568,"Date":"7/14/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":688,"Cost":562,"Date":"7/19/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":439,"Cost":269,"Date":"8/1/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":316,"Cost":185,"Date":"8/6/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":651,"Cost":374,"Date":"8/7/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":290,"Cost":229,"Date":"8/22/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":685,"Cost":368,"Date":"8/31/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":358,"Cost":208,"Date":"9/1/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":301,"Cost":158,"Date":"9/1/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":877,"Cost":577,"Date":"9/17/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":318,"Cost":202,"Date":"9/29/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":194,"Cost":118,"Date":"11/7/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":595,"Cost":513,"Date":"11/26/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":472,"Cost":254,"Date":"11/27/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":582,"Cost":302,"Date":"12/5/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":906,"Cost":785,"Date":"12/26/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":266,"Cost":249,"Date":"12/31/2020"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":906,"Cost":835,"Date":"1/20/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":115,"Cost":107,"Date":"2/2/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":433,"Cost":312,"Date":"2/8/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":227,"Cost":151,"Date":"2/27/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":855,"Cost":667,"Date":"3/1/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":386,"Cost":289,"Date":"3/1/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":921,"Cost":540,"Date":"3/19/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":435,"Cost":351,"Date":"3/28/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":664,"Cost":478,"Date":"5/21/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":616,"Cost":377,"Date":"7/21/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":399,"Cost":236,"Date":"8/5/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":438,"Cost":263,"Date":"8/12/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":392,"Cost":344,"Date":"8/21/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":531,"Cost":478,"Date":"8/23/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":644,"Cost":595,"Date":"9/3/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":476,"Cost":250,"Date":"9/5/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":436,"Cost":386,"Date":"10/6/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":978,"Cost":496,"Date":"10/19/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":192,"Cost":141,"Date":"11/15/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":412,"Cost":229,"Date":"12/8/2021"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":311,"Cost":274,"Date":"1/8/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":741,"Cost":512,"Date":"1/14/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":709,"Cost":612,"Date":"1/19/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":746,"Cost":428,"Date":"1/28/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":932,"Cost":815,"Date":"1/31/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":630,"Cost":587,"Date":"3/27/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":699,"Cost":475,"Date":"4/20/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":132,"Cost":105,"Date":"4/24/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":439,"Cost":243,"Date":"4/28/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":93,"Cost":80,"Date":"5/15/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":765,"Cost":708,"Date":"5/16/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":386,"Cost":215,"Date":"5/18/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":911,"Cost":606,"Date":"6/2/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":236,"Cost":147,"Date":"6/3/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":285,"Cost":151,"Date":"6/5/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":883,"Cost":838,"Date":"6/7/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":423,"Cost":374,"Date":"6/14/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":422,"Cost":263,"Date":"6/20/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":231,"Cost":173,"Date":"6/24/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":6,"Cost":4,"Date":"7/4/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":613,"Cost":580,"Date":"7/9/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":22,"Cost":13,"Date":"7/12/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":332,"Cost":273,"Date":"8/14/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":365,"Cost":265,"Date":"8/16/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":606,"Cost":488,"Date":"8/23/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":222,"Cost":139,"Date":"9/2/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":275,"Cost":205,"Date":"9/3/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":404,"Cost":323,"Date":"9/16/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":638,"Cost":535,"Date":"10/4/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":618,"Cost":368,"Date":"11/1/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":380,"Cost":317,"Date":"11/2/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":27,"Cost":22,"Date":"12/17/2022"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":469,"Cost":365,"Date":"2/10/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":671,"Cost":415,"Date":"2/28/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":649,"Cost":519,"Date":"3/4/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":769,"Cost":636,"Date":"3/9/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":730,"Cost":371,"Date":"3/9/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":75,"Cost":41,"Date":"3/11/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":233,"Cost":183,"Date":"3/17/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":543,"Cost":362,"Date":"3/17/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":497,"Cost":355,"Date":"3/23/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":542,"Cost":351,"Date":"4/1/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":846,"Cost":566,"Date":"5/7/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":507,"Cost":343,"Date":"5/10/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":559,"Cost":387,"Date":"5/20/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":846,"Cost":611,"Date":"6/2/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":595,"Cost":474,"Date":"6/11/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":823,"Cost":549,"Date":"6/16/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":499,"Cost":279,"Date":"6/16/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":114,"Cost":83,"Date":"7/10/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":681,"Cost":619,"Date":"7/11/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":724,"Cost":471,"Date":"8/28/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":911,"Cost":772,"Date":"8/29/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":400,"Cost":214,"Date":"8/31/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":35,"Cost":22,"Date":"9/8/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":573,"Cost":533,"Date":"9/13/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":108,"Cost":78,"Date":"9/14/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":980,"Cost":517,"Date":"9/19/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":268,"Cost":187,"Date":"9/25/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":908,"Cost":494,"Date":"10/4/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":417,"Cost":301,"Date":"10/10/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":394,"Cost":358,"Date":"10/17/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":320,"Cost":270,"Date":"10/28/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":77,"Cost":69,"Date":"10/30/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":793,"Cost":692,"Date":"11/1/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":504,"Cost":322,"Date":"11/15/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":188,"Cost":149,"Date":"11/25/2023"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":912,"Cost":524,"Date":"1/10/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":344,"Cost":282,"Date":"1/14/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":620,"Cost":570,"Date":"1/20/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":91,"Cost":51,"Date":"2/8/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":663,"Cost":444,"Date":"2/25/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":156,"Cost":88,"Date":"3/7/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":721,"Cost":495,"Date":"3/14/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":423,"Cost":236,"Date":"3/27/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":54,"Cost":38,"Date":"4/5/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":830,"Cost":764,"Date":"4/14/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":136,"Cost":127,"Date":"5/3/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":492,"Cost":331,"Date":"5/9/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":989,"Cost":654,"Date":"5/15/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":498,"Cost":265,"Date":"5/25/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":707,"Cost":644,"Date":"5/26/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":76,"Cost":48,"Date":"5/31/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":891,"Cost":547,"Date":"7/27/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":869,"Cost":586,"Date":"9/17/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":612,"Cost":499,"Date":"10/6/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":963,"Cost":704,"Date":"10/8/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":941,"Cost":839,"Date":"10/26/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":366,"Cost":267,"Date":"11/16/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":230,"Cost":115,"Date":"11/18/2024"},{"Store":"Indooroopilly Shopping Centre, Brisbane","Brand":"Sellpy","Country":"Australia","Sale":269,"Cost":174,"Date":"12/1/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":400,"Cost":272,"Date":"2/9/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":795,"Cost":432,"Date":"2/11/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":992,"Cost":936,"Date":"3/10/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":368,"Cost":274,"Date":"3/16/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":559,"Cost":340,"Date":"3/18/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":817,"Cost":534,"Date":"3/20/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":586,"Cost":389,"Date":"3/26/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":883,"Cost":502,"Date":"6/2/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":135,"Cost":88,"Date":"6/10/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":164,"Cost":91,"Date":"6/16/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":884,"Cost":672,"Date":"6/25/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":192,"Cost":159,"Date":"7/19/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":64,"Cost":50,"Date":"7/21/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":92,"Cost":85,"Date":"7/25/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":907,"Cost":789,"Date":"8/4/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":602,"Cost":447,"Date":"9/2/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":828,"Cost":688,"Date":"9/4/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":357,"Cost":198,"Date":"9/19/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":498,"Cost":346,"Date":"9/29/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":622,"Cost":350,"Date":"10/2/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":496,"Cost":281,"Date":"10/15/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":424,"Cost":230,"Date":"10/30/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":188,"Cost":99,"Date":"11/9/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":653,"Cost":551,"Date":"11/23/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":314,"Cost":231,"Date":"11/30/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":723,"Cost":681,"Date":"12/8/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":415,"Cost":345,"Date":"12/11/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":121,"Cost":99,"Date":"1/15/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":528,"Cost":494,"Date":"1/24/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":941,"Cost":635,"Date":"2/3/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":305,"Cost":227,"Date":"2/4/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":559,"Cost":520,"Date":"3/9/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":900,"Cost":492,"Date":"3/12/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":900,"Cost":517,"Date":"4/19/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":595,"Cost":357,"Date":"5/3/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":857,"Cost":563,"Date":"5/4/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":830,"Cost":768,"Date":"6/8/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":923,"Cost":541,"Date":"6/26/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":64,"Cost":61,"Date":"7/4/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":966,"Cost":534,"Date":"7/13/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":304,"Cost":289,"Date":"8/8/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":917,"Cost":493,"Date":"8/26/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":25,"Cost":21,"Date":"9/2/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":5,"Cost":2,"Date":"9/29/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":330,"Cost":303,"Date":"10/12/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":599,"Cost":499,"Date":"11/2/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":814,"Cost":628,"Date":"11/4/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":910,"Cost":613,"Date":"11/7/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":436,"Cost":317,"Date":"12/1/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":869,"Cost":581,"Date":"12/4/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":880,"Cost":580,"Date":"12/7/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":659,"Cost":600,"Date":"12/18/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":778,"Cost":440,"Date":"12/20/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":7,"Cost":6,"Date":"12/20/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":449,"Cost":359,"Date":"12/21/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":547,"Cost":447,"Date":"1/9/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":384,"Cost":362,"Date":"2/5/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":845,"Cost":728,"Date":"2/16/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":149,"Cost":97,"Date":"2/16/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":434,"Cost":243,"Date":"2/18/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":614,"Cost":541,"Date":"2/22/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":531,"Cost":451,"Date":"2/25/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":96,"Cost":85,"Date":"3/8/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":790,"Cost":722,"Date":"4/2/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":109,"Cost":95,"Date":"4/3/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":820,"Cost":725,"Date":"4/9/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":359,"Cost":291,"Date":"4/10/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":414,"Cost":335,"Date":"4/19/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":910,"Cost":592,"Date":"5/17/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":878,"Cost":593,"Date":"5/22/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":364,"Cost":324,"Date":"6/20/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":320,"Cost":278,"Date":"7/1/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":835,"Cost":589,"Date":"7/4/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":207,"Cost":195,"Date":"7/8/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":541,"Cost":423,"Date":"7/9/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":30,"Cost":25,"Date":"7/14/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":197,"Cost":98,"Date":"7/19/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":759,"Cost":443,"Date":"8/1/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":850,"Cost":458,"Date":"8/6/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":149,"Cost":108,"Date":"8/7/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":156,"Cost":125,"Date":"8/22/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":323,"Cost":259,"Date":"8/31/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":766,"Cost":565,"Date":"9/1/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":199,"Cost":173,"Date":"9/1/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":433,"Cost":381,"Date":"9/17/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":89,"Cost":70,"Date":"9/29/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":559,"Cost":283,"Date":"11/7/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":152,"Cost":109,"Date":"11/26/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":457,"Cost":317,"Date":"11/27/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":750,"Cost":576,"Date":"12/5/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":758,"Cost":649,"Date":"12/26/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":519,"Cost":338,"Date":"12/31/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":676,"Cost":566,"Date":"1/20/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":406,"Cost":373,"Date":"2/2/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":165,"Cost":103,"Date":"2/8/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":465,"Cost":308,"Date":"2/27/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":637,"Cost":418,"Date":"3/1/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":988,"Cost":701,"Date":"3/1/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":401,"Cost":361,"Date":"3/19/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":435,"Cost":280,"Date":"3/28/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":374,"Cost":316,"Date":"5/21/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":339,"Cost":319,"Date":"7/21/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":9,"Cost":8,"Date":"8/5/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":694,"Cost":537,"Date":"8/12/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":445,"Cost":329,"Date":"8/21/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":712,"Cost":675,"Date":"8/23/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":884,"Cost":707,"Date":"9/3/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":831,"Cost":507,"Date":"9/5/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":734,"Cost":687,"Date":"10/6/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":978,"Cost":545,"Date":"10/19/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":277,"Cost":227,"Date":"11/15/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":568,"Cost":510,"Date":"12/8/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":773,"Cost":518,"Date":"1/8/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":285,"Cost":231,"Date":"1/14/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":391,"Cost":326,"Date":"1/19/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":572,"Cost":494,"Date":"1/28/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":458,"Cost":236,"Date":"1/31/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":803,"Cost":418,"Date":"3/27/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":851,"Cost":527,"Date":"4/20/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":765,"Cost":398,"Date":"4/24/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":727,"Cost":603,"Date":"4/28/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":20,"Cost":19,"Date":"5/15/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":651,"Cost":532,"Date":"5/16/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":695,"Cost":648,"Date":"5/18/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":678,"Cost":603,"Date":"6/2/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":396,"Cost":267,"Date":"6/3/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":858,"Cost":429,"Date":"6/5/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":461,"Cost":366,"Date":"6/7/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":385,"Cost":281,"Date":"6/14/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":72,"Cost":62,"Date":"6/20/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":813,"Cost":720,"Date":"6/24/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":983,"Cost":751,"Date":"7/4/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":777,"Cost":543,"Date":"7/9/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":99,"Cost":62,"Date":"7/12/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":565,"Cost":533,"Date":"8/14/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":97,"Cost":49,"Date":"8/16/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":821,"Cost":454,"Date":"8/23/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":202,"Cost":172,"Date":"9/2/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":224,"Cost":149,"Date":"9/3/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":594,"Cost":390,"Date":"9/16/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":725,"Cost":478,"Date":"10/4/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":368,"Cost":228,"Date":"11/1/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":330,"Cost":300,"Date":"11/2/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":509,"Cost":452,"Date":"12/17/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":763,"Cost":459,"Date":"2/10/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":727,"Cost":419,"Date":"2/28/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":962,"Cost":503,"Date":"3/4/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":679,"Cost":383,"Date":"3/9/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":170,"Cost":123,"Date":"3/9/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":86,"Cost":54,"Date":"3/11/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":887,"Cost":687,"Date":"3/17/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":819,"Cost":485,"Date":"3/17/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":642,"Cost":523,"Date":"3/23/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":617,"Cost":407,"Date":"4/1/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":511,"Cost":449,"Date":"5/7/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":325,"Cost":286,"Date":"5/10/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":887,"Cost":701,"Date":"5/20/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":857,"Cost":794,"Date":"6/2/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":926,"Cost":579,"Date":"6/11/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":108,"Cost":84,"Date":"6/16/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":550,"Cost":457,"Date":"6/16/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":380,"Cost":236,"Date":"7/10/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":387,"Cost":199,"Date":"7/11/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":462,"Cost":386,"Date":"8/28/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":469,"Cost":397,"Date":"8/29/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":821,"Cost":534,"Date":"8/31/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":43,"Cost":37,"Date":"9/8/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":572,"Cost":391,"Date":"9/13/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":336,"Cost":219,"Date":"9/14/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":883,"Cost":659,"Date":"9/19/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":427,"Cost":354,"Date":"9/25/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":841,"Cost":515,"Date":"10/4/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":619,"Cost":356,"Date":"10/10/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":560,"Cost":412,"Date":"10/17/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":849,"Cost":730,"Date":"10/28/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":743,"Cost":445,"Date":"10/30/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":755,"Cost":484,"Date":"11/1/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":764,"Cost":479,"Date":"11/15/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":483,"Cost":437,"Date":"11/25/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":895,"Cost":522,"Date":"1/10/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":6,"Cost":5,"Date":"1/14/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":576,"Cost":535,"Date":"1/20/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":258,"Cost":164,"Date":"2/8/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":336,"Cost":268,"Date":"2/25/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":238,"Cost":119,"Date":"3/7/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":69,"Cost":60,"Date":"3/14/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":868,"Cost":596,"Date":"3/27/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":684,"Cost":479,"Date":"4/5/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":367,"Cost":239,"Date":"4/14/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":959,"Cost":715,"Date":"5/3/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":266,"Cost":138,"Date":"5/9/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":153,"Cost":91,"Date":"5/15/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":237,"Cost":179,"Date":"5/25/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":969,"Cost":882,"Date":"5/26/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":814,"Cost":599,"Date":"5/31/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":700,"Cost":565,"Date":"7/27/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":295,"Cost":280,"Date":"9/17/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":578,"Cost":505,"Date":"10/6/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":293,"Cost":189,"Date":"10/8/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":683,"Cost":463,"Date":"10/26/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":745,"Cost":391,"Date":"11/16/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":739,"Cost":604,"Date":"11/18/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":461,"Cost":320,"Date":"12/1/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":16,"Cost":14,"Date":"2/9/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":854,"Cost":576,"Date":"2/11/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":382,"Cost":317,"Date":"3/10/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":600,"Cost":462,"Date":"3/16/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":82,"Cost":58,"Date":"3/18/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":859,"Cost":750,"Date":"3/20/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":998,"Cost":735,"Date":"3/26/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":88,"Cost":56,"Date":"6/2/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":914,"Cost":740,"Date":"6/10/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":998,"Cost":840,"Date":"6/16/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":231,"Cost":119,"Date":"6/25/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":693,"Cost":476,"Date":"7/19/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":370,"Cost":298,"Date":"7/21/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":87,"Cost":51,"Date":"7/25/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":708,"Cost":568,"Date":"8/4/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":149,"Cost":132,"Date":"9/2/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":409,"Cost":308,"Date":"9/4/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":995,"Cost":779,"Date":"9/19/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":510,"Cost":470,"Date":"9/29/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":991,"Cost":679,"Date":"10/2/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":824,"Cost":563,"Date":"10/15/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":773,"Cost":473,"Date":"10/30/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":535,"Cost":493,"Date":"11/9/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":546,"Cost":419,"Date":"11/23/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":840,"Cost":792,"Date":"11/30/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":780,"Cost":431,"Date":"12/8/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":491,"Cost":410,"Date":"12/11/2018"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":54,"Cost":41,"Date":"1/15/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":412,"Cost":332,"Date":"1/24/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":903,"Cost":547,"Date":"2/3/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":172,"Cost":137,"Date":"2/4/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":459,"Cost":368,"Date":"3/9/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":799,"Cost":600,"Date":"3/12/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":560,"Cost":407,"Date":"4/19/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":284,"Cost":151,"Date":"5/3/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":579,"Cost":378,"Date":"5/4/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":932,"Cost":523,"Date":"6/8/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":384,"Cost":364,"Date":"6/26/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":514,"Cost":372,"Date":"7/4/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":408,"Cost":303,"Date":"7/13/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":281,"Cost":189,"Date":"8/8/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":852,"Cost":494,"Date":"8/26/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":585,"Cost":306,"Date":"9/2/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":228,"Cost":140,"Date":"9/29/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":644,"Cost":598,"Date":"10/12/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":682,"Cost":565,"Date":"11/2/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":272,"Cost":177,"Date":"11/4/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":182,"Cost":116,"Date":"11/7/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":658,"Cost":581,"Date":"12/1/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":910,"Cost":525,"Date":"12/4/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":671,"Cost":495,"Date":"12/7/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":731,"Cost":415,"Date":"12/18/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":586,"Cost":378,"Date":"12/20/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":730,"Cost":577,"Date":"12/20/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":187,"Cost":118,"Date":"12/21/2019"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":323,"Cost":250,"Date":"1/9/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":335,"Cost":199,"Date":"2/5/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":211,"Cost":162,"Date":"2/16/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":251,"Cost":184,"Date":"2/16/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":303,"Cost":264,"Date":"2/18/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":749,"Cost":575,"Date":"2/22/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":309,"Cost":177,"Date":"2/25/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":372,"Cost":240,"Date":"3/8/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":672,"Cost":424,"Date":"4/2/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":351,"Cost":212,"Date":"4/3/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":948,"Cost":575,"Date":"4/9/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":960,"Cost":859,"Date":"4/10/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":667,"Cost":423,"Date":"4/19/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":137,"Cost":91,"Date":"5/17/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":952,"Cost":838,"Date":"5/22/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":118,"Cost":83,"Date":"6/20/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":827,"Cost":624,"Date":"7/1/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":197,"Cost":106,"Date":"7/4/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":898,"Cost":753,"Date":"7/8/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":201,"Cost":155,"Date":"7/9/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":887,"Cost":631,"Date":"7/14/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":819,"Cost":629,"Date":"7/19/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":494,"Cost":366,"Date":"8/1/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":537,"Cost":380,"Date":"8/6/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":443,"Cost":293,"Date":"8/7/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":759,"Cost":444,"Date":"8/22/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":394,"Cost":211,"Date":"8/31/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":945,"Cost":709,"Date":"9/1/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":797,"Cost":572,"Date":"9/1/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":793,"Cost":646,"Date":"9/17/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":424,"Cost":365,"Date":"9/29/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":123,"Cost":115,"Date":"11/7/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":498,"Cost":368,"Date":"11/26/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":306,"Cost":156,"Date":"11/27/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":859,"Cost":764,"Date":"12/5/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":164,"Cost":118,"Date":"12/26/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":249,"Cost":152,"Date":"12/31/2020"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":854,"Cost":631,"Date":"1/20/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":24,"Cost":19,"Date":"2/2/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":397,"Cost":210,"Date":"2/8/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":524,"Cost":366,"Date":"2/27/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":544,"Cost":465,"Date":"3/1/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":47,"Cost":25,"Date":"3/1/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":392,"Cost":312,"Date":"3/19/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":334,"Cost":167,"Date":"3/28/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":542,"Cost":396,"Date":"5/21/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":742,"Cost":488,"Date":"7/21/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":324,"Cost":294,"Date":"8/5/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":61,"Cost":41,"Date":"8/12/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":320,"Cost":200,"Date":"8/21/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":329,"Cost":298,"Date":"8/23/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":602,"Cost":459,"Date":"9/3/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":381,"Cost":332,"Date":"9/5/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":841,"Cost":531,"Date":"10/6/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":633,"Cost":319,"Date":"10/19/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":994,"Cost":541,"Date":"11/15/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":834,"Cost":684,"Date":"12/8/2021"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":67,"Cost":46,"Date":"1/8/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":699,"Cost":634,"Date":"1/14/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":190,"Cost":157,"Date":"1/19/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":74,"Cost":62,"Date":"1/28/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":913,"Cost":670,"Date":"1/31/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":334,"Cost":202,"Date":"3/27/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":111,"Cost":106,"Date":"4/20/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":861,"Cost":575,"Date":"4/24/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":895,"Cost":835,"Date":"4/28/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":881,"Cost":759,"Date":"5/15/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":964,"Cost":568,"Date":"5/16/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":668,"Cost":437,"Date":"5/18/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":949,"Cost":867,"Date":"6/2/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":32,"Cost":22,"Date":"6/3/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":291,"Cost":166,"Date":"6/5/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":772,"Cost":552,"Date":"6/7/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":813,"Cost":463,"Date":"6/14/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":709,"Cost":631,"Date":"6/20/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":613,"Cost":542,"Date":"6/24/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":791,"Cost":648,"Date":"7/4/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":557,"Cost":355,"Date":"7/9/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":162,"Cost":107,"Date":"7/12/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":823,"Cost":599,"Date":"8/14/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":791,"Cost":558,"Date":"8/16/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":341,"Cost":224,"Date":"8/23/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":515,"Cost":289,"Date":"9/2/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":498,"Cost":275,"Date":"9/3/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":614,"Cost":542,"Date":"9/16/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":535,"Cost":338,"Date":"10/4/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":919,"Cost":565,"Date":"11/1/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":486,"Cost":253,"Date":"11/2/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":762,"Cost":479,"Date":"12/17/2022"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":399,"Cost":236,"Date":"2/10/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":588,"Cost":443,"Date":"2/28/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":46,"Cost":30,"Date":"3/4/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":608,"Cost":352,"Date":"3/9/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":903,"Cost":822,"Date":"3/9/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":974,"Cost":539,"Date":"3/11/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":491,"Cost":417,"Date":"3/17/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":640,"Cost":592,"Date":"3/17/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":878,"Cost":474,"Date":"3/23/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":389,"Cost":360,"Date":"4/1/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":156,"Cost":148,"Date":"5/7/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":705,"Cost":442,"Date":"5/10/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":831,"Cost":632,"Date":"5/20/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":946,"Cost":729,"Date":"6/2/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":760,"Cost":436,"Date":"6/11/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":237,"Cost":225,"Date":"6/16/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":157,"Cost":132,"Date":"6/16/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":250,"Cost":166,"Date":"7/10/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":792,"Cost":744,"Date":"7/11/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":219,"Cost":126,"Date":"8/28/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":23,"Cost":12,"Date":"8/29/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":54,"Cost":48,"Date":"8/31/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":57,"Cost":40,"Date":"9/8/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":893,"Cost":704,"Date":"9/13/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":977,"Cost":906,"Date":"9/14/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":224,"Cost":135,"Date":"9/19/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":129,"Cost":117,"Date":"9/25/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":25,"Cost":19,"Date":"10/4/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":428,"Cost":354,"Date":"10/10/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":789,"Cost":707,"Date":"10/17/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":805,"Cost":593,"Date":"10/28/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":163,"Cost":131,"Date":"10/30/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":557,"Cost":300,"Date":"11/1/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":403,"Cost":377,"Date":"11/15/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":766,"Cost":496,"Date":"11/25/2023"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":900,"Cost":509,"Date":"1/10/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":582,"Cost":465,"Date":"1/14/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":868,"Cost":546,"Date":"1/20/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":990,"Cost":695,"Date":"2/8/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":545,"Cost":491,"Date":"2/25/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":334,"Cost":172,"Date":"3/7/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":444,"Cost":391,"Date":"3/14/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":28,"Cost":14,"Date":"3/27/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":517,"Cost":445,"Date":"4/5/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":176,"Cost":149,"Date":"4/14/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":786,"Cost":646,"Date":"5/3/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":15,"Cost":10,"Date":"5/9/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":293,"Cost":160,"Date":"5/15/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":797,"Cost":603,"Date":"5/25/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":902,"Cost":640,"Date":"5/26/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":514,"Cost":343,"Date":"5/31/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":666,"Cost":505,"Date":"7/27/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":768,"Cost":486,"Date":"9/17/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":109,"Cost":85,"Date":"10/6/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":146,"Cost":119,"Date":"10/8/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":598,"Cost":311,"Date":"10/26/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":928,"Cost":709,"Date":"11/16/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":734,"Cost":652,"Date":"11/18/2024"},{"Store":"Westfield Carousel, Perth","Brand":"HM Home","Country":"Australia","Sale":510,"Cost":399,"Date":"12/1/2024"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":333,"Cost":169,"Date":"2/9/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":244,"Cost":210,"Date":"2/11/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":783,"Cost":413,"Date":"3/10/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":462,"Cost":276,"Date":"3/16/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":260,"Cost":242,"Date":"3/18/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":735,"Cost":488,"Date":"3/20/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":228,"Cost":131,"Date":"3/26/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":951,"Cost":516,"Date":"6/2/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":799,"Cost":553,"Date":"6/10/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":772,"Cost":709,"Date":"6/16/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":915,"Cost":491,"Date":"6/25/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":168,"Cost":152,"Date":"7/19/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":717,"Cost":506,"Date":"7/21/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":854,"Cost":719,"Date":"7/25/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":177,"Cost":166,"Date":"8/4/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":580,"Cost":426,"Date":"9/2/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":845,"Cost":574,"Date":"9/4/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":472,"Cost":266,"Date":"9/19/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":211,"Cost":139,"Date":"9/29/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":365,"Cost":287,"Date":"10/2/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":524,"Cost":405,"Date":"10/15/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":654,"Cost":468,"Date":"10/30/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":249,"Cost":126,"Date":"11/9/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":498,"Cost":328,"Date":"11/23/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":420,"Cost":370,"Date":"11/30/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":53,"Cost":28,"Date":"12/8/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":612,"Cost":454,"Date":"12/11/2018"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":679,"Cost":446,"Date":"1/15/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":492,"Cost":372,"Date":"1/24/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":118,"Cost":105,"Date":"2/3/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":839,"Cost":467,"Date":"2/4/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":265,"Cost":135,"Date":"3/9/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":431,"Cost":232,"Date":"3/12/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":415,"Cost":295,"Date":"4/19/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":530,"Cost":397,"Date":"5/3/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":543,"Cost":492,"Date":"5/4/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":781,"Cost":510,"Date":"6/8/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":575,"Cost":469,"Date":"6/26/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":971,"Cost":562,"Date":"7/4/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":130,"Cost":109,"Date":"7/13/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":723,"Cost":654,"Date":"8/8/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":342,"Cost":171,"Date":"8/26/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":818,"Cost":643,"Date":"9/2/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":319,"Cost":245,"Date":"9/29/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":123,"Cost":67,"Date":"10/12/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":307,"Cost":154,"Date":"11/2/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":403,"Cost":236,"Date":"11/4/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":523,"Cost":391,"Date":"11/7/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":401,"Cost":314,"Date":"12/1/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":685,"Cost":414,"Date":"12/4/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":154,"Cost":94,"Date":"12/7/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":930,"Cost":484,"Date":"12/18/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":607,"Cost":419,"Date":"12/20/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":234,"Cost":207,"Date":"12/20/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":84,"Cost":55,"Date":"12/21/2019"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":221,"Cost":176,"Date":"1/9/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":82,"Cost":52,"Date":"2/5/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":252,"Cost":196,"Date":"2/16/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":734,"Cost":507,"Date":"2/16/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":274,"Cost":229,"Date":"2/18/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":350,"Cost":320,"Date":"2/22/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":317,"Cost":290,"Date":"2/25/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":737,"Cost":625,"Date":"3/8/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":709,"Cost":451,"Date":"4/2/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":774,"Cost":442,"Date":"4/3/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":194,"Cost":148,"Date":"4/9/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":85,"Cost":55,"Date":"4/10/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":89,"Cost":71,"Date":"4/19/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":815,"Cost":603,"Date":"5/17/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":485,"Cost":307,"Date":"5/22/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":152,"Cost":121,"Date":"6/20/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":183,"Cost":108,"Date":"7/1/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":624,"Cost":584,"Date":"7/4/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":534,"Cost":346,"Date":"7/8/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":186,"Cost":100,"Date":"7/9/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":39,"Cost":28,"Date":"7/14/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":893,"Cost":542,"Date":"7/19/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":824,"Cost":679,"Date":"8/1/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":832,"Cost":789,"Date":"8/6/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":129,"Cost":67,"Date":"8/7/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":909,"Cost":671,"Date":"8/22/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":272,"Cost":147,"Date":"8/31/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":830,"Cost":631,"Date":"9/1/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":821,"Cost":618,"Date":"9/1/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":440,"Cost":285,"Date":"9/17/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":204,"Cost":173,"Date":"9/29/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":955,"Cost":649,"Date":"11/7/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":982,"Cost":717,"Date":"11/26/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":547,"Cost":400,"Date":"11/27/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":958,"Cost":861,"Date":"12/5/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":834,"Cost":647,"Date":"12/26/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":964,"Cost":640,"Date":"12/31/2020"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":418,"Cost":315,"Date":"1/20/2021"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":126,"Cost":105,"Date":"2/2/2021"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":699,"Cost":574,"Date":"2/8/2021"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":879,"Cost":751,"Date":"2/27/2021"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":45,"Cost":25,"Date":"3/1/2021"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":344,"Cost":293,"Date":"3/1/2021"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":762,"Cost":542,"Date":"3/19/2021"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":672,"Cost":562,"Date":"3/28/2021"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":789,"Cost":654,"Date":"5/21/2021"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":633,"Cost":495,"Date":"7/21/2021"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":358,"Cost":261,"Date":"8/5/2021"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":378,"Cost":210,"Date":"8/12/2021"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":678,"Cost":538,"Date":"8/21/2021"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":223,"Cost":112,"Date":"8/23/2021"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":800,"Cost":560,"Date":"9/3/2021"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":419,"Cost":365,"Date":"9/5/2021"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":262,"Cost":164,"Date":"10/6/2021"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":462,"Cost":391,"Date":"10/19/2021"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":38,"Cost":22,"Date":"11/15/2021"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":62,"Cost":59,"Date":"12/8/2021"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":541,"Cost":395,"Date":"1/8/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":630,"Cost":429,"Date":"1/14/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":982,"Cost":586,"Date":"1/19/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":560,"Cost":493,"Date":"1/28/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":689,"Cost":470,"Date":"1/31/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":194,"Cost":138,"Date":"3/27/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":247,"Cost":177,"Date":"4/20/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":547,"Cost":419,"Date":"4/24/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":656,"Cost":426,"Date":"4/28/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":508,"Cost":412,"Date":"5/15/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":728,"Cost":370,"Date":"5/16/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":849,"Cost":553,"Date":"5/18/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":573,"Cost":398,"Date":"6/2/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":875,"Cost":620,"Date":"6/3/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":315,"Cost":192,"Date":"6/5/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":155,"Cost":140,"Date":"6/7/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":205,"Cost":180,"Date":"6/14/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":459,"Cost":249,"Date":"6/20/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":870,"Cost":571,"Date":"6/24/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":82,"Cost":50,"Date":"7/4/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":217,"Cost":133,"Date":"7/9/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":269,"Cost":201,"Date":"7/12/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":707,"Cost":394,"Date":"8/14/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":746,"Cost":403,"Date":"8/16/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":987,"Cost":879,"Date":"8/23/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":215,"Cost":115,"Date":"9/2/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":44,"Cost":32,"Date":"9/3/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":213,"Cost":116,"Date":"9/16/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":316,"Cost":218,"Date":"10/4/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":154,"Cost":99,"Date":"11/1/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":871,"Cost":751,"Date":"11/2/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":175,"Cost":119,"Date":"12/17/2022"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":302,"Cost":230,"Date":"2/10/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":339,"Cost":279,"Date":"2/28/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":174,"Cost":116,"Date":"3/4/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":54,"Cost":44,"Date":"3/9/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":974,"Cost":874,"Date":"3/9/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":717,"Cost":383,"Date":"3/11/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":600,"Cost":556,"Date":"3/17/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":73,"Cost":48,"Date":"3/17/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":663,"Cost":453,"Date":"3/23/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":85,"Cost":60,"Date":"4/1/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":570,"Cost":369,"Date":"5/7/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":673,"Cost":629,"Date":"5/10/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":210,"Cost":188,"Date":"5/20/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":724,"Cost":585,"Date":"6/2/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":164,"Cost":149,"Date":"6/11/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":134,"Cost":95,"Date":"6/16/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":912,"Cost":530,"Date":"6/16/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":456,"Cost":264,"Date":"7/10/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":245,"Cost":201,"Date":"7/11/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":229,"Cost":116,"Date":"8/28/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":993,"Cost":825,"Date":"8/29/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":437,"Cost":364,"Date":"8/31/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":315,"Cost":201,"Date":"9/8/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":371,"Cost":191,"Date":"9/13/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":267,"Cost":138,"Date":"9/14/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":489,"Cost":452,"Date":"9/19/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":784,"Cost":659,"Date":"9/25/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":805,"Cost":431,"Date":"10/4/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":62,"Cost":32,"Date":"10/10/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":264,"Cost":162,"Date":"10/17/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":484,"Cost":431,"Date":"10/28/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":479,"Cost":404,"Date":"10/30/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":106,"Cost":58,"Date":"11/1/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":835,"Cost":692,"Date":"11/15/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":709,"Cost":371,"Date":"11/25/2023"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":292,"Cost":260,"Date":"1/10/2024"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":435,"Cost":329,"Date":"1/14/2024"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":948,"Cost":706,"Date":"1/20/2024"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":757,"Cost":407,"Date":"2/8/2024"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":328,"Cost":294,"Date":"2/25/2024"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":736,"Cost":687,"Date":"3/7/2024"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":17,"Cost":11,"Date":"3/14/2024"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":943,"Cost":811,"Date":"3/27/2024"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":644,"Cost":489,"Date":"4/5/2024"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":768,"Cost":534,"Date":"4/14/2024"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":379,"Cost":331,"Date":"5/3/2024"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":384,"Cost":230,"Date":"5/9/2024"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":625,"Cost":445,"Date":"5/15/2024"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":757,"Cost":682,"Date":"5/25/2024"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":881,"Cost":824,"Date":"5/26/2024"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":324,"Cost":196,"Date":"5/31/2024"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":606,"Cost":364,"Date":"7/27/2024"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":473,"Cost":383,"Date":"9/17/2024"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":220,"Cost":167,"Date":"10/6/2024"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":109,"Cost":95,"Date":"10/8/2024"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":692,"Cost":597,"Date":"10/26/2024"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":124,"Cost":105,"Date":"11/16/2024"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":388,"Cost":331,"Date":"11/18/2024"},{"Store":"Westfield Carousel, Perth","Brand":"Sellpy","Country":"Australia","Sale":17,"Cost":11,"Date":"12/1/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":183,"Cost":147,"Date":"2/9/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":244,"Cost":226,"Date":"2/11/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":487,"Cost":312,"Date":"3/10/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":757,"Cost":509,"Date":"3/16/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":712,"Cost":537,"Date":"3/18/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":383,"Cost":250,"Date":"3/20/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":758,"Cost":391,"Date":"3/26/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":231,"Cost":121,"Date":"6/2/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":94,"Cost":78,"Date":"6/10/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":868,"Cost":517,"Date":"6/16/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":429,"Cost":219,"Date":"6/25/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":833,"Cost":626,"Date":"7/19/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":190,"Cost":170,"Date":"7/21/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":678,"Cost":467,"Date":"7/25/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":768,"Cost":504,"Date":"8/4/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":683,"Cost":644,"Date":"9/2/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":91,"Cost":81,"Date":"9/4/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":61,"Cost":40,"Date":"9/19/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":643,"Cost":347,"Date":"9/29/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":950,"Cost":654,"Date":"10/2/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":398,"Cost":282,"Date":"10/15/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":732,"Cost":617,"Date":"10/30/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":719,"Cost":367,"Date":"11/9/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":824,"Cost":475,"Date":"11/23/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":757,"Cost":634,"Date":"11/30/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":181,"Cost":155,"Date":"12/8/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":471,"Cost":387,"Date":"12/11/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":912,"Cost":811,"Date":"1/15/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":375,"Cost":203,"Date":"1/24/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":116,"Cost":65,"Date":"2/3/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":149,"Cost":80,"Date":"2/4/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":809,"Cost":748,"Date":"3/9/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":561,"Cost":380,"Date":"3/12/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":846,"Cost":739,"Date":"4/19/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":333,"Cost":313,"Date":"5/3/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":723,"Cost":651,"Date":"5/4/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":505,"Cost":353,"Date":"6/8/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":653,"Cost":386,"Date":"6/26/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":899,"Cost":785,"Date":"7/4/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":641,"Cost":333,"Date":"7/13/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":231,"Cost":173,"Date":"8/8/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":23,"Cost":21,"Date":"8/26/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":874,"Cost":744,"Date":"9/2/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":121,"Cost":104,"Date":"9/29/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":818,"Cost":748,"Date":"10/12/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":561,"Cost":409,"Date":"11/2/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":151,"Cost":128,"Date":"11/4/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":251,"Cost":132,"Date":"11/7/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":21,"Cost":17,"Date":"12/1/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":908,"Cost":792,"Date":"12/4/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":920,"Cost":843,"Date":"12/7/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":394,"Cost":351,"Date":"12/18/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":130,"Cost":118,"Date":"12/20/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":336,"Cost":314,"Date":"12/20/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":171,"Cost":88,"Date":"12/21/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":325,"Cost":188,"Date":"1/9/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":477,"Cost":327,"Date":"2/5/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":727,"Cost":570,"Date":"2/16/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":276,"Cost":198,"Date":"2/16/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":725,"Cost":588,"Date":"2/18/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":643,"Cost":365,"Date":"2/22/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":423,"Cost":240,"Date":"2/25/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":932,"Cost":537,"Date":"3/8/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":35,"Cost":24,"Date":"4/2/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":177,"Cost":115,"Date":"4/3/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":363,"Cost":306,"Date":"4/9/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":446,"Cost":279,"Date":"4/10/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":107,"Cost":91,"Date":"4/19/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":882,"Cost":530,"Date":"5/17/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":909,"Cost":665,"Date":"5/22/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":436,"Cost":326,"Date":"6/20/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":413,"Cost":300,"Date":"7/1/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":531,"Cost":378,"Date":"7/4/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":239,"Cost":202,"Date":"7/8/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":918,"Cost":786,"Date":"7/9/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":723,"Cost":452,"Date":"7/14/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":904,"Cost":829,"Date":"7/19/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":647,"Cost":496,"Date":"8/1/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":308,"Cost":266,"Date":"8/6/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":365,"Cost":188,"Date":"8/7/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":397,"Cost":238,"Date":"8/22/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":371,"Cost":288,"Date":"8/31/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":587,"Cost":336,"Date":"9/1/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":204,"Cost":146,"Date":"9/1/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":96,"Cost":52,"Date":"9/17/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":353,"Cost":299,"Date":"9/29/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":471,"Cost":398,"Date":"11/7/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":926,"Cost":683,"Date":"11/26/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":695,"Cost":556,"Date":"11/27/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":476,"Cost":325,"Date":"12/5/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":497,"Cost":271,"Date":"12/26/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":961,"Cost":502,"Date":"12/31/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":558,"Cost":343,"Date":"1/20/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":879,"Cost":727,"Date":"2/2/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":969,"Cost":600,"Date":"2/8/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":161,"Cost":97,"Date":"2/27/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":172,"Cost":118,"Date":"3/1/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":326,"Cost":219,"Date":"3/1/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":559,"Cost":348,"Date":"3/19/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":684,"Cost":429,"Date":"3/28/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":312,"Cost":206,"Date":"5/21/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":565,"Cost":513,"Date":"7/21/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":308,"Cost":205,"Date":"8/5/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":236,"Cost":153,"Date":"8/12/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":256,"Cost":208,"Date":"8/21/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":241,"Cost":160,"Date":"8/23/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":541,"Cost":283,"Date":"9/3/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":300,"Cost":186,"Date":"9/5/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":986,"Cost":574,"Date":"10/6/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":359,"Cost":184,"Date":"10/19/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":752,"Cost":606,"Date":"11/15/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":551,"Cost":515,"Date":"12/8/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":503,"Cost":265,"Date":"1/8/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":304,"Cost":235,"Date":"1/14/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":234,"Cost":213,"Date":"1/19/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":175,"Cost":146,"Date":"1/28/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":712,"Cost":551,"Date":"1/31/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":775,"Cost":492,"Date":"3/27/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":70,"Cost":63,"Date":"4/20/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":165,"Cost":114,"Date":"4/24/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":281,"Cost":232,"Date":"4/28/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":894,"Cost":850,"Date":"5/15/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":448,"Cost":422,"Date":"5/16/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":46,"Cost":36,"Date":"5/18/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":207,"Cost":156,"Date":"6/2/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":9,"Cost":8,"Date":"6/3/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":92,"Cost":65,"Date":"6/5/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":326,"Cost":223,"Date":"6/7/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":593,"Cost":443,"Date":"6/14/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":507,"Cost":466,"Date":"6/20/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":12,"Cost":7,"Date":"6/24/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":394,"Cost":283,"Date":"7/4/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":283,"Cost":182,"Date":"7/9/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":220,"Cost":206,"Date":"7/12/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":471,"Cost":415,"Date":"8/14/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":945,"Cost":625,"Date":"8/16/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":186,"Cost":147,"Date":"8/23/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":486,"Cost":427,"Date":"9/2/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":408,"Cost":348,"Date":"9/3/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":747,"Cost":693,"Date":"9/16/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":471,"Cost":288,"Date":"10/4/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":585,"Cost":320,"Date":"11/1/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":106,"Cost":100,"Date":"11/2/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":502,"Cost":377,"Date":"12/17/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":231,"Cost":211,"Date":"2/10/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":942,"Cost":694,"Date":"2/28/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":755,"Cost":416,"Date":"3/4/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":355,"Cost":191,"Date":"3/9/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":969,"Cost":536,"Date":"3/9/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":353,"Cost":287,"Date":"3/11/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":150,"Cost":138,"Date":"3/17/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":942,"Cost":537,"Date":"3/17/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":662,"Cost":530,"Date":"3/23/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":695,"Cost":531,"Date":"4/1/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":738,"Cost":535,"Date":"5/7/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":252,"Cost":145,"Date":"5/10/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":70,"Cost":49,"Date":"5/20/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":316,"Cost":161,"Date":"6/2/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":596,"Cost":409,"Date":"6/11/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":231,"Cost":152,"Date":"6/16/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":361,"Cost":196,"Date":"6/16/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":774,"Cost":398,"Date":"7/10/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":556,"Cost":285,"Date":"7/11/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":36,"Cost":34,"Date":"8/28/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":23,"Cost":12,"Date":"8/29/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":937,"Cost":592,"Date":"8/31/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":148,"Cost":92,"Date":"9/8/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":406,"Cost":332,"Date":"9/13/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":596,"Cost":299,"Date":"9/14/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":720,"Cost":542,"Date":"9/19/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":613,"Cost":397,"Date":"9/25/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":988,"Cost":815,"Date":"10/4/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":687,"Cost":369,"Date":"10/10/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":257,"Cost":192,"Date":"10/17/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":725,"Cost":437,"Date":"10/28/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":393,"Cost":337,"Date":"10/30/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":325,"Cost":163,"Date":"11/1/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":423,"Cost":397,"Date":"11/15/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":303,"Cost":261,"Date":"11/25/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":913,"Cost":475,"Date":"1/10/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":597,"Cost":557,"Date":"1/14/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":871,"Cost":541,"Date":"1/20/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":808,"Cost":408,"Date":"2/8/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":787,"Cost":604,"Date":"2/25/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":371,"Cost":226,"Date":"3/7/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":468,"Cost":317,"Date":"3/14/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":807,"Cost":552,"Date":"3/27/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":453,"Cost":235,"Date":"4/5/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":349,"Cost":175,"Date":"4/14/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":222,"Cost":146,"Date":"5/3/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":405,"Cost":325,"Date":"5/9/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":72,"Cost":68,"Date":"5/15/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":456,"Cost":414,"Date":"5/25/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":587,"Cost":506,"Date":"5/26/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":21,"Cost":20,"Date":"5/31/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":440,"Cost":396,"Date":"7/27/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":525,"Cost":276,"Date":"9/17/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":581,"Cost":547,"Date":"10/6/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":707,"Cost":441,"Date":"10/8/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":494,"Cost":469,"Date":"10/26/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":524,"Cost":372,"Date":"11/16/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":437,"Cost":245,"Date":"11/18/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"HM Home","Country":"Australia","Sale":27,"Cost":22,"Date":"12/1/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":963,"Cost":817,"Date":"2/9/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":110,"Cost":60,"Date":"2/11/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":70,"Cost":40,"Date":"3/10/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":392,"Cost":332,"Date":"3/16/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":101,"Cost":92,"Date":"3/18/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":372,"Cost":198,"Date":"3/20/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":289,"Cost":222,"Date":"3/26/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":299,"Cost":252,"Date":"6/2/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":532,"Cost":273,"Date":"6/10/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":371,"Cost":328,"Date":"6/16/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":894,"Cost":824,"Date":"6/25/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":403,"Cost":202,"Date":"7/19/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":341,"Cost":220,"Date":"7/21/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":863,"Cost":609,"Date":"7/25/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":475,"Cost":303,"Date":"8/4/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":782,"Cost":588,"Date":"9/2/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":402,"Cost":278,"Date":"9/4/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":323,"Cost":182,"Date":"9/19/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":911,"Cost":473,"Date":"9/29/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":532,"Cost":275,"Date":"10/2/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":173,"Cost":152,"Date":"10/15/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":824,"Cost":702,"Date":"10/30/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":955,"Cost":660,"Date":"11/9/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":384,"Cost":335,"Date":"11/23/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":255,"Cost":219,"Date":"11/30/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":989,"Cost":881,"Date":"12/8/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":367,"Cost":217,"Date":"12/11/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":680,"Cost":406,"Date":"1/15/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":980,"Cost":666,"Date":"1/24/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":180,"Cost":141,"Date":"2/3/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":976,"Cost":518,"Date":"2/4/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":470,"Cost":421,"Date":"3/9/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":896,"Cost":490,"Date":"3/12/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":45,"Cost":32,"Date":"4/19/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":392,"Cost":325,"Date":"5/3/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":103,"Cost":97,"Date":"5/4/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":839,"Cost":650,"Date":"6/8/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":392,"Cost":287,"Date":"6/26/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":616,"Cost":334,"Date":"7/4/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":699,"Cost":649,"Date":"7/13/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":378,"Cost":267,"Date":"8/8/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":867,"Cost":768,"Date":"8/26/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":585,"Cost":483,"Date":"9/2/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":72,"Cost":58,"Date":"9/29/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":731,"Cost":409,"Date":"10/12/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":916,"Cost":460,"Date":"11/2/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":279,"Cost":241,"Date":"11/4/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":383,"Cost":252,"Date":"11/7/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":495,"Cost":438,"Date":"12/1/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":343,"Cost":255,"Date":"12/4/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":362,"Cost":286,"Date":"12/7/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":104,"Cost":78,"Date":"12/18/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":678,"Cost":472,"Date":"12/20/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":45,"Cost":29,"Date":"12/20/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":785,"Cost":530,"Date":"12/21/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":426,"Cost":257,"Date":"1/9/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":120,"Cost":107,"Date":"2/5/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":952,"Cost":620,"Date":"2/16/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":828,"Cost":514,"Date":"2/16/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":146,"Cost":82,"Date":"2/18/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":961,"Cost":492,"Date":"2/22/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":688,"Cost":586,"Date":"2/25/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":437,"Cost":271,"Date":"3/8/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":615,"Cost":344,"Date":"4/2/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":411,"Cost":299,"Date":"4/3/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":537,"Cost":503,"Date":"4/9/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":633,"Cost":486,"Date":"4/10/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":325,"Cost":298,"Date":"4/19/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":426,"Cost":213,"Date":"5/17/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":762,"Cost":562,"Date":"5/22/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":290,"Cost":264,"Date":"6/20/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":734,"Cost":414,"Date":"7/1/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":722,"Cost":602,"Date":"7/4/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":491,"Cost":292,"Date":"7/8/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":740,"Cost":640,"Date":"7/9/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":833,"Cost":450,"Date":"7/14/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":758,"Cost":508,"Date":"7/19/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":566,"Cost":338,"Date":"8/1/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":31,"Cost":29,"Date":"8/6/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":805,"Cost":418,"Date":"8/7/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":760,"Cost":403,"Date":"8/22/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":305,"Cost":203,"Date":"8/31/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":838,"Cost":764,"Date":"9/1/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":49,"Cost":33,"Date":"9/1/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":720,"Cost":553,"Date":"9/17/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":968,"Cost":680,"Date":"9/29/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":361,"Cost":335,"Date":"11/7/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":11,"Cost":5,"Date":"11/26/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":58,"Cost":46,"Date":"11/27/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":970,"Cost":770,"Date":"12/5/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":221,"Cost":122,"Date":"12/26/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":192,"Cost":168,"Date":"12/31/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":670,"Cost":365,"Date":"1/20/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":108,"Cost":91,"Date":"2/2/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":610,"Cost":544,"Date":"2/8/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":873,"Cost":628,"Date":"2/27/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":221,"Cost":158,"Date":"3/1/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":527,"Cost":396,"Date":"3/1/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":517,"Cost":397,"Date":"3/19/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":772,"Cost":659,"Date":"3/28/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":199,"Cost":124,"Date":"5/21/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":675,"Cost":386,"Date":"7/21/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":103,"Cost":84,"Date":"8/5/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":244,"Cost":157,"Date":"8/12/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":266,"Cost":138,"Date":"8/21/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":272,"Cost":219,"Date":"8/23/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":134,"Cost":114,"Date":"9/3/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":947,"Cost":763,"Date":"9/5/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":712,"Cost":583,"Date":"10/6/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":623,"Cost":592,"Date":"10/19/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":945,"Cost":651,"Date":"11/15/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":631,"Cost":322,"Date":"12/8/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":195,"Cost":106,"Date":"1/8/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":737,"Cost":455,"Date":"1/14/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":806,"Cost":653,"Date":"1/19/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":446,"Cost":258,"Date":"1/28/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":501,"Cost":437,"Date":"1/31/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":759,"Cost":650,"Date":"3/27/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":945,"Cost":829,"Date":"4/20/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":500,"Cost":438,"Date":"4/24/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":363,"Cost":264,"Date":"4/28/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":826,"Cost":427,"Date":"5/15/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":153,"Cost":115,"Date":"5/16/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":879,"Cost":647,"Date":"5/18/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":101,"Cost":83,"Date":"6/2/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":722,"Cost":540,"Date":"6/3/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":63,"Cost":51,"Date":"6/5/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":155,"Cost":81,"Date":"6/7/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":349,"Cost":223,"Date":"6/14/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":225,"Cost":203,"Date":"6/20/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":258,"Cost":208,"Date":"6/24/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":708,"Cost":435,"Date":"7/4/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":628,"Cost":352,"Date":"7/9/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":159,"Cost":90,"Date":"7/12/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":847,"Cost":452,"Date":"8/14/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":806,"Cost":680,"Date":"8/16/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":186,"Cost":154,"Date":"8/23/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":489,"Cost":268,"Date":"9/2/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":859,"Cost":514,"Date":"9/3/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":6,"Cost":4,"Date":"9/16/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":765,"Cost":482,"Date":"10/4/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":796,"Cost":662,"Date":"11/1/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":696,"Cost":448,"Date":"11/2/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":592,"Cost":404,"Date":"12/17/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":880,"Cost":642,"Date":"2/10/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":144,"Cost":86,"Date":"2/28/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":46,"Cost":41,"Date":"3/4/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":974,"Cost":840,"Date":"3/9/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":201,"Cost":142,"Date":"3/9/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":494,"Cost":316,"Date":"3/11/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":883,"Cost":515,"Date":"3/17/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":967,"Cost":906,"Date":"3/17/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":478,"Cost":323,"Date":"3/23/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":747,"Cost":646,"Date":"4/1/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":744,"Cost":475,"Date":"5/7/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":251,"Cost":155,"Date":"5/10/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":241,"Cost":135,"Date":"5/20/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":179,"Cost":131,"Date":"6/2/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":453,"Cost":394,"Date":"6/11/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":29,"Cost":19,"Date":"6/16/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":592,"Cost":528,"Date":"6/16/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":84,"Cost":68,"Date":"7/10/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":189,"Cost":157,"Date":"7/11/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":10,"Cost":7,"Date":"8/28/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":565,"Cost":472,"Date":"8/29/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":434,"Cost":224,"Date":"8/31/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":20,"Cost":12,"Date":"9/8/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":983,"Cost":551,"Date":"9/13/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":39,"Cost":21,"Date":"9/14/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":546,"Cost":312,"Date":"9/19/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":242,"Cost":131,"Date":"9/25/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":44,"Cost":29,"Date":"10/4/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":946,"Cost":733,"Date":"10/10/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":24,"Cost":17,"Date":"10/17/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":493,"Cost":429,"Date":"10/28/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":176,"Cost":117,"Date":"10/30/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":343,"Cost":273,"Date":"11/1/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":143,"Cost":85,"Date":"11/15/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":776,"Cost":428,"Date":"11/25/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":864,"Cost":605,"Date":"1/10/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":775,"Cost":457,"Date":"1/14/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":713,"Cost":619,"Date":"1/20/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":378,"Cost":268,"Date":"2/8/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":593,"Cost":345,"Date":"2/25/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":750,"Cost":437,"Date":"3/7/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":878,"Cost":609,"Date":"3/14/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":266,"Cost":194,"Date":"3/27/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":874,"Cost":677,"Date":"4/5/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":146,"Cost":124,"Date":"4/14/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":724,"Cost":491,"Date":"5/3/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":676,"Cost":530,"Date":"5/9/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":502,"Cost":359,"Date":"5/15/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":511,"Cost":426,"Date":"5/25/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":808,"Cost":754,"Date":"5/26/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":710,"Cost":483,"Date":"5/31/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":385,"Cost":335,"Date":"7/27/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":256,"Cost":201,"Date":"9/17/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":475,"Cost":315,"Date":"10/6/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":513,"Cost":376,"Date":"10/8/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":582,"Cost":472,"Date":"10/26/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":100,"Cost":82,"Date":"11/16/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":436,"Cost":321,"Date":"11/18/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"ARKET","Country":"Australia","Sale":762,"Cost":656,"Date":"12/1/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":430,"Cost":313,"Date":"2/9/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":633,"Cost":522,"Date":"2/11/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":133,"Cost":88,"Date":"3/10/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":484,"Cost":341,"Date":"3/16/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":126,"Cost":99,"Date":"3/18/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":610,"Cost":415,"Date":"3/20/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":772,"Cost":394,"Date":"3/26/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":320,"Cost":227,"Date":"6/2/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":364,"Cost":279,"Date":"6/10/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":890,"Cost":724,"Date":"6/16/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":537,"Cost":322,"Date":"6/25/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":101,"Cost":79,"Date":"7/19/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":781,"Cost":551,"Date":"7/21/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":498,"Cost":454,"Date":"7/25/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":703,"Cost":369,"Date":"8/4/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":696,"Cost":641,"Date":"9/2/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":212,"Cost":160,"Date":"9/4/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":340,"Cost":317,"Date":"9/19/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":579,"Cost":548,"Date":"9/29/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":614,"Cost":469,"Date":"10/2/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":721,"Cost":362,"Date":"10/15/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":424,"Cost":345,"Date":"10/30/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":987,"Cost":782,"Date":"11/9/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":701,"Cost":367,"Date":"11/23/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":532,"Cost":399,"Date":"11/30/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":687,"Cost":578,"Date":"12/8/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":923,"Cost":760,"Date":"12/11/2018"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":706,"Cost":618,"Date":"1/15/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":106,"Cost":64,"Date":"1/24/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":878,"Cost":451,"Date":"2/3/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":96,"Cost":63,"Date":"2/4/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":544,"Cost":493,"Date":"3/9/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":465,"Cost":242,"Date":"3/12/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":873,"Cost":710,"Date":"4/19/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":178,"Cost":106,"Date":"5/3/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":782,"Cost":685,"Date":"5/4/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":683,"Cost":395,"Date":"6/8/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":699,"Cost":443,"Date":"6/26/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":524,"Cost":471,"Date":"7/4/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":651,"Cost":542,"Date":"7/13/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":984,"Cost":802,"Date":"8/8/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":13,"Cost":8,"Date":"8/26/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":1,"Cost":1,"Date":"9/2/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":445,"Cost":361,"Date":"9/29/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":326,"Cost":238,"Date":"10/12/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":711,"Cost":567,"Date":"11/2/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":878,"Cost":736,"Date":"11/4/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":928,"Cost":512,"Date":"11/7/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":659,"Cost":508,"Date":"12/1/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":464,"Cost":334,"Date":"12/4/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":813,"Cost":436,"Date":"12/7/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":481,"Cost":420,"Date":"12/18/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":936,"Cost":630,"Date":"12/20/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":94,"Cost":88,"Date":"12/20/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":295,"Cost":174,"Date":"12/21/2019"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":824,"Cost":506,"Date":"1/9/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":846,"Cost":639,"Date":"2/5/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":527,"Cost":399,"Date":"2/16/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":242,"Cost":164,"Date":"2/16/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":379,"Cost":308,"Date":"2/18/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":890,"Cost":815,"Date":"2/22/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":677,"Cost":612,"Date":"2/25/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":349,"Cost":268,"Date":"3/8/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":918,"Cost":658,"Date":"4/2/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":869,"Cost":751,"Date":"4/3/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":487,"Cost":404,"Date":"4/9/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":156,"Cost":78,"Date":"4/10/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":961,"Cost":810,"Date":"4/19/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":566,"Cost":537,"Date":"5/17/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":81,"Cost":74,"Date":"5/22/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":148,"Cost":129,"Date":"6/20/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":828,"Cost":585,"Date":"7/1/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":250,"Cost":126,"Date":"7/4/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":339,"Cost":263,"Date":"7/8/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":472,"Cost":390,"Date":"7/9/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":759,"Cost":483,"Date":"7/14/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":788,"Cost":733,"Date":"7/19/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":637,"Cost":376,"Date":"8/1/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":578,"Cost":457,"Date":"8/6/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":850,"Cost":670,"Date":"8/7/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":840,"Cost":557,"Date":"8/22/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":117,"Cost":69,"Date":"8/31/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":7,"Cost":6,"Date":"9/1/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":141,"Cost":79,"Date":"9/1/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":691,"Cost":521,"Date":"9/17/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":430,"Cost":305,"Date":"9/29/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":325,"Cost":246,"Date":"11/7/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":365,"Cost":290,"Date":"11/26/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":41,"Cost":28,"Date":"11/27/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":474,"Cost":256,"Date":"12/5/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":673,"Cost":485,"Date":"12/26/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":958,"Cost":551,"Date":"12/31/2020"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":867,"Cost":792,"Date":"1/20/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":36,"Cost":18,"Date":"2/2/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":49,"Cost":27,"Date":"2/8/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":17,"Cost":12,"Date":"2/27/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":144,"Cost":76,"Date":"3/1/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":86,"Cost":76,"Date":"3/1/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":246,"Cost":153,"Date":"3/19/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":194,"Cost":145,"Date":"3/28/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":651,"Cost":526,"Date":"5/21/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":22,"Cost":21,"Date":"7/21/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":13,"Cost":8,"Date":"8/5/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":733,"Cost":608,"Date":"8/12/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":114,"Cost":79,"Date":"8/21/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":779,"Cost":433,"Date":"8/23/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":27,"Cost":26,"Date":"9/3/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":718,"Cost":502,"Date":"9/5/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":553,"Cost":462,"Date":"10/6/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":547,"Cost":477,"Date":"10/19/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":150,"Cost":85,"Date":"11/15/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":293,"Cost":188,"Date":"12/8/2021"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":540,"Cost":361,"Date":"1/8/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":362,"Cost":279,"Date":"1/14/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":802,"Cost":537,"Date":"1/19/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":819,"Cost":427,"Date":"1/28/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":391,"Cost":341,"Date":"1/31/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":349,"Cost":313,"Date":"3/27/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":3,"Cost":2,"Date":"4/20/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":60,"Cost":53,"Date":"4/24/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":303,"Cost":257,"Date":"4/28/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":895,"Cost":547,"Date":"5/15/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":615,"Cost":571,"Date":"5/16/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":615,"Cost":533,"Date":"5/18/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":855,"Cost":784,"Date":"6/2/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":225,"Cost":114,"Date":"6/3/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":816,"Cost":497,"Date":"6/5/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":861,"Cost":635,"Date":"6/7/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":158,"Cost":134,"Date":"6/14/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":918,"Cost":737,"Date":"6/20/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":773,"Cost":500,"Date":"6/24/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":762,"Cost":661,"Date":"7/4/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":382,"Cost":279,"Date":"7/9/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":604,"Cost":379,"Date":"7/12/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":204,"Cost":133,"Date":"8/14/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":194,"Cost":166,"Date":"8/16/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":367,"Cost":303,"Date":"8/23/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":606,"Cost":401,"Date":"9/2/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":640,"Cost":326,"Date":"9/3/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":174,"Cost":130,"Date":"9/16/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":23,"Cost":13,"Date":"10/4/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":406,"Cost":317,"Date":"11/1/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":92,"Cost":66,"Date":"11/2/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":929,"Cost":680,"Date":"12/17/2022"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":33,"Cost":30,"Date":"2/10/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":777,"Cost":512,"Date":"2/28/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":934,"Cost":507,"Date":"3/4/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":503,"Cost":295,"Date":"3/9/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":325,"Cost":252,"Date":"3/9/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":976,"Cost":774,"Date":"3/11/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":574,"Cost":487,"Date":"3/17/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":162,"Cost":152,"Date":"3/17/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":278,"Cost":204,"Date":"3/23/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":994,"Cost":503,"Date":"4/1/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":905,"Cost":602,"Date":"5/7/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":135,"Cost":93,"Date":"5/10/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":384,"Cost":339,"Date":"5/20/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":93,"Cost":83,"Date":"6/2/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":859,"Cost":460,"Date":"6/11/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":464,"Cost":422,"Date":"6/16/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":20,"Cost":13,"Date":"6/16/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":516,"Cost":432,"Date":"7/10/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":143,"Cost":115,"Date":"7/11/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":58,"Cost":49,"Date":"8/28/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":825,"Cost":718,"Date":"8/29/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":713,"Cost":649,"Date":"8/31/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":252,"Cost":211,"Date":"9/8/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":368,"Cost":217,"Date":"9/13/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":714,"Cost":403,"Date":"9/14/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":771,"Cost":431,"Date":"9/19/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":331,"Cost":262,"Date":"9/25/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":193,"Cost":147,"Date":"10/4/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":434,"Cost":240,"Date":"10/10/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":690,"Cost":643,"Date":"10/17/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":660,"Cost":330,"Date":"10/28/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":211,"Cost":144,"Date":"10/30/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":526,"Cost":291,"Date":"11/1/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":810,"Cost":672,"Date":"11/15/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":748,"Cost":558,"Date":"11/25/2023"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":337,"Cost":308,"Date":"1/10/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":86,"Cost":52,"Date":"1/14/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":254,"Cost":185,"Date":"1/20/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":162,"Cost":146,"Date":"2/8/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":516,"Cost":337,"Date":"2/25/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":283,"Cost":193,"Date":"3/7/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":611,"Cost":404,"Date":"3/14/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":422,"Cost":211,"Date":"3/27/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":729,"Cost":415,"Date":"4/5/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":864,"Cost":675,"Date":"4/14/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":906,"Cost":527,"Date":"5/3/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":64,"Cost":54,"Date":"5/9/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":498,"Cost":308,"Date":"5/15/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":530,"Cost":316,"Date":"5/25/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":498,"Cost":466,"Date":"5/26/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":662,"Cost":481,"Date":"5/31/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":470,"Cost":315,"Date":"7/27/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":432,"Cost":268,"Date":"9/17/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":253,"Cost":209,"Date":"10/6/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":729,"Cost":591,"Date":"10/8/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":831,"Cost":504,"Date":"10/26/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":341,"Cost":233,"Date":"11/16/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":444,"Cost":396,"Date":"11/18/2024"},{"Store":"Lakeside Joondalup, Perth","Brand":"Sellpy","Country":"Australia","Sale":56,"Cost":35,"Date":"12/1/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":431,"Cost":385,"Date":"2/9/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":293,"Cost":244,"Date":"2/11/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":402,"Cost":290,"Date":"3/10/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":297,"Cost":149,"Date":"3/16/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":802,"Cost":491,"Date":"3/18/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":383,"Cost":363,"Date":"3/20/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":668,"Cost":592,"Date":"3/26/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":573,"Cost":476,"Date":"6/2/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":655,"Cost":493,"Date":"6/10/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":778,"Cost":639,"Date":"6/16/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":173,"Cost":143,"Date":"6/25/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":89,"Cost":73,"Date":"7/19/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":161,"Cost":116,"Date":"7/21/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":144,"Cost":105,"Date":"7/25/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":21,"Cost":20,"Date":"8/4/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":974,"Cost":598,"Date":"9/2/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":345,"Cost":327,"Date":"9/4/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":702,"Cost":453,"Date":"9/19/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":363,"Cost":240,"Date":"9/29/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":784,"Cost":620,"Date":"10/2/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":301,"Cost":243,"Date":"10/15/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":894,"Cost":546,"Date":"10/30/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":571,"Cost":365,"Date":"11/9/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":712,"Cost":669,"Date":"11/23/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":886,"Cost":591,"Date":"11/30/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":599,"Cost":411,"Date":"12/8/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":201,"Cost":119,"Date":"12/11/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":479,"Cost":267,"Date":"1/15/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":613,"Cost":452,"Date":"1/24/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":521,"Cost":311,"Date":"2/3/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":3,"Cost":3,"Date":"2/4/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":909,"Cost":691,"Date":"3/9/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":704,"Cost":556,"Date":"3/12/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":106,"Cost":84,"Date":"4/19/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":995,"Cost":899,"Date":"5/3/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":271,"Cost":135,"Date":"5/4/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":464,"Cost":346,"Date":"6/8/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":212,"Cost":169,"Date":"6/26/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":540,"Cost":386,"Date":"7/4/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":415,"Cost":333,"Date":"7/13/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":609,"Cost":518,"Date":"8/8/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":791,"Cost":537,"Date":"8/26/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":894,"Cost":476,"Date":"9/2/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":409,"Cost":209,"Date":"9/29/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":754,"Cost":657,"Date":"10/12/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":637,"Cost":333,"Date":"11/2/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":23,"Cost":14,"Date":"11/4/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":603,"Cost":418,"Date":"11/7/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":996,"Cost":768,"Date":"12/1/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":845,"Cost":596,"Date":"12/4/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":794,"Cost":455,"Date":"12/7/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":419,"Cost":250,"Date":"12/18/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":77,"Cost":41,"Date":"12/20/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":222,"Cost":204,"Date":"12/20/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":268,"Cost":151,"Date":"12/21/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":174,"Cost":156,"Date":"1/9/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":425,"Cost":253,"Date":"2/5/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":450,"Cost":350,"Date":"2/16/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":208,"Cost":187,"Date":"2/16/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":600,"Cost":493,"Date":"2/18/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":374,"Cost":234,"Date":"2/22/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":509,"Cost":324,"Date":"2/25/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":92,"Cost":56,"Date":"3/8/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":833,"Cost":664,"Date":"4/2/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":960,"Cost":867,"Date":"4/3/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":31,"Cost":24,"Date":"4/9/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":55,"Cost":50,"Date":"4/10/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":138,"Cost":106,"Date":"4/19/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":646,"Cost":566,"Date":"5/17/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":357,"Cost":298,"Date":"5/22/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":228,"Cost":162,"Date":"6/20/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":431,"Cost":245,"Date":"7/1/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":742,"Cost":520,"Date":"7/4/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":138,"Cost":102,"Date":"7/8/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":374,"Cost":280,"Date":"7/9/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":315,"Cost":268,"Date":"7/14/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":737,"Cost":482,"Date":"7/19/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":641,"Cost":552,"Date":"8/1/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":496,"Cost":401,"Date":"8/6/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":908,"Cost":781,"Date":"8/7/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":581,"Cost":444,"Date":"8/22/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":941,"Cost":803,"Date":"8/31/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":523,"Cost":282,"Date":"9/1/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":522,"Cost":274,"Date":"9/1/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":806,"Cost":530,"Date":"9/17/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":861,"Cost":760,"Date":"9/29/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":743,"Cost":533,"Date":"11/7/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":422,"Cost":217,"Date":"11/26/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":949,"Cost":588,"Date":"11/27/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":861,"Cost":467,"Date":"12/5/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":847,"Cost":679,"Date":"12/26/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":698,"Cost":358,"Date":"12/31/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":954,"Cost":627,"Date":"1/20/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":650,"Cost":535,"Date":"2/2/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":403,"Cost":202,"Date":"2/8/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":375,"Cost":288,"Date":"2/27/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":912,"Cost":860,"Date":"3/1/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":690,"Cost":345,"Date":"3/1/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":672,"Cost":507,"Date":"3/19/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":229,"Cost":160,"Date":"3/28/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":236,"Cost":178,"Date":"5/21/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":629,"Cost":435,"Date":"7/21/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":487,"Cost":284,"Date":"8/5/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":79,"Cost":49,"Date":"8/12/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":997,"Cost":800,"Date":"8/21/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":432,"Cost":247,"Date":"8/23/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":431,"Cost":220,"Date":"9/3/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":769,"Cost":385,"Date":"9/5/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":429,"Cost":286,"Date":"10/6/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":409,"Cost":329,"Date":"10/19/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":35,"Cost":18,"Date":"11/15/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":108,"Cost":74,"Date":"12/8/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":373,"Cost":340,"Date":"1/8/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":437,"Cost":225,"Date":"1/14/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":469,"Cost":323,"Date":"1/19/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":475,"Cost":440,"Date":"1/28/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":231,"Cost":176,"Date":"1/31/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":333,"Cost":279,"Date":"3/27/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":749,"Cost":665,"Date":"4/20/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":30,"Cost":15,"Date":"4/24/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":283,"Cost":162,"Date":"4/28/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":453,"Cost":299,"Date":"5/15/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":241,"Cost":167,"Date":"5/16/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":939,"Cost":784,"Date":"5/18/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":678,"Cost":449,"Date":"6/2/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":702,"Cost":372,"Date":"6/3/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":889,"Cost":723,"Date":"6/5/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":333,"Cost":216,"Date":"6/7/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":759,"Cost":573,"Date":"6/14/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":527,"Cost":323,"Date":"6/20/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":60,"Cost":33,"Date":"6/24/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":929,"Cost":615,"Date":"7/4/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":986,"Cost":628,"Date":"7/9/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":369,"Cost":270,"Date":"7/12/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":495,"Cost":401,"Date":"8/14/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":961,"Cost":515,"Date":"8/16/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":594,"Cost":429,"Date":"8/23/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":408,"Cost":318,"Date":"9/2/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":688,"Cost":484,"Date":"9/3/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":988,"Cost":516,"Date":"9/16/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":684,"Cost":383,"Date":"10/4/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":811,"Cost":739,"Date":"11/1/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":144,"Cost":73,"Date":"11/2/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":372,"Cost":285,"Date":"12/17/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":910,"Cost":755,"Date":"2/10/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":959,"Cost":616,"Date":"2/28/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":890,"Cost":737,"Date":"3/4/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":229,"Cost":130,"Date":"3/9/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":954,"Cost":696,"Date":"3/9/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":25,"Cost":15,"Date":"3/11/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":6,"Cost":5,"Date":"3/17/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":189,"Cost":101,"Date":"3/17/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":788,"Cost":420,"Date":"3/23/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":942,"Cost":797,"Date":"4/1/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":127,"Cost":86,"Date":"5/7/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":602,"Cost":451,"Date":"5/10/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":989,"Cost":753,"Date":"5/20/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":452,"Cost":232,"Date":"6/2/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":427,"Cost":260,"Date":"6/11/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":18,"Cost":10,"Date":"6/16/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":930,"Cost":562,"Date":"6/16/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":99,"Cost":80,"Date":"7/10/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":24,"Cost":17,"Date":"7/11/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":139,"Cost":72,"Date":"8/28/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":662,"Cost":476,"Date":"8/29/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":931,"Cost":834,"Date":"8/31/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":242,"Cost":121,"Date":"9/8/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":546,"Cost":509,"Date":"9/13/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":468,"Cost":404,"Date":"9/14/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":323,"Cost":176,"Date":"9/19/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":874,"Cost":768,"Date":"9/25/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":547,"Cost":317,"Date":"10/4/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":696,"Cost":654,"Date":"10/10/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":985,"Cost":603,"Date":"10/17/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":794,"Cost":549,"Date":"10/28/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":792,"Cost":743,"Date":"10/30/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":423,"Cost":266,"Date":"11/1/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":969,"Cost":671,"Date":"11/15/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":149,"Cost":110,"Date":"11/25/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":991,"Cost":795,"Date":"1/10/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":685,"Cost":482,"Date":"1/14/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":241,"Cost":202,"Date":"1/20/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":372,"Cost":225,"Date":"2/8/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":323,"Cost":297,"Date":"2/25/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":115,"Cost":105,"Date":"3/7/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":748,"Cost":428,"Date":"3/14/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":660,"Cost":517,"Date":"3/27/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":491,"Cost":281,"Date":"4/5/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":695,"Cost":426,"Date":"4/14/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":567,"Cost":415,"Date":"5/3/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":324,"Cost":288,"Date":"5/9/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":586,"Cost":480,"Date":"5/15/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":717,"Cost":668,"Date":"5/25/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":809,"Cost":506,"Date":"5/26/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":924,"Cost":790,"Date":"5/31/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":179,"Cost":140,"Date":"7/27/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":109,"Cost":67,"Date":"9/17/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":870,"Cost":543,"Date":"10/6/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":809,"Cost":702,"Date":"10/8/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":522,"Cost":452,"Date":"10/26/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":6,"Cost":3,"Date":"11/16/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":363,"Cost":313,"Date":"11/18/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"Sellpy","Country":"Australia","Sale":232,"Cost":186,"Date":"12/1/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":297,"Cost":150,"Date":"2/9/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":558,"Cost":436,"Date":"2/11/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":819,"Cost":589,"Date":"3/10/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":877,"Cost":827,"Date":"3/16/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":16,"Cost":12,"Date":"3/18/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":661,"Cost":628,"Date":"3/20/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":967,"Cost":891,"Date":"3/26/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":157,"Cost":92,"Date":"6/2/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":802,"Cost":458,"Date":"6/10/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":222,"Cost":175,"Date":"6/16/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":204,"Cost":127,"Date":"6/25/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":184,"Cost":132,"Date":"7/19/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":830,"Cost":688,"Date":"7/21/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":91,"Cost":54,"Date":"7/25/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":212,"Cost":153,"Date":"8/4/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":73,"Cost":44,"Date":"9/2/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":116,"Cost":92,"Date":"9/4/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":885,"Cost":783,"Date":"9/19/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":693,"Cost":369,"Date":"9/29/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":833,"Cost":608,"Date":"10/2/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":466,"Cost":233,"Date":"10/15/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":585,"Cost":400,"Date":"10/30/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":867,"Cost":435,"Date":"11/9/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":500,"Cost":379,"Date":"11/23/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":454,"Cost":266,"Date":"11/30/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":790,"Cost":590,"Date":"12/8/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":960,"Cost":855,"Date":"12/11/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":663,"Cost":580,"Date":"1/15/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":918,"Cost":537,"Date":"1/24/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":781,"Cost":569,"Date":"2/3/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":176,"Cost":135,"Date":"2/4/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":830,"Cost":623,"Date":"3/9/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":4,"Cost":2,"Date":"3/12/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":410,"Cost":272,"Date":"4/19/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":99,"Cost":69,"Date":"5/3/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":316,"Cost":233,"Date":"5/4/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":71,"Cost":54,"Date":"6/8/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":44,"Cost":38,"Date":"6/26/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":419,"Cost":356,"Date":"7/4/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":273,"Cost":172,"Date":"7/13/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":759,"Cost":570,"Date":"8/8/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":955,"Cost":625,"Date":"8/26/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":235,"Cost":176,"Date":"9/2/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":571,"Cost":416,"Date":"9/29/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":799,"Cost":660,"Date":"10/12/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":84,"Cost":62,"Date":"11/2/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":325,"Cost":203,"Date":"11/4/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":529,"Cost":453,"Date":"11/7/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":898,"Cost":667,"Date":"12/1/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":276,"Cost":157,"Date":"12/4/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":638,"Cost":406,"Date":"12/7/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":423,"Cost":359,"Date":"12/18/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":57,"Cost":29,"Date":"12/20/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":792,"Cost":665,"Date":"12/20/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":351,"Cost":223,"Date":"12/21/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":573,"Cost":523,"Date":"1/9/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":442,"Cost":252,"Date":"2/5/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":966,"Cost":487,"Date":"2/16/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":822,"Cost":595,"Date":"2/16/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":797,"Cost":591,"Date":"2/18/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":350,"Cost":243,"Date":"2/22/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":837,"Cost":470,"Date":"2/25/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":126,"Cost":72,"Date":"3/8/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":399,"Cost":377,"Date":"4/2/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":501,"Cost":392,"Date":"4/3/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":969,"Cost":846,"Date":"4/9/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":690,"Cost":446,"Date":"4/10/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":382,"Cost":280,"Date":"4/19/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":258,"Cost":173,"Date":"5/17/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":452,"Cost":229,"Date":"5/22/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":721,"Cost":567,"Date":"6/20/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":124,"Cost":93,"Date":"7/1/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":914,"Cost":766,"Date":"7/4/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":934,"Cost":658,"Date":"7/8/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":656,"Cost":521,"Date":"7/9/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":234,"Cost":150,"Date":"7/14/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":918,"Cost":587,"Date":"7/19/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":172,"Cost":139,"Date":"8/1/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":591,"Cost":399,"Date":"8/6/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":569,"Cost":379,"Date":"8/7/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":299,"Cost":179,"Date":"8/22/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":12,"Cost":9,"Date":"8/31/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":170,"Cost":129,"Date":"9/1/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":986,"Cost":629,"Date":"9/1/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":379,"Cost":360,"Date":"9/17/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":86,"Cost":49,"Date":"9/29/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":896,"Cost":713,"Date":"11/7/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":813,"Cost":574,"Date":"11/26/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":926,"Cost":542,"Date":"11/27/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":680,"Cost":385,"Date":"12/5/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":796,"Cost":558,"Date":"12/26/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":627,"Cost":589,"Date":"12/31/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":325,"Cost":294,"Date":"1/20/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":22,"Cost":12,"Date":"2/2/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":425,"Cost":244,"Date":"2/8/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":990,"Cost":843,"Date":"2/27/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":649,"Cost":388,"Date":"3/1/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":820,"Cost":435,"Date":"3/1/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":129,"Cost":109,"Date":"3/19/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":11,"Cost":6,"Date":"3/28/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":444,"Cost":348,"Date":"5/21/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":11,"Cost":6,"Date":"7/21/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":175,"Cost":114,"Date":"8/5/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":47,"Cost":29,"Date":"8/12/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":316,"Cost":173,"Date":"8/21/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":587,"Cost":388,"Date":"8/23/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":958,"Cost":866,"Date":"9/3/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":85,"Cost":53,"Date":"9/5/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":923,"Cost":506,"Date":"10/6/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":891,"Cost":786,"Date":"10/19/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":108,"Cost":99,"Date":"11/15/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":224,"Cost":188,"Date":"12/8/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":657,"Cost":613,"Date":"1/8/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":657,"Cost":536,"Date":"1/14/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":133,"Cost":67,"Date":"1/19/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":322,"Cost":241,"Date":"1/28/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":340,"Cost":202,"Date":"1/31/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":344,"Cost":177,"Date":"3/27/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":864,"Cost":487,"Date":"4/20/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":251,"Cost":145,"Date":"4/24/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":427,"Cost":282,"Date":"4/28/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":475,"Cost":451,"Date":"5/15/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":724,"Cost":577,"Date":"5/16/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":220,"Cost":157,"Date":"5/18/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":512,"Cost":371,"Date":"6/2/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":559,"Cost":295,"Date":"6/3/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":651,"Cost":499,"Date":"6/5/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":436,"Cost":377,"Date":"6/7/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":150,"Cost":132,"Date":"6/14/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":369,"Cost":263,"Date":"6/20/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":442,"Cost":343,"Date":"6/24/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":504,"Cost":406,"Date":"7/4/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":548,"Cost":299,"Date":"7/9/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":568,"Cost":522,"Date":"7/12/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":847,"Cost":658,"Date":"8/14/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":144,"Cost":134,"Date":"8/16/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":260,"Cost":157,"Date":"8/23/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":202,"Cost":166,"Date":"9/2/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":203,"Cost":153,"Date":"9/3/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":827,"Cost":465,"Date":"9/16/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":25,"Cost":18,"Date":"10/4/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":568,"Cost":533,"Date":"11/1/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":709,"Cost":585,"Date":"11/2/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":650,"Cost":415,"Date":"12/17/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":373,"Cost":191,"Date":"2/10/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":307,"Cost":237,"Date":"2/28/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":871,"Cost":515,"Date":"3/4/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":173,"Cost":102,"Date":"3/9/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":966,"Cost":508,"Date":"3/9/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":311,"Cost":247,"Date":"3/11/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":851,"Cost":776,"Date":"3/17/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":616,"Cost":449,"Date":"3/17/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":742,"Cost":533,"Date":"3/23/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":634,"Cost":430,"Date":"4/1/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":999,"Cost":699,"Date":"5/7/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":681,"Cost":461,"Date":"5/10/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":155,"Cost":119,"Date":"5/20/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":792,"Cost":447,"Date":"6/2/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":137,"Cost":108,"Date":"6/11/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":971,"Cost":793,"Date":"6/16/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":191,"Cost":161,"Date":"6/16/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":98,"Cost":52,"Date":"7/10/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":870,"Cost":804,"Date":"7/11/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":658,"Cost":330,"Date":"8/28/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":34,"Cost":22,"Date":"8/29/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":432,"Cost":263,"Date":"8/31/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":807,"Cost":436,"Date":"9/8/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":893,"Cost":725,"Date":"9/13/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":143,"Cost":110,"Date":"9/14/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":102,"Cost":71,"Date":"9/19/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":438,"Cost":240,"Date":"9/25/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":624,"Cost":414,"Date":"10/4/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":848,"Cost":610,"Date":"10/10/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":65,"Cost":50,"Date":"10/17/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":190,"Cost":123,"Date":"10/28/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":874,"Cost":638,"Date":"10/30/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":88,"Cost":62,"Date":"11/1/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":6,"Cost":5,"Date":"11/15/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":212,"Cost":201,"Date":"11/25/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":587,"Cost":379,"Date":"1/10/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":49,"Cost":44,"Date":"1/14/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":210,"Cost":117,"Date":"1/20/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":568,"Cost":307,"Date":"2/8/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":722,"Cost":611,"Date":"2/25/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":448,"Cost":322,"Date":"3/7/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":368,"Cost":274,"Date":"3/14/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":196,"Cost":180,"Date":"3/27/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":722,"Cost":452,"Date":"4/5/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":860,"Cost":732,"Date":"4/14/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":248,"Cost":169,"Date":"5/3/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":401,"Cost":309,"Date":"5/9/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":44,"Cost":28,"Date":"5/15/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":173,"Cost":125,"Date":"5/25/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":550,"Cost":389,"Date":"5/26/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":10,"Cost":8,"Date":"5/31/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":28,"Cost":24,"Date":"7/27/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":246,"Cost":199,"Date":"9/17/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":909,"Cost":492,"Date":"10/6/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":277,"Cost":261,"Date":"10/8/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":100,"Cost":63,"Date":"10/26/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":750,"Cost":599,"Date":"11/16/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":304,"Cost":279,"Date":"11/18/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"ARKET","Country":"Australia","Sale":885,"Cost":584,"Date":"12/1/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":393,"Cost":289,"Date":"2/9/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":578,"Cost":512,"Date":"2/11/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":153,"Cost":94,"Date":"3/10/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":747,"Cost":483,"Date":"3/16/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":625,"Cost":587,"Date":"3/18/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":368,"Cost":213,"Date":"3/20/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":628,"Cost":533,"Date":"3/26/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":89,"Cost":72,"Date":"6/2/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":401,"Cost":235,"Date":"6/10/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":733,"Cost":536,"Date":"6/16/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":915,"Cost":819,"Date":"6/25/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":664,"Cost":528,"Date":"7/19/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":502,"Cost":357,"Date":"7/21/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":912,"Cost":456,"Date":"7/25/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":728,"Cost":503,"Date":"8/4/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":61,"Cost":31,"Date":"9/2/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":497,"Cost":452,"Date":"9/4/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":213,"Cost":142,"Date":"9/19/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":161,"Cost":108,"Date":"9/29/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":105,"Cost":66,"Date":"10/2/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":793,"Cost":659,"Date":"10/15/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":264,"Cost":228,"Date":"10/30/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":785,"Cost":681,"Date":"11/9/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":327,"Cost":220,"Date":"11/23/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":216,"Cost":113,"Date":"11/30/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":370,"Cost":235,"Date":"12/8/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":137,"Cost":77,"Date":"12/11/2018"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":561,"Cost":399,"Date":"1/15/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":148,"Cost":110,"Date":"1/24/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":171,"Cost":125,"Date":"2/3/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":875,"Cost":440,"Date":"2/4/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":503,"Cost":400,"Date":"3/9/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":154,"Cost":130,"Date":"3/12/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":782,"Cost":692,"Date":"4/19/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":872,"Cost":667,"Date":"5/3/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":677,"Cost":444,"Date":"5/4/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":451,"Cost":376,"Date":"6/8/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":881,"Cost":533,"Date":"6/26/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":55,"Cost":52,"Date":"7/4/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":947,"Cost":790,"Date":"7/13/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":797,"Cost":442,"Date":"8/8/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":185,"Cost":137,"Date":"8/26/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":266,"Cost":173,"Date":"9/2/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":235,"Cost":197,"Date":"9/29/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":826,"Cost":606,"Date":"10/12/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":854,"Cost":668,"Date":"11/2/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":138,"Cost":69,"Date":"11/4/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":449,"Cost":241,"Date":"11/7/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":307,"Cost":212,"Date":"12/1/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":565,"Cost":469,"Date":"12/4/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":87,"Cost":81,"Date":"12/7/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":39,"Cost":33,"Date":"12/18/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":763,"Cost":426,"Date":"12/20/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":928,"Cost":658,"Date":"12/20/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":732,"Cost":568,"Date":"12/21/2019"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":686,"Cost":511,"Date":"1/9/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":300,"Cost":273,"Date":"2/5/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":636,"Cost":530,"Date":"2/16/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":788,"Cost":653,"Date":"2/16/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":859,"Cost":637,"Date":"2/18/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":592,"Cost":475,"Date":"2/22/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":146,"Cost":84,"Date":"2/25/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":983,"Cost":780,"Date":"3/8/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":601,"Cost":433,"Date":"4/2/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":400,"Cost":218,"Date":"4/3/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":638,"Cost":382,"Date":"4/9/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":621,"Cost":491,"Date":"4/10/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":496,"Cost":284,"Date":"4/19/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":563,"Cost":355,"Date":"5/17/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":520,"Cost":287,"Date":"5/22/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":650,"Cost":557,"Date":"6/20/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":43,"Cost":38,"Date":"7/1/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":405,"Cost":235,"Date":"7/4/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":971,"Cost":762,"Date":"7/8/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":838,"Cost":688,"Date":"7/9/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":306,"Cost":229,"Date":"7/14/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":829,"Cost":561,"Date":"7/19/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":579,"Cost":535,"Date":"8/1/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":669,"Cost":534,"Date":"8/6/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":603,"Cost":317,"Date":"8/7/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":641,"Cost":422,"Date":"8/22/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":242,"Cost":166,"Date":"8/31/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":477,"Cost":425,"Date":"9/1/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":251,"Cost":180,"Date":"9/1/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":769,"Cost":640,"Date":"9/17/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":154,"Cost":113,"Date":"9/29/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":536,"Cost":507,"Date":"11/7/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":756,"Cost":422,"Date":"11/26/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":667,"Cost":509,"Date":"11/27/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":965,"Cost":760,"Date":"12/5/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":558,"Cost":332,"Date":"12/26/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":701,"Cost":650,"Date":"12/31/2020"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":542,"Cost":481,"Date":"1/20/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":747,"Cost":505,"Date":"2/2/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":995,"Cost":934,"Date":"2/8/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":646,"Cost":491,"Date":"2/27/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":717,"Cost":362,"Date":"3/1/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":965,"Cost":682,"Date":"3/1/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":72,"Cost":67,"Date":"3/19/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":49,"Cost":25,"Date":"3/28/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":777,"Cost":556,"Date":"5/21/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":643,"Cost":424,"Date":"7/21/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":187,"Cost":94,"Date":"8/5/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":635,"Cost":400,"Date":"8/12/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":20,"Cost":15,"Date":"8/21/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":59,"Cost":55,"Date":"8/23/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":3,"Cost":3,"Date":"9/3/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":163,"Cost":97,"Date":"9/5/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":371,"Cost":250,"Date":"10/6/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":509,"Cost":435,"Date":"10/19/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":231,"Cost":121,"Date":"11/15/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":67,"Cost":42,"Date":"12/8/2021"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":280,"Cost":216,"Date":"1/8/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":706,"Cost":602,"Date":"1/14/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":758,"Cost":388,"Date":"1/19/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":769,"Cost":705,"Date":"1/28/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":371,"Cost":227,"Date":"1/31/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":315,"Cost":221,"Date":"3/27/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":648,"Cost":413,"Date":"4/20/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":374,"Cost":347,"Date":"4/24/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":30,"Cost":20,"Date":"4/28/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":448,"Cost":318,"Date":"5/15/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":185,"Cost":130,"Date":"5/16/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":419,"Cost":387,"Date":"5/18/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":443,"Cost":300,"Date":"6/2/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":796,"Cost":734,"Date":"6/3/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":810,"Cost":475,"Date":"6/5/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":632,"Cost":445,"Date":"6/7/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":360,"Cost":264,"Date":"6/14/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":845,"Cost":513,"Date":"6/20/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":979,"Cost":825,"Date":"6/24/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":504,"Cost":355,"Date":"7/4/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":685,"Cost":545,"Date":"7/9/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":382,"Cost":257,"Date":"7/12/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":527,"Cost":285,"Date":"8/14/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":83,"Cost":56,"Date":"8/16/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":476,"Cost":243,"Date":"8/23/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":593,"Cost":540,"Date":"9/2/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":190,"Cost":119,"Date":"9/3/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":908,"Cost":542,"Date":"9/16/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":683,"Cost":413,"Date":"10/4/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":994,"Cost":621,"Date":"11/1/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":221,"Cost":121,"Date":"11/2/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":287,"Cost":164,"Date":"12/17/2022"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":734,"Cost":456,"Date":"2/10/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":412,"Cost":318,"Date":"2/28/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":982,"Cost":811,"Date":"3/4/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":67,"Cost":55,"Date":"3/9/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":107,"Cost":63,"Date":"3/9/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":995,"Cost":688,"Date":"3/11/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":85,"Cost":48,"Date":"3/17/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":920,"Cost":581,"Date":"3/17/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":616,"Cost":337,"Date":"3/23/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":509,"Cost":348,"Date":"4/1/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":49,"Cost":31,"Date":"5/7/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":580,"Cost":417,"Date":"5/10/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":44,"Cost":28,"Date":"5/20/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":477,"Cost":317,"Date":"6/2/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":228,"Cost":159,"Date":"6/11/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":492,"Cost":408,"Date":"6/16/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":545,"Cost":499,"Date":"6/16/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":808,"Cost":451,"Date":"7/10/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":848,"Cost":606,"Date":"7/11/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":734,"Cost":512,"Date":"8/28/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":125,"Cost":72,"Date":"8/29/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":391,"Cost":298,"Date":"8/31/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":914,"Cost":475,"Date":"9/8/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":992,"Cost":641,"Date":"9/13/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":456,"Cost":383,"Date":"9/14/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":97,"Cost":71,"Date":"9/19/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":896,"Cost":680,"Date":"9/25/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":9,"Cost":7,"Date":"10/4/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":769,"Cost":427,"Date":"10/10/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":766,"Cost":536,"Date":"10/17/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":751,"Cost":575,"Date":"10/28/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":231,"Cost":184,"Date":"10/30/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":80,"Cost":42,"Date":"11/1/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":426,"Cost":369,"Date":"11/15/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":886,"Cost":601,"Date":"11/25/2023"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":800,"Cost":754,"Date":"1/10/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":935,"Cost":860,"Date":"1/14/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":993,"Cost":923,"Date":"1/20/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":648,"Cost":374,"Date":"2/8/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":5,"Cost":2,"Date":"2/25/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":352,"Cost":281,"Date":"3/7/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":63,"Cost":36,"Date":"3/14/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":764,"Cost":566,"Date":"3/27/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":196,"Cost":102,"Date":"4/5/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":972,"Cost":553,"Date":"4/14/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":454,"Cost":328,"Date":"5/3/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":363,"Cost":228,"Date":"5/9/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":336,"Cost":273,"Date":"5/15/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":712,"Cost":630,"Date":"5/25/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":861,"Cost":728,"Date":"5/26/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":880,"Cost":500,"Date":"5/31/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":146,"Cost":112,"Date":"7/27/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":431,"Cost":275,"Date":"9/17/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":990,"Cost":774,"Date":"10/6/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":217,"Cost":145,"Date":"10/8/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":346,"Cost":282,"Date":"10/26/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":812,"Cost":672,"Date":"11/16/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":399,"Cost":304,"Date":"11/18/2024"},{"Store":"Karrinyup Shopping Centre, Perth","Brand":"HM","Country":"Australia","Sale":783,"Cost":691,"Date":"12/1/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":588,"Cost":374,"Date":"2/9/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":587,"Cost":522,"Date":"2/11/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":826,"Cost":482,"Date":"3/10/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":471,"Cost":386,"Date":"3/16/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":337,"Cost":218,"Date":"3/18/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":426,"Cost":323,"Date":"3/20/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":604,"Cost":487,"Date":"3/26/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":409,"Cost":236,"Date":"6/2/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":59,"Cost":55,"Date":"6/10/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":548,"Cost":352,"Date":"6/16/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":986,"Cost":722,"Date":"6/25/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":145,"Cost":122,"Date":"7/19/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":143,"Cost":130,"Date":"7/21/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":320,"Cost":214,"Date":"7/25/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":109,"Cost":74,"Date":"8/4/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":679,"Cost":588,"Date":"9/2/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":507,"Cost":426,"Date":"9/4/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":566,"Cost":343,"Date":"9/19/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":970,"Cost":763,"Date":"9/29/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":122,"Cost":107,"Date":"10/2/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":853,"Cost":758,"Date":"10/15/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":670,"Cost":381,"Date":"10/30/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":445,"Cost":260,"Date":"11/9/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":256,"Cost":168,"Date":"11/23/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":13,"Cost":11,"Date":"11/30/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":868,"Cost":701,"Date":"12/8/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":263,"Cost":139,"Date":"12/11/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":944,"Cost":528,"Date":"1/15/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":561,"Cost":408,"Date":"1/24/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":131,"Cost":94,"Date":"2/3/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":845,"Cost":525,"Date":"2/4/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":552,"Cost":372,"Date":"3/9/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":900,"Cost":803,"Date":"3/12/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":455,"Cost":295,"Date":"4/19/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":673,"Cost":440,"Date":"5/3/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":421,"Cost":379,"Date":"5/4/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":521,"Cost":437,"Date":"6/8/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":217,"Cost":189,"Date":"6/26/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":611,"Cost":358,"Date":"7/4/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":76,"Cost":50,"Date":"7/13/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":569,"Cost":389,"Date":"8/8/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":201,"Cost":110,"Date":"8/26/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":211,"Cost":145,"Date":"9/2/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":199,"Cost":105,"Date":"9/29/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":741,"Cost":612,"Date":"10/12/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":680,"Cost":544,"Date":"11/2/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":701,"Cost":620,"Date":"11/4/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":908,"Cost":610,"Date":"11/7/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":176,"Cost":90,"Date":"12/1/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":574,"Cost":511,"Date":"12/4/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":568,"Cost":414,"Date":"12/7/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":824,"Cost":644,"Date":"12/18/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":819,"Cost":526,"Date":"12/20/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":369,"Cost":223,"Date":"12/20/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":265,"Cost":142,"Date":"12/21/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":305,"Cost":236,"Date":"1/9/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":603,"Cost":314,"Date":"2/5/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":90,"Cost":45,"Date":"2/16/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":702,"Cost":551,"Date":"2/16/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":102,"Cost":69,"Date":"2/18/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":635,"Cost":489,"Date":"2/22/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":554,"Cost":508,"Date":"2/25/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":320,"Cost":174,"Date":"3/8/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":900,"Cost":761,"Date":"4/2/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":961,"Cost":747,"Date":"4/3/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":379,"Cost":313,"Date":"4/9/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":803,"Cost":702,"Date":"4/10/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":743,"Cost":692,"Date":"4/19/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":164,"Cost":112,"Date":"5/17/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":697,"Cost":353,"Date":"5/22/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":65,"Cost":51,"Date":"6/20/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":748,"Cost":386,"Date":"7/1/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":9,"Cost":6,"Date":"7/4/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":667,"Cost":526,"Date":"7/8/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":240,"Cost":194,"Date":"7/9/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":172,"Cost":106,"Date":"7/14/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":884,"Cost":524,"Date":"7/19/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":33,"Cost":17,"Date":"8/1/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":850,"Cost":698,"Date":"8/6/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":253,"Cost":175,"Date":"8/7/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":553,"Cost":480,"Date":"8/22/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":922,"Cost":741,"Date":"8/31/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":763,"Cost":574,"Date":"9/1/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":125,"Cost":103,"Date":"9/1/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":208,"Cost":151,"Date":"9/17/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":764,"Cost":546,"Date":"9/29/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":295,"Cost":173,"Date":"11/7/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":935,"Cost":639,"Date":"11/26/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":954,"Cost":769,"Date":"11/27/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":619,"Cost":583,"Date":"12/5/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":460,"Cost":296,"Date":"12/26/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":421,"Cost":221,"Date":"12/31/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":301,"Cost":211,"Date":"1/20/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":131,"Cost":66,"Date":"2/2/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":126,"Cost":86,"Date":"2/8/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":963,"Cost":556,"Date":"2/27/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":10,"Cost":9,"Date":"3/1/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":276,"Cost":159,"Date":"3/1/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":673,"Cost":351,"Date":"3/19/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":726,"Cost":633,"Date":"3/28/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":296,"Cost":256,"Date":"5/21/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":89,"Cost":58,"Date":"7/21/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":683,"Cost":356,"Date":"8/5/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":554,"Cost":502,"Date":"8/12/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":410,"Cost":304,"Date":"8/21/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":494,"Cost":329,"Date":"8/23/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":400,"Cost":282,"Date":"9/3/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":521,"Cost":388,"Date":"9/5/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":171,"Cost":127,"Date":"10/6/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":662,"Cost":521,"Date":"10/19/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":305,"Cost":213,"Date":"11/15/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":609,"Cost":542,"Date":"12/8/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":129,"Cost":65,"Date":"1/8/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":754,"Cost":687,"Date":"1/14/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":510,"Cost":364,"Date":"1/19/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":488,"Cost":278,"Date":"1/28/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":748,"Cost":398,"Date":"1/31/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":186,"Cost":94,"Date":"3/27/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":974,"Cost":843,"Date":"4/20/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":300,"Cost":282,"Date":"4/24/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":803,"Cost":657,"Date":"4/28/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":748,"Cost":583,"Date":"5/15/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":719,"Cost":441,"Date":"5/16/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":377,"Cost":204,"Date":"5/18/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":36,"Cost":28,"Date":"6/2/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":969,"Cost":838,"Date":"6/3/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":937,"Cost":505,"Date":"6/5/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":602,"Cost":407,"Date":"6/7/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":178,"Cost":118,"Date":"6/14/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":417,"Cost":343,"Date":"6/20/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":846,"Cost":723,"Date":"6/24/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":733,"Cost":373,"Date":"7/4/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":887,"Cost":767,"Date":"7/9/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":163,"Cost":83,"Date":"7/12/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":375,"Cost":217,"Date":"8/14/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":502,"Cost":379,"Date":"8/16/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":333,"Cost":246,"Date":"8/23/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":943,"Cost":565,"Date":"9/2/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":967,"Cost":682,"Date":"9/3/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":181,"Cost":99,"Date":"9/16/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":514,"Cost":444,"Date":"10/4/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":341,"Cost":243,"Date":"11/1/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":517,"Cost":420,"Date":"11/2/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":51,"Cost":26,"Date":"12/17/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":262,"Cost":190,"Date":"2/10/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":46,"Cost":24,"Date":"2/28/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":623,"Cost":412,"Date":"3/4/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":754,"Cost":597,"Date":"3/9/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":385,"Cost":232,"Date":"3/9/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":674,"Cost":522,"Date":"3/11/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":994,"Cost":649,"Date":"3/17/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":989,"Cost":608,"Date":"3/17/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":911,"Cost":514,"Date":"3/23/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":128,"Cost":74,"Date":"4/1/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":192,"Cost":96,"Date":"5/7/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":922,"Cost":705,"Date":"5/10/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":161,"Cost":113,"Date":"5/20/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":99,"Cost":53,"Date":"6/2/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":244,"Cost":173,"Date":"6/11/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":448,"Cost":298,"Date":"6/16/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":984,"Cost":612,"Date":"6/16/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":401,"Cost":297,"Date":"7/10/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":508,"Cost":398,"Date":"7/11/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":276,"Cost":172,"Date":"8/28/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":256,"Cost":174,"Date":"8/29/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":387,"Cost":304,"Date":"8/31/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":803,"Cost":432,"Date":"9/8/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":819,"Cost":692,"Date":"9/13/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":136,"Cost":128,"Date":"9/14/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":355,"Cost":275,"Date":"9/19/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":525,"Cost":373,"Date":"9/25/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":577,"Cost":393,"Date":"10/4/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":497,"Cost":417,"Date":"10/10/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":924,"Cost":484,"Date":"10/17/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":792,"Cost":412,"Date":"10/28/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":620,"Cost":333,"Date":"10/30/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":312,"Cost":255,"Date":"11/1/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":358,"Cost":208,"Date":"11/15/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":351,"Cost":202,"Date":"11/25/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":746,"Cost":507,"Date":"1/10/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":3,"Cost":3,"Date":"1/14/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":597,"Cost":309,"Date":"1/20/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":113,"Cost":79,"Date":"2/8/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":280,"Cost":259,"Date":"2/25/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":347,"Cost":293,"Date":"3/7/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":138,"Cost":110,"Date":"3/14/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":146,"Cost":127,"Date":"3/27/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":550,"Cost":428,"Date":"4/5/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":865,"Cost":495,"Date":"4/14/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":486,"Cost":255,"Date":"5/3/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":358,"Cost":250,"Date":"5/9/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":370,"Cost":261,"Date":"5/15/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":833,"Cost":583,"Date":"5/25/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":864,"Cost":714,"Date":"5/26/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":419,"Cost":248,"Date":"5/31/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":98,"Cost":75,"Date":"7/27/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":272,"Cost":254,"Date":"9/17/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":11,"Cost":6,"Date":"10/6/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":794,"Cost":536,"Date":"10/8/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":576,"Cost":401,"Date":"10/26/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":371,"Cost":319,"Date":"11/16/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":926,"Cost":835,"Date":"11/18/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":938,"Cost":594,"Date":"12/1/2024"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":421,"Cost":287,"Date":"2/9/2018"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":922,"Cost":848,"Date":"2/11/2018"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":890,"Cost":480,"Date":"3/10/2018"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":911,"Cost":569,"Date":"3/16/2018"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":27,"Cost":13,"Date":"3/18/2018"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":455,"Cost":406,"Date":"3/20/2018"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":607,"Cost":550,"Date":"3/26/2018"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":95,"Cost":68,"Date":"6/2/2018"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":825,"Cost":754,"Date":"6/10/2018"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":358,"Cost":308,"Date":"6/16/2018"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":618,"Cost":372,"Date":"6/25/2018"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":447,"Cost":410,"Date":"7/19/2018"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":165,"Cost":87,"Date":"7/21/2018"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":62,"Cost":40,"Date":"7/25/2018"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":316,"Cost":215,"Date":"8/4/2018"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":811,"Cost":405,"Date":"9/2/2018"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":715,"Cost":515,"Date":"9/4/2018"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":609,"Cost":534,"Date":"9/19/2018"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":788,"Cost":428,"Date":"9/29/2018"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":124,"Cost":86,"Date":"10/2/2018"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":33,"Cost":21,"Date":"10/15/2018"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":717,"Cost":616,"Date":"10/30/2018"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":393,"Cost":233,"Date":"11/9/2018"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":941,"Cost":687,"Date":"11/23/2018"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":247,"Cost":189,"Date":"11/30/2018"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":783,"Cost":528,"Date":"12/8/2018"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":866,"Cost":488,"Date":"12/11/2018"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":680,"Cost":557,"Date":"1/15/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":910,"Cost":837,"Date":"1/24/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":317,"Cost":163,"Date":"2/3/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":735,"Cost":476,"Date":"2/4/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":271,"Cost":242,"Date":"3/9/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":643,"Cost":550,"Date":"3/12/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":617,"Cost":489,"Date":"4/19/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":918,"Cost":682,"Date":"5/3/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":918,"Cost":742,"Date":"5/4/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":967,"Cost":854,"Date":"6/8/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":576,"Cost":345,"Date":"6/26/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":185,"Cost":130,"Date":"7/4/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":321,"Cost":234,"Date":"7/13/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":404,"Cost":336,"Date":"8/8/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":474,"Cost":266,"Date":"8/26/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":566,"Cost":437,"Date":"9/2/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":516,"Cost":258,"Date":"9/29/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":910,"Cost":549,"Date":"10/12/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":571,"Cost":382,"Date":"11/2/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":100,"Cost":54,"Date":"11/4/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":757,"Cost":473,"Date":"11/7/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":128,"Cost":77,"Date":"12/1/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":688,"Cost":651,"Date":"12/4/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":899,"Cost":788,"Date":"12/7/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":326,"Cost":293,"Date":"12/18/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":233,"Cost":123,"Date":"12/20/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":202,"Cost":165,"Date":"12/20/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":87,"Cost":81,"Date":"12/21/2019"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":220,"Cost":138,"Date":"1/9/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":254,"Cost":176,"Date":"2/5/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":880,"Cost":801,"Date":"2/16/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":160,"Cost":82,"Date":"2/16/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":870,"Cost":551,"Date":"2/18/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":311,"Cost":260,"Date":"2/22/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":20,"Cost":14,"Date":"2/25/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":389,"Cost":279,"Date":"3/8/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":100,"Cost":85,"Date":"4/2/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":385,"Cost":343,"Date":"4/3/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":284,"Cost":193,"Date":"4/9/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":557,"Cost":367,"Date":"4/10/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":739,"Cost":529,"Date":"4/19/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":465,"Cost":318,"Date":"5/17/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":178,"Cost":124,"Date":"5/22/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":887,"Cost":544,"Date":"6/20/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":667,"Cost":530,"Date":"7/1/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":722,"Cost":625,"Date":"7/4/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":86,"Cost":70,"Date":"7/8/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":145,"Cost":87,"Date":"7/9/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":189,"Cost":153,"Date":"7/14/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":329,"Cost":291,"Date":"7/19/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":80,"Cost":73,"Date":"8/1/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":800,"Cost":556,"Date":"8/6/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":69,"Cost":49,"Date":"8/7/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":376,"Cost":198,"Date":"8/22/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":147,"Cost":139,"Date":"8/31/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":397,"Cost":212,"Date":"9/1/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":91,"Cost":52,"Date":"9/1/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":349,"Cost":189,"Date":"9/17/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":741,"Cost":688,"Date":"9/29/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":98,"Cost":67,"Date":"11/7/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":757,"Cost":550,"Date":"11/26/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":122,"Cost":86,"Date":"11/27/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":556,"Cost":460,"Date":"12/5/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":521,"Cost":488,"Date":"12/26/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":788,"Cost":396,"Date":"12/31/2020"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":381,"Cost":230,"Date":"1/20/2021"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":864,"Cost":613,"Date":"2/2/2021"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":560,"Cost":290,"Date":"2/8/2021"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":210,"Cost":105,"Date":"2/27/2021"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":617,"Cost":558,"Date":"3/1/2021"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":908,"Cost":770,"Date":"3/1/2021"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":229,"Cost":170,"Date":"3/19/2021"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":558,"Cost":283,"Date":"3/28/2021"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":549,"Cost":301,"Date":"5/21/2021"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":202,"Cost":163,"Date":"7/21/2021"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":74,"Cost":39,"Date":"8/5/2021"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":569,"Cost":476,"Date":"8/12/2021"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":256,"Cost":235,"Date":"8/21/2021"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":937,"Cost":785,"Date":"8/23/2021"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":372,"Cost":302,"Date":"9/3/2021"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":820,"Cost":502,"Date":"9/5/2021"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":257,"Cost":132,"Date":"10/6/2021"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":553,"Cost":455,"Date":"10/19/2021"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":579,"Cost":460,"Date":"11/15/2021"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":641,"Cost":501,"Date":"12/8/2021"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":306,"Cost":254,"Date":"1/8/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":576,"Cost":476,"Date":"1/14/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":777,"Cost":588,"Date":"1/19/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":573,"Cost":528,"Date":"1/28/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":189,"Cost":95,"Date":"1/31/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":734,"Cost":615,"Date":"3/27/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":226,"Cost":113,"Date":"4/20/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":74,"Cost":42,"Date":"4/24/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":994,"Cost":743,"Date":"4/28/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":457,"Cost":290,"Date":"5/15/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":53,"Cost":46,"Date":"5/16/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":131,"Cost":87,"Date":"5/18/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":10,"Cost":7,"Date":"6/2/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":411,"Cost":272,"Date":"6/3/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":509,"Cost":478,"Date":"6/5/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":839,"Cost":549,"Date":"6/7/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":762,"Cost":666,"Date":"6/14/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":158,"Cost":83,"Date":"6/20/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":111,"Cost":105,"Date":"6/24/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":236,"Cost":152,"Date":"7/4/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":338,"Cost":218,"Date":"7/9/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":525,"Cost":464,"Date":"7/12/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":130,"Cost":76,"Date":"8/14/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":913,"Cost":818,"Date":"8/16/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":786,"Cost":426,"Date":"8/23/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":24,"Cost":14,"Date":"9/2/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":236,"Cost":188,"Date":"9/3/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":233,"Cost":195,"Date":"9/16/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":136,"Cost":80,"Date":"10/4/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":212,"Cost":176,"Date":"11/1/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":329,"Cost":265,"Date":"11/2/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":181,"Cost":121,"Date":"12/17/2022"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":532,"Cost":386,"Date":"2/10/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":616,"Cost":352,"Date":"2/28/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":563,"Cost":313,"Date":"3/4/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":826,"Cost":469,"Date":"3/9/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":736,"Cost":678,"Date":"3/9/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":545,"Cost":449,"Date":"3/11/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":214,"Cost":187,"Date":"3/17/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":723,"Cost":623,"Date":"3/17/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":42,"Cost":37,"Date":"3/23/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":530,"Cost":336,"Date":"4/1/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":689,"Cost":505,"Date":"5/7/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":546,"Cost":280,"Date":"5/10/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":626,"Cost":504,"Date":"5/20/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":737,"Cost":374,"Date":"6/2/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":763,"Cost":439,"Date":"6/11/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":707,"Cost":459,"Date":"6/16/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":875,"Cost":776,"Date":"6/16/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":999,"Cost":897,"Date":"7/10/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":718,"Cost":613,"Date":"7/11/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":814,"Cost":487,"Date":"8/28/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":452,"Cost":328,"Date":"8/29/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":55,"Cost":29,"Date":"8/31/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":281,"Cost":250,"Date":"9/8/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":502,"Cost":429,"Date":"9/13/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":906,"Cost":483,"Date":"9/14/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":882,"Cost":773,"Date":"9/19/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":906,"Cost":484,"Date":"9/25/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":562,"Cost":384,"Date":"10/4/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":854,"Cost":479,"Date":"10/10/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":825,"Cost":728,"Date":"10/17/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":553,"Cost":410,"Date":"10/28/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":683,"Cost":354,"Date":"10/30/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":460,"Cost":244,"Date":"11/1/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":758,"Cost":619,"Date":"11/15/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":187,"Cost":110,"Date":"11/25/2023"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":692,"Cost":360,"Date":"1/10/2024"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":342,"Cost":310,"Date":"1/14/2024"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":653,"Cost":610,"Date":"1/20/2024"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":360,"Cost":319,"Date":"2/8/2024"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":405,"Cost":260,"Date":"2/25/2024"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":626,"Cost":388,"Date":"3/7/2024"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":485,"Cost":456,"Date":"3/14/2024"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":103,"Cost":65,"Date":"3/27/2024"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":714,"Cost":623,"Date":"4/5/2024"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":164,"Cost":98,"Date":"4/14/2024"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":877,"Cost":779,"Date":"5/3/2024"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":949,"Cost":642,"Date":"5/9/2024"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":501,"Cost":416,"Date":"5/15/2024"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":302,"Cost":156,"Date":"5/25/2024"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":359,"Cost":324,"Date":"5/26/2024"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":328,"Cost":302,"Date":"5/31/2024"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":311,"Cost":183,"Date":"7/27/2024"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":891,"Cost":550,"Date":"9/17/2024"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":408,"Cost":239,"Date":"10/6/2024"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":111,"Cost":84,"Date":"10/8/2024"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":883,"Cost":540,"Date":"10/26/2024"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":691,"Cost":431,"Date":"11/16/2024"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":273,"Cost":165,"Date":"11/18/2024"},{"Store":"Murray Street Mall, Perth","Brand":"HM","Country":"Australia","Sale":944,"Cost":651,"Date":"12/1/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":433,"Cost":292,"Date":"2/9/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":270,"Cost":159,"Date":"2/11/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":599,"Cost":533,"Date":"3/10/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":80,"Cost":71,"Date":"3/16/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":32,"Cost":23,"Date":"3/18/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":2,"Cost":2,"Date":"3/20/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":110,"Cost":77,"Date":"3/26/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":576,"Cost":490,"Date":"6/2/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":462,"Cost":435,"Date":"6/10/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":77,"Cost":70,"Date":"6/16/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":469,"Cost":437,"Date":"6/25/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":526,"Cost":370,"Date":"7/19/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":86,"Cost":65,"Date":"7/21/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":712,"Cost":467,"Date":"7/25/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":428,"Cost":219,"Date":"8/4/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":556,"Cost":441,"Date":"9/2/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":860,"Cost":793,"Date":"9/4/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":842,"Cost":661,"Date":"9/19/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":167,"Cost":99,"Date":"9/29/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":503,"Cost":463,"Date":"10/2/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":604,"Cost":458,"Date":"10/15/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":821,"Cost":426,"Date":"10/30/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":174,"Cost":137,"Date":"11/9/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":861,"Cost":815,"Date":"11/23/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":694,"Cost":539,"Date":"11/30/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":587,"Cost":433,"Date":"12/8/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":579,"Cost":521,"Date":"12/11/2018"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":712,"Cost":575,"Date":"1/15/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":244,"Cost":201,"Date":"1/24/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":986,"Cost":787,"Date":"2/3/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":817,"Cost":700,"Date":"2/4/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":838,"Cost":747,"Date":"3/9/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":62,"Cost":50,"Date":"3/12/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":789,"Cost":744,"Date":"4/19/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":717,"Cost":448,"Date":"5/3/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":596,"Cost":489,"Date":"5/4/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":690,"Cost":625,"Date":"6/8/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":666,"Cost":507,"Date":"6/26/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":547,"Cost":284,"Date":"7/4/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":278,"Cost":257,"Date":"7/13/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":446,"Cost":256,"Date":"8/8/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":90,"Cost":83,"Date":"8/26/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":229,"Cost":119,"Date":"9/2/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":813,"Cost":528,"Date":"9/29/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":715,"Cost":455,"Date":"10/12/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":949,"Cost":886,"Date":"11/2/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":311,"Cost":267,"Date":"11/4/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":355,"Cost":200,"Date":"11/7/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":580,"Cost":428,"Date":"12/1/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":405,"Cost":281,"Date":"12/4/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":914,"Cost":862,"Date":"12/7/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":700,"Cost":506,"Date":"12/18/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":876,"Cost":674,"Date":"12/20/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":269,"Cost":194,"Date":"12/20/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":251,"Cost":155,"Date":"12/21/2019"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":584,"Cost":330,"Date":"1/9/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":645,"Cost":428,"Date":"2/5/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":640,"Cost":446,"Date":"2/16/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":168,"Cost":149,"Date":"2/16/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":812,"Cost":504,"Date":"2/18/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":156,"Cost":128,"Date":"2/22/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":490,"Cost":382,"Date":"2/25/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":749,"Cost":541,"Date":"3/8/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":913,"Cost":851,"Date":"4/2/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":193,"Cost":161,"Date":"4/3/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":12,"Cost":9,"Date":"4/9/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":183,"Cost":154,"Date":"4/10/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":974,"Cost":891,"Date":"4/19/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":311,"Cost":181,"Date":"5/17/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":1000,"Cost":571,"Date":"5/22/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":667,"Cost":554,"Date":"6/20/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":811,"Cost":733,"Date":"7/1/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":327,"Cost":191,"Date":"7/4/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":246,"Cost":233,"Date":"7/8/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":633,"Cost":583,"Date":"7/9/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":688,"Cost":566,"Date":"7/14/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":559,"Cost":385,"Date":"7/19/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":632,"Cost":448,"Date":"8/1/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":554,"Cost":445,"Date":"8/6/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":42,"Cost":37,"Date":"8/7/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":862,"Cost":650,"Date":"8/22/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":162,"Cost":85,"Date":"8/31/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":926,"Cost":650,"Date":"9/1/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":280,"Cost":161,"Date":"9/1/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":72,"Cost":62,"Date":"9/17/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":342,"Cost":298,"Date":"9/29/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":583,"Cost":300,"Date":"11/7/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":406,"Cost":311,"Date":"11/26/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":522,"Cost":412,"Date":"11/27/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":361,"Cost":310,"Date":"12/5/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":820,"Cost":620,"Date":"12/26/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":627,"Cost":359,"Date":"12/31/2020"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":388,"Cost":199,"Date":"1/20/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":469,"Cost":238,"Date":"2/2/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":222,"Cost":140,"Date":"2/8/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":263,"Cost":198,"Date":"2/27/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":275,"Cost":255,"Date":"3/1/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":483,"Cost":308,"Date":"3/1/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":275,"Cost":207,"Date":"3/19/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":582,"Cost":314,"Date":"3/28/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":811,"Cost":623,"Date":"5/21/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":549,"Cost":468,"Date":"7/21/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":720,"Cost":668,"Date":"8/5/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":31,"Cost":16,"Date":"8/12/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":937,"Cost":756,"Date":"8/21/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":170,"Cost":109,"Date":"8/23/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":900,"Cost":788,"Date":"9/3/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":578,"Cost":492,"Date":"9/5/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":460,"Cost":230,"Date":"10/6/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":986,"Cost":830,"Date":"10/19/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":322,"Cost":212,"Date":"11/15/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":826,"Cost":741,"Date":"12/8/2021"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":785,"Cost":655,"Date":"1/8/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":679,"Cost":528,"Date":"1/14/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":516,"Cost":417,"Date":"1/19/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":361,"Cost":245,"Date":"1/28/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":725,"Cost":566,"Date":"1/31/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":281,"Cost":161,"Date":"3/27/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":368,"Cost":235,"Date":"4/20/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":792,"Cost":633,"Date":"4/24/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":816,"Cost":541,"Date":"4/28/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":44,"Cost":25,"Date":"5/15/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":398,"Cost":206,"Date":"5/16/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":709,"Cost":392,"Date":"5/18/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":424,"Cost":298,"Date":"6/2/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":145,"Cost":102,"Date":"6/3/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":732,"Cost":602,"Date":"6/5/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":839,"Cost":754,"Date":"6/7/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":991,"Cost":813,"Date":"6/14/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":49,"Cost":44,"Date":"6/20/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":834,"Cost":736,"Date":"6/24/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":14,"Cost":14,"Date":"7/4/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":943,"Cost":560,"Date":"7/9/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":206,"Cost":113,"Date":"7/12/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":610,"Cost":444,"Date":"8/14/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":626,"Cost":362,"Date":"8/16/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":829,"Cost":563,"Date":"8/23/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":826,"Cost":686,"Date":"9/2/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":90,"Cost":71,"Date":"9/3/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":829,"Cost":754,"Date":"9/16/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":351,"Cost":302,"Date":"10/4/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":807,"Cost":630,"Date":"11/1/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":703,"Cost":358,"Date":"11/2/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":156,"Cost":80,"Date":"12/17/2022"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":552,"Cost":439,"Date":"2/10/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":378,"Cost":330,"Date":"2/28/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":16,"Cost":9,"Date":"3/4/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":608,"Cost":410,"Date":"3/9/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":935,"Cost":671,"Date":"3/9/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":497,"Cost":249,"Date":"3/11/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":352,"Cost":326,"Date":"3/17/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":228,"Cost":210,"Date":"3/17/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":616,"Cost":323,"Date":"3/23/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":897,"Cost":847,"Date":"4/1/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":938,"Cost":883,"Date":"5/7/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":812,"Cost":662,"Date":"5/10/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":109,"Cost":72,"Date":"5/20/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":38,"Cost":26,"Date":"6/2/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":438,"Cost":416,"Date":"6/11/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":939,"Cost":648,"Date":"6/16/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":990,"Cost":927,"Date":"6/16/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":552,"Cost":470,"Date":"7/10/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":456,"Cost":313,"Date":"7/11/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":531,"Cost":484,"Date":"8/28/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":680,"Cost":343,"Date":"8/29/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":395,"Cost":328,"Date":"8/31/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":136,"Cost":116,"Date":"9/8/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":799,"Cost":453,"Date":"9/13/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":580,"Cost":373,"Date":"9/14/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":890,"Cost":783,"Date":"9/19/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":218,"Cost":185,"Date":"9/25/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":397,"Cost":261,"Date":"10/4/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":506,"Cost":375,"Date":"10/10/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":642,"Cost":441,"Date":"10/17/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":430,"Cost":296,"Date":"10/28/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":925,"Cost":647,"Date":"10/30/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":674,"Cost":519,"Date":"11/1/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":707,"Cost":579,"Date":"11/15/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":59,"Cost":54,"Date":"11/25/2023"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":518,"Cost":459,"Date":"1/10/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":778,"Cost":510,"Date":"1/14/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":213,"Cost":178,"Date":"1/20/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":570,"Cost":379,"Date":"2/8/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":159,"Cost":93,"Date":"2/25/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":69,"Cost":66,"Date":"3/7/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":859,"Cost":450,"Date":"3/14/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":611,"Cost":391,"Date":"3/27/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":689,"Cost":443,"Date":"4/5/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":257,"Cost":184,"Date":"4/14/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":627,"Cost":532,"Date":"5/3/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":541,"Cost":473,"Date":"5/9/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":671,"Cost":560,"Date":"5/15/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":875,"Cost":767,"Date":"5/25/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":781,"Cost":649,"Date":"5/26/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":469,"Cost":359,"Date":"5/31/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":733,"Cost":586,"Date":"7/27/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":775,"Cost":736,"Date":"9/17/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":294,"Cost":162,"Date":"10/6/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":924,"Cost":611,"Date":"10/8/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":272,"Cost":248,"Date":"10/26/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":373,"Cost":290,"Date":"11/16/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":104,"Cost":84,"Date":"11/18/2024"},{"Store":"Murray Street Mall, Perth","Brand":"Nova","Country":"Australia","Sale":398,"Cost":307,"Date":"12/1/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":241,"Cost":141,"Date":"2/9/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":351,"Cost":213,"Date":"2/11/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":584,"Cost":544,"Date":"3/10/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":509,"Cost":386,"Date":"3/16/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":409,"Cost":277,"Date":"3/18/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":591,"Cost":523,"Date":"3/20/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":959,"Cost":802,"Date":"3/26/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":167,"Cost":99,"Date":"6/2/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":781,"Cost":687,"Date":"6/10/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":517,"Cost":341,"Date":"6/16/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":325,"Cost":256,"Date":"6/25/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":19,"Cost":12,"Date":"7/19/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":896,"Cost":640,"Date":"7/21/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":872,"Cost":692,"Date":"7/25/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":4,"Cost":2,"Date":"8/4/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":409,"Cost":295,"Date":"9/2/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":225,"Cost":114,"Date":"9/4/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":886,"Cost":671,"Date":"9/19/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":795,"Cost":668,"Date":"9/29/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":441,"Cost":337,"Date":"10/2/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":799,"Cost":432,"Date":"10/15/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":190,"Cost":156,"Date":"10/30/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":753,"Cost":544,"Date":"11/9/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":276,"Cost":234,"Date":"11/23/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":898,"Cost":833,"Date":"11/30/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":144,"Cost":110,"Date":"12/8/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":967,"Cost":635,"Date":"12/11/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":153,"Cost":102,"Date":"1/15/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":66,"Cost":36,"Date":"1/24/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":883,"Cost":711,"Date":"2/3/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":521,"Cost":365,"Date":"2/4/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":781,"Cost":679,"Date":"3/9/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":927,"Cost":512,"Date":"3/12/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":825,"Cost":608,"Date":"4/19/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":336,"Cost":284,"Date":"5/3/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":219,"Cost":195,"Date":"5/4/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":239,"Cost":176,"Date":"6/8/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":930,"Cost":687,"Date":"6/26/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":749,"Cost":554,"Date":"7/4/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":650,"Cost":379,"Date":"7/13/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":380,"Cost":244,"Date":"8/8/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":574,"Cost":293,"Date":"8/26/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":283,"Cost":157,"Date":"9/2/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":506,"Cost":316,"Date":"9/29/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":286,"Cost":144,"Date":"10/12/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":309,"Cost":293,"Date":"11/2/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":172,"Cost":162,"Date":"11/4/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":765,"Cost":569,"Date":"11/7/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":423,"Cost":309,"Date":"12/1/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":168,"Cost":100,"Date":"12/4/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":284,"Cost":192,"Date":"12/7/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":892,"Cost":709,"Date":"12/18/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":286,"Cost":193,"Date":"12/20/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":37,"Cost":27,"Date":"12/20/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":282,"Cost":159,"Date":"12/21/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":490,"Cost":252,"Date":"1/9/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":749,"Cost":664,"Date":"2/5/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":40,"Cost":29,"Date":"2/16/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":122,"Cost":113,"Date":"2/16/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":403,"Cost":216,"Date":"2/18/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":405,"Cost":322,"Date":"2/22/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":181,"Cost":165,"Date":"2/25/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":184,"Cost":101,"Date":"3/8/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":363,"Cost":330,"Date":"4/2/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":746,"Cost":444,"Date":"4/3/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":433,"Cost":356,"Date":"4/9/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":155,"Cost":99,"Date":"4/10/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":958,"Cost":874,"Date":"4/19/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":567,"Cost":353,"Date":"5/17/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":686,"Cost":618,"Date":"5/22/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":790,"Cost":750,"Date":"6/20/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":778,"Cost":561,"Date":"7/1/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":326,"Cost":236,"Date":"7/4/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":212,"Cost":147,"Date":"7/8/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":203,"Cost":169,"Date":"7/9/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":240,"Cost":198,"Date":"7/14/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":886,"Cost":808,"Date":"7/19/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":60,"Cost":57,"Date":"8/1/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":517,"Cost":441,"Date":"8/6/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":416,"Cost":293,"Date":"8/7/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":26,"Cost":20,"Date":"8/22/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":974,"Cost":803,"Date":"8/31/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":153,"Cost":87,"Date":"9/1/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":939,"Cost":628,"Date":"9/1/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":819,"Cost":754,"Date":"9/17/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":953,"Cost":872,"Date":"9/29/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":123,"Cost":85,"Date":"11/7/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":741,"Cost":453,"Date":"11/26/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":166,"Cost":83,"Date":"11/27/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":586,"Cost":298,"Date":"12/5/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":578,"Cost":485,"Date":"12/26/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":966,"Cost":501,"Date":"12/31/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":916,"Cost":576,"Date":"1/20/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":640,"Cost":505,"Date":"2/2/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":676,"Cost":474,"Date":"2/8/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":192,"Cost":141,"Date":"2/27/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":90,"Cost":82,"Date":"3/1/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":930,"Cost":752,"Date":"3/1/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":110,"Cost":74,"Date":"3/19/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":792,"Cost":562,"Date":"3/28/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":955,"Cost":752,"Date":"5/21/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":55,"Cost":51,"Date":"7/21/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":113,"Cost":72,"Date":"8/5/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":753,"Cost":513,"Date":"8/12/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":390,"Cost":331,"Date":"8/21/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":736,"Cost":680,"Date":"8/23/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":942,"Cost":475,"Date":"9/3/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":667,"Cost":344,"Date":"9/5/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":617,"Cost":500,"Date":"10/6/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":872,"Cost":803,"Date":"10/19/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":690,"Cost":449,"Date":"11/15/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":81,"Cost":53,"Date":"12/8/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":602,"Cost":489,"Date":"1/8/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":411,"Cost":335,"Date":"1/14/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":616,"Cost":533,"Date":"1/19/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":384,"Cost":236,"Date":"1/28/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":952,"Cost":861,"Date":"1/31/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":692,"Cost":611,"Date":"3/27/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":664,"Cost":486,"Date":"4/20/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":861,"Cost":633,"Date":"4/24/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":364,"Cost":215,"Date":"4/28/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":703,"Cost":630,"Date":"5/15/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":213,"Cost":195,"Date":"5/16/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":931,"Cost":566,"Date":"5/18/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":961,"Cost":792,"Date":"6/2/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":427,"Cost":259,"Date":"6/3/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":848,"Cost":677,"Date":"6/5/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":824,"Cost":583,"Date":"6/7/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":681,"Cost":359,"Date":"6/14/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":848,"Cost":511,"Date":"6/20/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":621,"Cost":385,"Date":"6/24/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":170,"Cost":140,"Date":"7/4/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":534,"Cost":305,"Date":"7/9/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":806,"Cost":729,"Date":"7/12/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":595,"Cost":315,"Date":"8/14/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":424,"Cost":221,"Date":"8/16/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":920,"Cost":489,"Date":"8/23/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":54,"Cost":33,"Date":"9/2/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":423,"Cost":247,"Date":"9/3/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":657,"Cost":607,"Date":"9/16/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":950,"Cost":638,"Date":"10/4/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":90,"Cost":46,"Date":"11/1/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":555,"Cost":402,"Date":"11/2/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":145,"Cost":102,"Date":"12/17/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":476,"Cost":344,"Date":"2/10/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":914,"Cost":589,"Date":"2/28/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":882,"Cost":526,"Date":"3/4/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":709,"Cost":424,"Date":"3/9/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":762,"Cost":691,"Date":"3/9/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":743,"Cost":617,"Date":"3/11/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":209,"Cost":190,"Date":"3/17/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":832,"Cost":616,"Date":"3/17/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":987,"Cost":924,"Date":"3/23/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":879,"Cost":487,"Date":"4/1/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":188,"Cost":164,"Date":"5/7/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":34,"Cost":24,"Date":"5/10/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":606,"Cost":432,"Date":"5/20/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":288,"Cost":237,"Date":"6/2/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":678,"Cost":354,"Date":"6/11/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":304,"Cost":211,"Date":"6/16/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":249,"Cost":176,"Date":"6/16/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":585,"Cost":420,"Date":"7/10/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":679,"Cost":623,"Date":"7/11/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":491,"Cost":319,"Date":"8/28/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":760,"Cost":397,"Date":"8/29/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":309,"Cost":169,"Date":"8/31/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":480,"Cost":249,"Date":"9/8/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":714,"Cost":663,"Date":"9/13/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":610,"Cost":547,"Date":"9/14/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":351,"Cost":229,"Date":"9/19/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":559,"Cost":295,"Date":"9/25/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":469,"Cost":290,"Date":"10/4/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":850,"Cost":767,"Date":"10/10/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":811,"Cost":552,"Date":"10/17/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":370,"Cost":348,"Date":"10/28/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":573,"Cost":543,"Date":"10/30/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":828,"Cost":496,"Date":"11/1/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":276,"Cost":176,"Date":"11/15/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":428,"Cost":226,"Date":"11/25/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":958,"Cost":662,"Date":"1/10/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":197,"Cost":172,"Date":"1/14/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":212,"Cost":120,"Date":"1/20/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":604,"Cost":339,"Date":"2/8/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":145,"Cost":95,"Date":"2/25/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":456,"Cost":260,"Date":"3/7/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":99,"Cost":92,"Date":"3/14/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":856,"Cost":697,"Date":"3/27/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":242,"Cost":129,"Date":"4/5/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":664,"Cost":460,"Date":"4/14/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":31,"Cost":28,"Date":"5/3/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":741,"Cost":391,"Date":"5/9/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":646,"Cost":594,"Date":"5/15/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":466,"Cost":315,"Date":"5/25/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":400,"Cost":233,"Date":"5/26/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":532,"Cost":288,"Date":"5/31/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":317,"Cost":187,"Date":"7/27/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":89,"Cost":54,"Date":"9/17/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":608,"Cost":570,"Date":"10/6/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":789,"Cost":598,"Date":"10/8/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":900,"Cost":845,"Date":"10/26/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":922,"Cost":680,"Date":"11/16/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":722,"Cost":613,"Date":"11/18/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"ARKET","Country":"Australia","Sale":400,"Cost":312,"Date":"12/1/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":499,"Cost":316,"Date":"2/9/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":629,"Cost":480,"Date":"2/11/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":240,"Cost":203,"Date":"3/10/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":748,"Cost":605,"Date":"3/16/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":812,"Cost":772,"Date":"3/18/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":310,"Cost":187,"Date":"3/20/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":756,"Cost":383,"Date":"3/26/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":464,"Cost":263,"Date":"6/2/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":472,"Cost":303,"Date":"6/10/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":904,"Cost":472,"Date":"6/16/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":542,"Cost":335,"Date":"6/25/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":609,"Cost":470,"Date":"7/19/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":981,"Cost":507,"Date":"7/21/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":837,"Cost":532,"Date":"7/25/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":930,"Cost":619,"Date":"8/4/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":726,"Cost":453,"Date":"9/2/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":396,"Cost":207,"Date":"9/4/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":994,"Cost":905,"Date":"9/19/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":257,"Cost":199,"Date":"9/29/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":710,"Cost":498,"Date":"10/2/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":131,"Cost":100,"Date":"10/15/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":635,"Cost":374,"Date":"10/30/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":672,"Cost":529,"Date":"11/9/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":839,"Cost":497,"Date":"11/23/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":202,"Cost":152,"Date":"11/30/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":295,"Cost":168,"Date":"12/8/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":740,"Cost":477,"Date":"12/11/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":497,"Cost":436,"Date":"1/15/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":75,"Cost":42,"Date":"1/24/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":769,"Cost":639,"Date":"2/3/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":441,"Cost":380,"Date":"2/4/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":242,"Cost":194,"Date":"3/9/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":23,"Cost":22,"Date":"3/12/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":864,"Cost":547,"Date":"4/19/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":521,"Cost":386,"Date":"5/3/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":181,"Cost":164,"Date":"5/4/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":237,"Cost":145,"Date":"6/8/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":400,"Cost":254,"Date":"6/26/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":448,"Cost":399,"Date":"7/4/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":678,"Cost":378,"Date":"7/13/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":436,"Cost":288,"Date":"8/8/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":92,"Cost":50,"Date":"8/26/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":309,"Cost":232,"Date":"9/2/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":263,"Cost":199,"Date":"9/29/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":943,"Cost":846,"Date":"10/12/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":996,"Cost":633,"Date":"11/2/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":434,"Cost":337,"Date":"11/4/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":155,"Cost":89,"Date":"11/7/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":881,"Cost":446,"Date":"12/1/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":747,"Cost":630,"Date":"12/4/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":382,"Cost":198,"Date":"12/7/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":343,"Cost":253,"Date":"12/18/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":325,"Cost":271,"Date":"12/20/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":143,"Cost":115,"Date":"12/20/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":598,"Cost":534,"Date":"12/21/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":159,"Cost":123,"Date":"1/9/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":693,"Cost":445,"Date":"2/5/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":8,"Cost":4,"Date":"2/16/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":678,"Cost":590,"Date":"2/16/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":878,"Cost":489,"Date":"2/18/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":562,"Cost":338,"Date":"2/22/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":247,"Cost":159,"Date":"2/25/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":352,"Cost":236,"Date":"3/8/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":361,"Cost":208,"Date":"4/2/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":656,"Cost":455,"Date":"4/3/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":366,"Cost":339,"Date":"4/9/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":44,"Cost":29,"Date":"4/10/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":428,"Cost":294,"Date":"4/19/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":723,"Cost":461,"Date":"5/17/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":573,"Cost":355,"Date":"5/22/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":997,"Cost":856,"Date":"6/20/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":764,"Cost":724,"Date":"7/1/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":144,"Cost":79,"Date":"7/4/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":604,"Cost":367,"Date":"7/8/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":845,"Cost":426,"Date":"7/9/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":710,"Cost":616,"Date":"7/14/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":19,"Cost":17,"Date":"7/19/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":566,"Cost":325,"Date":"8/1/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":389,"Cost":241,"Date":"8/6/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":698,"Cost":472,"Date":"8/7/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":706,"Cost":493,"Date":"8/22/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":264,"Cost":233,"Date":"8/31/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":411,"Cost":213,"Date":"9/1/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":71,"Cost":50,"Date":"9/1/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":84,"Cost":72,"Date":"9/17/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":348,"Cost":200,"Date":"9/29/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":638,"Cost":572,"Date":"11/7/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":910,"Cost":798,"Date":"11/26/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":165,"Cost":149,"Date":"11/27/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":723,"Cost":623,"Date":"12/5/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":352,"Cost":251,"Date":"12/26/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":200,"Cost":147,"Date":"12/31/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":868,"Cost":487,"Date":"1/20/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":118,"Cost":92,"Date":"2/2/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":100,"Cost":69,"Date":"2/8/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":472,"Cost":286,"Date":"2/27/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":746,"Cost":391,"Date":"3/1/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":117,"Cost":94,"Date":"3/1/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":454,"Cost":426,"Date":"3/19/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":408,"Cost":351,"Date":"3/28/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":630,"Cost":370,"Date":"5/21/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":31,"Cost":28,"Date":"7/21/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":468,"Cost":317,"Date":"8/5/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":404,"Cost":369,"Date":"8/12/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":770,"Cost":567,"Date":"8/21/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":808,"Cost":541,"Date":"8/23/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":908,"Cost":584,"Date":"9/3/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":918,"Cost":485,"Date":"9/5/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":866,"Cost":712,"Date":"10/6/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":674,"Cost":518,"Date":"10/19/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":210,"Cost":195,"Date":"11/15/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":438,"Cost":352,"Date":"12/8/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":709,"Cost":442,"Date":"1/8/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":691,"Cost":442,"Date":"1/14/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":673,"Cost":508,"Date":"1/19/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":622,"Cost":446,"Date":"1/28/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":539,"Cost":469,"Date":"1/31/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":697,"Cost":580,"Date":"3/27/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":182,"Cost":162,"Date":"4/20/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":630,"Cost":425,"Date":"4/24/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":131,"Cost":100,"Date":"4/28/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":776,"Cost":449,"Date":"5/15/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":704,"Cost":638,"Date":"5/16/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":189,"Cost":166,"Date":"5/18/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":869,"Cost":817,"Date":"6/2/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":837,"Cost":482,"Date":"6/3/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":283,"Cost":197,"Date":"6/5/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":367,"Cost":326,"Date":"6/7/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":133,"Cost":86,"Date":"6/14/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":444,"Cost":238,"Date":"6/20/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":467,"Cost":282,"Date":"6/24/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":165,"Cost":134,"Date":"7/4/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":974,"Cost":509,"Date":"7/9/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":264,"Cost":154,"Date":"7/12/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":561,"Cost":366,"Date":"8/14/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":407,"Cost":365,"Date":"8/16/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":73,"Cost":62,"Date":"8/23/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":446,"Cost":305,"Date":"9/2/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":99,"Cost":63,"Date":"9/3/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":190,"Cost":132,"Date":"9/16/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":789,"Cost":403,"Date":"10/4/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":38,"Cost":33,"Date":"11/1/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":746,"Cost":587,"Date":"11/2/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":20,"Cost":13,"Date":"12/17/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":565,"Cost":331,"Date":"2/10/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":739,"Cost":606,"Date":"2/28/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":163,"Cost":83,"Date":"3/4/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":291,"Cost":167,"Date":"3/9/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":327,"Cost":218,"Date":"3/9/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":4,"Cost":4,"Date":"3/11/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":219,"Cost":135,"Date":"3/17/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":212,"Cost":138,"Date":"3/17/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":972,"Cost":858,"Date":"3/23/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":928,"Cost":876,"Date":"4/1/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":76,"Cost":46,"Date":"5/7/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":849,"Cost":495,"Date":"5/10/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":411,"Cost":369,"Date":"5/20/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":447,"Cost":395,"Date":"6/2/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":938,"Cost":888,"Date":"6/11/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":602,"Cost":498,"Date":"6/16/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":556,"Cost":278,"Date":"6/16/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":211,"Cost":128,"Date":"7/10/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":497,"Cost":255,"Date":"7/11/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":523,"Cost":478,"Date":"8/28/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":442,"Cost":317,"Date":"8/29/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":955,"Cost":864,"Date":"8/31/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":155,"Cost":85,"Date":"9/8/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":727,"Cost":587,"Date":"9/13/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":201,"Cost":175,"Date":"9/14/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":307,"Cost":254,"Date":"9/19/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":267,"Cost":186,"Date":"9/25/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":473,"Cost":421,"Date":"10/4/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":273,"Cost":227,"Date":"10/10/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":736,"Cost":377,"Date":"10/17/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":33,"Cost":22,"Date":"10/28/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":497,"Cost":435,"Date":"10/30/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":136,"Cost":114,"Date":"11/1/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":879,"Cost":752,"Date":"11/15/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":570,"Cost":432,"Date":"11/25/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":726,"Cost":579,"Date":"1/10/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":762,"Cost":513,"Date":"1/14/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":822,"Cost":589,"Date":"1/20/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":149,"Cost":111,"Date":"2/8/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":274,"Cost":201,"Date":"2/25/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":833,"Cost":463,"Date":"3/7/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":582,"Cost":378,"Date":"3/14/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":247,"Cost":134,"Date":"3/27/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":670,"Cost":352,"Date":"4/5/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":525,"Cost":498,"Date":"4/14/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":875,"Cost":500,"Date":"5/3/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":892,"Cost":770,"Date":"5/9/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":486,"Cost":405,"Date":"5/15/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":738,"Cost":652,"Date":"5/25/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":424,"Cost":381,"Date":"5/26/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":72,"Cost":67,"Date":"5/31/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":272,"Cost":164,"Date":"7/27/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":926,"Cost":632,"Date":"9/17/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":955,"Cost":768,"Date":"10/6/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":650,"Cost":479,"Date":"10/8/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":473,"Cost":257,"Date":"10/26/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":798,"Cost":420,"Date":"11/16/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":444,"Cost":304,"Date":"11/18/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"HM","Country":"Australia","Sale":766,"Cost":657,"Date":"12/1/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":880,"Cost":797,"Date":"2/9/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":657,"Cost":333,"Date":"2/11/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":95,"Cost":80,"Date":"3/10/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":854,"Cost":560,"Date":"3/16/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":320,"Cost":260,"Date":"3/18/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":480,"Cost":346,"Date":"3/20/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":374,"Cost":222,"Date":"3/26/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":99,"Cost":94,"Date":"6/2/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":809,"Cost":445,"Date":"6/10/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":292,"Cost":201,"Date":"6/16/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":216,"Cost":182,"Date":"6/25/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":718,"Cost":458,"Date":"7/19/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":410,"Cost":240,"Date":"7/21/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":760,"Cost":381,"Date":"7/25/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":43,"Cost":35,"Date":"8/4/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":471,"Cost":294,"Date":"9/2/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":119,"Cost":89,"Date":"9/4/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":302,"Cost":157,"Date":"9/19/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":688,"Cost":367,"Date":"9/29/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":608,"Cost":528,"Date":"10/2/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":559,"Cost":478,"Date":"10/15/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":554,"Cost":467,"Date":"10/30/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":97,"Cost":85,"Date":"11/9/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":972,"Cost":500,"Date":"11/23/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":823,"Cost":771,"Date":"11/30/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":843,"Cost":771,"Date":"12/8/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":433,"Cost":345,"Date":"12/11/2018"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":328,"Cost":211,"Date":"1/15/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":906,"Cost":667,"Date":"1/24/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":281,"Cost":158,"Date":"2/3/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":396,"Cost":289,"Date":"2/4/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":162,"Cost":99,"Date":"3/9/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":614,"Cost":537,"Date":"3/12/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":819,"Cost":721,"Date":"4/19/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":726,"Cost":401,"Date":"5/3/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":833,"Cost":498,"Date":"5/4/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":837,"Cost":648,"Date":"6/8/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":400,"Cost":363,"Date":"6/26/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":219,"Cost":197,"Date":"7/4/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":25,"Cost":14,"Date":"7/13/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":402,"Cost":324,"Date":"8/8/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":838,"Cost":673,"Date":"8/26/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":177,"Cost":157,"Date":"9/2/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":840,"Cost":602,"Date":"9/29/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":405,"Cost":299,"Date":"10/12/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":538,"Cost":361,"Date":"11/2/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":306,"Cost":188,"Date":"11/4/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":622,"Cost":349,"Date":"11/7/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":4,"Cost":2,"Date":"12/1/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":767,"Cost":639,"Date":"12/4/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":321,"Cost":281,"Date":"12/7/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":605,"Cost":445,"Date":"12/18/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":673,"Cost":510,"Date":"12/20/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":98,"Cost":61,"Date":"12/20/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":962,"Cost":780,"Date":"12/21/2019"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":693,"Cost":507,"Date":"1/9/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":141,"Cost":114,"Date":"2/5/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":669,"Cost":402,"Date":"2/16/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":785,"Cost":648,"Date":"2/16/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":499,"Cost":379,"Date":"2/18/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":421,"Cost":350,"Date":"2/22/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":821,"Cost":779,"Date":"2/25/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":412,"Cost":370,"Date":"3/8/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":165,"Cost":130,"Date":"4/2/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":348,"Cost":231,"Date":"4/3/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":863,"Cost":616,"Date":"4/9/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":343,"Cost":282,"Date":"4/10/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":347,"Cost":251,"Date":"4/19/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":961,"Cost":710,"Date":"5/17/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":830,"Cost":441,"Date":"5/22/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":504,"Cost":369,"Date":"6/20/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":304,"Cost":269,"Date":"7/1/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":691,"Cost":383,"Date":"7/4/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":721,"Cost":551,"Date":"7/8/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":145,"Cost":102,"Date":"7/9/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":273,"Cost":239,"Date":"7/14/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":30,"Cost":26,"Date":"7/19/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":545,"Cost":318,"Date":"8/1/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":21,"Cost":13,"Date":"8/6/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":140,"Cost":100,"Date":"8/7/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":800,"Cost":586,"Date":"8/22/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":88,"Cost":63,"Date":"8/31/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":434,"Cost":360,"Date":"9/1/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":965,"Cost":547,"Date":"9/1/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":179,"Cost":136,"Date":"9/17/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":597,"Cost":506,"Date":"9/29/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":485,"Cost":327,"Date":"11/7/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":615,"Cost":549,"Date":"11/26/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":24,"Cost":18,"Date":"11/27/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":351,"Cost":183,"Date":"12/5/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":767,"Cost":385,"Date":"12/26/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":28,"Cost":20,"Date":"12/31/2020"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":320,"Cost":252,"Date":"1/20/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":383,"Cost":313,"Date":"2/2/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":162,"Cost":129,"Date":"2/8/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":172,"Cost":121,"Date":"2/27/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":416,"Cost":280,"Date":"3/1/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":447,"Cost":351,"Date":"3/1/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":184,"Cost":133,"Date":"3/19/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":960,"Cost":777,"Date":"3/28/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":203,"Cost":167,"Date":"5/21/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":677,"Cost":461,"Date":"7/21/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":743,"Cost":550,"Date":"8/5/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":676,"Cost":613,"Date":"8/12/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":987,"Cost":629,"Date":"8/21/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":371,"Cost":232,"Date":"8/23/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":620,"Cost":566,"Date":"9/3/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":748,"Cost":445,"Date":"9/5/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":208,"Cost":163,"Date":"10/6/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":423,"Cost":400,"Date":"10/19/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":914,"Cost":712,"Date":"11/15/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":250,"Cost":125,"Date":"12/8/2021"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":782,"Cost":535,"Date":"1/8/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":21,"Cost":20,"Date":"1/14/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":378,"Cost":334,"Date":"1/19/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":438,"Cost":326,"Date":"1/28/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":33,"Cost":21,"Date":"1/31/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":529,"Cost":336,"Date":"3/27/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":562,"Cost":463,"Date":"4/20/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":767,"Cost":659,"Date":"4/24/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":614,"Cost":437,"Date":"4/28/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":497,"Cost":444,"Date":"5/15/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":697,"Cost":607,"Date":"5/16/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":780,"Cost":478,"Date":"5/18/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":274,"Cost":228,"Date":"6/2/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":533,"Cost":389,"Date":"6/3/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":199,"Cost":163,"Date":"6/5/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":662,"Cost":533,"Date":"6/7/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":324,"Cost":246,"Date":"6/14/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":529,"Cost":362,"Date":"6/20/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":81,"Cost":60,"Date":"6/24/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":241,"Cost":183,"Date":"7/4/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":708,"Cost":478,"Date":"7/9/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":392,"Cost":322,"Date":"7/12/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":644,"Cost":381,"Date":"8/14/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":497,"Cost":420,"Date":"8/16/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":780,"Cost":595,"Date":"8/23/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":242,"Cost":147,"Date":"9/2/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":581,"Cost":343,"Date":"9/3/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":25,"Cost":19,"Date":"9/16/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":588,"Cost":516,"Date":"10/4/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":382,"Cost":212,"Date":"11/1/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":811,"Cost":655,"Date":"11/2/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":310,"Cost":204,"Date":"12/17/2022"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":273,"Cost":233,"Date":"2/10/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":97,"Cost":78,"Date":"2/28/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":257,"Cost":191,"Date":"3/4/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":762,"Cost":502,"Date":"3/9/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":203,"Cost":136,"Date":"3/9/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":504,"Cost":287,"Date":"3/11/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":603,"Cost":515,"Date":"3/17/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":700,"Cost":496,"Date":"3/17/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":173,"Cost":141,"Date":"3/23/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":656,"Cost":529,"Date":"4/1/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":599,"Cost":459,"Date":"5/7/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":840,"Cost":442,"Date":"5/10/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":486,"Cost":355,"Date":"5/20/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":44,"Cost":24,"Date":"6/2/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":502,"Cost":367,"Date":"6/11/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":72,"Cost":51,"Date":"6/16/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":493,"Cost":435,"Date":"6/16/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":996,"Cost":675,"Date":"7/10/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":533,"Cost":399,"Date":"7/11/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":464,"Cost":301,"Date":"8/28/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":196,"Cost":124,"Date":"8/29/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":906,"Cost":667,"Date":"8/31/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":8,"Cost":6,"Date":"9/8/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":251,"Cost":173,"Date":"9/13/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":806,"Cost":428,"Date":"9/14/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":231,"Cost":160,"Date":"9/19/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":45,"Cost":39,"Date":"9/25/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":377,"Cost":210,"Date":"10/4/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":63,"Cost":42,"Date":"10/10/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":86,"Cost":78,"Date":"10/17/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":695,"Cost":538,"Date":"10/28/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":423,"Cost":227,"Date":"10/30/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":295,"Cost":200,"Date":"11/1/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":630,"Cost":560,"Date":"11/15/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":344,"Cost":229,"Date":"11/25/2023"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":654,"Cost":582,"Date":"1/10/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":452,"Cost":243,"Date":"1/14/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":982,"Cost":791,"Date":"1/20/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":17,"Cost":16,"Date":"2/8/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":169,"Cost":88,"Date":"2/25/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":520,"Cost":262,"Date":"3/7/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":653,"Cost":524,"Date":"3/14/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":899,"Cost":527,"Date":"3/27/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":882,"Cost":669,"Date":"4/5/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":127,"Cost":85,"Date":"4/14/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":825,"Cost":642,"Date":"5/3/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":79,"Cost":52,"Date":"5/9/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":515,"Cost":312,"Date":"5/15/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":962,"Cost":630,"Date":"5/25/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":597,"Cost":366,"Date":"5/26/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":737,"Cost":611,"Date":"5/31/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":76,"Cost":69,"Date":"7/27/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":970,"Cost":614,"Date":"9/17/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":651,"Cost":586,"Date":"10/6/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":938,"Cost":704,"Date":"10/8/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":939,"Cost":723,"Date":"10/26/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":454,"Cost":293,"Date":"11/16/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":156,"Cost":112,"Date":"11/18/2024"},{"Store":"Rundle Mall, Adelaide","Brand":"COS","Country":"Australia","Sale":617,"Cost":549,"Date":"12/1/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":868,"Cost":685,"Date":"2/9/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":382,"Cost":201,"Date":"2/11/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":39,"Cost":27,"Date":"3/10/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":529,"Cost":402,"Date":"3/16/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":268,"Cost":250,"Date":"3/18/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":946,"Cost":625,"Date":"3/20/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":604,"Cost":494,"Date":"3/26/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":215,"Cost":117,"Date":"6/2/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":499,"Cost":301,"Date":"6/10/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":439,"Cost":279,"Date":"6/16/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":955,"Cost":640,"Date":"6/25/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":443,"Cost":385,"Date":"7/19/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":429,"Cost":296,"Date":"7/21/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":660,"Cost":517,"Date":"7/25/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":790,"Cost":604,"Date":"8/4/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":371,"Cost":269,"Date":"9/2/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":118,"Cost":98,"Date":"9/4/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":644,"Cost":394,"Date":"9/19/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":223,"Cost":185,"Date":"9/29/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":711,"Cost":365,"Date":"10/2/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":542,"Cost":499,"Date":"10/15/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":42,"Cost":30,"Date":"10/30/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":82,"Cost":67,"Date":"11/9/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":578,"Cost":360,"Date":"11/23/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":842,"Cost":763,"Date":"11/30/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":1,"Cost":0,"Date":"12/8/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":479,"Cost":438,"Date":"12/11/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":653,"Cost":470,"Date":"1/15/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":199,"Cost":185,"Date":"1/24/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":959,"Cost":811,"Date":"2/3/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":925,"Cost":757,"Date":"2/4/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":672,"Cost":548,"Date":"3/9/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":726,"Cost":460,"Date":"3/12/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":270,"Cost":229,"Date":"4/19/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":68,"Cost":49,"Date":"5/3/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":613,"Cost":381,"Date":"5/4/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":236,"Cost":222,"Date":"6/8/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":930,"Cost":647,"Date":"6/26/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":437,"Cost":387,"Date":"7/4/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":699,"Cost":430,"Date":"7/13/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":475,"Cost":408,"Date":"8/8/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":877,"Cost":768,"Date":"8/26/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":920,"Cost":644,"Date":"9/2/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":463,"Cost":420,"Date":"9/29/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":926,"Cost":749,"Date":"10/12/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":772,"Cost":489,"Date":"11/2/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":832,"Cost":421,"Date":"11/4/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":466,"Cost":358,"Date":"11/7/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":606,"Cost":447,"Date":"12/1/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":776,"Cost":628,"Date":"12/4/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":48,"Cost":41,"Date":"12/7/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":954,"Cost":879,"Date":"12/18/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":889,"Cost":753,"Date":"12/20/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":505,"Cost":262,"Date":"12/20/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":559,"Cost":469,"Date":"12/21/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":581,"Cost":359,"Date":"1/9/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":32,"Cost":23,"Date":"2/5/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":207,"Cost":108,"Date":"2/16/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":385,"Cost":272,"Date":"2/16/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":759,"Cost":509,"Date":"2/18/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":898,"Cost":659,"Date":"2/22/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":932,"Cost":839,"Date":"2/25/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":784,"Cost":494,"Date":"3/8/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":615,"Cost":519,"Date":"4/2/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":647,"Cost":427,"Date":"4/3/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":625,"Cost":377,"Date":"4/9/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":281,"Cost":211,"Date":"4/10/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":775,"Cost":701,"Date":"4/19/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":879,"Cost":509,"Date":"5/17/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":348,"Cost":242,"Date":"5/22/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":144,"Cost":115,"Date":"6/20/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":63,"Cost":47,"Date":"7/1/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":943,"Cost":822,"Date":"7/4/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":939,"Cost":793,"Date":"7/8/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":22,"Cost":13,"Date":"7/9/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":260,"Cost":165,"Date":"7/14/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":614,"Cost":502,"Date":"7/19/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":143,"Cost":111,"Date":"8/1/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":718,"Cost":406,"Date":"8/6/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":40,"Cost":24,"Date":"8/7/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":416,"Cost":391,"Date":"8/22/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":280,"Cost":248,"Date":"8/31/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":802,"Cost":418,"Date":"9/1/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":293,"Cost":244,"Date":"9/1/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":335,"Cost":242,"Date":"9/17/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":909,"Cost":584,"Date":"9/29/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":132,"Cost":94,"Date":"11/7/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":64,"Cost":43,"Date":"11/26/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":822,"Cost":777,"Date":"11/27/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":670,"Cost":624,"Date":"12/5/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":702,"Cost":569,"Date":"12/26/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":332,"Cost":196,"Date":"12/31/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":604,"Cost":335,"Date":"1/20/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":919,"Cost":481,"Date":"2/2/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":427,"Cost":216,"Date":"2/8/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":709,"Cost":635,"Date":"2/27/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":251,"Cost":237,"Date":"3/1/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":884,"Cost":769,"Date":"3/1/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":278,"Cost":212,"Date":"3/19/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":366,"Cost":296,"Date":"3/28/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":120,"Cost":61,"Date":"5/21/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":937,"Cost":493,"Date":"7/21/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":158,"Cost":89,"Date":"8/5/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":118,"Cost":109,"Date":"8/12/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":568,"Cost":396,"Date":"8/21/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":223,"Cost":134,"Date":"8/23/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":178,"Cost":151,"Date":"9/3/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":104,"Cost":52,"Date":"9/5/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":412,"Cost":235,"Date":"10/6/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":43,"Cost":40,"Date":"10/19/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":631,"Cost":565,"Date":"11/15/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":357,"Cost":228,"Date":"12/8/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":303,"Cost":230,"Date":"1/8/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":745,"Cost":475,"Date":"1/14/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":341,"Cost":315,"Date":"1/19/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":446,"Cost":225,"Date":"1/28/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":659,"Cost":581,"Date":"1/31/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":317,"Cost":276,"Date":"3/27/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":199,"Cost":181,"Date":"4/20/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":267,"Cost":189,"Date":"4/24/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":791,"Cost":467,"Date":"4/28/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":300,"Cost":279,"Date":"5/15/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":813,"Cost":582,"Date":"5/16/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":287,"Cost":182,"Date":"5/18/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":393,"Cost":261,"Date":"6/2/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":931,"Cost":680,"Date":"6/3/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":97,"Cost":49,"Date":"6/5/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":962,"Cost":735,"Date":"6/7/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":649,"Cost":526,"Date":"6/14/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":161,"Cost":126,"Date":"6/20/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":650,"Cost":454,"Date":"6/24/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":294,"Cost":248,"Date":"7/4/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":576,"Cost":499,"Date":"7/9/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":72,"Cost":52,"Date":"7/12/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":15,"Cost":10,"Date":"8/14/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":680,"Cost":606,"Date":"8/16/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":377,"Cost":357,"Date":"8/23/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":498,"Cost":320,"Date":"9/2/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":587,"Cost":334,"Date":"9/3/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":239,"Cost":224,"Date":"9/16/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":632,"Cost":403,"Date":"10/4/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":818,"Cost":457,"Date":"11/1/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":505,"Cost":271,"Date":"11/2/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":683,"Cost":551,"Date":"12/17/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":624,"Cost":539,"Date":"2/10/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":570,"Cost":494,"Date":"2/28/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":526,"Cost":288,"Date":"3/4/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":260,"Cost":201,"Date":"3/9/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":538,"Cost":296,"Date":"3/9/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":923,"Cost":551,"Date":"3/11/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":483,"Cost":363,"Date":"3/17/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":86,"Cost":49,"Date":"3/17/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":514,"Cost":386,"Date":"3/23/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":624,"Cost":388,"Date":"4/1/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":876,"Cost":769,"Date":"5/7/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":409,"Cost":324,"Date":"5/10/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":77,"Cost":41,"Date":"5/20/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":164,"Cost":95,"Date":"6/2/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":653,"Cost":398,"Date":"6/11/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":492,"Cost":266,"Date":"6/16/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":119,"Cost":111,"Date":"6/16/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":382,"Cost":319,"Date":"7/10/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":974,"Cost":704,"Date":"7/11/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":550,"Cost":363,"Date":"8/28/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":86,"Cost":51,"Date":"8/29/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":450,"Cost":301,"Date":"8/31/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":513,"Cost":477,"Date":"9/8/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":514,"Cost":373,"Date":"9/13/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":107,"Cost":65,"Date":"9/14/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":669,"Cost":439,"Date":"9/19/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":648,"Cost":459,"Date":"9/25/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":738,"Cost":490,"Date":"10/4/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":663,"Cost":551,"Date":"10/10/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":115,"Cost":98,"Date":"10/17/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":745,"Cost":423,"Date":"10/28/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":131,"Cost":113,"Date":"10/30/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":577,"Cost":355,"Date":"11/1/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":938,"Cost":630,"Date":"11/15/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":375,"Cost":243,"Date":"11/25/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":647,"Cost":382,"Date":"1/10/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":757,"Cost":678,"Date":"1/14/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":216,"Cost":200,"Date":"1/20/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":436,"Cost":218,"Date":"2/8/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":919,"Cost":549,"Date":"2/25/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":533,"Cost":494,"Date":"3/7/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":166,"Cost":126,"Date":"3/14/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":31,"Cost":19,"Date":"3/27/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":703,"Cost":479,"Date":"4/5/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":784,"Cost":490,"Date":"4/14/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":33,"Cost":30,"Date":"5/3/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":223,"Cost":201,"Date":"5/9/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":493,"Cost":307,"Date":"5/15/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":3,"Cost":2,"Date":"5/25/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":523,"Cost":261,"Date":"5/26/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":220,"Cost":151,"Date":"5/31/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":43,"Cost":21,"Date":"7/27/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":271,"Cost":157,"Date":"9/17/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":811,"Cost":475,"Date":"10/6/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":571,"Cost":299,"Date":"10/8/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":335,"Cost":288,"Date":"10/26/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":8,"Cost":6,"Date":"11/16/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":18,"Cost":9,"Date":"11/18/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"ARKET","Country":"Australia","Sale":463,"Cost":354,"Date":"12/1/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":960,"Cost":596,"Date":"2/9/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":258,"Cost":238,"Date":"2/11/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":60,"Cost":55,"Date":"3/10/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":36,"Cost":28,"Date":"3/16/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":867,"Cost":482,"Date":"3/18/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":67,"Cost":58,"Date":"3/20/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":388,"Cost":272,"Date":"3/26/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":509,"Cost":451,"Date":"6/2/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":580,"Cost":498,"Date":"6/10/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":323,"Cost":210,"Date":"6/16/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":462,"Cost":373,"Date":"6/25/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":362,"Cost":296,"Date":"7/19/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":437,"Cost":336,"Date":"7/21/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":401,"Cost":338,"Date":"7/25/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":826,"Cost":748,"Date":"8/4/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":315,"Cost":235,"Date":"9/2/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":565,"Cost":507,"Date":"9/4/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":418,"Cost":220,"Date":"9/19/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":576,"Cost":483,"Date":"9/29/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":441,"Cost":299,"Date":"10/2/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":695,"Cost":498,"Date":"10/15/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":167,"Cost":137,"Date":"10/30/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":950,"Cost":627,"Date":"11/9/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":2,"Cost":1,"Date":"11/23/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":85,"Cost":62,"Date":"11/30/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":103,"Cost":62,"Date":"12/8/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":310,"Cost":229,"Date":"12/11/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":278,"Cost":196,"Date":"1/15/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":853,"Cost":499,"Date":"1/24/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":262,"Cost":244,"Date":"2/3/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":172,"Cost":156,"Date":"2/4/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":88,"Cost":58,"Date":"3/9/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":849,"Cost":656,"Date":"3/12/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":374,"Cost":272,"Date":"4/19/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":990,"Cost":838,"Date":"5/3/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":842,"Cost":577,"Date":"5/4/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":300,"Cost":275,"Date":"6/8/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":147,"Cost":118,"Date":"6/26/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":567,"Cost":445,"Date":"7/4/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":735,"Cost":610,"Date":"7/13/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":719,"Cost":453,"Date":"8/8/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":745,"Cost":534,"Date":"8/26/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":461,"Cost":257,"Date":"9/2/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":553,"Cost":460,"Date":"9/29/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":30,"Cost":28,"Date":"10/12/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":669,"Cost":415,"Date":"11/2/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":329,"Cost":298,"Date":"11/4/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":170,"Cost":105,"Date":"11/7/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":25,"Cost":15,"Date":"12/1/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":447,"Cost":301,"Date":"12/4/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":40,"Cost":30,"Date":"12/7/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":718,"Cost":364,"Date":"12/18/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":372,"Cost":272,"Date":"12/20/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":744,"Cost":548,"Date":"12/20/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":239,"Cost":223,"Date":"12/21/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":385,"Cost":230,"Date":"1/9/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":76,"Cost":44,"Date":"2/5/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":911,"Cost":528,"Date":"2/16/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":110,"Cost":67,"Date":"2/16/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":598,"Cost":509,"Date":"2/18/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":437,"Cost":337,"Date":"2/22/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":24,"Cost":16,"Date":"2/25/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":58,"Cost":33,"Date":"3/8/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":516,"Cost":483,"Date":"4/2/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":619,"Cost":399,"Date":"4/3/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":862,"Cost":442,"Date":"4/9/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":710,"Cost":385,"Date":"4/10/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":776,"Cost":536,"Date":"4/19/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":363,"Cost":324,"Date":"5/17/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":461,"Cost":267,"Date":"5/22/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":17,"Cost":9,"Date":"6/20/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":231,"Cost":209,"Date":"7/1/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":408,"Cost":387,"Date":"7/4/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":200,"Cost":104,"Date":"7/8/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":184,"Cost":170,"Date":"7/9/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":827,"Cost":709,"Date":"7/14/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":488,"Cost":380,"Date":"7/19/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":445,"Cost":406,"Date":"8/1/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":6,"Cost":3,"Date":"8/6/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":867,"Cost":523,"Date":"8/7/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":790,"Cost":620,"Date":"8/22/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":315,"Cost":287,"Date":"8/31/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":481,"Cost":243,"Date":"9/1/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":300,"Cost":210,"Date":"9/1/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":955,"Cost":820,"Date":"9/17/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":232,"Cost":132,"Date":"9/29/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":924,"Cost":810,"Date":"11/7/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":510,"Cost":314,"Date":"11/26/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":574,"Cost":381,"Date":"11/27/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":930,"Cost":519,"Date":"12/5/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":11,"Cost":9,"Date":"12/26/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":580,"Cost":323,"Date":"12/31/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":899,"Cost":611,"Date":"1/20/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":314,"Cost":273,"Date":"2/2/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":872,"Cost":482,"Date":"2/8/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":317,"Cost":202,"Date":"2/27/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":401,"Cost":284,"Date":"3/1/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":562,"Cost":344,"Date":"3/1/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":389,"Cost":275,"Date":"3/19/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":919,"Cost":603,"Date":"3/28/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":936,"Cost":883,"Date":"5/21/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":813,"Cost":425,"Date":"7/21/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":368,"Cost":315,"Date":"8/5/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":6,"Cost":3,"Date":"8/12/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":725,"Cost":595,"Date":"8/21/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":793,"Cost":598,"Date":"8/23/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":680,"Cost":489,"Date":"9/3/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":262,"Cost":234,"Date":"9/5/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":435,"Cost":315,"Date":"10/6/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":807,"Cost":429,"Date":"10/19/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":292,"Cost":163,"Date":"11/15/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":806,"Cost":749,"Date":"12/8/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":203,"Cost":168,"Date":"1/8/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":931,"Cost":606,"Date":"1/14/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":403,"Cost":290,"Date":"1/19/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":451,"Cost":272,"Date":"1/28/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":447,"Cost":424,"Date":"1/31/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":897,"Cost":653,"Date":"3/27/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":511,"Cost":392,"Date":"4/20/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":870,"Cost":735,"Date":"4/24/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":729,"Cost":419,"Date":"4/28/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":580,"Cost":436,"Date":"5/15/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":885,"Cost":548,"Date":"5/16/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":448,"Cost":301,"Date":"5/18/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":646,"Cost":341,"Date":"6/2/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":564,"Cost":366,"Date":"6/3/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":412,"Cost":329,"Date":"6/5/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":210,"Cost":155,"Date":"6/7/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":900,"Cost":752,"Date":"6/14/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":936,"Cost":756,"Date":"6/20/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":505,"Cost":279,"Date":"6/24/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":474,"Cost":394,"Date":"7/4/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":659,"Cost":618,"Date":"7/9/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":133,"Cost":117,"Date":"7/12/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":873,"Cost":698,"Date":"8/14/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":595,"Cost":435,"Date":"8/16/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":21,"Cost":10,"Date":"8/23/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":585,"Cost":364,"Date":"9/2/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":963,"Cost":810,"Date":"9/3/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":227,"Cost":125,"Date":"9/16/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":317,"Cost":171,"Date":"10/4/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":844,"Cost":687,"Date":"11/1/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":623,"Cost":408,"Date":"11/2/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":548,"Cost":484,"Date":"12/17/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":967,"Cost":539,"Date":"2/10/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":657,"Cost":458,"Date":"2/28/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":602,"Cost":353,"Date":"3/4/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":139,"Cost":84,"Date":"3/9/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":480,"Cost":291,"Date":"3/9/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":760,"Cost":408,"Date":"3/11/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":624,"Cost":495,"Date":"3/17/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":646,"Cost":385,"Date":"3/17/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":536,"Cost":455,"Date":"3/23/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":666,"Cost":581,"Date":"4/1/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":820,"Cost":477,"Date":"5/7/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":500,"Cost":356,"Date":"5/10/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":667,"Cost":497,"Date":"5/20/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":782,"Cost":600,"Date":"6/2/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":246,"Cost":137,"Date":"6/11/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":286,"Cost":198,"Date":"6/16/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":38,"Cost":36,"Date":"6/16/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":235,"Cost":222,"Date":"7/10/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":182,"Cost":155,"Date":"7/11/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":733,"Cost":621,"Date":"8/28/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":667,"Cost":615,"Date":"8/29/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":810,"Cost":758,"Date":"8/31/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":99,"Cost":80,"Date":"9/8/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":824,"Cost":683,"Date":"9/13/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":508,"Cost":304,"Date":"9/14/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":444,"Cost":415,"Date":"9/19/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":71,"Cost":54,"Date":"9/25/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":713,"Cost":453,"Date":"10/4/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":707,"Cost":671,"Date":"10/10/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":862,"Cost":540,"Date":"10/17/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":570,"Cost":300,"Date":"10/28/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":617,"Cost":495,"Date":"10/30/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":599,"Cost":530,"Date":"11/1/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":719,"Cost":634,"Date":"11/15/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":671,"Cost":635,"Date":"11/25/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":110,"Cost":95,"Date":"1/10/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":276,"Cost":196,"Date":"1/14/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":364,"Cost":227,"Date":"1/20/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":601,"Cost":534,"Date":"2/8/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":422,"Cost":271,"Date":"2/25/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":533,"Cost":319,"Date":"3/7/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":270,"Cost":257,"Date":"3/14/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":58,"Cost":38,"Date":"3/27/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":585,"Cost":318,"Date":"4/5/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":593,"Cost":556,"Date":"4/14/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":226,"Cost":191,"Date":"5/3/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":852,"Cost":669,"Date":"5/9/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":969,"Cost":579,"Date":"5/15/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":634,"Cost":443,"Date":"5/25/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":104,"Cost":99,"Date":"5/26/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":993,"Cost":786,"Date":"5/31/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":566,"Cost":297,"Date":"7/27/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":413,"Cost":389,"Date":"9/17/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":977,"Cost":563,"Date":"10/6/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":961,"Cost":650,"Date":"10/8/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":389,"Cost":220,"Date":"10/26/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":21,"Cost":19,"Date":"11/16/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":773,"Cost":542,"Date":"11/18/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"Jeans","Country":"Australia","Sale":58,"Cost":54,"Date":"12/1/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":695,"Cost":420,"Date":"2/9/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":841,"Cost":766,"Date":"2/11/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":212,"Cost":196,"Date":"3/10/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":193,"Cost":150,"Date":"3/16/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":688,"Cost":507,"Date":"3/18/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":854,"Cost":704,"Date":"3/20/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":697,"Cost":605,"Date":"3/26/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":148,"Cost":114,"Date":"6/2/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":500,"Cost":272,"Date":"6/10/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":485,"Cost":385,"Date":"6/16/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":789,"Cost":697,"Date":"6/25/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":450,"Cost":251,"Date":"7/19/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":706,"Cost":556,"Date":"7/21/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":634,"Cost":586,"Date":"7/25/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":229,"Cost":192,"Date":"8/4/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":529,"Cost":440,"Date":"9/2/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":4,"Cost":4,"Date":"9/4/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":971,"Cost":528,"Date":"9/19/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":319,"Cost":163,"Date":"9/29/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":120,"Cost":108,"Date":"10/2/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":171,"Cost":112,"Date":"10/15/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":295,"Cost":166,"Date":"10/30/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":726,"Cost":594,"Date":"11/9/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":915,"Cost":809,"Date":"11/23/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":487,"Cost":419,"Date":"11/30/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":653,"Cost":619,"Date":"12/8/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":410,"Cost":250,"Date":"12/11/2018"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":597,"Cost":312,"Date":"1/15/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":459,"Cost":311,"Date":"1/24/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":631,"Cost":383,"Date":"2/3/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":704,"Cost":366,"Date":"2/4/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":423,"Cost":262,"Date":"3/9/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":400,"Cost":367,"Date":"3/12/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":925,"Cost":798,"Date":"4/19/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":299,"Cost":189,"Date":"5/3/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":61,"Cost":48,"Date":"5/4/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":141,"Cost":83,"Date":"6/8/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":118,"Cost":102,"Date":"6/26/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":459,"Cost":405,"Date":"7/4/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":972,"Cost":919,"Date":"7/13/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":40,"Cost":23,"Date":"8/8/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":906,"Cost":460,"Date":"8/26/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":675,"Cost":619,"Date":"9/2/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":182,"Cost":135,"Date":"9/29/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":149,"Cost":99,"Date":"10/12/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":667,"Cost":577,"Date":"11/2/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":294,"Cost":159,"Date":"11/4/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":998,"Cost":890,"Date":"11/7/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":932,"Cost":738,"Date":"12/1/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":781,"Cost":494,"Date":"12/4/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":60,"Cost":56,"Date":"12/7/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":8,"Cost":5,"Date":"12/18/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":6,"Cost":3,"Date":"12/20/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":339,"Cost":278,"Date":"12/20/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":674,"Cost":442,"Date":"12/21/2019"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":477,"Cost":409,"Date":"1/9/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":897,"Cost":781,"Date":"2/5/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":530,"Cost":482,"Date":"2/16/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":987,"Cost":537,"Date":"2/16/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":824,"Cost":622,"Date":"2/18/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":457,"Cost":321,"Date":"2/22/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":579,"Cost":419,"Date":"2/25/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":779,"Cost":653,"Date":"3/8/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":710,"Cost":524,"Date":"4/2/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":767,"Cost":681,"Date":"4/3/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":789,"Cost":613,"Date":"4/9/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":590,"Cost":477,"Date":"4/10/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":741,"Cost":655,"Date":"4/19/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":530,"Cost":457,"Date":"5/17/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":978,"Cost":702,"Date":"5/22/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":498,"Cost":279,"Date":"6/20/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":676,"Cost":511,"Date":"7/1/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":691,"Cost":599,"Date":"7/4/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":849,"Cost":769,"Date":"7/8/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":503,"Cost":443,"Date":"7/9/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":961,"Cost":570,"Date":"7/14/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":720,"Cost":547,"Date":"7/19/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":751,"Cost":482,"Date":"8/1/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":733,"Cost":651,"Date":"8/6/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":169,"Cost":92,"Date":"8/7/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":233,"Cost":136,"Date":"8/22/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":322,"Cost":303,"Date":"8/31/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":245,"Cost":161,"Date":"9/1/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":580,"Cost":489,"Date":"9/1/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":978,"Cost":579,"Date":"9/17/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":318,"Cost":164,"Date":"9/29/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":601,"Cost":409,"Date":"11/7/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":702,"Cost":532,"Date":"11/26/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":13,"Cost":12,"Date":"11/27/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":608,"Cost":487,"Date":"12/5/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":398,"Cost":334,"Date":"12/26/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":740,"Cost":390,"Date":"12/31/2020"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":54,"Cost":48,"Date":"1/20/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":646,"Cost":579,"Date":"2/2/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":787,"Cost":586,"Date":"2/8/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":48,"Cost":36,"Date":"2/27/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":97,"Cost":90,"Date":"3/1/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":205,"Cost":131,"Date":"3/1/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":347,"Cost":223,"Date":"3/19/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":302,"Cost":260,"Date":"3/28/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":246,"Cost":172,"Date":"5/21/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":412,"Cost":207,"Date":"7/21/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":86,"Cost":63,"Date":"8/5/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":602,"Cost":499,"Date":"8/12/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":661,"Cost":499,"Date":"8/21/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":679,"Cost":499,"Date":"8/23/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":257,"Cost":238,"Date":"9/3/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":129,"Cost":93,"Date":"9/5/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":248,"Cost":229,"Date":"10/6/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":531,"Cost":368,"Date":"10/19/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":347,"Cost":328,"Date":"11/15/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":921,"Cost":688,"Date":"12/8/2021"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":247,"Cost":146,"Date":"1/8/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":681,"Cost":623,"Date":"1/14/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":877,"Cost":567,"Date":"1/19/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":315,"Cost":159,"Date":"1/28/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":996,"Cost":756,"Date":"1/31/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":270,"Cost":228,"Date":"3/27/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":292,"Cost":215,"Date":"4/20/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":121,"Cost":114,"Date":"4/24/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":677,"Cost":522,"Date":"4/28/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":987,"Cost":894,"Date":"5/15/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":644,"Cost":420,"Date":"5/16/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":148,"Cost":105,"Date":"5/18/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":688,"Cost":585,"Date":"6/2/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":879,"Cost":675,"Date":"6/3/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":498,"Cost":305,"Date":"6/5/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":421,"Cost":397,"Date":"6/7/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":723,"Cost":671,"Date":"6/14/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":804,"Cost":414,"Date":"6/20/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":859,"Cost":522,"Date":"6/24/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":983,"Cost":827,"Date":"7/4/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":727,"Cost":527,"Date":"7/9/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":855,"Cost":672,"Date":"7/12/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":331,"Cost":215,"Date":"8/14/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":277,"Cost":237,"Date":"8/16/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":962,"Cost":733,"Date":"8/23/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":400,"Cost":319,"Date":"9/2/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":794,"Cost":515,"Date":"9/3/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":354,"Cost":326,"Date":"9/16/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":995,"Cost":942,"Date":"10/4/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":177,"Cost":100,"Date":"11/1/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":736,"Cost":543,"Date":"11/2/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":881,"Cost":800,"Date":"12/17/2022"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":44,"Cost":32,"Date":"2/10/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":468,"Cost":305,"Date":"2/28/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":774,"Cost":480,"Date":"3/4/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":976,"Cost":610,"Date":"3/9/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":551,"Cost":437,"Date":"3/9/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":141,"Cost":93,"Date":"3/11/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":792,"Cost":450,"Date":"3/17/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":766,"Cost":435,"Date":"3/17/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":276,"Cost":189,"Date":"3/23/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":522,"Cost":486,"Date":"4/1/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":520,"Cost":316,"Date":"5/7/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":973,"Cost":607,"Date":"5/10/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":91,"Cost":51,"Date":"5/20/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":733,"Cost":476,"Date":"6/2/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":547,"Cost":356,"Date":"6/11/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":412,"Cost":218,"Date":"6/16/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":104,"Cost":62,"Date":"6/16/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":84,"Cost":76,"Date":"7/10/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":430,"Cost":275,"Date":"7/11/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":682,"Cost":382,"Date":"8/28/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":436,"Cost":388,"Date":"8/29/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":776,"Cost":507,"Date":"8/31/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":202,"Cost":157,"Date":"9/8/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":923,"Cost":763,"Date":"9/13/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":474,"Cost":260,"Date":"9/14/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":868,"Cost":711,"Date":"9/19/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":866,"Cost":667,"Date":"9/25/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":673,"Cost":340,"Date":"10/4/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":190,"Cost":181,"Date":"10/10/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":800,"Cost":535,"Date":"10/17/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":389,"Cost":205,"Date":"10/28/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":729,"Cost":676,"Date":"10/30/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":211,"Cost":177,"Date":"11/1/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":59,"Cost":39,"Date":"11/15/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":153,"Cost":118,"Date":"11/25/2023"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":184,"Cost":156,"Date":"1/10/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":239,"Cost":149,"Date":"1/14/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":358,"Cost":233,"Date":"1/20/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":635,"Cost":589,"Date":"2/8/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":779,"Cost":689,"Date":"2/25/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":747,"Cost":398,"Date":"3/7/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":148,"Cost":93,"Date":"3/14/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":151,"Cost":140,"Date":"3/27/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":857,"Cost":507,"Date":"4/5/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":704,"Cost":366,"Date":"4/14/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":881,"Cost":635,"Date":"5/3/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":327,"Cost":242,"Date":"5/9/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":660,"Cost":583,"Date":"5/15/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":851,"Cost":602,"Date":"5/25/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":94,"Cost":58,"Date":"5/26/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":459,"Cost":336,"Date":"5/31/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":359,"Cost":202,"Date":"7/27/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":607,"Cost":371,"Date":"9/17/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":209,"Cost":142,"Date":"10/6/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":334,"Cost":224,"Date":"10/8/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":160,"Cost":83,"Date":"10/26/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":534,"Cost":325,"Date":"11/16/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":842,"Cost":474,"Date":"11/18/2024"},{"Store":"Westfield Marion, Adelaide","Brand":"HM","Country":"Australia","Sale":964,"Cost":855,"Date":"12/1/2024"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":844,"Cost":640,"Date":"2/9/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":538,"Cost":450,"Date":"2/11/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":151,"Cost":138,"Date":"3/10/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":896,"Cost":471,"Date":"3/16/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":967,"Cost":891,"Date":"3/18/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":620,"Cost":543,"Date":"3/20/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":985,"Cost":780,"Date":"3/26/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":246,"Cost":216,"Date":"6/2/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":726,"Cost":417,"Date":"6/10/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":621,"Cost":436,"Date":"6/16/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":893,"Cost":569,"Date":"6/25/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":649,"Cost":556,"Date":"7/19/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":256,"Cost":208,"Date":"7/21/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":834,"Cost":673,"Date":"7/25/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":615,"Cost":463,"Date":"8/4/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":720,"Cost":475,"Date":"9/2/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":825,"Cost":426,"Date":"9/4/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":714,"Cost":611,"Date":"9/19/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":314,"Cost":270,"Date":"9/29/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":500,"Cost":310,"Date":"10/2/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":159,"Cost":137,"Date":"10/15/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":302,"Cost":242,"Date":"10/30/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":363,"Cost":211,"Date":"11/9/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":919,"Cost":585,"Date":"11/23/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":511,"Cost":274,"Date":"11/30/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":367,"Cost":219,"Date":"12/8/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":450,"Cost":375,"Date":"12/11/2018"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":812,"Cost":447,"Date":"1/15/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":432,"Cost":297,"Date":"1/24/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":231,"Cost":187,"Date":"2/3/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":406,"Cost":253,"Date":"2/4/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":981,"Cost":762,"Date":"3/9/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":113,"Cost":68,"Date":"3/12/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":447,"Cost":387,"Date":"4/19/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":244,"Cost":232,"Date":"5/3/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":165,"Cost":131,"Date":"5/4/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":220,"Cost":189,"Date":"6/8/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":519,"Cost":316,"Date":"6/26/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":722,"Cost":631,"Date":"7/4/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":514,"Cost":265,"Date":"7/13/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":707,"Cost":596,"Date":"8/8/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":864,"Cost":688,"Date":"8/26/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":610,"Cost":438,"Date":"9/2/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":12,"Cost":7,"Date":"9/29/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":417,"Cost":331,"Date":"10/12/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":370,"Cost":212,"Date":"11/2/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":700,"Cost":595,"Date":"11/4/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":661,"Cost":386,"Date":"11/7/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":146,"Cost":131,"Date":"12/1/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":489,"Cost":350,"Date":"12/4/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":498,"Cost":429,"Date":"12/7/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":469,"Cost":379,"Date":"12/18/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":989,"Cost":644,"Date":"12/20/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":694,"Cost":355,"Date":"12/20/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":707,"Cost":652,"Date":"12/21/2019"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":577,"Cost":431,"Date":"1/9/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":977,"Cost":892,"Date":"2/5/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":423,"Cost":233,"Date":"2/16/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":898,"Cost":590,"Date":"2/16/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":581,"Cost":495,"Date":"2/18/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":36,"Cost":33,"Date":"2/22/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":109,"Cost":100,"Date":"2/25/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":411,"Cost":211,"Date":"3/8/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":860,"Cost":523,"Date":"4/2/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":702,"Cost":373,"Date":"4/3/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":964,"Cost":661,"Date":"4/9/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":330,"Cost":183,"Date":"4/10/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":961,"Cost":545,"Date":"4/19/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":612,"Cost":311,"Date":"5/17/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":746,"Cost":599,"Date":"5/22/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":692,"Cost":506,"Date":"6/20/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":656,"Cost":381,"Date":"7/1/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":622,"Cost":523,"Date":"7/4/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":820,"Cost":710,"Date":"7/8/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":439,"Cost":390,"Date":"7/9/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":662,"Cost":421,"Date":"7/14/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":848,"Cost":769,"Date":"7/19/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":233,"Cost":171,"Date":"8/1/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":663,"Cost":356,"Date":"8/6/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":273,"Cost":213,"Date":"8/7/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":853,"Cost":732,"Date":"8/22/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":349,"Cost":246,"Date":"8/31/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":955,"Cost":478,"Date":"9/1/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":831,"Cost":698,"Date":"9/1/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":188,"Cost":117,"Date":"9/17/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":539,"Cost":387,"Date":"9/29/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":984,"Cost":662,"Date":"11/7/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":616,"Cost":552,"Date":"11/26/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":837,"Cost":669,"Date":"11/27/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":981,"Cost":878,"Date":"12/5/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":502,"Cost":316,"Date":"12/26/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":49,"Cost":29,"Date":"12/31/2020"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":246,"Cost":165,"Date":"1/20/2021"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":610,"Cost":516,"Date":"2/2/2021"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":260,"Cost":231,"Date":"2/8/2021"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":645,"Cost":611,"Date":"2/27/2021"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":395,"Cost":307,"Date":"3/1/2021"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":131,"Cost":87,"Date":"3/1/2021"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":242,"Cost":198,"Date":"3/19/2021"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":205,"Cost":164,"Date":"3/28/2021"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":435,"Cost":313,"Date":"5/21/2021"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":394,"Cost":257,"Date":"7/21/2021"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":572,"Cost":307,"Date":"8/5/2021"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":77,"Cost":50,"Date":"8/12/2021"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":703,"Cost":630,"Date":"8/21/2021"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":630,"Cost":521,"Date":"8/23/2021"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":530,"Cost":310,"Date":"9/3/2021"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":945,"Cost":697,"Date":"9/5/2021"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":360,"Cost":311,"Date":"10/6/2021"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":149,"Cost":137,"Date":"10/19/2021"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":49,"Cost":43,"Date":"11/15/2021"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":652,"Cost":417,"Date":"12/8/2021"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":83,"Cost":49,"Date":"1/8/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":499,"Cost":420,"Date":"1/14/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":293,"Cost":188,"Date":"1/19/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":408,"Cost":332,"Date":"1/28/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":946,"Cost":532,"Date":"1/31/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":134,"Cost":100,"Date":"3/27/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":942,"Cost":747,"Date":"4/20/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":521,"Cost":406,"Date":"4/24/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":407,"Cost":316,"Date":"4/28/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":616,"Cost":382,"Date":"5/15/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":848,"Cost":595,"Date":"5/16/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":173,"Cost":149,"Date":"5/18/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":961,"Cost":719,"Date":"6/2/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":628,"Cost":341,"Date":"6/3/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":567,"Cost":472,"Date":"6/5/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":637,"Cost":435,"Date":"6/7/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":631,"Cost":377,"Date":"6/14/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":22,"Cost":15,"Date":"6/20/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":416,"Cost":286,"Date":"6/24/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":675,"Cost":432,"Date":"7/4/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":757,"Cost":586,"Date":"7/9/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":498,"Cost":301,"Date":"7/12/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":916,"Cost":657,"Date":"8/14/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":551,"Cost":390,"Date":"8/16/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":381,"Cost":281,"Date":"8/23/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":968,"Cost":598,"Date":"9/2/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":692,"Cost":466,"Date":"9/3/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":283,"Cost":261,"Date":"9/16/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":600,"Cost":483,"Date":"10/4/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":721,"Cost":655,"Date":"11/1/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":937,"Cost":669,"Date":"11/2/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":921,"Cost":629,"Date":"12/17/2022"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":925,"Cost":742,"Date":"2/10/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":570,"Cost":311,"Date":"2/28/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":795,"Cost":725,"Date":"3/4/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":407,"Cost":253,"Date":"3/9/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":982,"Cost":493,"Date":"3/9/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":617,"Cost":369,"Date":"3/11/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":633,"Cost":522,"Date":"3/17/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":791,"Cost":717,"Date":"3/17/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":510,"Cost":476,"Date":"3/23/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":484,"Cost":433,"Date":"4/1/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":532,"Cost":471,"Date":"5/7/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":528,"Cost":460,"Date":"5/10/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":854,"Cost":750,"Date":"5/20/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":104,"Cost":70,"Date":"6/2/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":230,"Cost":129,"Date":"6/11/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":884,"Cost":513,"Date":"6/16/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":449,"Cost":238,"Date":"6/16/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":969,"Cost":592,"Date":"7/10/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":451,"Cost":239,"Date":"7/11/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":124,"Cost":84,"Date":"8/28/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":332,"Cost":276,"Date":"8/29/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":910,"Cost":846,"Date":"8/31/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":937,"Cost":509,"Date":"9/8/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":955,"Cost":842,"Date":"9/13/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":683,"Cost":610,"Date":"9/14/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":367,"Cost":246,"Date":"9/19/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":227,"Cost":137,"Date":"9/25/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":874,"Cost":777,"Date":"10/4/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":452,"Cost":345,"Date":"10/10/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":839,"Cost":731,"Date":"10/17/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":740,"Cost":415,"Date":"10/28/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":457,"Cost":368,"Date":"10/30/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":995,"Cost":726,"Date":"11/1/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":570,"Cost":368,"Date":"11/15/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":851,"Cost":620,"Date":"11/25/2023"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":305,"Cost":240,"Date":"1/10/2024"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":406,"Cost":372,"Date":"1/14/2024"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":71,"Cost":44,"Date":"1/20/2024"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":596,"Cost":556,"Date":"2/8/2024"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":558,"Cost":363,"Date":"2/25/2024"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":958,"Cost":894,"Date":"3/7/2024"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":398,"Cost":282,"Date":"3/14/2024"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":304,"Cost":198,"Date":"3/27/2024"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":770,"Cost":493,"Date":"4/5/2024"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":274,"Cost":253,"Date":"4/14/2024"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":425,"Cost":370,"Date":"5/3/2024"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":496,"Cost":424,"Date":"5/9/2024"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":371,"Cost":291,"Date":"5/15/2024"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":338,"Cost":261,"Date":"5/25/2024"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":900,"Cost":718,"Date":"5/26/2024"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":795,"Cost":747,"Date":"5/31/2024"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":613,"Cost":433,"Date":"7/27/2024"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":397,"Cost":260,"Date":"9/17/2024"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":595,"Cost":528,"Date":"10/6/2024"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":977,"Cost":659,"Date":"10/8/2024"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":394,"Cost":298,"Date":"10/26/2024"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":354,"Cost":217,"Date":"11/16/2024"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":818,"Cost":597,"Date":"11/18/2024"},{"Store":"Burnside Village, Adelaide","Brand":"ARKET","Country":"Australia","Sale":676,"Cost":384,"Date":"12/1/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":718,"Cost":492,"Date":"2/9/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":430,"Cost":400,"Date":"2/11/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":8,"Cost":7,"Date":"3/10/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":272,"Cost":206,"Date":"3/16/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":27,"Cost":14,"Date":"3/18/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":278,"Cost":190,"Date":"3/20/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":872,"Cost":543,"Date":"3/26/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":672,"Cost":441,"Date":"6/2/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":409,"Cost":361,"Date":"6/10/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":391,"Cost":357,"Date":"6/16/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":877,"Cost":756,"Date":"6/25/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":211,"Cost":189,"Date":"7/19/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":96,"Cost":83,"Date":"7/21/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":528,"Cost":464,"Date":"7/25/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":418,"Cost":233,"Date":"8/4/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":507,"Cost":303,"Date":"9/2/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":896,"Cost":844,"Date":"9/4/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":580,"Cost":525,"Date":"9/19/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":362,"Cost":249,"Date":"9/29/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":612,"Cost":306,"Date":"10/2/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":959,"Cost":803,"Date":"10/15/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":65,"Cost":61,"Date":"10/30/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":86,"Cost":57,"Date":"11/9/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":722,"Cost":364,"Date":"11/23/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":170,"Cost":157,"Date":"11/30/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":127,"Cost":84,"Date":"12/8/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":193,"Cost":163,"Date":"12/11/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":558,"Cost":290,"Date":"1/15/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":489,"Cost":404,"Date":"1/24/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":848,"Cost":577,"Date":"2/3/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":822,"Cost":569,"Date":"2/4/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":674,"Cost":556,"Date":"3/9/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":247,"Cost":218,"Date":"3/12/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":484,"Cost":418,"Date":"4/19/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":83,"Cost":74,"Date":"5/3/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":536,"Cost":406,"Date":"5/4/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":402,"Cost":356,"Date":"6/8/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":641,"Cost":562,"Date":"6/26/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":255,"Cost":230,"Date":"7/4/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":456,"Cost":334,"Date":"7/13/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":641,"Cost":392,"Date":"8/8/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":486,"Cost":253,"Date":"8/26/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":148,"Cost":132,"Date":"9/2/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":916,"Cost":859,"Date":"9/29/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":721,"Cost":379,"Date":"10/12/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":142,"Cost":78,"Date":"11/2/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":239,"Cost":190,"Date":"11/4/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":302,"Cost":248,"Date":"11/7/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":900,"Cost":508,"Date":"12/1/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":981,"Cost":823,"Date":"12/4/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":823,"Cost":516,"Date":"12/7/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":600,"Cost":319,"Date":"12/18/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":110,"Cost":87,"Date":"12/20/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":180,"Cost":123,"Date":"12/20/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":415,"Cost":214,"Date":"12/21/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":353,"Cost":257,"Date":"1/9/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":993,"Cost":537,"Date":"2/5/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":850,"Cost":769,"Date":"2/16/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":712,"Cost":394,"Date":"2/16/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":494,"Cost":394,"Date":"2/18/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":924,"Cost":719,"Date":"2/22/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":462,"Cost":400,"Date":"2/25/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":572,"Cost":452,"Date":"3/8/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":373,"Cost":225,"Date":"4/2/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":670,"Cost":479,"Date":"4/3/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":514,"Cost":380,"Date":"4/9/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":777,"Cost":612,"Date":"4/10/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":632,"Cost":383,"Date":"4/19/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":486,"Cost":341,"Date":"5/17/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":860,"Cost":629,"Date":"5/22/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":454,"Cost":319,"Date":"6/20/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":250,"Cost":220,"Date":"7/1/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":79,"Cost":61,"Date":"7/4/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":993,"Cost":923,"Date":"7/8/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":386,"Cost":327,"Date":"7/9/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":645,"Cost":474,"Date":"7/14/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":631,"Cost":539,"Date":"7/19/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":761,"Cost":694,"Date":"8/1/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":1000,"Cost":581,"Date":"8/6/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":427,"Cost":219,"Date":"8/7/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":803,"Cost":491,"Date":"8/22/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":730,"Cost":642,"Date":"8/31/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":612,"Cost":518,"Date":"9/1/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":154,"Cost":137,"Date":"9/1/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":993,"Cost":556,"Date":"9/17/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":511,"Cost":345,"Date":"9/29/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":563,"Cost":378,"Date":"11/7/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":981,"Cost":518,"Date":"11/26/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":261,"Cost":133,"Date":"11/27/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":718,"Cost":667,"Date":"12/5/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":390,"Cost":328,"Date":"12/26/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":886,"Cost":661,"Date":"12/31/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":253,"Cost":128,"Date":"1/20/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":304,"Cost":203,"Date":"2/2/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":818,"Cost":679,"Date":"2/8/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":463,"Cost":398,"Date":"2/27/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":94,"Cost":89,"Date":"3/1/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":836,"Cost":684,"Date":"3/1/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":424,"Cost":238,"Date":"3/19/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":298,"Cost":216,"Date":"3/28/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":736,"Cost":453,"Date":"5/21/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":38,"Cost":35,"Date":"7/21/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":843,"Cost":683,"Date":"8/5/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":344,"Cost":199,"Date":"8/12/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":789,"Cost":672,"Date":"8/21/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":581,"Cost":473,"Date":"8/23/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":617,"Cost":378,"Date":"9/3/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":715,"Cost":563,"Date":"9/5/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":108,"Cost":59,"Date":"10/6/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":260,"Cost":210,"Date":"10/19/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":65,"Cost":35,"Date":"11/15/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":321,"Cost":202,"Date":"12/8/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":312,"Cost":292,"Date":"1/8/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":125,"Cost":96,"Date":"1/14/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":270,"Cost":194,"Date":"1/19/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":191,"Cost":164,"Date":"1/28/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":605,"Cost":410,"Date":"1/31/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":299,"Cost":155,"Date":"3/27/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":137,"Cost":94,"Date":"4/20/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":370,"Cost":265,"Date":"4/24/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":618,"Cost":320,"Date":"4/28/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":198,"Cost":136,"Date":"5/15/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":108,"Cost":96,"Date":"5/16/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":725,"Cost":449,"Date":"5/18/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":906,"Cost":652,"Date":"6/2/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":275,"Cost":236,"Date":"6/3/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":383,"Cost":251,"Date":"6/5/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":336,"Cost":176,"Date":"6/7/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":347,"Cost":190,"Date":"6/14/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":617,"Cost":535,"Date":"6/20/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":433,"Cost":284,"Date":"6/24/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":308,"Cost":268,"Date":"7/4/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":468,"Cost":275,"Date":"7/9/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":30,"Cost":19,"Date":"7/12/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":789,"Cost":723,"Date":"8/14/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":889,"Cost":806,"Date":"8/16/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":65,"Cost":49,"Date":"8/23/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":876,"Cost":476,"Date":"9/2/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":740,"Cost":592,"Date":"9/3/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":442,"Cost":235,"Date":"9/16/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":151,"Cost":119,"Date":"10/4/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":758,"Cost":633,"Date":"11/1/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":448,"Cost":249,"Date":"11/2/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":425,"Cost":231,"Date":"12/17/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":142,"Cost":123,"Date":"2/10/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":355,"Cost":307,"Date":"2/28/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":119,"Cost":73,"Date":"3/4/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":999,"Cost":822,"Date":"3/9/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":23,"Cost":19,"Date":"3/9/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":517,"Cost":486,"Date":"3/11/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":576,"Cost":386,"Date":"3/17/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":902,"Cost":850,"Date":"3/17/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":228,"Cost":206,"Date":"3/23/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":957,"Cost":614,"Date":"4/1/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":431,"Cost":366,"Date":"5/7/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":269,"Cost":251,"Date":"5/10/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":758,"Cost":427,"Date":"5/20/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":933,"Cost":828,"Date":"6/2/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":126,"Cost":95,"Date":"6/11/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":955,"Cost":706,"Date":"6/16/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":250,"Cost":137,"Date":"6/16/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":927,"Cost":862,"Date":"7/10/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":569,"Cost":458,"Date":"7/11/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":623,"Cost":456,"Date":"8/28/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":398,"Cost":274,"Date":"8/29/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":825,"Cost":462,"Date":"8/31/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":886,"Cost":815,"Date":"9/8/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":191,"Cost":136,"Date":"9/13/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":716,"Cost":457,"Date":"9/14/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":169,"Cost":103,"Date":"9/19/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":715,"Cost":638,"Date":"9/25/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":269,"Cost":171,"Date":"10/4/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":2,"Cost":1,"Date":"10/10/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":851,"Cost":671,"Date":"10/17/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":512,"Cost":309,"Date":"10/28/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":836,"Cost":667,"Date":"10/30/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":945,"Cost":646,"Date":"11/1/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":249,"Cost":159,"Date":"11/15/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":541,"Cost":276,"Date":"11/25/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":56,"Cost":42,"Date":"1/10/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":378,"Cost":323,"Date":"1/14/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":281,"Cost":201,"Date":"1/20/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":427,"Cost":269,"Date":"2/8/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":350,"Cost":212,"Date":"2/25/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":499,"Cost":292,"Date":"3/7/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":467,"Cost":408,"Date":"3/14/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":345,"Cost":259,"Date":"3/27/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":133,"Cost":108,"Date":"4/5/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":654,"Cost":462,"Date":"4/14/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":442,"Cost":225,"Date":"5/3/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":740,"Cost":422,"Date":"5/9/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":554,"Cost":298,"Date":"5/15/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":639,"Cost":340,"Date":"5/25/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":47,"Cost":41,"Date":"5/26/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":215,"Cost":158,"Date":"5/31/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":789,"Cost":565,"Date":"7/27/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":16,"Cost":11,"Date":"9/17/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":336,"Cost":238,"Date":"10/6/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":77,"Cost":52,"Date":"10/8/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":378,"Cost":331,"Date":"10/26/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":553,"Cost":502,"Date":"11/16/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":680,"Cost":619,"Date":"11/18/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM","Country":"Australia","Sale":306,"Cost":256,"Date":"12/1/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":170,"Cost":127,"Date":"2/9/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":291,"Cost":179,"Date":"2/11/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":907,"Cost":539,"Date":"3/10/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":47,"Cost":32,"Date":"3/16/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":21,"Cost":14,"Date":"3/18/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":96,"Cost":63,"Date":"3/20/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":977,"Cost":682,"Date":"3/26/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":921,"Cost":523,"Date":"6/2/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":990,"Cost":840,"Date":"6/10/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":234,"Cost":134,"Date":"6/16/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":306,"Cost":180,"Date":"6/25/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":608,"Cost":412,"Date":"7/19/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":182,"Cost":111,"Date":"7/21/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":448,"Cost":260,"Date":"7/25/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":161,"Cost":91,"Date":"8/4/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":719,"Cost":611,"Date":"9/2/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":385,"Cost":327,"Date":"9/4/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":647,"Cost":452,"Date":"9/19/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":388,"Cost":308,"Date":"9/29/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":990,"Cost":618,"Date":"10/2/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":10,"Cost":7,"Date":"10/15/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":745,"Cost":548,"Date":"10/30/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":87,"Cost":49,"Date":"11/9/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":482,"Cost":411,"Date":"11/23/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":828,"Cost":565,"Date":"11/30/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":854,"Cost":744,"Date":"12/8/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":480,"Cost":281,"Date":"12/11/2018"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":759,"Cost":639,"Date":"1/15/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":908,"Cost":669,"Date":"1/24/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":765,"Cost":694,"Date":"2/3/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":974,"Cost":600,"Date":"2/4/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":846,"Cost":469,"Date":"3/9/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":68,"Cost":49,"Date":"3/12/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":30,"Cost":22,"Date":"4/19/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":792,"Cost":397,"Date":"5/3/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":408,"Cost":310,"Date":"5/4/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":587,"Cost":383,"Date":"6/8/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":750,"Cost":567,"Date":"6/26/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":66,"Cost":51,"Date":"7/4/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":856,"Cost":483,"Date":"7/13/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":44,"Cost":29,"Date":"8/8/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":636,"Cost":475,"Date":"8/26/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":620,"Cost":461,"Date":"9/2/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":619,"Cost":391,"Date":"9/29/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":159,"Cost":125,"Date":"10/12/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":993,"Cost":722,"Date":"11/2/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":410,"Cost":332,"Date":"11/4/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":878,"Cost":697,"Date":"11/7/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":752,"Cost":659,"Date":"12/1/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":584,"Cost":434,"Date":"12/4/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":294,"Cost":217,"Date":"12/7/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":285,"Cost":243,"Date":"12/18/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":234,"Cost":194,"Date":"12/20/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":298,"Cost":209,"Date":"12/20/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":403,"Cost":269,"Date":"12/21/2019"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":614,"Cost":356,"Date":"1/9/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":276,"Cost":262,"Date":"2/5/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":131,"Cost":95,"Date":"2/16/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":853,"Cost":453,"Date":"2/16/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":421,"Cost":300,"Date":"2/18/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":440,"Cost":243,"Date":"2/22/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":308,"Cost":285,"Date":"2/25/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":268,"Cost":238,"Date":"3/8/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":207,"Cost":112,"Date":"4/2/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":878,"Cost":627,"Date":"4/3/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":142,"Cost":108,"Date":"4/9/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":706,"Cost":527,"Date":"4/10/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":614,"Cost":425,"Date":"4/19/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":204,"Cost":109,"Date":"5/17/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":473,"Cost":382,"Date":"5/22/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":636,"Cost":354,"Date":"6/20/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":204,"Cost":186,"Date":"7/1/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":865,"Cost":582,"Date":"7/4/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":342,"Cost":208,"Date":"7/8/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":452,"Cost":398,"Date":"7/9/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":931,"Cost":672,"Date":"7/14/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":510,"Cost":326,"Date":"7/19/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":867,"Cost":525,"Date":"8/1/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":852,"Cost":476,"Date":"8/6/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":34,"Cost":25,"Date":"8/7/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":203,"Cost":126,"Date":"8/22/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":401,"Cost":297,"Date":"8/31/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":146,"Cost":102,"Date":"9/1/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":379,"Cost":249,"Date":"9/1/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":550,"Cost":471,"Date":"9/17/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":827,"Cost":519,"Date":"9/29/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":684,"Cost":451,"Date":"11/7/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":178,"Cost":107,"Date":"11/26/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":584,"Cost":523,"Date":"11/27/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":247,"Cost":148,"Date":"12/5/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":787,"Cost":420,"Date":"12/26/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":598,"Cost":419,"Date":"12/31/2020"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":793,"Cost":531,"Date":"1/20/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":245,"Cost":172,"Date":"2/2/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":576,"Cost":396,"Date":"2/8/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":702,"Cost":434,"Date":"2/27/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":145,"Cost":115,"Date":"3/1/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":954,"Cost":610,"Date":"3/1/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":669,"Cost":523,"Date":"3/19/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":866,"Cost":801,"Date":"3/28/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":673,"Cost":598,"Date":"5/21/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":30,"Cost":16,"Date":"7/21/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":683,"Cost":451,"Date":"8/5/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":579,"Cost":345,"Date":"8/12/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":528,"Cost":308,"Date":"8/21/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":807,"Cost":637,"Date":"8/23/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":933,"Cost":853,"Date":"9/3/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":644,"Cost":420,"Date":"9/5/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":114,"Cost":76,"Date":"10/6/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":42,"Cost":34,"Date":"10/19/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":821,"Cost":624,"Date":"11/15/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":353,"Cost":325,"Date":"12/8/2021"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":668,"Cost":472,"Date":"1/8/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":321,"Cost":288,"Date":"1/14/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":85,"Cost":53,"Date":"1/19/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":782,"Cost":401,"Date":"1/28/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":58,"Cost":47,"Date":"1/31/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":105,"Cost":83,"Date":"3/27/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":353,"Cost":176,"Date":"4/20/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":912,"Cost":500,"Date":"4/24/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":2,"Cost":2,"Date":"4/28/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":221,"Cost":174,"Date":"5/15/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":848,"Cost":639,"Date":"5/16/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":756,"Cost":471,"Date":"5/18/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":980,"Cost":666,"Date":"6/2/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":100,"Cost":68,"Date":"6/3/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":202,"Cost":133,"Date":"6/5/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":291,"Cost":211,"Date":"6/7/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":361,"Cost":292,"Date":"6/14/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":256,"Cost":199,"Date":"6/20/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":690,"Cost":529,"Date":"6/24/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":107,"Cost":100,"Date":"7/4/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":580,"Cost":342,"Date":"7/9/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":346,"Cost":325,"Date":"7/12/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":562,"Cost":368,"Date":"8/14/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":466,"Cost":377,"Date":"8/16/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":395,"Cost":260,"Date":"8/23/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":464,"Cost":317,"Date":"9/2/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":221,"Cost":172,"Date":"9/3/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":899,"Cost":561,"Date":"9/16/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":120,"Cost":104,"Date":"10/4/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":701,"Cost":525,"Date":"11/1/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":929,"Cost":687,"Date":"11/2/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":364,"Cost":263,"Date":"12/17/2022"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":40,"Cost":27,"Date":"2/10/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":293,"Cost":254,"Date":"2/28/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":412,"Cost":369,"Date":"3/4/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":972,"Cost":590,"Date":"3/9/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":5,"Cost":3,"Date":"3/9/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":555,"Cost":500,"Date":"3/11/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":396,"Cost":320,"Date":"3/17/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":812,"Cost":655,"Date":"3/17/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":546,"Cost":329,"Date":"3/23/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":141,"Cost":72,"Date":"4/1/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":492,"Cost":420,"Date":"5/7/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":414,"Cost":327,"Date":"5/10/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":963,"Cost":613,"Date":"5/20/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":545,"Cost":312,"Date":"6/2/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":420,"Cost":330,"Date":"6/11/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":75,"Cost":49,"Date":"6/16/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":796,"Cost":546,"Date":"6/16/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":327,"Cost":244,"Date":"7/10/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":907,"Cost":722,"Date":"7/11/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":164,"Cost":154,"Date":"8/28/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":983,"Cost":550,"Date":"8/29/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":179,"Cost":129,"Date":"8/31/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":431,"Cost":306,"Date":"9/8/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":790,"Cost":745,"Date":"9/13/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":922,"Cost":628,"Date":"9/14/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":806,"Cost":510,"Date":"9/19/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":335,"Cost":289,"Date":"9/25/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":200,"Cost":189,"Date":"10/4/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":335,"Cost":209,"Date":"10/10/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":440,"Cost":387,"Date":"10/17/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":722,"Cost":685,"Date":"10/28/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":787,"Cost":725,"Date":"10/30/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":251,"Cost":222,"Date":"11/1/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":482,"Cost":246,"Date":"11/15/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":816,"Cost":613,"Date":"11/25/2023"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":480,"Cost":440,"Date":"1/10/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":404,"Cost":325,"Date":"1/14/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":310,"Cost":213,"Date":"1/20/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":549,"Cost":309,"Date":"2/8/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":77,"Cost":51,"Date":"2/25/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":45,"Cost":38,"Date":"3/7/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":219,"Cost":142,"Date":"3/14/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":188,"Cost":154,"Date":"3/27/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":188,"Cost":112,"Date":"4/5/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":68,"Cost":49,"Date":"4/14/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":429,"Cost":281,"Date":"5/3/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":613,"Cost":502,"Date":"5/9/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":555,"Cost":347,"Date":"5/15/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":518,"Cost":341,"Date":"5/25/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":590,"Cost":497,"Date":"5/26/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":540,"Cost":353,"Date":"5/31/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":979,"Cost":528,"Date":"7/27/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":254,"Cost":188,"Date":"9/17/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":377,"Cost":260,"Date":"10/6/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":222,"Cost":114,"Date":"10/8/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":281,"Cost":159,"Date":"10/26/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":930,"Cost":619,"Date":"11/16/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":207,"Cost":189,"Date":"11/18/2024"},{"Store":"Burnside Village, Adelaide","Brand":"HM Home","Country":"Australia","Sale":987,"Cost":934,"Date":"12/1/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":405,"Cost":290,"Date":"2/9/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":642,"Cost":560,"Date":"2/11/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":947,"Cost":683,"Date":"3/10/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":456,"Cost":405,"Date":"3/16/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":140,"Cost":94,"Date":"3/18/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":484,"Cost":343,"Date":"3/20/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":514,"Cost":471,"Date":"3/26/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":552,"Cost":346,"Date":"6/2/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":520,"Cost":268,"Date":"6/10/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":95,"Cost":69,"Date":"6/16/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":31,"Cost":22,"Date":"6/25/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":436,"Cost":226,"Date":"7/19/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":414,"Cost":374,"Date":"7/21/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":792,"Cost":675,"Date":"7/25/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":547,"Cost":481,"Date":"8/4/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":808,"Cost":525,"Date":"9/2/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":370,"Cost":266,"Date":"9/4/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":642,"Cost":399,"Date":"9/19/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":775,"Cost":408,"Date":"9/29/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":792,"Cost":460,"Date":"10/2/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":64,"Cost":36,"Date":"10/15/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":142,"Cost":78,"Date":"10/30/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":505,"Cost":253,"Date":"11/9/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":757,"Cost":511,"Date":"11/23/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":169,"Cost":125,"Date":"11/30/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":724,"Cost":541,"Date":"12/8/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":831,"Cost":427,"Date":"12/11/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":440,"Cost":394,"Date":"1/15/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":498,"Cost":271,"Date":"1/24/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":366,"Cost":317,"Date":"2/3/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":808,"Cost":570,"Date":"2/4/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":965,"Cost":717,"Date":"3/9/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":287,"Cost":170,"Date":"3/12/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":36,"Cost":23,"Date":"4/19/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":28,"Cost":19,"Date":"5/3/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":969,"Cost":887,"Date":"5/4/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":231,"Cost":150,"Date":"6/8/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":965,"Cost":795,"Date":"6/26/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":580,"Cost":340,"Date":"7/4/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":217,"Cost":197,"Date":"7/13/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":124,"Cost":81,"Date":"8/8/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":117,"Cost":99,"Date":"8/26/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":76,"Cost":40,"Date":"9/2/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":301,"Cost":259,"Date":"9/29/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":773,"Cost":494,"Date":"10/12/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":574,"Cost":330,"Date":"11/2/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":457,"Cost":358,"Date":"11/4/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":84,"Cost":77,"Date":"11/7/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":220,"Cost":136,"Date":"12/1/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":352,"Cost":279,"Date":"12/4/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":581,"Cost":514,"Date":"12/7/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":855,"Cost":767,"Date":"12/18/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":744,"Cost":618,"Date":"12/20/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":161,"Cost":144,"Date":"12/20/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":755,"Cost":552,"Date":"12/21/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":677,"Cost":447,"Date":"1/9/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":311,"Cost":262,"Date":"2/5/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":554,"Cost":506,"Date":"2/16/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":577,"Cost":409,"Date":"2/16/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":964,"Cost":540,"Date":"2/18/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":917,"Cost":827,"Date":"2/22/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":802,"Cost":487,"Date":"2/25/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":371,"Cost":193,"Date":"3/8/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":736,"Cost":671,"Date":"4/2/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":991,"Cost":592,"Date":"4/3/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":123,"Cost":114,"Date":"4/9/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":707,"Cost":616,"Date":"4/10/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":751,"Cost":504,"Date":"4/19/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":968,"Cost":553,"Date":"5/17/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":377,"Cost":232,"Date":"5/22/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":887,"Cost":838,"Date":"6/20/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":889,"Cost":564,"Date":"7/1/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":887,"Cost":740,"Date":"7/4/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":133,"Cost":104,"Date":"7/8/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":684,"Cost":431,"Date":"7/9/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":667,"Cost":610,"Date":"7/14/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":209,"Cost":125,"Date":"7/19/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":29,"Cost":22,"Date":"8/1/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":327,"Cost":188,"Date":"8/6/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":646,"Cost":474,"Date":"8/7/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":638,"Cost":567,"Date":"8/22/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":669,"Cost":387,"Date":"8/31/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":736,"Cost":533,"Date":"9/1/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":931,"Cost":784,"Date":"9/1/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":264,"Cost":215,"Date":"9/17/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":116,"Cost":92,"Date":"9/29/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":907,"Cost":470,"Date":"11/7/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":18,"Cost":15,"Date":"11/26/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":974,"Cost":752,"Date":"11/27/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":122,"Cost":105,"Date":"12/5/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":976,"Cost":779,"Date":"12/26/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":19,"Cost":11,"Date":"12/31/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":844,"Cost":669,"Date":"1/20/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":577,"Cost":308,"Date":"2/2/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":989,"Cost":894,"Date":"2/8/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":610,"Cost":464,"Date":"2/27/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":875,"Cost":536,"Date":"3/1/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":424,"Cost":226,"Date":"3/1/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":842,"Cost":697,"Date":"3/19/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":118,"Cost":102,"Date":"3/28/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":820,"Cost":684,"Date":"5/21/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":666,"Cost":556,"Date":"7/21/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":167,"Cost":105,"Date":"8/5/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":716,"Cost":553,"Date":"8/12/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":313,"Cost":249,"Date":"8/21/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":522,"Cost":470,"Date":"8/23/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":389,"Cost":281,"Date":"9/3/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":648,"Cost":570,"Date":"9/5/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":182,"Cost":134,"Date":"10/6/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":48,"Cost":31,"Date":"10/19/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":452,"Cost":358,"Date":"11/15/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":180,"Cost":138,"Date":"12/8/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":688,"Cost":512,"Date":"1/8/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":313,"Cost":170,"Date":"1/14/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":701,"Cost":397,"Date":"1/19/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":718,"Cost":471,"Date":"1/28/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":27,"Cost":17,"Date":"1/31/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":121,"Cost":82,"Date":"3/27/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":449,"Cost":263,"Date":"4/20/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":361,"Cost":198,"Date":"4/24/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":666,"Cost":516,"Date":"4/28/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":812,"Cost":602,"Date":"5/15/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":890,"Cost":726,"Date":"5/16/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":359,"Cost":310,"Date":"5/18/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":61,"Cost":31,"Date":"6/2/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":294,"Cost":150,"Date":"6/3/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":23,"Cost":20,"Date":"6/5/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":3,"Cost":2,"Date":"6/7/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":136,"Cost":90,"Date":"6/14/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":816,"Cost":633,"Date":"6/20/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":606,"Cost":498,"Date":"6/24/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":730,"Cost":382,"Date":"7/4/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":49,"Cost":37,"Date":"7/9/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":867,"Cost":618,"Date":"7/12/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":262,"Cost":135,"Date":"8/14/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":459,"Cost":310,"Date":"8/16/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":539,"Cost":498,"Date":"8/23/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":337,"Cost":237,"Date":"9/2/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":803,"Cost":592,"Date":"9/3/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":911,"Cost":777,"Date":"9/16/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":908,"Cost":457,"Date":"10/4/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":31,"Cost":16,"Date":"11/1/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":637,"Cost":562,"Date":"11/2/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":985,"Cost":670,"Date":"12/17/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":518,"Cost":424,"Date":"2/10/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":309,"Cost":268,"Date":"2/28/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":911,"Cost":480,"Date":"3/4/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":332,"Cost":210,"Date":"3/9/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":278,"Cost":183,"Date":"3/9/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":734,"Cost":666,"Date":"3/11/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":47,"Cost":31,"Date":"3/17/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":428,"Cost":259,"Date":"3/17/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":405,"Cost":235,"Date":"3/23/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":571,"Cost":491,"Date":"4/1/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":140,"Cost":127,"Date":"5/7/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":537,"Cost":286,"Date":"5/10/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":508,"Cost":438,"Date":"5/20/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":282,"Cost":203,"Date":"6/2/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":890,"Cost":814,"Date":"6/11/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":950,"Cost":752,"Date":"6/16/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":12,"Cost":11,"Date":"6/16/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":810,"Cost":501,"Date":"7/10/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":970,"Cost":877,"Date":"7/11/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":701,"Cost":581,"Date":"8/28/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":506,"Cost":416,"Date":"8/29/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":670,"Cost":378,"Date":"8/31/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":41,"Cost":23,"Date":"9/8/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":106,"Cost":59,"Date":"9/13/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":616,"Cost":354,"Date":"9/14/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":360,"Cost":301,"Date":"9/19/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":750,"Cost":415,"Date":"9/25/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":914,"Cost":600,"Date":"10/4/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":89,"Cost":69,"Date":"10/10/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":280,"Cost":210,"Date":"10/17/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":317,"Cost":201,"Date":"10/28/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":832,"Cost":483,"Date":"10/30/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":294,"Cost":239,"Date":"11/1/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":237,"Cost":224,"Date":"11/15/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":432,"Cost":385,"Date":"11/25/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":390,"Cost":206,"Date":"1/10/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":65,"Cost":54,"Date":"1/14/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":284,"Cost":250,"Date":"1/20/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":531,"Cost":359,"Date":"2/8/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":495,"Cost":432,"Date":"2/25/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":37,"Cost":35,"Date":"3/7/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":205,"Cost":190,"Date":"3/14/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":30,"Cost":26,"Date":"3/27/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":549,"Cost":326,"Date":"4/5/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":17,"Cost":8,"Date":"4/14/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":585,"Cost":379,"Date":"5/3/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":86,"Cost":60,"Date":"5/9/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":407,"Cost":331,"Date":"5/15/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":92,"Cost":47,"Date":"5/25/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":985,"Cost":899,"Date":"5/26/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":740,"Cost":457,"Date":"5/31/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":957,"Cost":842,"Date":"7/27/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":398,"Cost":345,"Date":"9/17/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":127,"Cost":99,"Date":"10/6/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":51,"Cost":28,"Date":"10/8/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":138,"Cost":91,"Date":"10/26/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":961,"Cost":607,"Date":"11/16/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":298,"Cost":227,"Date":"11/18/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":454,"Cost":368,"Date":"12/1/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":210,"Cost":167,"Date":"2/9/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":607,"Cost":394,"Date":"2/11/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":981,"Cost":902,"Date":"3/10/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":740,"Cost":555,"Date":"3/16/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":608,"Cost":334,"Date":"3/18/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":103,"Cost":90,"Date":"3/20/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":321,"Cost":165,"Date":"3/26/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":97,"Cost":91,"Date":"6/2/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":747,"Cost":484,"Date":"6/10/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":700,"Cost":556,"Date":"6/16/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":767,"Cost":672,"Date":"6/25/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":281,"Cost":257,"Date":"7/19/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":1,"Cost":1,"Date":"7/21/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":225,"Cost":145,"Date":"7/25/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":71,"Cost":55,"Date":"8/4/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":813,"Cost":607,"Date":"9/2/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":12,"Cost":8,"Date":"9/4/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":720,"Cost":585,"Date":"9/19/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":963,"Cost":902,"Date":"9/29/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":682,"Cost":636,"Date":"10/2/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":513,"Cost":362,"Date":"10/15/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":364,"Cost":196,"Date":"10/30/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":430,"Cost":242,"Date":"11/9/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":53,"Cost":49,"Date":"11/23/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":731,"Cost":546,"Date":"11/30/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":998,"Cost":545,"Date":"12/8/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":874,"Cost":512,"Date":"12/11/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":583,"Cost":384,"Date":"1/15/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":80,"Cost":42,"Date":"1/24/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":248,"Cost":193,"Date":"2/3/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":621,"Cost":330,"Date":"2/4/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":257,"Cost":130,"Date":"3/9/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":647,"Cost":520,"Date":"3/12/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":893,"Cost":639,"Date":"4/19/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":227,"Cost":161,"Date":"5/3/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":328,"Cost":240,"Date":"5/4/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":870,"Cost":557,"Date":"6/8/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":841,"Cost":793,"Date":"6/26/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":387,"Cost":341,"Date":"7/4/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":230,"Cost":203,"Date":"7/13/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":820,"Cost":769,"Date":"8/8/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":466,"Cost":270,"Date":"8/26/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":804,"Cost":463,"Date":"9/2/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":977,"Cost":564,"Date":"9/29/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":460,"Cost":373,"Date":"10/12/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":120,"Cost":101,"Date":"11/2/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":576,"Cost":480,"Date":"11/4/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":959,"Cost":868,"Date":"11/7/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":973,"Cost":862,"Date":"12/1/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":390,"Cost":333,"Date":"12/4/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":181,"Cost":165,"Date":"12/7/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":841,"Cost":797,"Date":"12/18/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":256,"Cost":207,"Date":"12/20/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":331,"Cost":194,"Date":"12/20/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":978,"Cost":699,"Date":"12/21/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":225,"Cost":193,"Date":"1/9/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":610,"Cost":453,"Date":"2/5/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":864,"Cost":706,"Date":"2/16/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":996,"Cost":787,"Date":"2/16/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":280,"Cost":241,"Date":"2/18/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":942,"Cost":738,"Date":"2/22/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":766,"Cost":386,"Date":"2/25/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":899,"Cost":717,"Date":"3/8/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":838,"Cost":667,"Date":"4/2/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":426,"Cost":233,"Date":"4/3/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":726,"Cost":463,"Date":"4/9/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":161,"Cost":105,"Date":"4/10/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":941,"Cost":596,"Date":"4/19/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":546,"Cost":310,"Date":"5/17/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":959,"Cost":504,"Date":"5/22/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":230,"Cost":195,"Date":"6/20/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":579,"Cost":537,"Date":"7/1/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":113,"Cost":92,"Date":"7/4/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":30,"Cost":24,"Date":"7/8/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":9,"Cost":9,"Date":"7/9/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":860,"Cost":684,"Date":"7/14/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":535,"Cost":457,"Date":"7/19/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":928,"Cost":610,"Date":"8/1/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":266,"Cost":146,"Date":"8/6/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":438,"Cost":220,"Date":"8/7/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":904,"Cost":512,"Date":"8/22/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":47,"Cost":39,"Date":"8/31/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":960,"Cost":625,"Date":"9/1/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":393,"Cost":219,"Date":"9/1/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":203,"Cost":163,"Date":"9/17/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":19,"Cost":15,"Date":"9/29/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":275,"Cost":259,"Date":"11/7/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":972,"Cost":525,"Date":"11/26/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":732,"Cost":625,"Date":"11/27/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":612,"Cost":344,"Date":"12/5/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":457,"Cost":421,"Date":"12/26/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":991,"Cost":820,"Date":"12/31/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":416,"Cost":217,"Date":"1/20/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":618,"Cost":334,"Date":"2/2/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":462,"Cost":371,"Date":"2/8/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":116,"Cost":84,"Date":"2/27/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":880,"Cost":458,"Date":"3/1/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":819,"Cost":757,"Date":"3/1/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":688,"Cost":435,"Date":"3/19/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":638,"Cost":504,"Date":"3/28/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":703,"Cost":626,"Date":"5/21/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":751,"Cost":603,"Date":"7/21/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":748,"Cost":644,"Date":"8/5/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":585,"Cost":402,"Date":"8/12/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":821,"Cost":726,"Date":"8/21/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":597,"Cost":327,"Date":"8/23/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":592,"Cost":486,"Date":"9/3/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":690,"Cost":354,"Date":"9/5/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":857,"Cost":441,"Date":"10/6/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":142,"Cost":132,"Date":"10/19/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":537,"Cost":474,"Date":"11/15/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":444,"Cost":321,"Date":"12/8/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":678,"Cost":389,"Date":"1/8/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":424,"Cost":387,"Date":"1/14/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":378,"Cost":251,"Date":"1/19/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":398,"Cost":239,"Date":"1/28/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":558,"Cost":309,"Date":"1/31/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":427,"Cost":396,"Date":"3/27/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":116,"Cost":91,"Date":"4/20/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":17,"Cost":12,"Date":"4/24/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":446,"Cost":353,"Date":"4/28/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":76,"Cost":58,"Date":"5/15/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":398,"Cost":378,"Date":"5/16/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":600,"Cost":397,"Date":"5/18/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":875,"Cost":747,"Date":"6/2/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":507,"Cost":384,"Date":"6/3/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":616,"Cost":533,"Date":"6/5/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":729,"Cost":382,"Date":"6/7/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":437,"Cost":394,"Date":"6/14/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":684,"Cost":573,"Date":"6/20/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":168,"Cost":102,"Date":"6/24/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":176,"Cost":120,"Date":"7/4/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":955,"Cost":605,"Date":"7/9/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":769,"Cost":623,"Date":"7/12/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":760,"Cost":645,"Date":"8/14/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":394,"Cost":225,"Date":"8/16/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":32,"Cost":22,"Date":"8/23/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":86,"Cost":44,"Date":"9/2/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":524,"Cost":485,"Date":"9/3/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":612,"Cost":345,"Date":"9/16/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":727,"Cost":399,"Date":"10/4/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":38,"Cost":19,"Date":"11/1/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":725,"Cost":482,"Date":"11/2/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":840,"Cost":775,"Date":"12/17/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":471,"Cost":432,"Date":"2/10/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":280,"Cost":234,"Date":"2/28/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":738,"Cost":391,"Date":"3/4/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":292,"Cost":251,"Date":"3/9/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":123,"Cost":104,"Date":"3/9/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":846,"Cost":562,"Date":"3/11/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":242,"Cost":140,"Date":"3/17/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":84,"Cost":45,"Date":"3/17/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":142,"Cost":133,"Date":"3/23/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":305,"Cost":232,"Date":"4/1/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":446,"Cost":390,"Date":"5/7/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":453,"Cost":419,"Date":"5/10/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":160,"Cost":127,"Date":"5/20/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":818,"Cost":467,"Date":"6/2/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":887,"Cost":837,"Date":"6/11/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":419,"Cost":374,"Date":"6/16/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":849,"Cost":492,"Date":"6/16/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":860,"Cost":600,"Date":"7/10/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":502,"Cost":393,"Date":"7/11/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":283,"Cost":156,"Date":"8/28/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":209,"Cost":146,"Date":"8/29/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":128,"Cost":97,"Date":"8/31/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":553,"Cost":480,"Date":"9/8/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":95,"Cost":59,"Date":"9/13/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":170,"Cost":118,"Date":"9/14/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":464,"Cost":380,"Date":"9/19/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":865,"Cost":639,"Date":"9/25/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":684,"Cost":460,"Date":"10/4/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":537,"Cost":460,"Date":"10/10/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":784,"Cost":394,"Date":"10/17/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":102,"Cost":53,"Date":"10/28/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":74,"Cost":38,"Date":"10/30/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":359,"Cost":269,"Date":"11/1/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":852,"Cost":468,"Date":"11/15/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":416,"Cost":308,"Date":"11/25/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":1,"Cost":0,"Date":"1/10/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":514,"Cost":404,"Date":"1/14/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":478,"Cost":442,"Date":"1/20/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":626,"Cost":448,"Date":"2/8/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":416,"Cost":345,"Date":"2/25/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":138,"Cost":105,"Date":"3/7/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":1,"Cost":0,"Date":"3/14/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":654,"Cost":450,"Date":"3/27/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":264,"Cost":225,"Date":"4/5/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":276,"Cost":149,"Date":"4/14/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":797,"Cost":494,"Date":"5/3/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":632,"Cost":451,"Date":"5/9/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":390,"Cost":352,"Date":"5/15/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":197,"Cost":140,"Date":"5/25/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":802,"Cost":594,"Date":"5/26/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":1,"Cost":1,"Date":"5/31/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":593,"Cost":436,"Date":"7/27/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":689,"Cost":596,"Date":"9/17/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":207,"Cost":184,"Date":"10/6/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":774,"Cost":550,"Date":"10/8/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":300,"Cost":196,"Date":"10/26/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":48,"Cost":33,"Date":"11/16/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":612,"Cost":484,"Date":"11/18/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"Jeans","Country":"Australia","Sale":443,"Cost":309,"Date":"12/1/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":354,"Cost":182,"Date":"2/9/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":486,"Cost":430,"Date":"2/11/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":336,"Cost":190,"Date":"3/10/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":798,"Cost":703,"Date":"3/16/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":35,"Cost":30,"Date":"3/18/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":642,"Cost":426,"Date":"3/20/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":637,"Cost":561,"Date":"3/26/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":791,"Cost":465,"Date":"6/2/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":21,"Cost":13,"Date":"6/10/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":649,"Cost":558,"Date":"6/16/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":199,"Cost":152,"Date":"6/25/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":933,"Cost":757,"Date":"7/19/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":444,"Cost":409,"Date":"7/21/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":350,"Cost":222,"Date":"7/25/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":366,"Cost":340,"Date":"8/4/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":139,"Cost":100,"Date":"9/2/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":440,"Cost":227,"Date":"9/4/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":4,"Cost":3,"Date":"9/19/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":835,"Cost":667,"Date":"9/29/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":954,"Cost":835,"Date":"10/2/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":469,"Cost":353,"Date":"10/15/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":74,"Cost":55,"Date":"10/30/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":803,"Cost":426,"Date":"11/9/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":704,"Cost":429,"Date":"11/23/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":224,"Cost":168,"Date":"11/30/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":223,"Cost":156,"Date":"12/8/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":472,"Cost":273,"Date":"12/11/2018"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":636,"Cost":468,"Date":"1/15/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":818,"Cost":589,"Date":"1/24/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":33,"Cost":29,"Date":"2/3/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":633,"Cost":431,"Date":"2/4/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":545,"Cost":336,"Date":"3/9/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":766,"Cost":635,"Date":"3/12/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":56,"Cost":48,"Date":"4/19/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":355,"Cost":268,"Date":"5/3/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":939,"Cost":616,"Date":"5/4/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":964,"Cost":561,"Date":"6/8/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":571,"Cost":538,"Date":"6/26/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":425,"Cost":251,"Date":"7/4/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":711,"Cost":534,"Date":"7/13/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":494,"Cost":450,"Date":"8/8/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":837,"Cost":444,"Date":"8/26/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":499,"Cost":287,"Date":"9/2/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":500,"Cost":399,"Date":"9/29/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":113,"Cost":91,"Date":"10/12/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":779,"Cost":410,"Date":"11/2/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":497,"Cost":435,"Date":"11/4/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":902,"Cost":598,"Date":"11/7/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":97,"Cost":52,"Date":"12/1/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":575,"Cost":330,"Date":"12/4/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":230,"Cost":199,"Date":"12/7/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":364,"Cost":314,"Date":"12/18/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":483,"Cost":290,"Date":"12/20/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":180,"Cost":167,"Date":"12/20/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":7,"Cost":4,"Date":"12/21/2019"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":259,"Cost":240,"Date":"1/9/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":256,"Cost":229,"Date":"2/5/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":406,"Cost":212,"Date":"2/16/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":879,"Cost":703,"Date":"2/16/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":281,"Cost":199,"Date":"2/18/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":127,"Cost":112,"Date":"2/22/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":413,"Cost":258,"Date":"2/25/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":969,"Cost":571,"Date":"3/8/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":924,"Cost":765,"Date":"4/2/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":52,"Cost":33,"Date":"4/3/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":557,"Cost":529,"Date":"4/9/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":418,"Cost":346,"Date":"4/10/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":90,"Cost":81,"Date":"4/19/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":514,"Cost":405,"Date":"5/17/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":747,"Cost":640,"Date":"5/22/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":809,"Cost":433,"Date":"6/20/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":710,"Cost":597,"Date":"7/1/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":127,"Cost":108,"Date":"7/4/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":37,"Cost":27,"Date":"7/8/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":52,"Cost":46,"Date":"7/9/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":910,"Cost":637,"Date":"7/14/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":925,"Cost":707,"Date":"7/19/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":423,"Cost":320,"Date":"8/1/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":350,"Cost":226,"Date":"8/6/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":711,"Cost":434,"Date":"8/7/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":55,"Cost":50,"Date":"8/22/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":140,"Cost":117,"Date":"8/31/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":739,"Cost":573,"Date":"9/1/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":25,"Cost":20,"Date":"9/1/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":214,"Cost":189,"Date":"9/17/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":105,"Cost":86,"Date":"9/29/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":361,"Cost":220,"Date":"11/7/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":464,"Cost":303,"Date":"11/26/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":689,"Cost":444,"Date":"11/27/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":335,"Cost":167,"Date":"12/5/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":494,"Cost":438,"Date":"12/26/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":734,"Cost":419,"Date":"12/31/2020"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":42,"Cost":24,"Date":"1/20/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":342,"Cost":200,"Date":"2/2/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":805,"Cost":654,"Date":"2/8/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":244,"Cost":169,"Date":"2/27/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":941,"Cost":662,"Date":"3/1/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":766,"Cost":404,"Date":"3/1/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":332,"Cost":265,"Date":"3/19/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":401,"Cost":369,"Date":"3/28/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":930,"Cost":830,"Date":"5/21/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":691,"Cost":476,"Date":"7/21/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":43,"Cost":31,"Date":"8/5/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":478,"Cost":328,"Date":"8/12/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":831,"Cost":564,"Date":"8/21/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":999,"Cost":825,"Date":"8/23/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":754,"Cost":539,"Date":"9/3/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":363,"Cost":300,"Date":"9/5/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":31,"Cost":18,"Date":"10/6/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":288,"Cost":156,"Date":"10/19/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":324,"Cost":301,"Date":"11/15/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":51,"Cost":33,"Date":"12/8/2021"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":644,"Cost":512,"Date":"1/8/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":610,"Cost":489,"Date":"1/14/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":442,"Cost":405,"Date":"1/19/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":913,"Cost":756,"Date":"1/28/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":836,"Cost":634,"Date":"1/31/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":690,"Cost":471,"Date":"3/27/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":893,"Cost":831,"Date":"4/20/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":406,"Cost":328,"Date":"4/24/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":438,"Cost":410,"Date":"4/28/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":244,"Cost":155,"Date":"5/15/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":926,"Cost":687,"Date":"5/16/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":585,"Cost":308,"Date":"5/18/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":728,"Cost":609,"Date":"6/2/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":463,"Cost":307,"Date":"6/3/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":972,"Cost":876,"Date":"6/5/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":127,"Cost":96,"Date":"6/7/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":861,"Cost":597,"Date":"6/14/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":232,"Cost":172,"Date":"6/20/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":126,"Cost":111,"Date":"6/24/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":766,"Cost":427,"Date":"7/4/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":210,"Cost":129,"Date":"7/9/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":789,"Cost":586,"Date":"7/12/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":920,"Cost":766,"Date":"8/14/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":681,"Cost":483,"Date":"8/16/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":244,"Cost":128,"Date":"8/23/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":710,"Cost":384,"Date":"9/2/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":929,"Cost":495,"Date":"9/3/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":403,"Cost":285,"Date":"9/16/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":426,"Cost":266,"Date":"10/4/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":649,"Cost":451,"Date":"11/1/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":346,"Cost":267,"Date":"11/2/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":702,"Cost":600,"Date":"12/17/2022"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":899,"Cost":696,"Date":"2/10/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":542,"Cost":445,"Date":"2/28/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":846,"Cost":427,"Date":"3/4/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":235,"Cost":122,"Date":"3/9/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":614,"Cost":369,"Date":"3/9/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":468,"Cost":329,"Date":"3/11/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":890,"Cost":734,"Date":"3/17/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":536,"Cost":466,"Date":"3/17/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":938,"Cost":530,"Date":"3/23/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":895,"Cost":564,"Date":"4/1/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":869,"Cost":634,"Date":"5/7/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":429,"Cost":394,"Date":"5/10/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":493,"Cost":340,"Date":"5/20/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":262,"Cost":160,"Date":"6/2/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":946,"Cost":866,"Date":"6/11/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":639,"Cost":375,"Date":"6/16/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":793,"Cost":545,"Date":"6/16/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":649,"Cost":495,"Date":"7/10/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":507,"Cost":456,"Date":"7/11/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":501,"Cost":281,"Date":"8/28/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":461,"Cost":398,"Date":"8/29/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":277,"Cost":180,"Date":"8/31/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":99,"Cost":61,"Date":"9/8/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":663,"Cost":531,"Date":"9/13/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":846,"Cost":714,"Date":"9/14/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":855,"Cost":725,"Date":"9/19/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":783,"Cost":527,"Date":"9/25/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":100,"Cost":60,"Date":"10/4/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":871,"Cost":617,"Date":"10/10/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":436,"Cost":245,"Date":"10/17/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":571,"Cost":344,"Date":"10/28/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":231,"Cost":184,"Date":"10/30/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":423,"Cost":330,"Date":"11/1/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":848,"Cost":724,"Date":"11/15/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":574,"Cost":372,"Date":"11/25/2023"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":74,"Cost":64,"Date":"1/10/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":549,"Cost":431,"Date":"1/14/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":40,"Cost":34,"Date":"1/20/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":286,"Cost":185,"Date":"2/8/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":187,"Cost":110,"Date":"2/25/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":628,"Cost":335,"Date":"3/7/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":760,"Cost":438,"Date":"3/14/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":890,"Cost":693,"Date":"3/27/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":270,"Cost":211,"Date":"4/5/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":791,"Cost":449,"Date":"4/14/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":325,"Cost":276,"Date":"5/3/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":583,"Cost":484,"Date":"5/9/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":475,"Cost":238,"Date":"5/15/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":960,"Cost":503,"Date":"5/25/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":254,"Cost":178,"Date":"5/26/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":10,"Cost":7,"Date":"5/31/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":393,"Cost":323,"Date":"7/27/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":274,"Cost":203,"Date":"9/17/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":508,"Cost":387,"Date":"10/6/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":100,"Cost":81,"Date":"10/8/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":231,"Cost":213,"Date":"10/26/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":714,"Cost":431,"Date":"11/16/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":75,"Cost":39,"Date":"11/18/2024"},{"Store":"Tea Tree Plaza, Adelaide","Brand":"COS","Country":"Australia","Sale":850,"Cost":597,"Date":"12/1/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":68,"Cost":42,"Date":"2/9/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":691,"Cost":362,"Date":"2/11/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":307,"Cost":181,"Date":"3/10/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":996,"Cost":596,"Date":"3/16/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":643,"Cost":423,"Date":"3/18/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":715,"Cost":613,"Date":"3/20/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":249,"Cost":156,"Date":"3/26/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":233,"Cost":135,"Date":"6/2/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":868,"Cost":524,"Date":"6/10/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":315,"Cost":267,"Date":"6/16/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":683,"Cost":387,"Date":"6/25/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":549,"Cost":459,"Date":"7/19/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":106,"Cost":70,"Date":"7/21/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":196,"Cost":162,"Date":"7/25/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":479,"Cost":322,"Date":"8/4/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":376,"Cost":231,"Date":"9/2/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":73,"Cost":67,"Date":"9/4/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":545,"Cost":458,"Date":"9/19/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":450,"Cost":334,"Date":"9/29/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":268,"Cost":209,"Date":"10/2/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":879,"Cost":519,"Date":"10/15/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":421,"Cost":266,"Date":"10/30/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":175,"Cost":132,"Date":"11/9/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":273,"Cost":257,"Date":"11/23/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":365,"Cost":329,"Date":"11/30/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":527,"Cost":362,"Date":"12/8/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":156,"Cost":146,"Date":"12/11/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":672,"Cost":390,"Date":"1/15/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":763,"Cost":473,"Date":"1/24/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":283,"Cost":178,"Date":"2/3/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":737,"Cost":381,"Date":"2/4/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":16,"Cost":12,"Date":"3/9/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":569,"Cost":473,"Date":"3/12/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":980,"Cost":628,"Date":"4/19/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":141,"Cost":101,"Date":"5/3/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":744,"Cost":608,"Date":"5/4/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":110,"Cost":105,"Date":"6/8/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":442,"Cost":365,"Date":"6/26/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":781,"Cost":517,"Date":"7/4/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":851,"Cost":502,"Date":"7/13/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":474,"Cost":252,"Date":"8/8/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":143,"Cost":76,"Date":"8/26/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":877,"Cost":763,"Date":"9/2/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":417,"Cost":366,"Date":"9/29/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":194,"Cost":172,"Date":"10/12/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":828,"Cost":778,"Date":"11/2/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":336,"Cost":275,"Date":"11/4/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":112,"Cost":86,"Date":"11/7/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":266,"Cost":156,"Date":"12/1/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":429,"Cost":268,"Date":"12/4/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":882,"Cost":595,"Date":"12/7/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":105,"Cost":84,"Date":"12/18/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":929,"Cost":848,"Date":"12/20/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":377,"Cost":272,"Date":"12/20/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":44,"Cost":22,"Date":"12/21/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":627,"Cost":389,"Date":"1/9/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":37,"Cost":31,"Date":"2/5/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":258,"Cost":179,"Date":"2/16/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":816,"Cost":729,"Date":"2/16/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":2,"Cost":2,"Date":"2/18/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":433,"Cost":411,"Date":"2/22/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":359,"Cost":247,"Date":"2/25/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":365,"Cost":289,"Date":"3/8/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":951,"Cost":747,"Date":"4/2/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":404,"Cost":317,"Date":"4/3/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":102,"Cost":83,"Date":"4/9/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":574,"Cost":544,"Date":"4/10/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":305,"Cost":246,"Date":"4/19/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":650,"Cost":452,"Date":"5/17/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":44,"Cost":32,"Date":"5/22/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":777,"Cost":735,"Date":"6/20/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":774,"Cost":735,"Date":"7/1/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":301,"Cost":208,"Date":"7/4/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":14,"Cost":9,"Date":"7/8/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":916,"Cost":708,"Date":"7/9/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":461,"Cost":348,"Date":"7/14/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":957,"Cost":704,"Date":"7/19/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":27,"Cost":16,"Date":"8/1/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":793,"Cost":634,"Date":"8/6/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":356,"Cost":257,"Date":"8/7/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":476,"Cost":448,"Date":"8/22/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":750,"Cost":418,"Date":"8/31/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":653,"Cost":598,"Date":"9/1/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":397,"Cost":338,"Date":"9/1/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":655,"Cost":379,"Date":"9/17/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":445,"Cost":286,"Date":"9/29/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":539,"Cost":358,"Date":"11/7/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":476,"Cost":317,"Date":"11/26/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":863,"Cost":773,"Date":"11/27/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":916,"Cost":853,"Date":"12/5/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":632,"Cost":519,"Date":"12/26/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":349,"Cost":256,"Date":"12/31/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":698,"Cost":555,"Date":"1/20/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":814,"Cost":429,"Date":"2/2/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":793,"Cost":738,"Date":"2/8/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":311,"Cost":200,"Date":"2/27/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":371,"Cost":235,"Date":"3/1/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":255,"Cost":235,"Date":"3/1/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":451,"Cost":380,"Date":"3/19/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":283,"Cost":265,"Date":"3/28/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":74,"Cost":55,"Date":"5/21/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":631,"Cost":576,"Date":"7/21/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":75,"Cost":40,"Date":"8/5/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":170,"Cost":123,"Date":"8/12/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":453,"Cost":332,"Date":"8/21/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":430,"Cost":302,"Date":"8/23/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":363,"Cost":333,"Date":"9/3/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":273,"Cost":238,"Date":"9/5/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":840,"Cost":439,"Date":"10/6/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":941,"Cost":804,"Date":"10/19/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":491,"Cost":366,"Date":"11/15/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":626,"Cost":445,"Date":"12/8/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":455,"Cost":228,"Date":"1/8/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":360,"Cost":290,"Date":"1/14/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":793,"Cost":617,"Date":"1/19/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":800,"Cost":434,"Date":"1/28/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":275,"Cost":196,"Date":"1/31/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":25,"Cost":13,"Date":"3/27/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":347,"Cost":249,"Date":"4/20/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":901,"Cost":495,"Date":"4/24/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":356,"Cost":301,"Date":"4/28/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":139,"Cost":71,"Date":"5/15/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":445,"Cost":298,"Date":"5/16/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":816,"Cost":608,"Date":"5/18/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":942,"Cost":850,"Date":"6/2/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":666,"Cost":486,"Date":"6/3/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":508,"Cost":466,"Date":"6/5/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":18,"Cost":13,"Date":"6/7/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":596,"Cost":451,"Date":"6/14/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":794,"Cost":668,"Date":"6/20/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":408,"Cost":323,"Date":"6/24/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":214,"Cost":140,"Date":"7/4/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":632,"Cost":580,"Date":"7/9/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":638,"Cost":344,"Date":"7/12/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":482,"Cost":455,"Date":"8/14/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":487,"Cost":420,"Date":"8/16/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":829,"Cost":761,"Date":"8/23/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":528,"Cost":288,"Date":"9/2/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":529,"Cost":500,"Date":"9/3/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":317,"Cost":243,"Date":"9/16/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":89,"Cost":55,"Date":"10/4/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":863,"Cost":685,"Date":"11/1/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":312,"Cost":263,"Date":"11/2/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":962,"Cost":606,"Date":"12/17/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":72,"Cost":45,"Date":"2/10/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":227,"Cost":136,"Date":"2/28/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":374,"Cost":195,"Date":"3/4/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":495,"Cost":347,"Date":"3/9/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":911,"Cost":561,"Date":"3/9/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":82,"Cost":51,"Date":"3/11/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":591,"Cost":463,"Date":"3/17/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":346,"Cost":222,"Date":"3/17/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":258,"Cost":151,"Date":"3/23/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":206,"Cost":160,"Date":"4/1/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":894,"Cost":554,"Date":"5/7/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":501,"Cost":304,"Date":"5/10/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":197,"Cost":123,"Date":"5/20/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":127,"Cost":86,"Date":"6/2/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":408,"Cost":343,"Date":"6/11/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":337,"Cost":220,"Date":"6/16/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":874,"Cost":727,"Date":"6/16/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":972,"Cost":564,"Date":"7/10/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":687,"Cost":528,"Date":"7/11/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":417,"Cost":224,"Date":"8/28/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":552,"Cost":443,"Date":"8/29/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":394,"Cost":241,"Date":"8/31/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":341,"Cost":297,"Date":"9/8/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":738,"Cost":406,"Date":"9/13/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":297,"Cost":221,"Date":"9/14/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":235,"Cost":163,"Date":"9/19/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":329,"Cost":202,"Date":"9/25/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":162,"Cost":102,"Date":"10/4/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":440,"Cost":387,"Date":"10/10/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":389,"Cost":321,"Date":"10/17/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":928,"Cost":531,"Date":"10/28/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":359,"Cost":240,"Date":"10/30/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":591,"Cost":351,"Date":"11/1/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":803,"Cost":460,"Date":"11/15/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":340,"Cost":225,"Date":"11/25/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":454,"Cost":341,"Date":"1/10/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":644,"Cost":580,"Date":"1/14/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":865,"Cost":745,"Date":"1/20/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":613,"Cost":343,"Date":"2/8/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":122,"Cost":83,"Date":"2/25/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":882,"Cost":524,"Date":"3/7/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":599,"Cost":321,"Date":"3/14/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":695,"Cost":611,"Date":"3/27/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":303,"Cost":219,"Date":"4/5/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":477,"Cost":378,"Date":"4/14/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":354,"Cost":274,"Date":"5/3/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":872,"Cost":791,"Date":"5/9/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":164,"Cost":113,"Date":"5/15/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":328,"Cost":201,"Date":"5/25/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":603,"Cost":331,"Date":"5/26/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":669,"Cost":412,"Date":"5/31/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":927,"Cost":498,"Date":"7/27/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":279,"Cost":173,"Date":"9/17/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":686,"Cost":404,"Date":"10/6/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":960,"Cost":825,"Date":"10/8/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":299,"Cost":182,"Date":"10/26/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":823,"Cost":540,"Date":"11/16/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":196,"Cost":103,"Date":"11/18/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":72,"Cost":44,"Date":"12/1/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":659,"Cost":394,"Date":"2/9/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":321,"Cost":298,"Date":"2/11/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":236,"Cost":120,"Date":"3/10/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":398,"Cost":274,"Date":"3/16/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":161,"Cost":110,"Date":"3/18/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":984,"Cost":554,"Date":"3/20/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":522,"Cost":450,"Date":"3/26/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":127,"Cost":71,"Date":"6/2/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":346,"Cost":224,"Date":"6/10/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":624,"Cost":512,"Date":"6/16/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":494,"Cost":303,"Date":"6/25/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":615,"Cost":381,"Date":"7/19/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":290,"Cost":248,"Date":"7/21/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":80,"Cost":46,"Date":"7/25/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":11,"Cost":5,"Date":"8/4/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":802,"Cost":670,"Date":"9/2/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":713,"Cost":544,"Date":"9/4/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":805,"Cost":725,"Date":"9/19/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":357,"Cost":264,"Date":"9/29/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":716,"Cost":606,"Date":"10/2/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":246,"Cost":219,"Date":"10/15/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":895,"Cost":613,"Date":"10/30/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":512,"Cost":321,"Date":"11/9/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":371,"Cost":257,"Date":"11/23/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":103,"Cost":76,"Date":"11/30/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":645,"Cost":484,"Date":"12/8/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":132,"Cost":111,"Date":"12/11/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":478,"Cost":266,"Date":"1/15/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":815,"Cost":639,"Date":"1/24/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":194,"Cost":181,"Date":"2/3/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":881,"Cost":760,"Date":"2/4/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":122,"Cost":102,"Date":"3/9/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":33,"Cost":16,"Date":"3/12/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":350,"Cost":266,"Date":"4/19/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":6,"Cost":3,"Date":"5/3/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":367,"Cost":267,"Date":"5/4/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":917,"Cost":728,"Date":"6/8/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":572,"Cost":324,"Date":"6/26/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":450,"Cost":282,"Date":"7/4/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":896,"Cost":783,"Date":"7/13/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":913,"Cost":743,"Date":"8/8/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":489,"Cost":368,"Date":"8/26/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":56,"Cost":32,"Date":"9/2/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":835,"Cost":563,"Date":"9/29/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":715,"Cost":360,"Date":"10/12/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":941,"Cost":543,"Date":"11/2/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":994,"Cost":617,"Date":"11/4/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":875,"Cost":775,"Date":"11/7/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":117,"Cost":67,"Date":"12/1/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":16,"Cost":14,"Date":"12/4/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":816,"Cost":413,"Date":"12/7/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":646,"Cost":477,"Date":"12/18/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":51,"Cost":47,"Date":"12/20/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":868,"Cost":693,"Date":"12/20/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":285,"Cost":209,"Date":"12/21/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":858,"Cost":665,"Date":"1/9/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":687,"Cost":374,"Date":"2/5/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":73,"Cost":64,"Date":"2/16/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":775,"Cost":502,"Date":"2/16/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":87,"Cost":71,"Date":"2/18/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":228,"Cost":187,"Date":"2/22/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":370,"Cost":275,"Date":"2/25/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":852,"Cost":559,"Date":"3/8/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":763,"Cost":439,"Date":"4/2/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":84,"Cost":80,"Date":"4/3/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":952,"Cost":794,"Date":"4/9/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":84,"Cost":58,"Date":"4/10/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":710,"Cost":500,"Date":"4/19/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":332,"Cost":262,"Date":"5/17/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":885,"Cost":807,"Date":"5/22/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":656,"Cost":511,"Date":"6/20/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":102,"Cost":61,"Date":"7/1/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":973,"Cost":497,"Date":"7/4/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":499,"Cost":256,"Date":"7/8/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":70,"Cost":57,"Date":"7/9/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":497,"Cost":418,"Date":"7/14/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":509,"Cost":427,"Date":"7/19/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":289,"Cost":194,"Date":"8/1/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":266,"Cost":199,"Date":"8/6/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":789,"Cost":708,"Date":"8/7/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":181,"Cost":145,"Date":"8/22/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":761,"Cost":606,"Date":"8/31/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":571,"Cost":531,"Date":"9/1/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":632,"Cost":592,"Date":"9/1/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":689,"Cost":359,"Date":"9/17/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":65,"Cost":32,"Date":"9/29/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":840,"Cost":546,"Date":"11/7/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":327,"Cost":215,"Date":"11/26/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":774,"Cost":484,"Date":"11/27/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":136,"Cost":77,"Date":"12/5/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":299,"Cost":256,"Date":"12/26/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":837,"Cost":467,"Date":"12/31/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":480,"Cost":366,"Date":"1/20/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":136,"Cost":127,"Date":"2/2/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":985,"Cost":733,"Date":"2/8/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":128,"Cost":121,"Date":"2/27/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":302,"Cost":156,"Date":"3/1/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":700,"Cost":528,"Date":"3/1/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":684,"Cost":589,"Date":"3/19/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":122,"Cost":81,"Date":"3/28/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":694,"Cost":629,"Date":"5/21/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":317,"Cost":163,"Date":"7/21/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":506,"Cost":459,"Date":"8/5/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":578,"Cost":495,"Date":"8/12/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":525,"Cost":380,"Date":"8/21/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":35,"Cost":33,"Date":"8/23/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":754,"Cost":475,"Date":"9/3/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":691,"Cost":619,"Date":"9/5/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":915,"Cost":650,"Date":"10/6/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":64,"Cost":40,"Date":"10/19/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":939,"Cost":852,"Date":"11/15/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":274,"Cost":242,"Date":"12/8/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":199,"Cost":159,"Date":"1/8/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":371,"Cost":260,"Date":"1/14/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":497,"Cost":346,"Date":"1/19/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":652,"Cost":435,"Date":"1/28/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":956,"Cost":861,"Date":"1/31/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":503,"Cost":310,"Date":"3/27/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":643,"Cost":518,"Date":"4/20/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":48,"Cost":45,"Date":"4/24/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":68,"Cost":55,"Date":"4/28/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":446,"Cost":331,"Date":"5/15/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":377,"Cost":289,"Date":"5/16/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":882,"Cost":622,"Date":"5/18/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":176,"Cost":92,"Date":"6/2/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":135,"Cost":97,"Date":"6/3/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":22,"Cost":20,"Date":"6/5/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":986,"Cost":875,"Date":"6/7/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":56,"Cost":29,"Date":"6/14/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":232,"Cost":195,"Date":"6/20/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":953,"Cost":886,"Date":"6/24/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":668,"Cost":411,"Date":"7/4/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":718,"Cost":673,"Date":"7/9/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":291,"Cost":163,"Date":"7/12/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":528,"Cost":490,"Date":"8/14/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":988,"Cost":635,"Date":"8/16/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":986,"Cost":887,"Date":"8/23/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":713,"Cost":582,"Date":"9/2/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":706,"Cost":435,"Date":"9/3/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":55,"Cost":32,"Date":"9/16/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":870,"Cost":766,"Date":"10/4/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":350,"Cost":296,"Date":"11/1/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":923,"Cost":583,"Date":"11/2/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":932,"Cost":718,"Date":"12/17/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":774,"Cost":689,"Date":"2/10/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":472,"Cost":369,"Date":"2/28/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":62,"Cost":55,"Date":"3/4/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":358,"Cost":308,"Date":"3/9/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":660,"Cost":533,"Date":"3/9/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":161,"Cost":85,"Date":"3/11/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":798,"Cost":711,"Date":"3/17/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":229,"Cost":124,"Date":"3/17/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":725,"Cost":488,"Date":"3/23/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":218,"Cost":202,"Date":"4/1/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":293,"Cost":203,"Date":"5/7/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":891,"Cost":559,"Date":"5/10/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":180,"Cost":124,"Date":"5/20/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":58,"Cost":46,"Date":"6/2/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":662,"Cost":468,"Date":"6/11/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":600,"Cost":490,"Date":"6/16/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":366,"Cost":319,"Date":"6/16/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":159,"Cost":107,"Date":"7/10/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":64,"Cost":61,"Date":"7/11/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":735,"Cost":635,"Date":"8/28/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":641,"Cost":494,"Date":"8/29/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":354,"Cost":208,"Date":"8/31/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":958,"Cost":604,"Date":"9/8/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":411,"Cost":382,"Date":"9/13/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":28,"Cost":25,"Date":"9/14/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":877,"Cost":506,"Date":"9/19/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":363,"Cost":202,"Date":"9/25/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":800,"Cost":484,"Date":"10/4/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":212,"Cost":166,"Date":"10/10/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":703,"Cost":390,"Date":"10/17/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":388,"Cost":248,"Date":"10/28/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":477,"Cost":438,"Date":"10/30/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":66,"Cost":38,"Date":"11/1/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":575,"Cost":299,"Date":"11/15/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":221,"Cost":137,"Date":"11/25/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":683,"Cost":378,"Date":"1/10/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":724,"Cost":403,"Date":"1/14/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":462,"Cost":328,"Date":"1/20/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":980,"Cost":568,"Date":"2/8/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":229,"Cost":134,"Date":"2/25/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":713,"Cost":446,"Date":"3/7/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":651,"Cost":347,"Date":"3/14/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":514,"Cost":319,"Date":"3/27/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":971,"Cost":500,"Date":"4/5/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":589,"Cost":382,"Date":"4/14/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":125,"Cost":84,"Date":"5/3/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":190,"Cost":147,"Date":"5/9/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":756,"Cost":481,"Date":"5/15/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":903,"Cost":518,"Date":"5/25/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":248,"Cost":235,"Date":"5/26/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":571,"Cost":444,"Date":"5/31/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":145,"Cost":95,"Date":"7/27/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":939,"Cost":622,"Date":"9/17/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":691,"Cost":383,"Date":"10/6/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":513,"Cost":277,"Date":"10/8/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":586,"Cost":443,"Date":"10/26/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":682,"Cost":617,"Date":"11/16/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":862,"Cost":570,"Date":"11/18/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"COS","Country":"Australia","Sale":212,"Cost":151,"Date":"12/1/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":748,"Cost":614,"Date":"2/9/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":386,"Cost":295,"Date":"2/11/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":196,"Cost":105,"Date":"3/10/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":932,"Cost":524,"Date":"3/16/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":276,"Cost":221,"Date":"3/18/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":409,"Cost":277,"Date":"3/20/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":343,"Cost":194,"Date":"3/26/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":107,"Cost":65,"Date":"6/2/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":63,"Cost":60,"Date":"6/10/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":90,"Cost":53,"Date":"6/16/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":28,"Cost":15,"Date":"6/25/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":735,"Cost":656,"Date":"7/19/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":18,"Cost":14,"Date":"7/21/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":776,"Cost":473,"Date":"7/25/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":215,"Cost":136,"Date":"8/4/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":445,"Cost":259,"Date":"9/2/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":502,"Cost":463,"Date":"9/4/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":214,"Cost":196,"Date":"9/19/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":139,"Cost":123,"Date":"9/29/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":722,"Cost":671,"Date":"10/2/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":265,"Cost":166,"Date":"10/15/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":410,"Cost":343,"Date":"10/30/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":89,"Cost":81,"Date":"11/9/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":303,"Cost":205,"Date":"11/23/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":20,"Cost":12,"Date":"11/30/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":252,"Cost":222,"Date":"12/8/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":49,"Cost":28,"Date":"12/11/2018"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":374,"Cost":271,"Date":"1/15/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":680,"Cost":499,"Date":"1/24/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":948,"Cost":696,"Date":"2/3/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":417,"Cost":386,"Date":"2/4/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":565,"Cost":294,"Date":"3/9/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":977,"Cost":754,"Date":"3/12/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":425,"Cost":348,"Date":"4/19/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":669,"Cost":461,"Date":"5/3/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":759,"Cost":480,"Date":"5/4/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":177,"Cost":155,"Date":"6/8/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":540,"Cost":295,"Date":"6/26/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":957,"Cost":751,"Date":"7/4/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":548,"Cost":339,"Date":"7/13/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":922,"Cost":811,"Date":"8/8/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":611,"Cost":553,"Date":"8/26/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":761,"Cost":482,"Date":"9/2/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":534,"Cost":388,"Date":"9/29/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":236,"Cost":134,"Date":"10/12/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":925,"Cost":624,"Date":"11/2/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":774,"Cost":474,"Date":"11/4/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":348,"Cost":220,"Date":"11/7/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":275,"Cost":220,"Date":"12/1/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":355,"Cost":235,"Date":"12/4/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":958,"Cost":809,"Date":"12/7/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":49,"Cost":42,"Date":"12/18/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":952,"Cost":814,"Date":"12/20/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":366,"Cost":332,"Date":"12/20/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":650,"Cost":528,"Date":"12/21/2019"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":945,"Cost":579,"Date":"1/9/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":30,"Cost":21,"Date":"2/5/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":516,"Cost":392,"Date":"2/16/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":809,"Cost":706,"Date":"2/16/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":591,"Cost":543,"Date":"2/18/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":888,"Cost":580,"Date":"2/22/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":871,"Cost":454,"Date":"2/25/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":567,"Cost":418,"Date":"3/8/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":128,"Cost":89,"Date":"4/2/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":295,"Cost":203,"Date":"4/3/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":243,"Cost":169,"Date":"4/9/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":260,"Cost":140,"Date":"4/10/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":1,"Cost":0,"Date":"4/19/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":839,"Cost":624,"Date":"5/17/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":197,"Cost":170,"Date":"5/22/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":861,"Cost":743,"Date":"6/20/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":407,"Cost":331,"Date":"7/1/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":829,"Cost":489,"Date":"7/4/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":860,"Cost":532,"Date":"7/8/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":312,"Cost":280,"Date":"7/9/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":971,"Cost":853,"Date":"7/14/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":966,"Cost":894,"Date":"7/19/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":730,"Cost":380,"Date":"8/1/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":597,"Cost":432,"Date":"8/6/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":802,"Cost":614,"Date":"8/7/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":160,"Cost":96,"Date":"8/22/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":955,"Cost":710,"Date":"8/31/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":361,"Cost":308,"Date":"9/1/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":850,"Cost":630,"Date":"9/1/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":255,"Cost":215,"Date":"9/17/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":184,"Cost":94,"Date":"9/29/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":587,"Cost":460,"Date":"11/7/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":140,"Cost":91,"Date":"11/26/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":531,"Cost":275,"Date":"11/27/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":171,"Cost":90,"Date":"12/5/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":536,"Cost":454,"Date":"12/26/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":739,"Cost":677,"Date":"12/31/2020"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":75,"Cost":52,"Date":"1/20/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":215,"Cost":199,"Date":"2/2/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":845,"Cost":458,"Date":"2/8/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":760,"Cost":496,"Date":"2/27/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":835,"Cost":452,"Date":"3/1/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":427,"Cost":332,"Date":"3/1/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":932,"Cost":830,"Date":"3/19/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":277,"Cost":202,"Date":"3/28/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":573,"Cost":508,"Date":"5/21/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":249,"Cost":144,"Date":"7/21/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":503,"Cost":396,"Date":"8/5/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":521,"Cost":365,"Date":"8/12/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":47,"Cost":44,"Date":"8/21/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":745,"Cost":450,"Date":"8/23/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":148,"Cost":79,"Date":"9/3/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":812,"Cost":669,"Date":"9/5/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":788,"Cost":745,"Date":"10/6/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":179,"Cost":125,"Date":"10/19/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":18,"Cost":15,"Date":"11/15/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":835,"Cost":562,"Date":"12/8/2021"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":996,"Cost":946,"Date":"1/8/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":698,"Cost":561,"Date":"1/14/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":165,"Cost":130,"Date":"1/19/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":327,"Cost":264,"Date":"1/28/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":448,"Cost":285,"Date":"1/31/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":224,"Cost":175,"Date":"3/27/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":399,"Cost":322,"Date":"4/20/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":875,"Cost":782,"Date":"4/24/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":544,"Cost":298,"Date":"4/28/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":898,"Cost":541,"Date":"5/15/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":452,"Cost":410,"Date":"5/16/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":799,"Cost":612,"Date":"5/18/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":672,"Cost":401,"Date":"6/2/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":59,"Cost":47,"Date":"6/3/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":916,"Cost":656,"Date":"6/5/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":402,"Cost":324,"Date":"6/7/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":399,"Cost":352,"Date":"6/14/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":913,"Cost":521,"Date":"6/20/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":679,"Cost":520,"Date":"6/24/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":547,"Cost":510,"Date":"7/4/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":850,"Cost":747,"Date":"7/9/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":460,"Cost":308,"Date":"7/12/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":552,"Cost":430,"Date":"8/14/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":352,"Cost":247,"Date":"8/16/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":208,"Cost":168,"Date":"8/23/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":939,"Cost":891,"Date":"9/2/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":836,"Cost":530,"Date":"9/3/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":253,"Cost":203,"Date":"9/16/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":874,"Cost":530,"Date":"10/4/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":857,"Cost":706,"Date":"11/1/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":742,"Cost":453,"Date":"11/2/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":765,"Cost":653,"Date":"12/17/2022"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":145,"Cost":81,"Date":"2/10/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":113,"Cost":89,"Date":"2/28/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":808,"Cost":688,"Date":"3/4/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":652,"Cost":553,"Date":"3/9/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":815,"Cost":505,"Date":"3/9/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":850,"Cost":490,"Date":"3/11/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":234,"Cost":215,"Date":"3/17/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":29,"Cost":19,"Date":"3/17/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":75,"Cost":55,"Date":"3/23/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":684,"Cost":374,"Date":"4/1/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":390,"Cost":351,"Date":"5/7/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":325,"Cost":292,"Date":"5/10/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":30,"Cost":18,"Date":"5/20/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":895,"Cost":760,"Date":"6/2/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":62,"Cost":32,"Date":"6/11/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":310,"Cost":166,"Date":"6/16/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":557,"Cost":520,"Date":"6/16/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":836,"Cost":527,"Date":"7/10/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":736,"Cost":378,"Date":"7/11/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":386,"Cost":260,"Date":"8/28/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":172,"Cost":137,"Date":"8/29/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":360,"Cost":183,"Date":"8/31/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":624,"Cost":470,"Date":"9/8/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":518,"Cost":280,"Date":"9/13/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":303,"Cost":281,"Date":"9/14/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":297,"Cost":251,"Date":"9/19/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":304,"Cost":188,"Date":"9/25/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":194,"Cost":174,"Date":"10/4/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":15,"Cost":11,"Date":"10/10/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":881,"Cost":456,"Date":"10/17/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":465,"Cost":359,"Date":"10/28/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":579,"Cost":428,"Date":"10/30/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":270,"Cost":161,"Date":"11/1/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":84,"Cost":65,"Date":"11/15/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":617,"Cost":503,"Date":"11/25/2023"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":148,"Cost":83,"Date":"1/10/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":619,"Cost":370,"Date":"1/14/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":634,"Cost":341,"Date":"1/20/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":695,"Cost":650,"Date":"2/8/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":243,"Cost":139,"Date":"2/25/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":842,"Cost":728,"Date":"3/7/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":257,"Cost":214,"Date":"3/14/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":360,"Cost":241,"Date":"3/27/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":744,"Cost":507,"Date":"4/5/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":854,"Cost":789,"Date":"4/14/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":202,"Cost":136,"Date":"5/3/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":826,"Cost":454,"Date":"5/9/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":627,"Cost":544,"Date":"5/15/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":770,"Cost":492,"Date":"5/25/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":61,"Cost":37,"Date":"5/26/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":284,"Cost":166,"Date":"5/31/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":218,"Cost":135,"Date":"7/27/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":718,"Cost":636,"Date":"9/17/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":510,"Cost":271,"Date":"10/6/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":149,"Cost":106,"Date":"10/8/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":782,"Cost":511,"Date":"10/26/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":692,"Cost":612,"Date":"11/16/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":979,"Cost":699,"Date":"11/18/2024"},{"Store":"Eastlands Shopping Centre, Hobart","Brand":"HM Home","Country":"Australia","Sale":273,"Cost":226,"Date":"12/1/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":673,"Cost":558,"Date":"2/9/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":911,"Cost":714,"Date":"2/11/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":287,"Cost":190,"Date":"3/10/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":34,"Cost":19,"Date":"3/16/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":688,"Cost":563,"Date":"3/18/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":716,"Cost":426,"Date":"3/20/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":692,"Cost":414,"Date":"3/26/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":36,"Cost":18,"Date":"6/2/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":610,"Cost":433,"Date":"6/10/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":338,"Cost":206,"Date":"6/16/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":650,"Cost":463,"Date":"6/25/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":357,"Cost":282,"Date":"7/19/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":271,"Cost":218,"Date":"7/21/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":168,"Cost":90,"Date":"7/25/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":262,"Cost":187,"Date":"8/4/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":610,"Cost":438,"Date":"9/2/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":854,"Cost":759,"Date":"9/4/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":560,"Cost":325,"Date":"9/19/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":462,"Cost":242,"Date":"9/29/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":201,"Cost":108,"Date":"10/2/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":449,"Cost":325,"Date":"10/15/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":47,"Cost":30,"Date":"10/30/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":243,"Cost":144,"Date":"11/9/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":409,"Cost":290,"Date":"11/23/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":868,"Cost":666,"Date":"11/30/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":865,"Cost":548,"Date":"12/8/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":805,"Cost":706,"Date":"12/11/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":844,"Cost":681,"Date":"1/15/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":680,"Cost":553,"Date":"1/24/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":63,"Cost":51,"Date":"2/3/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":866,"Cost":489,"Date":"2/4/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":809,"Cost":455,"Date":"3/9/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":539,"Cost":407,"Date":"3/12/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":687,"Cost":542,"Date":"4/19/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":562,"Cost":471,"Date":"5/3/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":102,"Cost":68,"Date":"5/4/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":820,"Cost":604,"Date":"6/8/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":938,"Cost":690,"Date":"6/26/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":748,"Cost":568,"Date":"7/4/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":204,"Cost":149,"Date":"7/13/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":305,"Cost":229,"Date":"8/8/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":769,"Cost":660,"Date":"8/26/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":454,"Cost":265,"Date":"9/2/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":425,"Cost":232,"Date":"9/29/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":656,"Cost":375,"Date":"10/12/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":704,"Cost":355,"Date":"11/2/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":889,"Cost":764,"Date":"11/4/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":217,"Cost":141,"Date":"11/7/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":587,"Cost":328,"Date":"12/1/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":531,"Cost":353,"Date":"12/4/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":99,"Cost":65,"Date":"12/7/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":931,"Cost":762,"Date":"12/18/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":635,"Cost":395,"Date":"12/20/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":628,"Cost":358,"Date":"12/20/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":5,"Cost":5,"Date":"12/21/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":808,"Cost":478,"Date":"1/9/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":786,"Cost":399,"Date":"2/5/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":732,"Cost":660,"Date":"2/16/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":893,"Cost":655,"Date":"2/16/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":949,"Cost":545,"Date":"2/18/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":751,"Cost":388,"Date":"2/22/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":631,"Cost":499,"Date":"2/25/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":968,"Cost":857,"Date":"3/8/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":763,"Cost":707,"Date":"4/2/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":261,"Cost":209,"Date":"4/3/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":771,"Cost":436,"Date":"4/9/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":324,"Cost":193,"Date":"4/10/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":265,"Cost":233,"Date":"4/19/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":461,"Cost":255,"Date":"5/17/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":758,"Cost":666,"Date":"5/22/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":937,"Cost":862,"Date":"6/20/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":884,"Cost":533,"Date":"7/1/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":211,"Cost":139,"Date":"7/4/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":649,"Cost":560,"Date":"7/8/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":312,"Cost":179,"Date":"7/9/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":466,"Cost":245,"Date":"7/14/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":382,"Cost":210,"Date":"7/19/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":291,"Cost":241,"Date":"8/1/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":952,"Cost":745,"Date":"8/6/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":476,"Cost":349,"Date":"8/7/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":646,"Cost":497,"Date":"8/22/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":707,"Cost":498,"Date":"8/31/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":768,"Cost":502,"Date":"9/1/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":737,"Cost":498,"Date":"9/1/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":153,"Cost":107,"Date":"9/17/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":421,"Cost":347,"Date":"9/29/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":841,"Cost":455,"Date":"11/7/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":162,"Cost":105,"Date":"11/26/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":811,"Cost":640,"Date":"11/27/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":850,"Cost":692,"Date":"12/5/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":241,"Cost":218,"Date":"12/26/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":399,"Cost":266,"Date":"12/31/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":336,"Cost":230,"Date":"1/20/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":521,"Cost":475,"Date":"2/2/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":242,"Cost":200,"Date":"2/8/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":892,"Cost":483,"Date":"2/27/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":74,"Cost":41,"Date":"3/1/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":196,"Cost":98,"Date":"3/1/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":593,"Cost":383,"Date":"3/19/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":455,"Cost":291,"Date":"3/28/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":564,"Cost":486,"Date":"5/21/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":698,"Cost":442,"Date":"7/21/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":548,"Cost":501,"Date":"8/5/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":814,"Cost":494,"Date":"8/12/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":117,"Cost":61,"Date":"8/21/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":527,"Cost":324,"Date":"8/23/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":616,"Cost":381,"Date":"9/3/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":922,"Cost":689,"Date":"9/5/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":99,"Cost":85,"Date":"10/6/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":963,"Cost":623,"Date":"10/19/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":123,"Cost":99,"Date":"11/15/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":932,"Cost":584,"Date":"12/8/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":784,"Cost":439,"Date":"1/8/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":122,"Cost":69,"Date":"1/14/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":715,"Cost":488,"Date":"1/19/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":154,"Cost":136,"Date":"1/28/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":348,"Cost":180,"Date":"1/31/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":720,"Cost":636,"Date":"3/27/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":164,"Cost":145,"Date":"4/20/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":421,"Cost":236,"Date":"4/24/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":720,"Cost":667,"Date":"4/28/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":616,"Cost":508,"Date":"5/15/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":801,"Cost":730,"Date":"5/16/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":922,"Cost":867,"Date":"5/18/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":608,"Cost":578,"Date":"6/2/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":944,"Cost":830,"Date":"6/3/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":58,"Cost":35,"Date":"6/5/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":386,"Cost":253,"Date":"6/7/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":859,"Cost":727,"Date":"6/14/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":626,"Cost":588,"Date":"6/20/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":343,"Cost":263,"Date":"6/24/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":564,"Cost":416,"Date":"7/4/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":159,"Cost":98,"Date":"7/9/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":429,"Cost":360,"Date":"7/12/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":437,"Cost":261,"Date":"8/14/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":676,"Cost":604,"Date":"8/16/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":990,"Cost":646,"Date":"8/23/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":897,"Cost":623,"Date":"9/2/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":596,"Cost":391,"Date":"9/3/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":290,"Cost":249,"Date":"9/16/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":695,"Cost":489,"Date":"10/4/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":313,"Cost":230,"Date":"11/1/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":896,"Cost":641,"Date":"11/2/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":850,"Cost":599,"Date":"12/17/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":235,"Cost":118,"Date":"2/10/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":701,"Cost":438,"Date":"2/28/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":168,"Cost":84,"Date":"3/4/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":659,"Cost":537,"Date":"3/9/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":153,"Cost":145,"Date":"3/9/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":355,"Cost":249,"Date":"3/11/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":870,"Cost":521,"Date":"3/17/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":505,"Cost":300,"Date":"3/17/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":252,"Cost":211,"Date":"3/23/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":968,"Cost":870,"Date":"4/1/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":530,"Cost":424,"Date":"5/7/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":312,"Cost":229,"Date":"5/10/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":253,"Cost":149,"Date":"5/20/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":602,"Cost":483,"Date":"6/2/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":244,"Cost":168,"Date":"6/11/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":696,"Cost":596,"Date":"6/16/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":69,"Cost":49,"Date":"6/16/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":29,"Cost":25,"Date":"7/10/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":455,"Cost":423,"Date":"7/11/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":813,"Cost":477,"Date":"8/28/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":480,"Cost":271,"Date":"8/29/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":717,"Cost":468,"Date":"8/31/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":255,"Cost":145,"Date":"9/8/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":723,"Cost":566,"Date":"9/13/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":813,"Cost":629,"Date":"9/14/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":288,"Cost":199,"Date":"9/19/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":147,"Cost":103,"Date":"9/25/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":301,"Cost":261,"Date":"10/4/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":30,"Cost":23,"Date":"10/10/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":788,"Cost":604,"Date":"10/17/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":803,"Cost":458,"Date":"10/28/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":276,"Cost":252,"Date":"10/30/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":746,"Cost":553,"Date":"11/1/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":698,"Cost":475,"Date":"11/15/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":511,"Cost":308,"Date":"11/25/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":383,"Cost":208,"Date":"1/10/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":654,"Cost":420,"Date":"1/14/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":755,"Cost":435,"Date":"1/20/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":507,"Cost":363,"Date":"2/8/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":743,"Cost":625,"Date":"2/25/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":397,"Cost":202,"Date":"3/7/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":194,"Cost":151,"Date":"3/14/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":761,"Cost":543,"Date":"3/27/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":37,"Cost":26,"Date":"4/5/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":989,"Cost":938,"Date":"4/14/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":418,"Cost":366,"Date":"5/3/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":100,"Cost":87,"Date":"5/9/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":178,"Cost":102,"Date":"5/15/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":795,"Cost":425,"Date":"5/25/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":888,"Cost":559,"Date":"5/26/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":896,"Cost":523,"Date":"5/31/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":159,"Cost":145,"Date":"7/27/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":53,"Cost":46,"Date":"9/17/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":609,"Cost":378,"Date":"10/6/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":325,"Cost":283,"Date":"10/8/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":89,"Cost":50,"Date":"10/26/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":274,"Cost":229,"Date":"11/16/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":660,"Cost":571,"Date":"11/18/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"ARKET","Country":"Australia","Sale":715,"Cost":466,"Date":"12/1/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":371,"Cost":236,"Date":"2/9/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":982,"Cost":895,"Date":"2/11/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":647,"Cost":589,"Date":"3/10/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":557,"Cost":458,"Date":"3/16/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":528,"Cost":273,"Date":"3/18/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":875,"Cost":812,"Date":"3/20/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":667,"Cost":440,"Date":"3/26/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":92,"Cost":82,"Date":"6/2/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":12,"Cost":7,"Date":"6/10/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":291,"Cost":197,"Date":"6/16/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":783,"Cost":658,"Date":"6/25/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":697,"Cost":569,"Date":"7/19/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":194,"Cost":114,"Date":"7/21/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":979,"Cost":856,"Date":"7/25/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":108,"Cost":65,"Date":"8/4/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":101,"Cost":86,"Date":"9/2/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":884,"Cost":536,"Date":"9/4/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":969,"Cost":756,"Date":"9/19/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":988,"Cost":737,"Date":"9/29/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":241,"Cost":214,"Date":"10/2/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":624,"Cost":358,"Date":"10/15/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":982,"Cost":821,"Date":"10/30/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":533,"Cost":358,"Date":"11/9/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":400,"Cost":272,"Date":"11/23/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":760,"Cost":557,"Date":"11/30/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":958,"Cost":867,"Date":"12/8/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":586,"Cost":396,"Date":"12/11/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":963,"Cost":553,"Date":"1/15/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":41,"Cost":31,"Date":"1/24/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":477,"Cost":375,"Date":"2/3/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":733,"Cost":514,"Date":"2/4/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":213,"Cost":166,"Date":"3/9/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":866,"Cost":527,"Date":"3/12/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":789,"Cost":675,"Date":"4/19/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":670,"Cost":394,"Date":"5/3/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":243,"Cost":146,"Date":"5/4/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":649,"Cost":593,"Date":"6/8/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":39,"Cost":25,"Date":"6/26/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":834,"Cost":601,"Date":"7/4/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":997,"Cost":510,"Date":"7/13/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":472,"Cost":433,"Date":"8/8/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":736,"Cost":393,"Date":"8/26/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":687,"Cost":464,"Date":"9/2/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":404,"Cost":336,"Date":"9/29/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":723,"Cost":379,"Date":"10/12/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":743,"Cost":493,"Date":"11/2/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":140,"Cost":117,"Date":"11/4/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":191,"Cost":144,"Date":"11/7/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":673,"Cost":381,"Date":"12/1/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":870,"Cost":711,"Date":"12/4/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":989,"Cost":730,"Date":"12/7/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":858,"Cost":561,"Date":"12/18/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":276,"Cost":152,"Date":"12/20/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":426,"Cost":374,"Date":"12/20/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":697,"Cost":394,"Date":"12/21/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":357,"Cost":219,"Date":"1/9/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":98,"Cost":88,"Date":"2/5/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":941,"Cost":546,"Date":"2/16/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":105,"Cost":93,"Date":"2/16/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":998,"Cost":793,"Date":"2/18/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":38,"Cost":21,"Date":"2/22/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":721,"Cost":562,"Date":"2/25/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":681,"Cost":390,"Date":"3/8/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":109,"Cost":62,"Date":"4/2/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":242,"Cost":147,"Date":"4/3/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":463,"Cost":330,"Date":"4/9/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":962,"Cost":593,"Date":"4/10/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":729,"Cost":654,"Date":"4/19/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":527,"Cost":359,"Date":"5/17/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":220,"Cost":143,"Date":"5/22/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":858,"Cost":477,"Date":"6/20/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":555,"Cost":416,"Date":"7/1/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":767,"Cost":421,"Date":"7/4/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":868,"Cost":466,"Date":"7/8/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":155,"Cost":107,"Date":"7/9/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":808,"Cost":513,"Date":"7/14/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":913,"Cost":603,"Date":"7/19/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":998,"Cost":847,"Date":"8/1/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":259,"Cost":204,"Date":"8/6/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":266,"Cost":196,"Date":"8/7/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":355,"Cost":282,"Date":"8/22/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":53,"Cost":39,"Date":"8/31/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":193,"Cost":179,"Date":"9/1/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":810,"Cost":527,"Date":"9/1/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":582,"Cost":417,"Date":"9/17/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":634,"Cost":490,"Date":"9/29/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":704,"Cost":492,"Date":"11/7/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":278,"Cost":233,"Date":"11/26/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":692,"Cost":495,"Date":"11/27/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":187,"Cost":100,"Date":"12/5/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":389,"Cost":251,"Date":"12/26/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":291,"Cost":218,"Date":"12/31/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":419,"Cost":367,"Date":"1/20/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":588,"Cost":310,"Date":"2/2/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":529,"Cost":310,"Date":"2/8/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":512,"Cost":256,"Date":"2/27/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":168,"Cost":131,"Date":"3/1/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":547,"Cost":432,"Date":"3/1/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":680,"Cost":645,"Date":"3/19/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":423,"Cost":389,"Date":"3/28/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":958,"Cost":668,"Date":"5/21/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":652,"Cost":614,"Date":"7/21/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":272,"Cost":136,"Date":"8/5/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":644,"Cost":322,"Date":"8/12/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":658,"Cost":492,"Date":"8/21/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":23,"Cost":15,"Date":"8/23/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":453,"Cost":280,"Date":"9/3/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":580,"Cost":314,"Date":"9/5/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":208,"Cost":111,"Date":"10/6/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":764,"Cost":436,"Date":"10/19/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":317,"Cost":165,"Date":"11/15/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":910,"Cost":656,"Date":"12/8/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":756,"Cost":669,"Date":"1/8/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":322,"Cost":225,"Date":"1/14/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":617,"Cost":512,"Date":"1/19/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":263,"Cost":141,"Date":"1/28/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":733,"Cost":426,"Date":"1/31/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":302,"Cost":202,"Date":"3/27/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":63,"Cost":46,"Date":"4/20/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":3,"Cost":3,"Date":"4/24/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":556,"Cost":430,"Date":"4/28/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":111,"Cost":88,"Date":"5/15/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":455,"Cost":308,"Date":"5/16/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":905,"Cost":682,"Date":"5/18/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":384,"Cost":214,"Date":"6/2/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":46,"Cost":32,"Date":"6/3/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":725,"Cost":430,"Date":"6/5/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":312,"Cost":226,"Date":"6/7/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":970,"Cost":883,"Date":"6/14/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":659,"Cost":372,"Date":"6/20/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":467,"Cost":295,"Date":"6/24/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":318,"Cost":267,"Date":"7/4/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":210,"Cost":155,"Date":"7/9/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":278,"Cost":263,"Date":"7/12/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":725,"Cost":661,"Date":"8/14/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":940,"Cost":478,"Date":"8/16/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":781,"Cost":469,"Date":"8/23/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":181,"Cost":161,"Date":"9/2/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":510,"Cost":358,"Date":"9/3/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":460,"Cost":391,"Date":"9/16/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":24,"Cost":12,"Date":"10/4/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":520,"Cost":352,"Date":"11/1/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":548,"Cost":417,"Date":"11/2/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":560,"Cost":530,"Date":"12/17/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":612,"Cost":381,"Date":"2/10/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":899,"Cost":833,"Date":"2/28/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":669,"Cost":619,"Date":"3/4/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":80,"Cost":50,"Date":"3/9/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":908,"Cost":842,"Date":"3/9/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":638,"Cost":604,"Date":"3/11/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":276,"Cost":165,"Date":"3/17/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":645,"Cost":512,"Date":"3/17/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":463,"Cost":428,"Date":"3/23/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":940,"Cost":863,"Date":"4/1/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":691,"Cost":631,"Date":"5/7/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":814,"Cost":583,"Date":"5/10/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":541,"Cost":367,"Date":"5/20/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":176,"Cost":159,"Date":"6/2/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":328,"Cost":285,"Date":"6/11/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":164,"Cost":146,"Date":"6/16/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":780,"Cost":639,"Date":"6/16/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":609,"Cost":451,"Date":"7/10/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":296,"Cost":246,"Date":"7/11/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":326,"Cost":182,"Date":"8/28/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":892,"Cost":777,"Date":"8/29/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":442,"Cost":232,"Date":"8/31/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":245,"Cost":148,"Date":"9/8/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":314,"Cost":193,"Date":"9/13/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":678,"Cost":523,"Date":"9/14/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":958,"Cost":493,"Date":"9/19/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":201,"Cost":167,"Date":"9/25/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":254,"Cost":203,"Date":"10/4/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":227,"Cost":155,"Date":"10/10/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":426,"Cost":350,"Date":"10/17/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":617,"Cost":420,"Date":"10/28/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":89,"Cost":82,"Date":"10/30/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":668,"Cost":466,"Date":"11/1/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":900,"Cost":480,"Date":"11/15/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":588,"Cost":499,"Date":"11/25/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":589,"Cost":298,"Date":"1/10/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":203,"Cost":129,"Date":"1/14/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":5,"Cost":3,"Date":"1/20/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":464,"Cost":300,"Date":"2/8/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":922,"Cost":863,"Date":"2/25/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":854,"Cost":439,"Date":"3/7/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":743,"Cost":644,"Date":"3/14/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":57,"Cost":40,"Date":"3/27/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":485,"Cost":374,"Date":"4/5/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":224,"Cost":146,"Date":"4/14/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":386,"Cost":303,"Date":"5/3/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":288,"Cost":205,"Date":"5/9/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":775,"Cost":400,"Date":"5/15/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":446,"Cost":375,"Date":"5/25/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":495,"Cost":297,"Date":"5/26/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":758,"Cost":454,"Date":"5/31/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":992,"Cost":651,"Date":"7/27/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":838,"Cost":499,"Date":"9/17/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":196,"Cost":180,"Date":"10/6/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":17,"Cost":14,"Date":"10/8/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":169,"Cost":156,"Date":"10/26/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":218,"Cost":148,"Date":"11/16/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":866,"Cost":582,"Date":"11/18/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"Sellpy","Country":"Australia","Sale":186,"Cost":170,"Date":"12/1/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":135,"Cost":115,"Date":"2/9/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":200,"Cost":108,"Date":"2/11/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":392,"Cost":283,"Date":"3/10/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":981,"Cost":639,"Date":"3/16/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":659,"Cost":558,"Date":"3/18/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":524,"Cost":299,"Date":"3/20/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":975,"Cost":722,"Date":"3/26/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":295,"Cost":156,"Date":"6/2/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":173,"Cost":136,"Date":"6/10/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":89,"Cost":51,"Date":"6/16/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":904,"Cost":567,"Date":"6/25/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":936,"Cost":667,"Date":"7/19/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":757,"Cost":480,"Date":"7/21/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":149,"Cost":89,"Date":"7/25/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":966,"Cost":621,"Date":"8/4/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":299,"Cost":168,"Date":"9/2/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":896,"Cost":500,"Date":"9/4/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":910,"Cost":500,"Date":"9/19/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":117,"Cost":97,"Date":"9/29/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":956,"Cost":687,"Date":"10/2/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":203,"Cost":167,"Date":"10/15/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":488,"Cost":412,"Date":"10/30/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":899,"Cost":567,"Date":"11/9/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":163,"Cost":116,"Date":"11/23/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":816,"Cost":688,"Date":"11/30/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":660,"Cost":579,"Date":"12/8/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":487,"Cost":336,"Date":"12/11/2018"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":205,"Cost":161,"Date":"1/15/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":980,"Cost":511,"Date":"1/24/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":879,"Cost":664,"Date":"2/3/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":697,"Cost":588,"Date":"2/4/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":127,"Cost":101,"Date":"3/9/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":157,"Cost":144,"Date":"3/12/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":302,"Cost":167,"Date":"4/19/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":603,"Cost":413,"Date":"5/3/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":806,"Cost":414,"Date":"5/4/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":498,"Cost":449,"Date":"6/8/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":961,"Cost":896,"Date":"6/26/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":51,"Cost":29,"Date":"7/4/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":756,"Cost":435,"Date":"7/13/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":259,"Cost":215,"Date":"8/8/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":752,"Cost":704,"Date":"8/26/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":831,"Cost":667,"Date":"9/2/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":689,"Cost":396,"Date":"9/29/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":25,"Cost":19,"Date":"10/12/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":537,"Cost":342,"Date":"11/2/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":652,"Cost":485,"Date":"11/4/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":818,"Cost":708,"Date":"11/7/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":563,"Cost":342,"Date":"12/1/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":293,"Cost":149,"Date":"12/4/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":357,"Cost":269,"Date":"12/7/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":559,"Cost":375,"Date":"12/18/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":305,"Cost":162,"Date":"12/20/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":855,"Cost":753,"Date":"12/20/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":164,"Cost":132,"Date":"12/21/2019"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":341,"Cost":259,"Date":"1/9/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":997,"Cost":701,"Date":"2/5/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":163,"Cost":104,"Date":"2/16/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":8,"Cost":7,"Date":"2/16/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":157,"Cost":140,"Date":"2/18/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":530,"Cost":285,"Date":"2/22/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":523,"Cost":280,"Date":"2/25/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":792,"Cost":732,"Date":"3/8/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":577,"Cost":506,"Date":"4/2/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":810,"Cost":572,"Date":"4/3/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":240,"Cost":191,"Date":"4/9/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":71,"Cost":50,"Date":"4/10/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":258,"Cost":204,"Date":"4/19/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":986,"Cost":792,"Date":"5/17/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":508,"Cost":330,"Date":"5/22/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":817,"Cost":772,"Date":"6/20/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":105,"Cost":63,"Date":"7/1/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":445,"Cost":368,"Date":"7/4/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":9,"Cost":8,"Date":"7/8/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":626,"Cost":589,"Date":"7/9/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":599,"Cost":305,"Date":"7/14/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":807,"Cost":732,"Date":"7/19/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":324,"Cost":282,"Date":"8/1/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":916,"Cost":842,"Date":"8/6/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":110,"Cost":81,"Date":"8/7/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":275,"Cost":173,"Date":"8/22/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":517,"Cost":411,"Date":"8/31/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":315,"Cost":283,"Date":"9/1/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":51,"Cost":47,"Date":"9/1/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":497,"Cost":398,"Date":"9/17/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":392,"Cost":305,"Date":"9/29/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":355,"Cost":248,"Date":"11/7/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":513,"Cost":375,"Date":"11/26/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":772,"Cost":582,"Date":"11/27/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":621,"Cost":405,"Date":"12/5/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":94,"Cost":88,"Date":"12/26/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":803,"Cost":584,"Date":"12/31/2020"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":199,"Cost":157,"Date":"1/20/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":439,"Cost":371,"Date":"2/2/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":645,"Cost":584,"Date":"2/8/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":581,"Cost":412,"Date":"2/27/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":923,"Cost":701,"Date":"3/1/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":678,"Cost":453,"Date":"3/1/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":221,"Cost":172,"Date":"3/19/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":775,"Cost":466,"Date":"3/28/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":693,"Cost":413,"Date":"5/21/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":503,"Cost":295,"Date":"7/21/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":147,"Cost":112,"Date":"8/5/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":519,"Cost":475,"Date":"8/12/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":82,"Cost":75,"Date":"8/21/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":881,"Cost":504,"Date":"8/23/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":397,"Cost":298,"Date":"9/3/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":823,"Cost":467,"Date":"9/5/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":945,"Cost":611,"Date":"10/6/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":463,"Cost":351,"Date":"10/19/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":138,"Cost":93,"Date":"11/15/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":957,"Cost":481,"Date":"12/8/2021"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":294,"Cost":247,"Date":"1/8/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":964,"Cost":830,"Date":"1/14/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":492,"Cost":439,"Date":"1/19/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":968,"Cost":808,"Date":"1/28/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":305,"Cost":273,"Date":"1/31/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":23,"Cost":22,"Date":"3/27/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":556,"Cost":475,"Date":"4/20/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":832,"Cost":573,"Date":"4/24/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":264,"Cost":193,"Date":"4/28/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":985,"Cost":746,"Date":"5/15/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":629,"Cost":314,"Date":"5/16/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":651,"Cost":335,"Date":"5/18/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":714,"Cost":442,"Date":"6/2/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":852,"Cost":569,"Date":"6/3/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":859,"Cost":504,"Date":"6/5/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":275,"Cost":146,"Date":"6/7/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":848,"Cost":650,"Date":"6/14/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":237,"Cost":163,"Date":"6/20/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":860,"Cost":813,"Date":"6/24/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":631,"Cost":533,"Date":"7/4/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":575,"Cost":455,"Date":"7/9/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":419,"Cost":274,"Date":"7/12/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":9,"Cost":6,"Date":"8/14/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":278,"Cost":259,"Date":"8/16/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":142,"Cost":124,"Date":"8/23/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":313,"Cost":173,"Date":"9/2/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":183,"Cost":173,"Date":"9/3/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":304,"Cost":288,"Date":"9/16/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":935,"Cost":729,"Date":"10/4/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":970,"Cost":800,"Date":"11/1/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":69,"Cost":43,"Date":"11/2/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":285,"Cost":156,"Date":"12/17/2022"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":795,"Cost":699,"Date":"2/10/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":690,"Cost":345,"Date":"2/28/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":338,"Cost":243,"Date":"3/4/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":16,"Cost":11,"Date":"3/9/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":377,"Cost":252,"Date":"3/9/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":205,"Cost":120,"Date":"3/11/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":457,"Cost":389,"Date":"3/17/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":13,"Cost":6,"Date":"3/17/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":920,"Cost":722,"Date":"3/23/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":337,"Cost":231,"Date":"4/1/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":741,"Cost":553,"Date":"5/7/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":649,"Cost":422,"Date":"5/10/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":584,"Cost":360,"Date":"5/20/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":689,"Cost":510,"Date":"6/2/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":389,"Cost":272,"Date":"6/11/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":200,"Cost":139,"Date":"6/16/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":694,"Cost":418,"Date":"6/16/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":989,"Cost":494,"Date":"7/10/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":700,"Cost":601,"Date":"7/11/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":426,"Cost":277,"Date":"8/28/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":216,"Cost":110,"Date":"8/29/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":869,"Cost":644,"Date":"8/31/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":65,"Cost":61,"Date":"9/8/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":373,"Cost":293,"Date":"9/13/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":79,"Cost":57,"Date":"9/14/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":688,"Cost":433,"Date":"9/19/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":267,"Cost":140,"Date":"9/25/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":527,"Cost":435,"Date":"10/4/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":642,"Cost":508,"Date":"10/10/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":289,"Cost":255,"Date":"10/17/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":223,"Cost":141,"Date":"10/28/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":925,"Cost":674,"Date":"10/30/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":436,"Cost":398,"Date":"11/1/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":376,"Cost":302,"Date":"11/15/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":994,"Cost":620,"Date":"11/25/2023"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":907,"Cost":600,"Date":"1/10/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":631,"Cost":519,"Date":"1/14/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":466,"Cost":390,"Date":"1/20/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":785,"Cost":593,"Date":"2/8/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":178,"Cost":169,"Date":"2/25/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":414,"Cost":352,"Date":"3/7/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":472,"Cost":241,"Date":"3/14/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":181,"Cost":104,"Date":"3/27/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":97,"Cost":83,"Date":"4/5/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":364,"Cost":305,"Date":"4/14/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":550,"Cost":429,"Date":"5/3/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":646,"Cost":612,"Date":"5/9/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":826,"Cost":773,"Date":"5/15/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":938,"Cost":522,"Date":"5/25/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":476,"Cost":261,"Date":"5/26/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":260,"Cost":171,"Date":"5/31/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":346,"Cost":229,"Date":"7/27/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":665,"Cost":348,"Date":"9/17/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":149,"Cost":75,"Date":"10/6/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":565,"Cost":409,"Date":"10/8/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":59,"Cost":40,"Date":"10/26/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":141,"Cost":83,"Date":"11/16/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":908,"Cost":504,"Date":"11/18/2024"},{"Store":"Macquarie Street Mall, Hobart","Brand":"COS","Country":"Australia","Sale":386,"Cost":283,"Date":"12/1/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":357,"Cost":228,"Date":"2/9/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":965,"Cost":667,"Date":"2/11/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":122,"Cost":97,"Date":"3/10/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":424,"Cost":394,"Date":"3/16/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":963,"Cost":802,"Date":"3/18/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":540,"Cost":442,"Date":"3/20/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":627,"Cost":427,"Date":"3/26/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":598,"Cost":317,"Date":"6/2/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":682,"Cost":577,"Date":"6/10/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":125,"Cost":71,"Date":"6/16/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":600,"Cost":469,"Date":"6/25/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":986,"Cost":739,"Date":"7/19/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":988,"Cost":585,"Date":"7/21/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":191,"Cost":105,"Date":"7/25/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":276,"Cost":138,"Date":"8/4/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":931,"Cost":508,"Date":"9/2/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":387,"Cost":196,"Date":"9/4/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":120,"Cost":114,"Date":"9/19/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":96,"Cost":52,"Date":"9/29/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":904,"Cost":686,"Date":"10/2/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":987,"Cost":929,"Date":"10/15/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":303,"Cost":156,"Date":"10/30/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":717,"Cost":541,"Date":"11/9/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":406,"Cost":209,"Date":"11/23/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":780,"Cost":557,"Date":"11/30/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":721,"Cost":453,"Date":"12/8/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":595,"Cost":375,"Date":"12/11/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":464,"Cost":255,"Date":"1/15/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":862,"Cost":586,"Date":"1/24/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":916,"Cost":711,"Date":"2/3/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":1000,"Cost":659,"Date":"2/4/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":83,"Cost":59,"Date":"3/9/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":840,"Cost":456,"Date":"3/12/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":327,"Cost":246,"Date":"4/19/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":895,"Cost":719,"Date":"5/3/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":962,"Cost":906,"Date":"5/4/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":382,"Cost":234,"Date":"6/8/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":620,"Cost":467,"Date":"6/26/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":243,"Cost":198,"Date":"7/4/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":44,"Cost":31,"Date":"7/13/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":503,"Cost":330,"Date":"8/8/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":128,"Cost":95,"Date":"8/26/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":82,"Cost":68,"Date":"9/2/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":910,"Cost":776,"Date":"9/29/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":845,"Cost":546,"Date":"10/12/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":948,"Cost":682,"Date":"11/2/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":964,"Cost":557,"Date":"11/4/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":397,"Cost":321,"Date":"11/7/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":582,"Cost":513,"Date":"12/1/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":775,"Cost":449,"Date":"12/4/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":234,"Cost":196,"Date":"12/7/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":587,"Cost":552,"Date":"12/18/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":655,"Cost":581,"Date":"12/20/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":97,"Cost":58,"Date":"12/20/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":255,"Cost":176,"Date":"12/21/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":885,"Cost":744,"Date":"1/9/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":730,"Cost":605,"Date":"2/5/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":845,"Cost":763,"Date":"2/16/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":826,"Cost":708,"Date":"2/16/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":958,"Cost":820,"Date":"2/18/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":16,"Cost":15,"Date":"2/22/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":826,"Cost":435,"Date":"2/25/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":728,"Cost":431,"Date":"3/8/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":822,"Cost":640,"Date":"4/2/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":169,"Cost":130,"Date":"4/3/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":102,"Cost":86,"Date":"4/9/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":827,"Cost":730,"Date":"4/10/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":972,"Cost":636,"Date":"4/19/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":629,"Cost":327,"Date":"5/17/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":396,"Cost":199,"Date":"5/22/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":459,"Cost":236,"Date":"6/20/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":792,"Cost":618,"Date":"7/1/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":563,"Cost":337,"Date":"7/4/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":523,"Cost":390,"Date":"7/8/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":372,"Cost":343,"Date":"7/9/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":140,"Cost":128,"Date":"7/14/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":405,"Cost":296,"Date":"7/19/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":997,"Cost":929,"Date":"8/1/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":805,"Cost":725,"Date":"8/6/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":598,"Cost":497,"Date":"8/7/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":164,"Cost":94,"Date":"8/22/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":665,"Cost":515,"Date":"8/31/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":295,"Cost":272,"Date":"9/1/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":385,"Cost":359,"Date":"9/1/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":139,"Cost":109,"Date":"9/17/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":437,"Cost":232,"Date":"9/29/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":635,"Cost":529,"Date":"11/7/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":835,"Cost":668,"Date":"11/26/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":718,"Cost":506,"Date":"11/27/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":938,"Cost":868,"Date":"12/5/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":476,"Cost":392,"Date":"12/26/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":611,"Cost":434,"Date":"12/31/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":289,"Cost":247,"Date":"1/20/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":556,"Cost":486,"Date":"2/2/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":432,"Cost":407,"Date":"2/8/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":51,"Cost":25,"Date":"2/27/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":702,"Cost":479,"Date":"3/1/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":952,"Cost":786,"Date":"3/1/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":697,"Cost":556,"Date":"3/19/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":991,"Cost":877,"Date":"3/28/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":359,"Cost":202,"Date":"5/21/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":74,"Cost":68,"Date":"7/21/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":805,"Cost":404,"Date":"8/5/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":494,"Cost":464,"Date":"8/12/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":780,"Cost":720,"Date":"8/21/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":353,"Cost":243,"Date":"8/23/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":725,"Cost":576,"Date":"9/3/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":657,"Cost":516,"Date":"9/5/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":987,"Cost":791,"Date":"10/6/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":227,"Cost":193,"Date":"10/19/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":663,"Cost":388,"Date":"11/15/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":268,"Cost":183,"Date":"12/8/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":210,"Cost":139,"Date":"1/8/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":361,"Cost":231,"Date":"1/14/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":42,"Cost":26,"Date":"1/19/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":337,"Cost":252,"Date":"1/28/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":239,"Cost":200,"Date":"1/31/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":163,"Cost":106,"Date":"3/27/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":151,"Cost":135,"Date":"4/20/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":505,"Cost":357,"Date":"4/24/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":643,"Cost":398,"Date":"4/28/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":538,"Cost":405,"Date":"5/15/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":757,"Cost":708,"Date":"5/16/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":411,"Cost":264,"Date":"5/18/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":996,"Cost":930,"Date":"6/2/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":264,"Cost":211,"Date":"6/3/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":658,"Cost":361,"Date":"6/5/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":248,"Cost":180,"Date":"6/7/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":817,"Cost":534,"Date":"6/14/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":470,"Cost":293,"Date":"6/20/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":490,"Cost":308,"Date":"6/24/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":574,"Cost":354,"Date":"7/4/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":907,"Cost":714,"Date":"7/9/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":714,"Cost":559,"Date":"7/12/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":529,"Cost":362,"Date":"8/14/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":855,"Cost":750,"Date":"8/16/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":307,"Cost":233,"Date":"8/23/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":977,"Cost":676,"Date":"9/2/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":763,"Cost":643,"Date":"9/3/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":307,"Cost":226,"Date":"9/16/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":815,"Cost":635,"Date":"10/4/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":834,"Cost":429,"Date":"11/1/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":75,"Cost":44,"Date":"11/2/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":555,"Cost":334,"Date":"12/17/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":479,"Cost":454,"Date":"2/10/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":150,"Cost":121,"Date":"2/28/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":303,"Cost":186,"Date":"3/4/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":515,"Cost":332,"Date":"3/9/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":183,"Cost":128,"Date":"3/9/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":591,"Cost":386,"Date":"3/11/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":911,"Cost":762,"Date":"3/17/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":616,"Cost":463,"Date":"3/17/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":853,"Cost":654,"Date":"3/23/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":291,"Cost":242,"Date":"4/1/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":731,"Cost":567,"Date":"5/7/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":360,"Cost":227,"Date":"5/10/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":783,"Cost":519,"Date":"5/20/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":181,"Cost":169,"Date":"6/2/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":696,"Cost":481,"Date":"6/11/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":490,"Cost":396,"Date":"6/16/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":245,"Cost":197,"Date":"6/16/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":611,"Cost":506,"Date":"7/10/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":234,"Cost":154,"Date":"7/11/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":886,"Cost":513,"Date":"8/28/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":535,"Cost":497,"Date":"8/29/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":164,"Cost":148,"Date":"8/31/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":648,"Cost":500,"Date":"9/8/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":958,"Cost":773,"Date":"9/13/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":440,"Cost":408,"Date":"9/14/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":934,"Cost":496,"Date":"9/19/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":938,"Cost":891,"Date":"9/25/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":579,"Cost":327,"Date":"10/4/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":462,"Cost":400,"Date":"10/10/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":512,"Cost":405,"Date":"10/17/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":868,"Cost":511,"Date":"10/28/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":830,"Cost":698,"Date":"10/30/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":945,"Cost":535,"Date":"11/1/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":62,"Cost":38,"Date":"11/15/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":673,"Cost":435,"Date":"11/25/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":144,"Cost":103,"Date":"1/10/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":522,"Cost":466,"Date":"1/14/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":154,"Cost":87,"Date":"1/20/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":238,"Cost":217,"Date":"2/8/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":613,"Cost":347,"Date":"2/25/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":204,"Cost":179,"Date":"3/7/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":896,"Cost":791,"Date":"3/14/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":225,"Cost":176,"Date":"3/27/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":940,"Cost":669,"Date":"4/5/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":387,"Cost":335,"Date":"4/14/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":682,"Cost":446,"Date":"5/3/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":687,"Cost":399,"Date":"5/9/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":790,"Cost":425,"Date":"5/15/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":796,"Cost":430,"Date":"5/25/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":530,"Cost":265,"Date":"5/26/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":33,"Cost":20,"Date":"5/31/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":320,"Cost":295,"Date":"7/27/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":362,"Cost":282,"Date":"9/17/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":591,"Cost":373,"Date":"10/6/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":204,"Cost":188,"Date":"10/8/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":821,"Cost":731,"Date":"10/26/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":165,"Cost":89,"Date":"11/16/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":621,"Cost":312,"Date":"11/18/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":822,"Cost":591,"Date":"12/1/2024"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":138,"Cost":126,"Date":"2/9/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":884,"Cost":832,"Date":"2/11/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":127,"Cost":113,"Date":"3/10/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":953,"Cost":673,"Date":"3/16/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":382,"Cost":343,"Date":"3/18/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":465,"Cost":419,"Date":"3/20/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":594,"Cost":374,"Date":"3/26/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":23,"Cost":12,"Date":"6/2/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":80,"Cost":41,"Date":"6/10/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":475,"Cost":267,"Date":"6/16/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":700,"Cost":451,"Date":"6/25/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":777,"Cost":464,"Date":"7/19/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":324,"Cost":248,"Date":"7/21/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":980,"Cost":517,"Date":"7/25/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":119,"Cost":93,"Date":"8/4/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":682,"Cost":446,"Date":"9/2/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":408,"Cost":235,"Date":"9/4/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":860,"Cost":513,"Date":"9/19/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":188,"Cost":129,"Date":"9/29/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":502,"Cost":352,"Date":"10/2/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":583,"Cost":449,"Date":"10/15/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":601,"Cost":496,"Date":"10/30/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":147,"Cost":74,"Date":"11/9/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":625,"Cost":542,"Date":"11/23/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":1000,"Cost":506,"Date":"11/30/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":781,"Cost":510,"Date":"12/8/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":144,"Cost":86,"Date":"12/11/2018"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":92,"Cost":86,"Date":"1/15/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":847,"Cost":492,"Date":"1/24/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":180,"Cost":110,"Date":"2/3/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":334,"Cost":302,"Date":"2/4/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":323,"Cost":285,"Date":"3/9/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":960,"Cost":696,"Date":"3/12/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":399,"Cost":235,"Date":"4/19/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":346,"Cost":200,"Date":"5/3/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":415,"Cost":227,"Date":"5/4/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":944,"Cost":784,"Date":"6/8/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":937,"Cost":711,"Date":"6/26/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":142,"Cost":79,"Date":"7/4/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":273,"Cost":192,"Date":"7/13/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":955,"Cost":613,"Date":"8/8/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":106,"Cost":71,"Date":"8/26/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":311,"Cost":204,"Date":"9/2/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":820,"Cost":517,"Date":"9/29/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":448,"Cost":243,"Date":"10/12/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":317,"Cost":182,"Date":"11/2/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":790,"Cost":728,"Date":"11/4/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":792,"Cost":536,"Date":"11/7/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":290,"Cost":183,"Date":"12/1/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":980,"Cost":599,"Date":"12/4/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":578,"Cost":489,"Date":"12/7/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":665,"Cost":443,"Date":"12/18/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":673,"Cost":587,"Date":"12/20/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":575,"Cost":332,"Date":"12/20/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":617,"Cost":419,"Date":"12/21/2019"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":867,"Cost":508,"Date":"1/9/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":257,"Cost":236,"Date":"2/5/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":96,"Cost":83,"Date":"2/16/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":246,"Cost":162,"Date":"2/16/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":188,"Cost":142,"Date":"2/18/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":203,"Cost":154,"Date":"2/22/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":770,"Cost":577,"Date":"2/25/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":293,"Cost":215,"Date":"3/8/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":849,"Cost":470,"Date":"4/2/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":10,"Cost":8,"Date":"4/3/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":607,"Cost":341,"Date":"4/9/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":728,"Cost":418,"Date":"4/10/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":574,"Cost":294,"Date":"4/19/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":775,"Cost":692,"Date":"5/17/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":12,"Cost":7,"Date":"5/22/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":681,"Cost":495,"Date":"6/20/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":859,"Cost":535,"Date":"7/1/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":106,"Cost":86,"Date":"7/4/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":354,"Cost":220,"Date":"7/8/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":968,"Cost":739,"Date":"7/9/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":579,"Cost":323,"Date":"7/14/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":852,"Cost":796,"Date":"7/19/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":129,"Cost":71,"Date":"8/1/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":98,"Cost":57,"Date":"8/6/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":657,"Cost":598,"Date":"8/7/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":558,"Cost":486,"Date":"8/22/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":857,"Cost":445,"Date":"8/31/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":784,"Cost":415,"Date":"9/1/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":343,"Cost":242,"Date":"9/1/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":788,"Cost":693,"Date":"9/17/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":874,"Cost":633,"Date":"9/29/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":978,"Cost":500,"Date":"11/7/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":908,"Cost":474,"Date":"11/26/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":942,"Cost":891,"Date":"11/27/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":841,"Cost":498,"Date":"12/5/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":933,"Cost":703,"Date":"12/26/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":540,"Cost":425,"Date":"12/31/2020"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":959,"Cost":656,"Date":"1/20/2021"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":221,"Cost":130,"Date":"2/2/2021"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":363,"Cost":302,"Date":"2/8/2021"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":917,"Cost":510,"Date":"2/27/2021"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":508,"Cost":443,"Date":"3/1/2021"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":976,"Cost":854,"Date":"3/1/2021"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":945,"Cost":678,"Date":"3/19/2021"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":981,"Cost":529,"Date":"3/28/2021"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":250,"Cost":169,"Date":"5/21/2021"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":554,"Cost":348,"Date":"7/21/2021"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":750,"Cost":411,"Date":"8/5/2021"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":102,"Cost":72,"Date":"8/12/2021"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":513,"Cost":397,"Date":"8/21/2021"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":523,"Cost":385,"Date":"8/23/2021"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":135,"Cost":86,"Date":"9/3/2021"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":148,"Cost":80,"Date":"9/5/2021"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":349,"Cost":179,"Date":"10/6/2021"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":447,"Cost":259,"Date":"10/19/2021"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":348,"Cost":181,"Date":"11/15/2021"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":383,"Cost":307,"Date":"12/8/2021"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":576,"Cost":507,"Date":"1/8/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":886,"Cost":782,"Date":"1/14/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":695,"Cost":572,"Date":"1/19/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":717,"Cost":499,"Date":"1/28/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":667,"Cost":352,"Date":"1/31/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":277,"Cost":185,"Date":"3/27/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":858,"Cost":589,"Date":"4/20/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":801,"Cost":669,"Date":"4/24/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":995,"Cost":775,"Date":"4/28/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":930,"Cost":699,"Date":"5/15/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":70,"Cost":66,"Date":"5/16/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":105,"Cost":86,"Date":"5/18/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":288,"Cost":210,"Date":"6/2/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":76,"Cost":64,"Date":"6/3/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":876,"Cost":550,"Date":"6/5/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":276,"Cost":208,"Date":"6/7/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":791,"Cost":608,"Date":"6/14/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":16,"Cost":9,"Date":"6/20/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":540,"Cost":409,"Date":"6/24/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":335,"Cost":247,"Date":"7/4/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":138,"Cost":111,"Date":"7/9/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":512,"Cost":267,"Date":"7/12/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":73,"Cost":42,"Date":"8/14/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":696,"Cost":405,"Date":"8/16/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":112,"Cost":82,"Date":"8/23/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":650,"Cost":593,"Date":"9/2/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":959,"Cost":479,"Date":"9/3/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":336,"Cost":175,"Date":"9/16/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":648,"Cost":370,"Date":"10/4/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":646,"Cost":375,"Date":"11/1/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":370,"Cost":243,"Date":"11/2/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":104,"Cost":61,"Date":"12/17/2022"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":869,"Cost":539,"Date":"2/10/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":799,"Cost":491,"Date":"2/28/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":170,"Cost":104,"Date":"3/4/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":212,"Cost":122,"Date":"3/9/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":4,"Cost":2,"Date":"3/9/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":309,"Cost":268,"Date":"3/11/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":137,"Cost":70,"Date":"3/17/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":670,"Cost":387,"Date":"3/17/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":383,"Cost":245,"Date":"3/23/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":318,"Cost":195,"Date":"4/1/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":715,"Cost":578,"Date":"5/7/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":143,"Cost":77,"Date":"5/10/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":809,"Cost":701,"Date":"5/20/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":148,"Cost":100,"Date":"6/2/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":215,"Cost":186,"Date":"6/11/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":715,"Cost":458,"Date":"6/16/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":719,"Cost":499,"Date":"6/16/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":626,"Cost":538,"Date":"7/10/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":373,"Cost":329,"Date":"7/11/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":744,"Cost":373,"Date":"8/28/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":474,"Cost":307,"Date":"8/29/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":380,"Cost":289,"Date":"8/31/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":490,"Cost":417,"Date":"9/8/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":945,"Cost":705,"Date":"9/13/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":337,"Cost":312,"Date":"9/14/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":846,"Cost":497,"Date":"9/19/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":665,"Cost":610,"Date":"9/25/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":411,"Cost":294,"Date":"10/4/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":741,"Cost":582,"Date":"10/10/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":746,"Cost":604,"Date":"10/17/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":789,"Cost":562,"Date":"10/28/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":598,"Cost":493,"Date":"10/30/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":505,"Cost":467,"Date":"11/1/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":297,"Cost":236,"Date":"11/15/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":602,"Cost":441,"Date":"11/25/2023"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":61,"Cost":51,"Date":"1/10/2024"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":134,"Cost":121,"Date":"1/14/2024"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":224,"Cost":175,"Date":"1/20/2024"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":909,"Cost":588,"Date":"2/8/2024"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":674,"Cost":419,"Date":"2/25/2024"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":153,"Cost":135,"Date":"3/7/2024"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":246,"Cost":190,"Date":"3/14/2024"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":363,"Cost":309,"Date":"3/27/2024"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":444,"Cost":324,"Date":"4/5/2024"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":497,"Cost":407,"Date":"4/14/2024"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":237,"Cost":199,"Date":"5/3/2024"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":961,"Cost":535,"Date":"5/9/2024"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":834,"Cost":437,"Date":"5/15/2024"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":120,"Cost":75,"Date":"5/25/2024"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":35,"Cost":27,"Date":"5/26/2024"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":789,"Cost":613,"Date":"5/31/2024"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":439,"Cost":292,"Date":"7/27/2024"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":285,"Cost":150,"Date":"9/17/2024"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":833,"Cost":726,"Date":"10/6/2024"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":145,"Cost":79,"Date":"10/8/2024"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":751,"Cost":402,"Date":"10/26/2024"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":577,"Cost":487,"Date":"11/16/2024"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":879,"Cost":569,"Date":"11/18/2024"},{"Store":"Canberra Centre","Brand":"HM Home","Country":"Australia","Sale":903,"Cost":484,"Date":"12/1/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":345,"Cost":176,"Date":"2/9/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":363,"Cost":251,"Date":"2/11/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":687,"Cost":416,"Date":"3/10/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":501,"Cost":374,"Date":"3/16/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":976,"Cost":810,"Date":"3/18/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":4,"Cost":2,"Date":"3/20/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":329,"Cost":305,"Date":"3/26/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":890,"Cost":725,"Date":"6/2/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":404,"Cost":304,"Date":"6/10/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":587,"Cost":318,"Date":"6/16/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":207,"Cost":118,"Date":"6/25/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":600,"Cost":486,"Date":"7/19/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":629,"Cost":572,"Date":"7/21/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":480,"Cost":323,"Date":"7/25/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":503,"Cost":340,"Date":"8/4/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":601,"Cost":372,"Date":"9/2/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":285,"Cost":217,"Date":"9/4/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":69,"Cost":38,"Date":"9/19/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":942,"Cost":502,"Date":"9/29/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":820,"Cost":455,"Date":"10/2/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":502,"Cost":277,"Date":"10/15/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":273,"Cost":138,"Date":"10/30/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":733,"Cost":677,"Date":"11/9/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":621,"Cost":479,"Date":"11/23/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":641,"Cost":543,"Date":"11/30/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":76,"Cost":44,"Date":"12/8/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":499,"Cost":273,"Date":"12/11/2018"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":261,"Cost":226,"Date":"1/15/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":663,"Cost":392,"Date":"1/24/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":695,"Cost":515,"Date":"2/3/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":384,"Cost":295,"Date":"2/4/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":764,"Cost":724,"Date":"3/9/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":579,"Cost":325,"Date":"3/12/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":956,"Cost":711,"Date":"4/19/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":58,"Cost":54,"Date":"5/3/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":868,"Cost":712,"Date":"5/4/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":483,"Cost":389,"Date":"6/8/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":289,"Cost":162,"Date":"6/26/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":764,"Cost":475,"Date":"7/4/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":178,"Cost":131,"Date":"7/13/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":481,"Cost":279,"Date":"8/8/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":4,"Cost":3,"Date":"8/26/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":141,"Cost":105,"Date":"9/2/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":907,"Cost":737,"Date":"9/29/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":198,"Cost":145,"Date":"10/12/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":835,"Cost":733,"Date":"11/2/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":532,"Cost":501,"Date":"11/4/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":59,"Cost":51,"Date":"11/7/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":237,"Cost":209,"Date":"12/1/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":850,"Cost":665,"Date":"12/4/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":330,"Cost":192,"Date":"12/7/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":825,"Cost":619,"Date":"12/18/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":167,"Cost":148,"Date":"12/20/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":490,"Cost":449,"Date":"12/20/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":216,"Cost":170,"Date":"12/21/2019"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":390,"Cost":231,"Date":"1/9/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":190,"Cost":150,"Date":"2/5/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":237,"Cost":160,"Date":"2/16/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":885,"Cost":814,"Date":"2/16/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":39,"Cost":30,"Date":"2/18/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":826,"Cost":473,"Date":"2/22/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":84,"Cost":44,"Date":"2/25/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":536,"Cost":391,"Date":"3/8/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":867,"Cost":504,"Date":"4/2/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":836,"Cost":598,"Date":"4/3/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":350,"Cost":194,"Date":"4/9/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":591,"Cost":474,"Date":"4/10/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":899,"Cost":849,"Date":"4/19/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":52,"Cost":42,"Date":"5/17/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":294,"Cost":157,"Date":"5/22/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":264,"Cost":164,"Date":"6/20/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":145,"Cost":74,"Date":"7/1/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":362,"Cost":219,"Date":"7/4/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":894,"Cost":492,"Date":"7/8/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":304,"Cost":154,"Date":"7/9/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":360,"Cost":309,"Date":"7/14/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":369,"Cost":314,"Date":"7/19/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":269,"Cost":255,"Date":"8/1/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":926,"Cost":504,"Date":"8/6/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":196,"Cost":100,"Date":"8/7/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":512,"Cost":391,"Date":"8/22/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":343,"Cost":247,"Date":"8/31/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":522,"Cost":358,"Date":"9/1/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":586,"Cost":373,"Date":"9/1/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":270,"Cost":142,"Date":"9/17/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":855,"Cost":556,"Date":"9/29/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":294,"Cost":180,"Date":"11/7/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":457,"Cost":309,"Date":"11/26/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":8,"Cost":4,"Date":"11/27/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":145,"Cost":113,"Date":"12/5/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":15,"Cost":14,"Date":"12/26/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":871,"Cost":803,"Date":"12/31/2020"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":734,"Cost":371,"Date":"1/20/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":760,"Cost":684,"Date":"2/2/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":138,"Cost":121,"Date":"2/8/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":909,"Cost":612,"Date":"2/27/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":826,"Cost":725,"Date":"3/1/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":198,"Cost":179,"Date":"3/1/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":34,"Cost":21,"Date":"3/19/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":713,"Cost":389,"Date":"3/28/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":592,"Cost":321,"Date":"5/21/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":235,"Cost":190,"Date":"7/21/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":303,"Cost":203,"Date":"8/5/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":914,"Cost":805,"Date":"8/12/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":727,"Cost":461,"Date":"8/21/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":465,"Cost":353,"Date":"8/23/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":615,"Cost":367,"Date":"9/3/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":887,"Cost":520,"Date":"9/5/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":109,"Cost":98,"Date":"10/6/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":30,"Cost":22,"Date":"10/19/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":30,"Cost":20,"Date":"11/15/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":183,"Cost":146,"Date":"12/8/2021"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":886,"Cost":658,"Date":"1/8/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":140,"Cost":132,"Date":"1/14/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":349,"Cost":304,"Date":"1/19/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":181,"Cost":131,"Date":"1/28/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":649,"Cost":490,"Date":"1/31/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":835,"Cost":421,"Date":"3/27/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":467,"Cost":416,"Date":"4/20/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":637,"Cost":592,"Date":"4/24/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":32,"Cost":18,"Date":"4/28/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":238,"Cost":196,"Date":"5/15/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":179,"Cost":132,"Date":"5/16/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":137,"Cost":111,"Date":"5/18/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":126,"Cost":72,"Date":"6/2/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":163,"Cost":118,"Date":"6/3/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":207,"Cost":108,"Date":"6/5/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":688,"Cost":495,"Date":"6/7/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":754,"Cost":586,"Date":"6/14/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":208,"Cost":190,"Date":"6/20/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":920,"Cost":609,"Date":"6/24/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":989,"Cost":582,"Date":"7/4/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":468,"Cost":434,"Date":"7/9/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":169,"Cost":158,"Date":"7/12/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":688,"Cost":511,"Date":"8/14/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":407,"Cost":294,"Date":"8/16/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":475,"Cost":272,"Date":"8/23/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":250,"Cost":221,"Date":"9/2/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":955,"Cost":647,"Date":"9/3/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":767,"Cost":663,"Date":"9/16/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":221,"Cost":168,"Date":"10/4/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":794,"Cost":647,"Date":"11/1/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":948,"Cost":626,"Date":"11/2/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":144,"Cost":96,"Date":"12/17/2022"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":632,"Cost":390,"Date":"2/10/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":821,"Cost":625,"Date":"2/28/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":475,"Cost":308,"Date":"3/4/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":32,"Cost":17,"Date":"3/9/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":734,"Cost":614,"Date":"3/9/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":581,"Cost":409,"Date":"3/11/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":770,"Cost":663,"Date":"3/17/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":420,"Cost":215,"Date":"3/17/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":823,"Cost":620,"Date":"3/23/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":275,"Cost":145,"Date":"4/1/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":912,"Cost":783,"Date":"5/7/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":215,"Cost":178,"Date":"5/10/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":877,"Cost":481,"Date":"5/20/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":525,"Cost":319,"Date":"6/2/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":957,"Cost":802,"Date":"6/11/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":470,"Cost":443,"Date":"6/16/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":756,"Cost":446,"Date":"6/16/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":708,"Cost":662,"Date":"7/10/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":322,"Cost":161,"Date":"7/11/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":187,"Cost":166,"Date":"8/28/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":914,"Cost":676,"Date":"8/29/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":334,"Cost":261,"Date":"8/31/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":35,"Cost":31,"Date":"9/8/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":213,"Cost":152,"Date":"9/13/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":421,"Cost":257,"Date":"9/14/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":726,"Cost":614,"Date":"9/19/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":691,"Cost":346,"Date":"9/25/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":223,"Cost":212,"Date":"10/4/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":114,"Cost":95,"Date":"10/10/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":702,"Cost":632,"Date":"10/17/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":399,"Cost":346,"Date":"10/28/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":842,"Cost":591,"Date":"10/30/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":633,"Cost":405,"Date":"11/1/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":385,"Cost":278,"Date":"11/15/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":820,"Cost":471,"Date":"11/25/2023"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":352,"Cost":280,"Date":"1/10/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":355,"Cost":181,"Date":"1/14/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":956,"Cost":705,"Date":"1/20/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":214,"Cost":193,"Date":"2/8/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":627,"Cost":569,"Date":"2/25/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":314,"Cost":165,"Date":"3/7/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":561,"Cost":368,"Date":"3/14/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":291,"Cost":243,"Date":"3/27/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":863,"Cost":793,"Date":"4/5/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":35,"Cost":26,"Date":"4/14/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":680,"Cost":356,"Date":"5/3/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":110,"Cost":79,"Date":"5/9/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":882,"Cost":695,"Date":"5/15/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":268,"Cost":219,"Date":"5/25/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":726,"Cost":436,"Date":"5/26/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":908,"Cost":559,"Date":"5/31/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":772,"Cost":613,"Date":"7/27/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":991,"Cost":724,"Date":"9/17/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":11,"Cost":10,"Date":"10/6/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":236,"Cost":142,"Date":"10/8/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":840,"Cost":512,"Date":"10/26/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":795,"Cost":468,"Date":"11/16/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":561,"Cost":533,"Date":"11/18/2024"},{"Store":"Canberra Centre","Brand":"Jeans","Country":"Australia","Sale":612,"Cost":549,"Date":"12/1/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":331,"Cost":171,"Date":"2/9/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":734,"Cost":541,"Date":"2/11/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":900,"Cost":819,"Date":"3/10/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":659,"Cost":401,"Date":"3/16/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":472,"Cost":267,"Date":"3/18/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":337,"Cost":254,"Date":"3/20/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":278,"Cost":192,"Date":"3/26/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":705,"Cost":513,"Date":"6/2/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":205,"Cost":144,"Date":"6/10/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":503,"Cost":424,"Date":"6/16/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":329,"Cost":211,"Date":"6/25/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":280,"Cost":233,"Date":"7/19/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":339,"Cost":218,"Date":"7/21/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":294,"Cost":213,"Date":"7/25/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":841,"Cost":565,"Date":"8/4/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":726,"Cost":468,"Date":"9/2/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":378,"Cost":317,"Date":"9/4/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":31,"Cost":15,"Date":"9/19/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":346,"Cost":244,"Date":"9/29/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":505,"Cost":415,"Date":"10/2/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":100,"Cost":50,"Date":"10/15/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":873,"Cost":604,"Date":"10/30/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":350,"Cost":259,"Date":"11/9/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":912,"Cost":847,"Date":"11/23/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":320,"Cost":175,"Date":"11/30/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":371,"Cost":229,"Date":"12/8/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":201,"Cost":105,"Date":"12/11/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":149,"Cost":107,"Date":"1/15/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":222,"Cost":160,"Date":"1/24/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":907,"Cost":543,"Date":"2/3/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":865,"Cost":618,"Date":"2/4/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":249,"Cost":125,"Date":"3/9/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":67,"Cost":50,"Date":"3/12/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":739,"Cost":461,"Date":"4/19/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":831,"Cost":464,"Date":"5/3/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":181,"Cost":118,"Date":"5/4/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":112,"Cost":102,"Date":"6/8/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":155,"Cost":125,"Date":"6/26/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":33,"Cost":26,"Date":"7/4/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":68,"Cost":55,"Date":"7/13/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":844,"Cost":519,"Date":"8/8/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":926,"Cost":763,"Date":"8/26/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":631,"Cost":513,"Date":"9/2/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":875,"Cost":556,"Date":"9/29/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":278,"Cost":207,"Date":"10/12/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":135,"Cost":79,"Date":"11/2/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":565,"Cost":399,"Date":"11/4/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":321,"Cost":239,"Date":"11/7/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":966,"Cost":633,"Date":"12/1/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":139,"Cost":70,"Date":"12/4/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":900,"Cost":840,"Date":"12/7/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":546,"Cost":359,"Date":"12/18/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":419,"Cost":217,"Date":"12/20/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":653,"Cost":556,"Date":"12/20/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":502,"Cost":320,"Date":"12/21/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":157,"Cost":102,"Date":"1/9/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":57,"Cost":42,"Date":"2/5/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":352,"Cost":293,"Date":"2/16/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":414,"Cost":348,"Date":"2/16/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":237,"Cost":174,"Date":"2/18/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":515,"Cost":316,"Date":"2/22/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":591,"Cost":409,"Date":"2/25/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":362,"Cost":227,"Date":"3/8/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":834,"Cost":733,"Date":"4/2/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":695,"Cost":647,"Date":"4/3/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":44,"Cost":31,"Date":"4/9/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":411,"Cost":220,"Date":"4/10/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":888,"Cost":836,"Date":"4/19/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":353,"Cost":202,"Date":"5/17/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":121,"Cost":64,"Date":"5/22/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":857,"Cost":553,"Date":"6/20/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":763,"Cost":712,"Date":"7/1/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":415,"Cost":222,"Date":"7/4/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":10,"Cost":6,"Date":"7/8/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":334,"Cost":278,"Date":"7/9/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":30,"Cost":23,"Date":"7/14/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":176,"Cost":105,"Date":"7/19/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":804,"Cost":449,"Date":"8/1/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":844,"Cost":521,"Date":"8/6/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":633,"Cost":506,"Date":"8/7/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":647,"Cost":425,"Date":"8/22/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":146,"Cost":124,"Date":"8/31/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":393,"Cost":225,"Date":"9/1/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":391,"Cost":296,"Date":"9/1/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":586,"Cost":518,"Date":"9/17/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":573,"Cost":481,"Date":"9/29/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":721,"Cost":571,"Date":"11/7/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":75,"Cost":41,"Date":"11/26/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":909,"Cost":482,"Date":"11/27/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":529,"Cost":492,"Date":"12/5/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":853,"Cost":538,"Date":"12/26/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":803,"Cost":509,"Date":"12/31/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":504,"Cost":331,"Date":"1/20/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":657,"Cost":544,"Date":"2/2/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":886,"Cost":684,"Date":"2/8/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":54,"Cost":39,"Date":"2/27/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":611,"Cost":330,"Date":"3/1/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":458,"Cost":373,"Date":"3/1/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":71,"Cost":36,"Date":"3/19/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":938,"Cost":845,"Date":"3/28/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":642,"Cost":607,"Date":"5/21/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":286,"Cost":215,"Date":"7/21/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":14,"Cost":8,"Date":"8/5/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":868,"Cost":761,"Date":"8/12/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":104,"Cost":86,"Date":"8/21/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":230,"Cost":200,"Date":"8/23/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":343,"Cost":264,"Date":"9/3/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":669,"Cost":568,"Date":"9/5/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":617,"Cost":465,"Date":"10/6/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":516,"Cost":450,"Date":"10/19/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":432,"Cost":302,"Date":"11/15/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":147,"Cost":95,"Date":"12/8/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":133,"Cost":127,"Date":"1/8/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":663,"Cost":466,"Date":"1/14/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":91,"Cost":48,"Date":"1/19/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":471,"Cost":388,"Date":"1/28/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":135,"Cost":105,"Date":"1/31/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":945,"Cost":589,"Date":"3/27/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":413,"Cost":281,"Date":"4/20/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":5,"Cost":3,"Date":"4/24/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":24,"Cost":17,"Date":"4/28/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":354,"Cost":238,"Date":"5/15/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":819,"Cost":745,"Date":"5/16/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":483,"Cost":414,"Date":"5/18/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":715,"Cost":567,"Date":"6/2/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":293,"Cost":247,"Date":"6/3/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":688,"Cost":471,"Date":"6/5/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":196,"Cost":141,"Date":"6/7/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":94,"Cost":61,"Date":"6/14/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":411,"Cost":343,"Date":"6/20/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":922,"Cost":838,"Date":"6/24/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":619,"Cost":583,"Date":"7/4/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":716,"Cost":546,"Date":"7/9/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":567,"Cost":412,"Date":"7/12/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":521,"Cost":451,"Date":"8/14/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":357,"Cost":288,"Date":"8/16/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":976,"Cost":607,"Date":"8/23/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":684,"Cost":432,"Date":"9/2/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":303,"Cost":193,"Date":"9/3/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":589,"Cost":528,"Date":"9/16/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":440,"Cost":264,"Date":"10/4/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":642,"Cost":359,"Date":"11/1/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":658,"Cost":536,"Date":"11/2/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":724,"Cost":472,"Date":"12/17/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":570,"Cost":318,"Date":"2/10/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":289,"Cost":168,"Date":"2/28/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":182,"Cost":164,"Date":"3/4/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":333,"Cost":221,"Date":"3/9/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":566,"Cost":434,"Date":"3/9/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":588,"Cost":377,"Date":"3/11/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":619,"Cost":439,"Date":"3/17/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":373,"Cost":221,"Date":"3/17/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":203,"Cost":126,"Date":"3/23/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":309,"Cost":288,"Date":"4/1/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":547,"Cost":475,"Date":"5/7/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":631,"Cost":416,"Date":"5/10/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":936,"Cost":495,"Date":"5/20/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":731,"Cost":370,"Date":"6/2/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":120,"Cost":112,"Date":"6/11/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":466,"Cost":428,"Date":"6/16/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":540,"Cost":410,"Date":"6/16/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":239,"Cost":167,"Date":"7/10/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":852,"Cost":698,"Date":"7/11/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":188,"Cost":178,"Date":"8/28/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":230,"Cost":198,"Date":"8/29/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":153,"Cost":142,"Date":"8/31/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":42,"Cost":40,"Date":"9/8/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":510,"Cost":470,"Date":"9/13/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":189,"Cost":150,"Date":"9/14/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":195,"Cost":129,"Date":"9/19/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":627,"Cost":385,"Date":"9/25/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":335,"Cost":241,"Date":"10/4/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":865,"Cost":607,"Date":"10/10/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":471,"Cost":303,"Date":"10/17/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":945,"Cost":655,"Date":"10/28/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":143,"Cost":115,"Date":"10/30/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":397,"Cost":264,"Date":"11/1/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":326,"Cost":201,"Date":"11/15/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":913,"Cost":478,"Date":"11/25/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":971,"Cost":835,"Date":"1/10/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":907,"Cost":524,"Date":"1/14/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":64,"Cost":52,"Date":"1/20/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":219,"Cost":144,"Date":"2/8/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":222,"Cost":154,"Date":"2/25/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":23,"Cost":13,"Date":"3/7/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":907,"Cost":776,"Date":"3/14/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":503,"Cost":366,"Date":"3/27/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":955,"Cost":896,"Date":"4/5/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":494,"Cost":394,"Date":"4/14/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":116,"Cost":103,"Date":"5/3/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":52,"Cost":26,"Date":"5/9/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":828,"Cost":532,"Date":"5/15/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":659,"Cost":489,"Date":"5/25/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":478,"Cost":393,"Date":"5/26/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":386,"Cost":354,"Date":"5/31/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":466,"Cost":275,"Date":"7/27/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":715,"Cost":518,"Date":"9/17/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":846,"Cost":721,"Date":"10/6/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":689,"Cost":600,"Date":"10/8/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":710,"Cost":526,"Date":"10/26/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":265,"Cost":191,"Date":"11/16/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":522,"Cost":318,"Date":"11/18/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Jeans","Country":"Australia","Sale":653,"Cost":473,"Date":"12/1/2024"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":185,"Cost":117,"Date":"2/9/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":68,"Cost":49,"Date":"2/11/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":66,"Cost":50,"Date":"3/10/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":759,"Cost":472,"Date":"3/16/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":917,"Cost":607,"Date":"3/18/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":174,"Cost":146,"Date":"3/20/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":57,"Cost":35,"Date":"3/26/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":884,"Cost":768,"Date":"6/2/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":682,"Cost":456,"Date":"6/10/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":660,"Cost":570,"Date":"6/16/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":721,"Cost":372,"Date":"6/25/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":150,"Cost":92,"Date":"7/19/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":85,"Cost":61,"Date":"7/21/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":233,"Cost":165,"Date":"7/25/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":178,"Cost":163,"Date":"8/4/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":746,"Cost":704,"Date":"9/2/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":380,"Cost":258,"Date":"9/4/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":468,"Cost":298,"Date":"9/19/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":308,"Cost":178,"Date":"9/29/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":327,"Cost":271,"Date":"10/2/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":971,"Cost":758,"Date":"10/15/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":176,"Cost":133,"Date":"10/30/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":888,"Cost":562,"Date":"11/9/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":442,"Cost":409,"Date":"11/23/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":396,"Cost":320,"Date":"11/30/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":733,"Cost":658,"Date":"12/8/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":614,"Cost":377,"Date":"12/11/2018"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":916,"Cost":568,"Date":"1/15/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":259,"Cost":243,"Date":"1/24/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":989,"Cost":541,"Date":"2/3/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":867,"Cost":670,"Date":"2/4/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":183,"Cost":106,"Date":"3/9/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":359,"Cost":333,"Date":"3/12/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":713,"Cost":567,"Date":"4/19/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":12,"Cost":10,"Date":"5/3/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":963,"Cost":903,"Date":"5/4/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":656,"Cost":524,"Date":"6/8/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":621,"Cost":413,"Date":"6/26/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":963,"Cost":866,"Date":"7/4/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":428,"Cost":342,"Date":"7/13/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":418,"Cost":230,"Date":"8/8/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":419,"Cost":289,"Date":"8/26/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":600,"Cost":464,"Date":"9/2/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":878,"Cost":695,"Date":"9/29/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":101,"Cost":55,"Date":"10/12/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":65,"Cost":44,"Date":"11/2/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":346,"Cost":259,"Date":"11/4/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":673,"Cost":463,"Date":"11/7/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":236,"Cost":155,"Date":"12/1/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":349,"Cost":270,"Date":"12/4/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":570,"Cost":442,"Date":"12/7/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":486,"Cost":360,"Date":"12/18/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":967,"Cost":617,"Date":"12/20/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":844,"Cost":638,"Date":"12/20/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":826,"Cost":589,"Date":"12/21/2019"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":98,"Cost":88,"Date":"1/9/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":351,"Cost":185,"Date":"2/5/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":809,"Cost":497,"Date":"2/16/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":464,"Cost":266,"Date":"2/16/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":700,"Cost":503,"Date":"2/18/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":818,"Cost":663,"Date":"2/22/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":168,"Cost":107,"Date":"2/25/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":813,"Cost":758,"Date":"3/8/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":87,"Cost":82,"Date":"4/2/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":93,"Cost":53,"Date":"4/3/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":270,"Cost":184,"Date":"4/9/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":991,"Cost":782,"Date":"4/10/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":769,"Cost":392,"Date":"4/19/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":114,"Cost":78,"Date":"5/17/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":240,"Cost":132,"Date":"5/22/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":488,"Cost":416,"Date":"6/20/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":890,"Cost":462,"Date":"7/1/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":444,"Cost":251,"Date":"7/4/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":179,"Cost":139,"Date":"7/8/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":104,"Cost":98,"Date":"7/9/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":945,"Cost":594,"Date":"7/14/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":377,"Cost":307,"Date":"7/19/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":978,"Cost":644,"Date":"8/1/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":41,"Cost":24,"Date":"8/6/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":289,"Cost":257,"Date":"8/7/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":776,"Cost":562,"Date":"8/22/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":825,"Cost":580,"Date":"8/31/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":530,"Cost":361,"Date":"9/1/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":829,"Cost":582,"Date":"9/1/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":550,"Cost":424,"Date":"9/17/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":397,"Cost":264,"Date":"9/29/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":203,"Cost":134,"Date":"11/7/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":38,"Cost":34,"Date":"11/26/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":91,"Cost":71,"Date":"11/27/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":767,"Cost":587,"Date":"12/5/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":758,"Cost":411,"Date":"12/26/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":292,"Cost":265,"Date":"12/31/2020"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":157,"Cost":132,"Date":"1/20/2021"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":97,"Cost":57,"Date":"2/2/2021"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":275,"Cost":192,"Date":"2/8/2021"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":209,"Cost":112,"Date":"2/27/2021"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":586,"Cost":365,"Date":"3/1/2021"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":423,"Cost":320,"Date":"3/1/2021"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":380,"Cost":361,"Date":"3/19/2021"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":788,"Cost":603,"Date":"3/28/2021"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":977,"Cost":706,"Date":"5/21/2021"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":235,"Cost":177,"Date":"7/21/2021"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":201,"Cost":145,"Date":"8/5/2021"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":879,"Cost":685,"Date":"8/12/2021"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":341,"Cost":243,"Date":"8/21/2021"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":341,"Cost":195,"Date":"8/23/2021"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":25,"Cost":20,"Date":"9/3/2021"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":592,"Cost":353,"Date":"9/5/2021"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":257,"Cost":193,"Date":"10/6/2021"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":472,"Cost":419,"Date":"10/19/2021"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":714,"Cost":385,"Date":"11/15/2021"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":284,"Cost":170,"Date":"12/8/2021"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":522,"Cost":371,"Date":"1/8/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":882,"Cost":716,"Date":"1/14/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":835,"Cost":638,"Date":"1/19/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":45,"Cost":24,"Date":"1/28/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":442,"Cost":278,"Date":"1/31/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":981,"Cost":716,"Date":"3/27/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":999,"Cost":566,"Date":"4/20/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":558,"Cost":449,"Date":"4/24/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":363,"Cost":259,"Date":"4/28/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":887,"Cost":598,"Date":"5/15/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":470,"Cost":284,"Date":"5/16/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":63,"Cost":45,"Date":"5/18/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":297,"Cost":204,"Date":"6/2/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":612,"Cost":464,"Date":"6/3/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":891,"Cost":710,"Date":"6/5/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":948,"Cost":874,"Date":"6/7/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":80,"Cost":54,"Date":"6/14/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":646,"Cost":411,"Date":"6/20/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":656,"Cost":554,"Date":"6/24/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":309,"Cost":256,"Date":"7/4/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":730,"Cost":618,"Date":"7/9/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":441,"Cost":369,"Date":"7/12/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":625,"Cost":321,"Date":"8/14/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":155,"Cost":110,"Date":"8/16/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":321,"Cost":268,"Date":"8/23/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":423,"Cost":224,"Date":"9/2/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":382,"Cost":317,"Date":"9/3/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":180,"Cost":124,"Date":"9/16/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":691,"Cost":571,"Date":"10/4/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":19,"Cost":12,"Date":"11/1/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":904,"Cost":548,"Date":"11/2/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":35,"Cost":27,"Date":"12/17/2022"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":210,"Cost":115,"Date":"2/10/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":561,"Cost":461,"Date":"2/28/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":430,"Cost":353,"Date":"3/4/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":276,"Cost":179,"Date":"3/9/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":559,"Cost":485,"Date":"3/9/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":936,"Cost":771,"Date":"3/11/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":603,"Cost":452,"Date":"3/17/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":988,"Cost":841,"Date":"3/17/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":267,"Cost":190,"Date":"3/23/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":132,"Cost":119,"Date":"4/1/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":694,"Cost":621,"Date":"5/7/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":709,"Cost":609,"Date":"5/10/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":443,"Cost":323,"Date":"5/20/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":374,"Cost":355,"Date":"6/2/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":115,"Cost":105,"Date":"6/11/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":27,"Cost":14,"Date":"6/16/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":253,"Cost":228,"Date":"6/16/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":918,"Cost":779,"Date":"7/10/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":386,"Cost":214,"Date":"7/11/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":831,"Cost":546,"Date":"8/28/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":639,"Cost":383,"Date":"8/29/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":922,"Cost":651,"Date":"8/31/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":547,"Cost":401,"Date":"9/8/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":906,"Cost":499,"Date":"9/13/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":597,"Cost":551,"Date":"9/14/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":228,"Cost":200,"Date":"9/19/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":295,"Cost":200,"Date":"9/25/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":347,"Cost":318,"Date":"10/4/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":921,"Cost":522,"Date":"10/10/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":911,"Cost":741,"Date":"10/17/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":83,"Cost":71,"Date":"10/28/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":659,"Cost":450,"Date":"10/30/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":91,"Cost":77,"Date":"11/1/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":866,"Cost":660,"Date":"11/15/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":509,"Cost":370,"Date":"11/25/2023"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":797,"Cost":698,"Date":"1/10/2024"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":708,"Cost":388,"Date":"1/14/2024"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":478,"Cost":420,"Date":"1/20/2024"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":296,"Cost":240,"Date":"2/8/2024"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":121,"Cost":102,"Date":"2/25/2024"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":856,"Cost":506,"Date":"3/7/2024"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":965,"Cost":899,"Date":"3/14/2024"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":201,"Cost":182,"Date":"3/27/2024"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":549,"Cost":445,"Date":"4/5/2024"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":363,"Cost":244,"Date":"4/14/2024"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":396,"Cost":265,"Date":"5/3/2024"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":175,"Cost":145,"Date":"5/9/2024"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":255,"Cost":222,"Date":"5/15/2024"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":49,"Cost":26,"Date":"5/25/2024"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":560,"Cost":329,"Date":"5/26/2024"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":199,"Cost":118,"Date":"5/31/2024"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":178,"Cost":154,"Date":"7/27/2024"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":532,"Cost":450,"Date":"9/17/2024"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":559,"Cost":470,"Date":"10/6/2024"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":603,"Cost":523,"Date":"10/8/2024"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":410,"Cost":207,"Date":"10/26/2024"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":809,"Cost":571,"Date":"11/16/2024"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":409,"Cost":307,"Date":"11/18/2024"},{"Store":"Westfield Woden, Canberra","Brand":"HM Home","Country":"Australia","Sale":656,"Cost":606,"Date":"12/1/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":877,"Cost":761,"Date":"2/9/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":490,"Cost":416,"Date":"2/11/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":962,"Cost":840,"Date":"3/10/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":886,"Cost":478,"Date":"3/16/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":825,"Cost":582,"Date":"3/18/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":888,"Cost":622,"Date":"3/20/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":217,"Cost":117,"Date":"3/26/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":264,"Cost":154,"Date":"6/2/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":744,"Cost":514,"Date":"6/10/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":872,"Cost":634,"Date":"6/16/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":171,"Cost":130,"Date":"6/25/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":225,"Cost":184,"Date":"7/19/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":631,"Cost":409,"Date":"7/21/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":164,"Cost":98,"Date":"7/25/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":885,"Cost":447,"Date":"8/4/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":815,"Cost":741,"Date":"9/2/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":517,"Cost":438,"Date":"9/4/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":896,"Cost":787,"Date":"9/19/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":759,"Cost":682,"Date":"9/29/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":979,"Cost":546,"Date":"10/2/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":894,"Cost":745,"Date":"10/15/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":645,"Cost":348,"Date":"10/30/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":627,"Cost":579,"Date":"11/9/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":1000,"Cost":701,"Date":"11/23/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":275,"Cost":156,"Date":"11/30/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":833,"Cost":611,"Date":"12/8/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":737,"Cost":441,"Date":"12/11/2018"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":630,"Cost":349,"Date":"1/15/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":872,"Cost":763,"Date":"1/24/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":356,"Cost":307,"Date":"2/3/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":626,"Cost":355,"Date":"2/4/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":45,"Cost":34,"Date":"3/9/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":852,"Cost":618,"Date":"3/12/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":105,"Cost":75,"Date":"4/19/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":511,"Cost":354,"Date":"5/3/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":74,"Cost":56,"Date":"5/4/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":912,"Cost":531,"Date":"6/8/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":345,"Cost":233,"Date":"6/26/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":144,"Cost":96,"Date":"7/4/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":18,"Cost":12,"Date":"7/13/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":904,"Cost":804,"Date":"8/8/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":882,"Cost":766,"Date":"8/26/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":447,"Cost":290,"Date":"9/2/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":15,"Cost":14,"Date":"9/29/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":101,"Cost":66,"Date":"10/12/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":813,"Cost":566,"Date":"11/2/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":706,"Cost":441,"Date":"11/4/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":882,"Cost":628,"Date":"11/7/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":594,"Cost":335,"Date":"12/1/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":404,"Cost":231,"Date":"12/4/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":415,"Cost":376,"Date":"12/7/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":152,"Cost":114,"Date":"12/18/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":195,"Cost":106,"Date":"12/20/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":843,"Cost":623,"Date":"12/20/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":493,"Cost":315,"Date":"12/21/2019"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":949,"Cost":585,"Date":"1/9/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":910,"Cost":578,"Date":"2/5/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":539,"Cost":341,"Date":"2/16/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":226,"Cost":157,"Date":"2/16/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":702,"Cost":634,"Date":"2/18/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":192,"Cost":182,"Date":"2/22/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":232,"Cost":163,"Date":"2/25/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":396,"Cost":277,"Date":"3/8/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":645,"Cost":409,"Date":"4/2/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":861,"Cost":533,"Date":"4/3/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":360,"Cost":302,"Date":"4/9/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":57,"Cost":34,"Date":"4/10/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":926,"Cost":495,"Date":"4/19/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":273,"Cost":256,"Date":"5/17/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":983,"Cost":877,"Date":"5/22/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":98,"Cost":93,"Date":"6/20/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":791,"Cost":645,"Date":"7/1/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":158,"Cost":118,"Date":"7/4/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":814,"Cost":623,"Date":"7/8/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":568,"Cost":360,"Date":"7/9/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":475,"Cost":363,"Date":"7/14/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":46,"Cost":38,"Date":"7/19/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":270,"Cost":253,"Date":"8/1/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":279,"Cost":158,"Date":"8/6/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":509,"Cost":386,"Date":"8/7/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":621,"Cost":397,"Date":"8/22/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":14,"Cost":9,"Date":"8/31/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":823,"Cost":552,"Date":"9/1/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":979,"Cost":749,"Date":"9/1/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":919,"Cost":601,"Date":"9/17/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":494,"Cost":381,"Date":"9/29/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":947,"Cost":478,"Date":"11/7/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":80,"Cost":72,"Date":"11/26/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":75,"Cost":62,"Date":"11/27/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":862,"Cost":523,"Date":"12/5/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":571,"Cost":497,"Date":"12/26/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":523,"Cost":451,"Date":"12/31/2020"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":241,"Cost":173,"Date":"1/20/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":118,"Cost":100,"Date":"2/2/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":876,"Cost":589,"Date":"2/8/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":591,"Cost":368,"Date":"2/27/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":427,"Cost":214,"Date":"3/1/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":497,"Cost":448,"Date":"3/1/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":880,"Cost":532,"Date":"3/19/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":638,"Cost":447,"Date":"3/28/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":85,"Cost":65,"Date":"5/21/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":496,"Cost":333,"Date":"7/21/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":307,"Cost":163,"Date":"8/5/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":444,"Cost":389,"Date":"8/12/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":9,"Cost":4,"Date":"8/21/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":93,"Cost":51,"Date":"8/23/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":763,"Cost":502,"Date":"9/3/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":641,"Cost":443,"Date":"9/5/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":584,"Cost":346,"Date":"10/6/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":446,"Cost":396,"Date":"10/19/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":686,"Cost":472,"Date":"11/15/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":200,"Cost":173,"Date":"12/8/2021"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":229,"Cost":149,"Date":"1/8/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":138,"Cost":111,"Date":"1/14/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":135,"Cost":126,"Date":"1/19/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":921,"Cost":528,"Date":"1/28/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":938,"Cost":677,"Date":"1/31/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":1000,"Cost":822,"Date":"3/27/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":937,"Cost":886,"Date":"4/20/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":166,"Cost":108,"Date":"4/24/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":74,"Cost":52,"Date":"4/28/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":918,"Cost":548,"Date":"5/15/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":92,"Cost":56,"Date":"5/16/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":744,"Cost":649,"Date":"5/18/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":426,"Cost":282,"Date":"6/2/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":541,"Cost":445,"Date":"6/3/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":483,"Cost":325,"Date":"6/5/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":585,"Cost":402,"Date":"6/7/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":535,"Cost":433,"Date":"6/14/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":948,"Cost":727,"Date":"6/20/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":264,"Cost":244,"Date":"6/24/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":488,"Cost":247,"Date":"7/4/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":150,"Cost":104,"Date":"7/9/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":237,"Cost":199,"Date":"7/12/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":289,"Cost":271,"Date":"8/14/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":723,"Cost":561,"Date":"8/16/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":767,"Cost":646,"Date":"8/23/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":877,"Cost":764,"Date":"9/2/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":619,"Cost":514,"Date":"9/3/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":515,"Cost":454,"Date":"9/16/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":274,"Cost":225,"Date":"10/4/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":846,"Cost":750,"Date":"11/1/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":486,"Cost":328,"Date":"11/2/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":806,"Cost":758,"Date":"12/17/2022"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":347,"Cost":279,"Date":"2/10/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":371,"Cost":313,"Date":"2/28/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":574,"Cost":425,"Date":"3/4/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":285,"Cost":254,"Date":"3/9/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":670,"Cost":480,"Date":"3/9/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":642,"Cost":386,"Date":"3/11/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":926,"Cost":806,"Date":"3/17/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":709,"Cost":524,"Date":"3/17/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":307,"Cost":184,"Date":"3/23/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":276,"Cost":258,"Date":"4/1/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":61,"Cost":51,"Date":"5/7/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":514,"Cost":278,"Date":"5/10/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":303,"Cost":157,"Date":"5/20/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":814,"Cost":726,"Date":"6/2/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":866,"Cost":701,"Date":"6/11/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":68,"Cost":43,"Date":"6/16/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":295,"Cost":209,"Date":"6/16/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":267,"Cost":170,"Date":"7/10/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":949,"Cost":537,"Date":"7/11/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":578,"Cost":349,"Date":"8/28/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":533,"Cost":331,"Date":"8/29/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":207,"Cost":194,"Date":"8/31/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":96,"Cost":67,"Date":"9/8/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":295,"Cost":241,"Date":"9/13/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":868,"Cost":600,"Date":"9/14/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":285,"Cost":264,"Date":"9/19/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":4,"Cost":3,"Date":"9/25/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":329,"Cost":280,"Date":"10/4/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":313,"Cost":248,"Date":"10/10/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":166,"Cost":137,"Date":"10/17/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":348,"Cost":249,"Date":"10/28/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":184,"Cost":161,"Date":"10/30/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":785,"Cost":422,"Date":"11/1/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":200,"Cost":146,"Date":"11/15/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":492,"Cost":389,"Date":"11/25/2023"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":14,"Cost":10,"Date":"1/10/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":549,"Cost":516,"Date":"1/14/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":933,"Cost":579,"Date":"1/20/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":401,"Cost":232,"Date":"2/8/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":87,"Cost":49,"Date":"2/25/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":682,"Cost":391,"Date":"3/7/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":655,"Cost":482,"Date":"3/14/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":628,"Cost":350,"Date":"3/27/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":253,"Cost":210,"Date":"4/5/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":183,"Cost":126,"Date":"4/14/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":432,"Cost":386,"Date":"5/3/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":492,"Cost":414,"Date":"5/9/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":849,"Cost":697,"Date":"5/15/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":22,"Cost":21,"Date":"5/25/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":998,"Cost":901,"Date":"5/26/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":708,"Cost":500,"Date":"5/31/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":273,"Cost":157,"Date":"7/27/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":581,"Cost":533,"Date":"9/17/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":82,"Cost":62,"Date":"10/6/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":65,"Cost":59,"Date":"10/8/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":544,"Cost":507,"Date":"10/26/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":872,"Cost":700,"Date":"11/16/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":521,"Cost":297,"Date":"11/18/2024"},{"Store":"Westfield Woden, Canberra","Brand":"Sellpy","Country":"Australia","Sale":454,"Cost":351,"Date":"12/1/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":313,"Cost":214,"Date":"2/9/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":998,"Cost":876,"Date":"2/11/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":747,"Cost":536,"Date":"3/10/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":37,"Cost":30,"Date":"3/16/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":509,"Cost":470,"Date":"3/18/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":234,"Cost":185,"Date":"3/20/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":560,"Cost":486,"Date":"3/26/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":912,"Cost":640,"Date":"6/2/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":41,"Cost":38,"Date":"6/10/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":412,"Cost":314,"Date":"6/16/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":466,"Cost":323,"Date":"6/25/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":868,"Cost":549,"Date":"7/19/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":922,"Cost":566,"Date":"7/21/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":515,"Cost":484,"Date":"7/25/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":667,"Cost":404,"Date":"8/4/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":233,"Cost":171,"Date":"9/2/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":703,"Cost":391,"Date":"9/4/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":542,"Cost":432,"Date":"9/19/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":624,"Cost":465,"Date":"9/29/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":773,"Cost":579,"Date":"10/2/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":421,"Cost":329,"Date":"10/15/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":329,"Cost":166,"Date":"10/30/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":612,"Cost":525,"Date":"11/9/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":415,"Cost":287,"Date":"11/23/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":210,"Cost":165,"Date":"11/30/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":970,"Cost":774,"Date":"12/8/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":274,"Cost":214,"Date":"12/11/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":699,"Cost":570,"Date":"1/15/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":320,"Cost":265,"Date":"1/24/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":781,"Cost":627,"Date":"2/3/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":16,"Cost":14,"Date":"2/4/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":505,"Cost":317,"Date":"3/9/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":310,"Cost":265,"Date":"3/12/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":791,"Cost":597,"Date":"4/19/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":124,"Cost":70,"Date":"5/3/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":225,"Cost":197,"Date":"5/4/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":20,"Cost":14,"Date":"6/8/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":510,"Cost":432,"Date":"6/26/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":396,"Cost":209,"Date":"7/4/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":942,"Cost":491,"Date":"7/13/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":986,"Cost":553,"Date":"8/8/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":998,"Cost":776,"Date":"8/26/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":170,"Cost":120,"Date":"9/2/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":223,"Cost":196,"Date":"9/29/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":146,"Cost":128,"Date":"10/12/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":955,"Cost":891,"Date":"11/2/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":76,"Cost":54,"Date":"11/4/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":884,"Cost":612,"Date":"11/7/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":241,"Cost":167,"Date":"12/1/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":294,"Cost":227,"Date":"12/4/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":307,"Cost":238,"Date":"12/7/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":114,"Cost":65,"Date":"12/18/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":501,"Cost":421,"Date":"12/20/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":535,"Cost":496,"Date":"12/20/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":124,"Cost":73,"Date":"12/21/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":965,"Cost":664,"Date":"1/9/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":415,"Cost":263,"Date":"2/5/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":203,"Cost":169,"Date":"2/16/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":784,"Cost":406,"Date":"2/16/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":299,"Cost":167,"Date":"2/18/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":442,"Cost":303,"Date":"2/22/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":858,"Cost":544,"Date":"2/25/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":387,"Cost":295,"Date":"3/8/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":901,"Cost":611,"Date":"4/2/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":460,"Cost":259,"Date":"4/3/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":903,"Cost":709,"Date":"4/9/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":782,"Cost":452,"Date":"4/10/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":28,"Cost":22,"Date":"4/19/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":519,"Cost":296,"Date":"5/17/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":703,"Cost":484,"Date":"5/22/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":352,"Cost":244,"Date":"6/20/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":744,"Cost":603,"Date":"7/1/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":886,"Cost":546,"Date":"7/4/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":870,"Cost":536,"Date":"7/8/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":899,"Cost":614,"Date":"7/9/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":793,"Cost":556,"Date":"7/14/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":997,"Cost":554,"Date":"7/19/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":445,"Cost":266,"Date":"8/1/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":563,"Cost":517,"Date":"8/6/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":440,"Cost":280,"Date":"8/7/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":12,"Cost":8,"Date":"8/22/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":140,"Cost":113,"Date":"8/31/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":717,"Cost":545,"Date":"9/1/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":137,"Cost":104,"Date":"9/1/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":355,"Cost":218,"Date":"9/17/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":293,"Cost":276,"Date":"9/29/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":341,"Cost":178,"Date":"11/7/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":451,"Cost":339,"Date":"11/26/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":257,"Cost":147,"Date":"11/27/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":366,"Cost":251,"Date":"12/5/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":51,"Cost":32,"Date":"12/26/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":144,"Cost":124,"Date":"12/31/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":444,"Cost":403,"Date":"1/20/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":876,"Cost":617,"Date":"2/2/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":28,"Cost":21,"Date":"2/8/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":584,"Cost":294,"Date":"2/27/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":57,"Cost":41,"Date":"3/1/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":450,"Cost":419,"Date":"3/1/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":403,"Cost":337,"Date":"3/19/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":677,"Cost":492,"Date":"3/28/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":930,"Cost":829,"Date":"5/21/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":567,"Cost":346,"Date":"7/21/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":378,"Cost":307,"Date":"8/5/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":391,"Cost":243,"Date":"8/12/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":203,"Cost":135,"Date":"8/21/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":376,"Cost":283,"Date":"8/23/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":68,"Cost":64,"Date":"9/3/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":561,"Cost":526,"Date":"9/5/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":91,"Cost":60,"Date":"10/6/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":155,"Cost":132,"Date":"10/19/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":687,"Cost":599,"Date":"11/15/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":152,"Cost":98,"Date":"12/8/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":170,"Cost":142,"Date":"1/8/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":693,"Cost":614,"Date":"1/14/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":872,"Cost":606,"Date":"1/19/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":85,"Cost":48,"Date":"1/28/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":258,"Cost":240,"Date":"1/31/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":129,"Cost":120,"Date":"3/27/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":880,"Cost":657,"Date":"4/20/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":934,"Cost":526,"Date":"4/24/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":938,"Cost":571,"Date":"4/28/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":695,"Cost":365,"Date":"5/15/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":34,"Cost":18,"Date":"5/16/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":223,"Cost":189,"Date":"5/18/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":342,"Cost":306,"Date":"6/2/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":852,"Cost":782,"Date":"6/3/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":351,"Cost":194,"Date":"6/5/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":322,"Cost":205,"Date":"6/7/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":352,"Cost":187,"Date":"6/14/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":387,"Cost":274,"Date":"6/20/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":320,"Cost":289,"Date":"6/24/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":166,"Cost":123,"Date":"7/4/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":816,"Cost":431,"Date":"7/9/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":18,"Cost":16,"Date":"7/12/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":119,"Cost":109,"Date":"8/14/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":439,"Cost":295,"Date":"8/16/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":562,"Cost":477,"Date":"8/23/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":93,"Cost":47,"Date":"9/2/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":744,"Cost":705,"Date":"9/3/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":271,"Cost":232,"Date":"9/16/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":422,"Cost":385,"Date":"10/4/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":167,"Cost":143,"Date":"11/1/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":168,"Cost":91,"Date":"11/2/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":982,"Cost":504,"Date":"12/17/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":402,"Cost":274,"Date":"2/10/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":521,"Cost":480,"Date":"2/28/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":118,"Cost":62,"Date":"3/4/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":149,"Cost":130,"Date":"3/9/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":25,"Cost":21,"Date":"3/9/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":376,"Cost":351,"Date":"3/11/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":217,"Cost":172,"Date":"3/17/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":247,"Cost":209,"Date":"3/17/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":556,"Cost":484,"Date":"3/23/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":518,"Cost":262,"Date":"4/1/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":735,"Cost":654,"Date":"5/7/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":312,"Cost":192,"Date":"5/10/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":456,"Cost":247,"Date":"5/20/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":206,"Cost":125,"Date":"6/2/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":709,"Cost":511,"Date":"6/11/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":681,"Cost":484,"Date":"6/16/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":612,"Cost":361,"Date":"6/16/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":275,"Cost":197,"Date":"7/10/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":284,"Cost":237,"Date":"7/11/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":393,"Cost":280,"Date":"8/28/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":76,"Cost":46,"Date":"8/29/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":906,"Cost":808,"Date":"8/31/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":923,"Cost":504,"Date":"9/8/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":33,"Cost":26,"Date":"9/13/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":558,"Cost":280,"Date":"9/14/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":135,"Cost":118,"Date":"9/19/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":695,"Cost":544,"Date":"9/25/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":275,"Cost":165,"Date":"10/4/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":581,"Cost":461,"Date":"10/10/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":755,"Cost":571,"Date":"10/17/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":356,"Cost":216,"Date":"10/28/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":260,"Cost":170,"Date":"10/30/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":487,"Cost":283,"Date":"11/1/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":855,"Cost":780,"Date":"11/15/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":369,"Cost":257,"Date":"11/25/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":441,"Cost":363,"Date":"1/10/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":120,"Cost":86,"Date":"1/14/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":627,"Cost":535,"Date":"1/20/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":501,"Cost":419,"Date":"2/8/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":672,"Cost":525,"Date":"2/25/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":306,"Cost":211,"Date":"3/7/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":262,"Cost":160,"Date":"3/14/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":773,"Cost":657,"Date":"3/27/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":786,"Cost":682,"Date":"4/5/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":962,"Cost":674,"Date":"4/14/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":357,"Cost":314,"Date":"5/3/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":559,"Cost":288,"Date":"5/9/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":144,"Cost":137,"Date":"5/15/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":959,"Cost":657,"Date":"5/25/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":19,"Cost":14,"Date":"5/26/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":339,"Cost":224,"Date":"5/31/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":155,"Cost":98,"Date":"7/27/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":247,"Cost":143,"Date":"9/17/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":387,"Cost":236,"Date":"10/6/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":199,"Cost":177,"Date":"10/8/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":156,"Cost":105,"Date":"10/26/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":365,"Cost":312,"Date":"11/16/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":959,"Cost":658,"Date":"11/18/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"ARKET","Country":"Australia","Sale":624,"Cost":357,"Date":"12/1/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":949,"Cost":753,"Date":"2/9/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":443,"Cost":233,"Date":"2/11/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":607,"Cost":375,"Date":"3/10/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":410,"Cost":309,"Date":"3/16/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":243,"Cost":187,"Date":"3/18/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":127,"Cost":92,"Date":"3/20/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":943,"Cost":510,"Date":"3/26/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":907,"Cost":774,"Date":"6/2/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":998,"Cost":876,"Date":"6/10/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":284,"Cost":151,"Date":"6/16/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":99,"Cost":71,"Date":"6/25/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":771,"Cost":640,"Date":"7/19/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":606,"Cost":320,"Date":"7/21/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":498,"Cost":324,"Date":"7/25/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":688,"Cost":611,"Date":"8/4/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":985,"Cost":561,"Date":"9/2/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":98,"Cost":55,"Date":"9/4/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":715,"Cost":663,"Date":"9/19/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":657,"Cost":372,"Date":"9/29/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":831,"Cost":626,"Date":"10/2/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":164,"Cost":121,"Date":"10/15/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":42,"Cost":21,"Date":"10/30/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":976,"Cost":691,"Date":"11/9/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":343,"Cost":191,"Date":"11/23/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":355,"Cost":265,"Date":"11/30/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":136,"Cost":76,"Date":"12/8/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":612,"Cost":446,"Date":"12/11/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":407,"Cost":382,"Date":"1/15/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":496,"Cost":326,"Date":"1/24/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":94,"Cost":48,"Date":"2/3/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":524,"Cost":407,"Date":"2/4/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":529,"Cost":444,"Date":"3/9/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":316,"Cost":202,"Date":"3/12/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":757,"Cost":675,"Date":"4/19/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":384,"Cost":297,"Date":"5/3/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":2,"Cost":2,"Date":"5/4/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":420,"Cost":218,"Date":"6/8/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":387,"Cost":255,"Date":"6/26/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":744,"Cost":601,"Date":"7/4/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":536,"Cost":414,"Date":"7/13/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":934,"Cost":559,"Date":"8/8/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":886,"Cost":665,"Date":"8/26/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":89,"Cost":64,"Date":"9/2/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":58,"Cost":29,"Date":"9/29/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":796,"Cost":416,"Date":"10/12/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":291,"Cost":209,"Date":"11/2/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":626,"Cost":577,"Date":"11/4/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":7,"Cost":7,"Date":"11/7/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":548,"Cost":469,"Date":"12/1/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":699,"Cost":406,"Date":"12/4/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":483,"Cost":383,"Date":"12/7/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":787,"Cost":423,"Date":"12/18/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":384,"Cost":264,"Date":"12/20/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":543,"Cost":295,"Date":"12/20/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":419,"Cost":224,"Date":"12/21/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":672,"Cost":635,"Date":"1/9/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":54,"Cost":50,"Date":"2/5/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":769,"Cost":422,"Date":"2/16/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":901,"Cost":549,"Date":"2/16/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":386,"Cost":299,"Date":"2/18/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":756,"Cost":548,"Date":"2/22/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":382,"Cost":246,"Date":"2/25/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":576,"Cost":459,"Date":"3/8/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":133,"Cost":122,"Date":"4/2/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":961,"Cost":663,"Date":"4/3/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":789,"Cost":691,"Date":"4/9/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":516,"Cost":456,"Date":"4/10/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":753,"Cost":505,"Date":"4/19/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":665,"Cost":620,"Date":"5/17/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":581,"Cost":306,"Date":"5/22/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":607,"Cost":305,"Date":"6/20/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":425,"Cost":219,"Date":"7/1/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":113,"Cost":92,"Date":"7/4/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":119,"Cost":61,"Date":"7/8/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":296,"Cost":197,"Date":"7/9/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":206,"Cost":145,"Date":"7/14/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":144,"Cost":74,"Date":"7/19/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":613,"Cost":419,"Date":"8/1/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":419,"Cost":354,"Date":"8/6/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":349,"Cost":316,"Date":"8/7/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":50,"Cost":45,"Date":"8/22/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":985,"Cost":850,"Date":"8/31/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":31,"Cost":16,"Date":"9/1/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":603,"Cost":562,"Date":"9/1/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":602,"Cost":379,"Date":"9/17/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":397,"Cost":252,"Date":"9/29/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":567,"Cost":485,"Date":"11/7/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":113,"Cost":69,"Date":"11/26/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":668,"Cost":585,"Date":"11/27/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":941,"Cost":560,"Date":"12/5/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":952,"Cost":756,"Date":"12/26/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":995,"Cost":706,"Date":"12/31/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":437,"Cost":376,"Date":"1/20/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":380,"Cost":243,"Date":"2/2/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":539,"Cost":372,"Date":"2/8/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":388,"Cost":352,"Date":"2/27/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":734,"Cost":465,"Date":"3/1/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":298,"Cost":251,"Date":"3/1/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":969,"Cost":747,"Date":"3/19/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":570,"Cost":386,"Date":"3/28/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":778,"Cost":475,"Date":"5/21/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":824,"Cost":602,"Date":"7/21/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":487,"Cost":430,"Date":"8/5/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":524,"Cost":286,"Date":"8/12/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":428,"Cost":360,"Date":"8/21/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":16,"Cost":12,"Date":"8/23/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":498,"Cost":313,"Date":"9/3/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":884,"Cost":469,"Date":"9/5/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":49,"Cost":27,"Date":"10/6/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":172,"Cost":160,"Date":"10/19/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":987,"Cost":742,"Date":"11/15/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":570,"Cost":371,"Date":"12/8/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":203,"Cost":169,"Date":"1/8/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":343,"Cost":189,"Date":"1/14/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":265,"Cost":162,"Date":"1/19/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":515,"Cost":355,"Date":"1/28/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":909,"Cost":693,"Date":"1/31/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":222,"Cost":137,"Date":"3/27/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":760,"Cost":419,"Date":"4/20/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":302,"Cost":265,"Date":"4/24/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":289,"Cost":159,"Date":"4/28/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":24,"Cost":15,"Date":"5/15/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":618,"Cost":527,"Date":"5/16/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":843,"Cost":434,"Date":"5/18/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":226,"Cost":118,"Date":"6/2/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":101,"Cost":62,"Date":"6/3/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":803,"Cost":447,"Date":"6/5/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":371,"Cost":305,"Date":"6/7/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":712,"Cost":655,"Date":"6/14/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":924,"Cost":703,"Date":"6/20/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":314,"Cost":204,"Date":"6/24/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":512,"Cost":257,"Date":"7/4/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":566,"Cost":471,"Date":"7/9/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":781,"Cost":489,"Date":"7/12/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":816,"Cost":637,"Date":"8/14/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":535,"Cost":341,"Date":"8/16/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":402,"Cost":260,"Date":"8/23/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":97,"Cost":69,"Date":"9/2/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":731,"Cost":376,"Date":"9/3/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":134,"Cost":110,"Date":"9/16/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":777,"Cost":689,"Date":"10/4/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":870,"Cost":710,"Date":"11/1/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":925,"Cost":710,"Date":"11/2/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":795,"Cost":554,"Date":"12/17/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":640,"Cost":544,"Date":"2/10/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":351,"Cost":219,"Date":"2/28/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":664,"Cost":379,"Date":"3/4/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":255,"Cost":237,"Date":"3/9/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":951,"Cost":603,"Date":"3/9/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":142,"Cost":103,"Date":"3/11/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":214,"Cost":130,"Date":"3/17/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":285,"Cost":245,"Date":"3/17/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":26,"Cost":15,"Date":"3/23/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":110,"Cost":66,"Date":"4/1/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":890,"Cost":810,"Date":"5/7/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":9,"Cost":5,"Date":"5/10/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":844,"Cost":442,"Date":"5/20/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":331,"Cost":231,"Date":"6/2/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":293,"Cost":208,"Date":"6/11/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":753,"Cost":648,"Date":"6/16/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":200,"Cost":186,"Date":"6/16/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":830,"Cost":510,"Date":"7/10/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":930,"Cost":561,"Date":"7/11/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":595,"Cost":505,"Date":"8/28/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":606,"Cost":321,"Date":"8/29/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":901,"Cost":650,"Date":"8/31/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":481,"Cost":443,"Date":"9/8/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":450,"Cost":290,"Date":"9/13/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":879,"Cost":794,"Date":"9/14/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":484,"Cost":410,"Date":"9/19/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":415,"Cost":298,"Date":"9/25/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":990,"Cost":644,"Date":"10/4/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":181,"Cost":93,"Date":"10/10/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":165,"Cost":115,"Date":"10/17/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":746,"Cost":694,"Date":"10/28/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":330,"Cost":207,"Date":"10/30/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":20,"Cost":16,"Date":"11/1/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":469,"Cost":317,"Date":"11/15/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":235,"Cost":198,"Date":"11/25/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":49,"Cost":36,"Date":"1/10/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":669,"Cost":493,"Date":"1/14/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":930,"Cost":602,"Date":"1/20/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":500,"Cost":463,"Date":"2/8/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":667,"Cost":421,"Date":"2/25/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":925,"Cost":637,"Date":"3/7/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":421,"Cost":321,"Date":"3/14/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":457,"Cost":416,"Date":"3/27/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":329,"Cost":173,"Date":"4/5/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":733,"Cost":501,"Date":"4/14/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":644,"Cost":358,"Date":"5/3/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":760,"Cost":659,"Date":"5/9/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":149,"Cost":109,"Date":"5/15/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":789,"Cost":658,"Date":"5/25/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":589,"Cost":381,"Date":"5/26/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":356,"Cost":273,"Date":"5/31/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":890,"Cost":672,"Date":"7/27/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":419,"Cost":332,"Date":"9/17/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":210,"Cost":127,"Date":"10/6/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":768,"Cost":588,"Date":"10/8/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":174,"Cost":155,"Date":"10/26/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":471,"Cost":304,"Date":"11/16/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":11,"Cost":8,"Date":"11/18/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"HM Home","Country":"Australia","Sale":79,"Cost":66,"Date":"12/1/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":723,"Cost":525,"Date":"2/9/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":979,"Cost":714,"Date":"2/11/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":218,"Cost":145,"Date":"3/10/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":786,"Cost":543,"Date":"3/16/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":123,"Cost":91,"Date":"3/18/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":525,"Cost":481,"Date":"3/20/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":28,"Cost":15,"Date":"3/26/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":499,"Cost":448,"Date":"6/2/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":341,"Cost":279,"Date":"6/10/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":142,"Cost":86,"Date":"6/16/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":499,"Cost":415,"Date":"6/25/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":532,"Cost":301,"Date":"7/19/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":651,"Cost":494,"Date":"7/21/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":937,"Cost":881,"Date":"7/25/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":232,"Cost":126,"Date":"8/4/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":641,"Cost":482,"Date":"9/2/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":743,"Cost":438,"Date":"9/4/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":703,"Cost":625,"Date":"9/19/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":6,"Cost":4,"Date":"9/29/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":137,"Cost":130,"Date":"10/2/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":415,"Cost":230,"Date":"10/15/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":672,"Cost":596,"Date":"10/30/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":361,"Cost":284,"Date":"11/9/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":248,"Cost":167,"Date":"11/23/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":413,"Cost":303,"Date":"11/30/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":368,"Cost":262,"Date":"12/8/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":660,"Cost":373,"Date":"12/11/2018"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":577,"Cost":520,"Date":"1/15/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":899,"Cost":736,"Date":"1/24/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":206,"Cost":160,"Date":"2/3/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":643,"Cost":452,"Date":"2/4/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":880,"Cost":695,"Date":"3/9/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":163,"Cost":87,"Date":"3/12/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":572,"Cost":314,"Date":"4/19/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":948,"Cost":580,"Date":"5/3/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":959,"Cost":685,"Date":"5/4/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":389,"Cost":267,"Date":"6/8/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":746,"Cost":377,"Date":"6/26/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":689,"Cost":375,"Date":"7/4/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":927,"Cost":725,"Date":"7/13/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":235,"Cost":181,"Date":"8/8/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":776,"Cost":564,"Date":"8/26/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":961,"Cost":849,"Date":"9/2/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":848,"Cost":699,"Date":"9/29/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":162,"Cost":134,"Date":"10/12/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":352,"Cost":202,"Date":"11/2/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":749,"Cost":630,"Date":"11/4/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":349,"Cost":204,"Date":"11/7/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":3,"Cost":2,"Date":"12/1/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":624,"Cost":386,"Date":"12/4/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":162,"Cost":98,"Date":"12/7/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":553,"Cost":328,"Date":"12/18/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":53,"Cost":42,"Date":"12/20/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":33,"Cost":26,"Date":"12/20/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":47,"Cost":39,"Date":"12/21/2019"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":376,"Cost":279,"Date":"1/9/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":662,"Cost":386,"Date":"2/5/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":807,"Cost":535,"Date":"2/16/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":848,"Cost":757,"Date":"2/16/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":127,"Cost":98,"Date":"2/18/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":473,"Cost":253,"Date":"2/22/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":277,"Cost":223,"Date":"2/25/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":599,"Cost":363,"Date":"3/8/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":676,"Cost":568,"Date":"4/2/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":418,"Cost":340,"Date":"4/3/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":124,"Cost":80,"Date":"4/9/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":688,"Cost":634,"Date":"4/10/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":720,"Cost":668,"Date":"4/19/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":48,"Cost":36,"Date":"5/17/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":359,"Cost":244,"Date":"5/22/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":297,"Cost":162,"Date":"6/20/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":545,"Cost":393,"Date":"7/1/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":215,"Cost":201,"Date":"7/4/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":903,"Cost":649,"Date":"7/8/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":772,"Cost":635,"Date":"7/9/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":990,"Cost":696,"Date":"7/14/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":52,"Cost":48,"Date":"7/19/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":178,"Cost":133,"Date":"8/1/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":166,"Cost":97,"Date":"8/6/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":313,"Cost":180,"Date":"8/7/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":695,"Cost":640,"Date":"8/22/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":325,"Cost":264,"Date":"8/31/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":729,"Cost":379,"Date":"9/1/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":904,"Cost":617,"Date":"9/1/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":528,"Cost":501,"Date":"9/17/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":945,"Cost":547,"Date":"9/29/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":835,"Cost":461,"Date":"11/7/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":584,"Cost":450,"Date":"11/26/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":889,"Cost":734,"Date":"11/27/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":971,"Cost":567,"Date":"12/5/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":411,"Cost":263,"Date":"12/26/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":468,"Cost":400,"Date":"12/31/2020"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":883,"Cost":766,"Date":"1/20/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":146,"Cost":139,"Date":"2/2/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":361,"Cost":286,"Date":"2/8/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":399,"Cost":327,"Date":"2/27/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":231,"Cost":137,"Date":"3/1/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":173,"Cost":151,"Date":"3/1/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":706,"Cost":417,"Date":"3/19/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":403,"Cost":346,"Date":"3/28/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":61,"Cost":49,"Date":"5/21/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":52,"Cost":41,"Date":"7/21/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":356,"Cost":255,"Date":"8/5/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":436,"Cost":364,"Date":"8/12/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":840,"Cost":623,"Date":"8/21/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":990,"Cost":826,"Date":"8/23/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":603,"Cost":478,"Date":"9/3/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":936,"Cost":500,"Date":"9/5/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":795,"Cost":732,"Date":"10/6/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":460,"Cost":414,"Date":"10/19/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":102,"Cost":67,"Date":"11/15/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":385,"Cost":215,"Date":"12/8/2021"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":305,"Cost":174,"Date":"1/8/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":67,"Cost":36,"Date":"1/14/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":998,"Cost":501,"Date":"1/19/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":273,"Cost":259,"Date":"1/28/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":315,"Cost":203,"Date":"1/31/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":339,"Cost":184,"Date":"3/27/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":115,"Cost":59,"Date":"4/20/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":123,"Cost":101,"Date":"4/24/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":923,"Cost":561,"Date":"4/28/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":970,"Cost":717,"Date":"5/15/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":850,"Cost":447,"Date":"5/16/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":619,"Cost":328,"Date":"5/18/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":821,"Cost":552,"Date":"6/2/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":586,"Cost":424,"Date":"6/3/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":997,"Cost":799,"Date":"6/5/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":276,"Cost":236,"Date":"6/7/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":252,"Cost":215,"Date":"6/14/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":104,"Cost":53,"Date":"6/20/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":318,"Cost":263,"Date":"6/24/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":127,"Cost":77,"Date":"7/4/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":751,"Cost":692,"Date":"7/9/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":230,"Cost":185,"Date":"7/12/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":273,"Cost":251,"Date":"8/14/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":701,"Cost":415,"Date":"8/16/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":342,"Cost":191,"Date":"8/23/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":593,"Cost":307,"Date":"9/2/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":284,"Cost":148,"Date":"9/3/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":422,"Cost":363,"Date":"9/16/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":544,"Cost":466,"Date":"10/4/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":963,"Cost":781,"Date":"11/1/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":439,"Cost":387,"Date":"11/2/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":500,"Cost":340,"Date":"12/17/2022"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":421,"Cost":354,"Date":"2/10/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":498,"Cost":446,"Date":"2/28/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":725,"Cost":653,"Date":"3/4/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":885,"Cost":656,"Date":"3/9/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":841,"Cost":656,"Date":"3/9/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":129,"Cost":68,"Date":"3/11/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":639,"Cost":431,"Date":"3/17/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":447,"Cost":287,"Date":"3/17/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":968,"Cost":859,"Date":"3/23/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":821,"Cost":566,"Date":"4/1/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":260,"Cost":203,"Date":"5/7/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":760,"Cost":398,"Date":"5/10/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":887,"Cost":691,"Date":"5/20/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":32,"Cost":27,"Date":"6/2/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":959,"Cost":668,"Date":"6/11/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":507,"Cost":373,"Date":"6/16/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":255,"Cost":193,"Date":"6/16/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":561,"Cost":499,"Date":"7/10/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":488,"Cost":334,"Date":"7/11/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":136,"Cost":92,"Date":"8/28/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":248,"Cost":219,"Date":"8/29/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":877,"Cost":609,"Date":"8/31/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":428,"Cost":331,"Date":"9/8/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":574,"Cost":405,"Date":"9/13/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":662,"Cost":565,"Date":"9/14/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":387,"Cost":341,"Date":"9/19/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":284,"Cost":173,"Date":"9/25/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":952,"Cost":697,"Date":"10/4/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":765,"Cost":477,"Date":"10/10/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":462,"Cost":407,"Date":"10/17/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":797,"Cost":501,"Date":"10/28/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":776,"Cost":507,"Date":"10/30/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":303,"Cost":162,"Date":"11/1/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":193,"Cost":129,"Date":"11/15/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":367,"Cost":256,"Date":"11/25/2023"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":512,"Cost":464,"Date":"1/10/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":958,"Cost":525,"Date":"1/14/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":13,"Cost":11,"Date":"1/20/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":179,"Cost":130,"Date":"2/8/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":265,"Cost":248,"Date":"2/25/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":972,"Cost":718,"Date":"3/7/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":589,"Cost":472,"Date":"3/14/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":158,"Cost":105,"Date":"3/27/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":545,"Cost":335,"Date":"4/5/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":473,"Cost":273,"Date":"4/14/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":712,"Cost":608,"Date":"5/3/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":259,"Cost":233,"Date":"5/9/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":147,"Cost":84,"Date":"5/15/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":304,"Cost":238,"Date":"5/25/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":76,"Cost":44,"Date":"5/26/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":106,"Cost":99,"Date":"5/31/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":48,"Cost":32,"Date":"7/27/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":623,"Cost":358,"Date":"9/17/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":262,"Cost":162,"Date":"10/6/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":878,"Cost":531,"Date":"10/8/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":185,"Cost":124,"Date":"10/26/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":124,"Cost":99,"Date":"11/16/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":264,"Cost":205,"Date":"11/18/2024"},{"Store":"Pacific Fair Shopping Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":285,"Cost":151,"Date":"12/1/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":755,"Cost":612,"Date":"2/9/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":169,"Cost":89,"Date":"2/11/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":190,"Cost":113,"Date":"3/10/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":392,"Cost":277,"Date":"3/16/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":852,"Cost":802,"Date":"3/18/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":662,"Cost":412,"Date":"3/20/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":500,"Cost":311,"Date":"3/26/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":610,"Cost":553,"Date":"6/2/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":8,"Cost":7,"Date":"6/10/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":568,"Cost":342,"Date":"6/16/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":369,"Cost":186,"Date":"6/25/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":613,"Cost":540,"Date":"7/19/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":936,"Cost":819,"Date":"7/21/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":956,"Cost":561,"Date":"7/25/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":405,"Cost":342,"Date":"8/4/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":294,"Cost":207,"Date":"9/2/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":716,"Cost":534,"Date":"9/4/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":172,"Cost":90,"Date":"9/19/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":968,"Cost":578,"Date":"9/29/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":577,"Cost":447,"Date":"10/2/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":290,"Cost":158,"Date":"10/15/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":307,"Cost":222,"Date":"10/30/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":664,"Cost":354,"Date":"11/9/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":451,"Cost":330,"Date":"11/23/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":959,"Cost":628,"Date":"11/30/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":187,"Cost":104,"Date":"12/8/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":565,"Cost":335,"Date":"12/11/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":890,"Cost":450,"Date":"1/15/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":144,"Cost":106,"Date":"1/24/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":279,"Cost":202,"Date":"2/3/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":797,"Cost":742,"Date":"2/4/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":625,"Cost":548,"Date":"3/9/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":299,"Cost":156,"Date":"3/12/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":897,"Cost":537,"Date":"4/19/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":302,"Cost":160,"Date":"5/3/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":109,"Cost":61,"Date":"5/4/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":742,"Cost":598,"Date":"6/8/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":2,"Cost":2,"Date":"6/26/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":600,"Cost":414,"Date":"7/4/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":390,"Cost":335,"Date":"7/13/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":380,"Cost":351,"Date":"8/8/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":6,"Cost":6,"Date":"8/26/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":568,"Cost":309,"Date":"9/2/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":311,"Cost":173,"Date":"9/29/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":680,"Cost":619,"Date":"10/12/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":467,"Cost":258,"Date":"11/2/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":916,"Cost":554,"Date":"11/4/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":446,"Cost":303,"Date":"11/7/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":958,"Cost":779,"Date":"12/1/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":212,"Cost":168,"Date":"12/4/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":53,"Cost":27,"Date":"12/7/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":742,"Cost":639,"Date":"12/18/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":972,"Cost":763,"Date":"12/20/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":492,"Cost":365,"Date":"12/20/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":322,"Cost":298,"Date":"12/21/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":21,"Cost":13,"Date":"1/9/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":238,"Cost":214,"Date":"2/5/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":399,"Cost":254,"Date":"2/16/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":400,"Cost":310,"Date":"2/16/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":609,"Cost":549,"Date":"2/18/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":125,"Cost":64,"Date":"2/22/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":628,"Cost":528,"Date":"2/25/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":342,"Cost":323,"Date":"3/8/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":133,"Cost":80,"Date":"4/2/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":738,"Cost":532,"Date":"4/3/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":637,"Cost":490,"Date":"4/9/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":493,"Cost":378,"Date":"4/10/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":911,"Cost":856,"Date":"4/19/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":166,"Cost":156,"Date":"5/17/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":522,"Cost":317,"Date":"5/22/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":736,"Cost":649,"Date":"6/20/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":224,"Cost":184,"Date":"7/1/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":102,"Cost":80,"Date":"7/4/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":876,"Cost":451,"Date":"7/8/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":147,"Cost":104,"Date":"7/9/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":180,"Cost":151,"Date":"7/14/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":815,"Cost":529,"Date":"7/19/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":834,"Cost":481,"Date":"8/1/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":496,"Cost":439,"Date":"8/6/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":367,"Cost":296,"Date":"8/7/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":32,"Cost":28,"Date":"8/22/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":693,"Cost":576,"Date":"8/31/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":704,"Cost":592,"Date":"9/1/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":436,"Cost":397,"Date":"9/1/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":848,"Cost":723,"Date":"9/17/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":873,"Cost":744,"Date":"9/29/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":623,"Cost":548,"Date":"11/7/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":57,"Cost":30,"Date":"11/26/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":392,"Cost":211,"Date":"11/27/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":44,"Cost":23,"Date":"12/5/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":727,"Cost":447,"Date":"12/26/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":777,"Cost":415,"Date":"12/31/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":162,"Cost":140,"Date":"1/20/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":88,"Cost":77,"Date":"2/2/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":77,"Cost":43,"Date":"2/8/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":396,"Cost":246,"Date":"2/27/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":545,"Cost":483,"Date":"3/1/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":29,"Cost":27,"Date":"3/1/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":218,"Cost":147,"Date":"3/19/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":249,"Cost":149,"Date":"3/28/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":125,"Cost":116,"Date":"5/21/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":726,"Cost":552,"Date":"7/21/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":897,"Cost":505,"Date":"8/5/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":241,"Cost":186,"Date":"8/12/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":677,"Cost":572,"Date":"8/21/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":123,"Cost":81,"Date":"8/23/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":57,"Cost":49,"Date":"9/3/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":771,"Cost":589,"Date":"9/5/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":317,"Cost":185,"Date":"10/6/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":185,"Cost":164,"Date":"10/19/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":328,"Cost":234,"Date":"11/15/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":494,"Cost":368,"Date":"12/8/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":926,"Cost":662,"Date":"1/8/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":129,"Cost":75,"Date":"1/14/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":165,"Cost":125,"Date":"1/19/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":240,"Cost":133,"Date":"1/28/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":932,"Cost":714,"Date":"1/31/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":893,"Cost":515,"Date":"3/27/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":3,"Cost":1,"Date":"4/20/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":890,"Cost":796,"Date":"4/24/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":171,"Cost":96,"Date":"4/28/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":257,"Cost":224,"Date":"5/15/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":497,"Cost":337,"Date":"5/16/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":809,"Cost":609,"Date":"5/18/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":11,"Cost":7,"Date":"6/2/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":313,"Cost":276,"Date":"6/3/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":175,"Cost":133,"Date":"6/5/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":360,"Cost":185,"Date":"6/7/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":166,"Cost":105,"Date":"6/14/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":295,"Cost":246,"Date":"6/20/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":420,"Cost":269,"Date":"6/24/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":790,"Cost":444,"Date":"7/4/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":59,"Cost":37,"Date":"7/9/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":50,"Cost":42,"Date":"7/12/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":303,"Cost":171,"Date":"8/14/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":921,"Cost":558,"Date":"8/16/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":629,"Cost":375,"Date":"8/23/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":333,"Cost":187,"Date":"9/2/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":98,"Cost":89,"Date":"9/3/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":609,"Cost":318,"Date":"9/16/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":487,"Cost":352,"Date":"10/4/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":437,"Cost":316,"Date":"11/1/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":67,"Cost":60,"Date":"11/2/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":643,"Cost":432,"Date":"12/17/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":874,"Cost":503,"Date":"2/10/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":487,"Cost":409,"Date":"2/28/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":395,"Cost":236,"Date":"3/4/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":847,"Cost":447,"Date":"3/9/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":272,"Cost":223,"Date":"3/9/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":819,"Cost":436,"Date":"3/11/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":820,"Cost":689,"Date":"3/17/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":175,"Cost":145,"Date":"3/17/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":742,"Cost":378,"Date":"3/23/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":278,"Cost":262,"Date":"4/1/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":107,"Cost":96,"Date":"5/7/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":446,"Cost":404,"Date":"5/10/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":172,"Cost":139,"Date":"5/20/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":862,"Cost":777,"Date":"6/2/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":281,"Cost":215,"Date":"6/11/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":532,"Cost":375,"Date":"6/16/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":652,"Cost":485,"Date":"6/16/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":76,"Cost":70,"Date":"7/10/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":499,"Cost":409,"Date":"7/11/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":351,"Cost":305,"Date":"8/28/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":179,"Cost":109,"Date":"8/29/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":9,"Cost":8,"Date":"8/31/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":470,"Cost":408,"Date":"9/8/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":97,"Cost":76,"Date":"9/13/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":685,"Cost":484,"Date":"9/14/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":29,"Cost":24,"Date":"9/19/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":869,"Cost":661,"Date":"9/25/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":718,"Cost":462,"Date":"10/4/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":125,"Cost":92,"Date":"10/10/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":773,"Cost":697,"Date":"10/17/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":564,"Cost":524,"Date":"10/28/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":801,"Cost":687,"Date":"10/30/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":595,"Cost":553,"Date":"11/1/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":968,"Cost":737,"Date":"11/15/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":95,"Cost":65,"Date":"11/25/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":556,"Cost":420,"Date":"1/10/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":339,"Cost":176,"Date":"1/14/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":771,"Cost":605,"Date":"1/20/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":291,"Cost":191,"Date":"2/8/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":853,"Cost":679,"Date":"2/25/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":138,"Cost":91,"Date":"3/7/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":854,"Cost":580,"Date":"3/14/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":664,"Cost":452,"Date":"3/27/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":225,"Cost":170,"Date":"4/5/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":538,"Cost":393,"Date":"4/14/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":345,"Cost":263,"Date":"5/3/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":966,"Cost":751,"Date":"5/9/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":445,"Cost":300,"Date":"5/15/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":889,"Cost":732,"Date":"5/25/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":606,"Cost":464,"Date":"5/26/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":677,"Cost":349,"Date":"5/31/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":557,"Cost":433,"Date":"7/27/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":653,"Cost":560,"Date":"9/17/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":730,"Cost":529,"Date":"10/6/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":499,"Cost":424,"Date":"10/8/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":53,"Cost":30,"Date":"10/26/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":503,"Cost":332,"Date":"11/16/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":524,"Cost":410,"Date":"11/18/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":886,"Cost":586,"Date":"12/1/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":309,"Cost":244,"Date":"2/9/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":897,"Cost":520,"Date":"2/11/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":25,"Cost":12,"Date":"3/10/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":337,"Cost":301,"Date":"3/16/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":427,"Cost":391,"Date":"3/18/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":902,"Cost":655,"Date":"3/20/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":515,"Cost":471,"Date":"3/26/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":930,"Cost":753,"Date":"6/2/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":871,"Cost":755,"Date":"6/10/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":475,"Cost":296,"Date":"6/16/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":229,"Cost":169,"Date":"6/25/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":38,"Cost":19,"Date":"7/19/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":194,"Cost":154,"Date":"7/21/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":108,"Cost":77,"Date":"7/25/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":984,"Cost":770,"Date":"8/4/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":59,"Cost":48,"Date":"9/2/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":808,"Cost":430,"Date":"9/4/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":37,"Cost":30,"Date":"9/19/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":105,"Cost":55,"Date":"9/29/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":470,"Cost":320,"Date":"10/2/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":666,"Cost":417,"Date":"10/15/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":26,"Cost":20,"Date":"10/30/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":558,"Cost":470,"Date":"11/9/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":860,"Cost":636,"Date":"11/23/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":954,"Cost":618,"Date":"11/30/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":268,"Cost":159,"Date":"12/8/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":705,"Cost":496,"Date":"12/11/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":734,"Cost":638,"Date":"1/15/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":630,"Cost":394,"Date":"1/24/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":666,"Cost":410,"Date":"2/3/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":17,"Cost":15,"Date":"2/4/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":722,"Cost":526,"Date":"3/9/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":57,"Cost":43,"Date":"3/12/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":58,"Cost":47,"Date":"4/19/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":825,"Cost":500,"Date":"5/3/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":959,"Cost":905,"Date":"5/4/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":52,"Cost":49,"Date":"6/8/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":800,"Cost":611,"Date":"6/26/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":876,"Cost":744,"Date":"7/4/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":897,"Cost":779,"Date":"7/13/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":278,"Cost":245,"Date":"8/8/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":790,"Cost":487,"Date":"8/26/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":704,"Cost":457,"Date":"9/2/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":92,"Cost":58,"Date":"9/29/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":628,"Cost":479,"Date":"10/12/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":391,"Cost":279,"Date":"11/2/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":582,"Cost":470,"Date":"11/4/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":756,"Cost":523,"Date":"11/7/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":518,"Cost":414,"Date":"12/1/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":135,"Cost":127,"Date":"12/4/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":260,"Cost":150,"Date":"12/7/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":905,"Cost":806,"Date":"12/18/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":608,"Cost":425,"Date":"12/20/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":945,"Cost":554,"Date":"12/20/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":208,"Cost":188,"Date":"12/21/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":101,"Cost":68,"Date":"1/9/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":774,"Cost":522,"Date":"2/5/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":697,"Cost":622,"Date":"2/16/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":276,"Cost":142,"Date":"2/16/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":302,"Cost":221,"Date":"2/18/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":107,"Cost":81,"Date":"2/22/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":61,"Cost":48,"Date":"2/25/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":983,"Cost":705,"Date":"3/8/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":120,"Cost":103,"Date":"4/2/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":19,"Cost":17,"Date":"4/3/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":898,"Cost":510,"Date":"4/9/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":783,"Cost":651,"Date":"4/10/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":840,"Cost":732,"Date":"4/19/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":918,"Cost":744,"Date":"5/17/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":285,"Cost":267,"Date":"5/22/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":17,"Cost":9,"Date":"6/20/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":659,"Cost":562,"Date":"7/1/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":142,"Cost":134,"Date":"7/4/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":76,"Cost":53,"Date":"7/8/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":834,"Cost":785,"Date":"7/9/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":87,"Cost":47,"Date":"7/14/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":198,"Cost":116,"Date":"7/19/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":212,"Cost":169,"Date":"8/1/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":525,"Cost":422,"Date":"8/6/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":781,"Cost":734,"Date":"8/7/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":269,"Cost":251,"Date":"8/22/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":138,"Cost":104,"Date":"8/31/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":289,"Cost":263,"Date":"9/1/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":43,"Cost":22,"Date":"9/1/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":347,"Cost":218,"Date":"9/17/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":408,"Cost":360,"Date":"9/29/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":295,"Cost":167,"Date":"11/7/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":310,"Cost":194,"Date":"11/26/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":115,"Cost":87,"Date":"11/27/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":411,"Cost":311,"Date":"12/5/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":449,"Cost":351,"Date":"12/26/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":334,"Cost":302,"Date":"12/31/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":362,"Cost":231,"Date":"1/20/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":37,"Cost":19,"Date":"2/2/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":529,"Cost":449,"Date":"2/8/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":630,"Cost":470,"Date":"2/27/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":849,"Cost":519,"Date":"3/1/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":379,"Cost":240,"Date":"3/1/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":659,"Cost":521,"Date":"3/19/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":821,"Cost":447,"Date":"3/28/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":396,"Cost":227,"Date":"5/21/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":41,"Cost":30,"Date":"7/21/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":409,"Cost":372,"Date":"8/5/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":984,"Cost":716,"Date":"8/12/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":964,"Cost":890,"Date":"8/21/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":232,"Cost":131,"Date":"8/23/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":551,"Cost":354,"Date":"9/3/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":700,"Cost":501,"Date":"9/5/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":581,"Cost":329,"Date":"10/6/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":791,"Cost":553,"Date":"10/19/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":885,"Cost":491,"Date":"11/15/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":149,"Cost":116,"Date":"12/8/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":653,"Cost":577,"Date":"1/8/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":432,"Cost":318,"Date":"1/14/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":582,"Cost":406,"Date":"1/19/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":357,"Cost":324,"Date":"1/28/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":209,"Cost":159,"Date":"1/31/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":288,"Cost":189,"Date":"3/27/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":644,"Cost":496,"Date":"4/20/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":28,"Cost":24,"Date":"4/24/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":850,"Cost":446,"Date":"4/28/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":949,"Cost":610,"Date":"5/15/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":271,"Cost":184,"Date":"5/16/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":232,"Cost":196,"Date":"5/18/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":155,"Cost":82,"Date":"6/2/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":142,"Cost":106,"Date":"6/3/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":751,"Cost":641,"Date":"6/5/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":103,"Cost":88,"Date":"6/7/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":166,"Cost":106,"Date":"6/14/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":115,"Cost":72,"Date":"6/20/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":117,"Cost":86,"Date":"6/24/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":79,"Cost":68,"Date":"7/4/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":351,"Cost":227,"Date":"7/9/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":217,"Cost":135,"Date":"7/12/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":755,"Cost":392,"Date":"8/14/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":65,"Cost":37,"Date":"8/16/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":893,"Cost":643,"Date":"8/23/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":778,"Cost":523,"Date":"9/2/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":208,"Cost":186,"Date":"9/3/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":331,"Cost":196,"Date":"9/16/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":352,"Cost":221,"Date":"10/4/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":592,"Cost":439,"Date":"11/1/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":248,"Cost":216,"Date":"11/2/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":223,"Cost":170,"Date":"12/17/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":639,"Cost":362,"Date":"2/10/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":531,"Cost":375,"Date":"2/28/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":682,"Cost":384,"Date":"3/4/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":258,"Cost":195,"Date":"3/9/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":574,"Cost":417,"Date":"3/9/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":56,"Cost":46,"Date":"3/11/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":117,"Cost":91,"Date":"3/17/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":47,"Cost":24,"Date":"3/17/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":161,"Cost":87,"Date":"3/23/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":293,"Cost":174,"Date":"4/1/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":539,"Cost":463,"Date":"5/7/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":815,"Cost":497,"Date":"5/10/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":833,"Cost":544,"Date":"5/20/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":811,"Cost":585,"Date":"6/2/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":292,"Cost":243,"Date":"6/11/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":134,"Cost":77,"Date":"6/16/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":367,"Cost":232,"Date":"6/16/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":702,"Cost":635,"Date":"7/10/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":677,"Cost":589,"Date":"7/11/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":615,"Cost":334,"Date":"8/28/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":795,"Cost":683,"Date":"8/29/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":847,"Cost":676,"Date":"8/31/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":802,"Cost":434,"Date":"9/8/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":89,"Cost":46,"Date":"9/13/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":689,"Cost":373,"Date":"9/14/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":790,"Cost":524,"Date":"9/19/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":130,"Cost":96,"Date":"9/25/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":551,"Cost":474,"Date":"10/4/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":503,"Cost":298,"Date":"10/10/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":140,"Cost":91,"Date":"10/17/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":141,"Cost":122,"Date":"10/28/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":966,"Cost":599,"Date":"10/30/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":406,"Cost":296,"Date":"11/1/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":990,"Cost":745,"Date":"11/15/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":444,"Cost":392,"Date":"11/25/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":494,"Cost":297,"Date":"1/10/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":181,"Cost":159,"Date":"1/14/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":44,"Cost":32,"Date":"1/20/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":351,"Cost":185,"Date":"2/8/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":95,"Cost":54,"Date":"2/25/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":936,"Cost":771,"Date":"3/7/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":618,"Cost":381,"Date":"3/14/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":88,"Cost":58,"Date":"3/27/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":372,"Cost":205,"Date":"4/5/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":306,"Cost":176,"Date":"4/14/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":504,"Cost":309,"Date":"5/3/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":46,"Cost":26,"Date":"5/9/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":812,"Cost":624,"Date":"5/15/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":87,"Cost":67,"Date":"5/25/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":262,"Cost":137,"Date":"5/26/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":50,"Cost":42,"Date":"5/31/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":207,"Cost":194,"Date":"7/27/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":293,"Cost":165,"Date":"9/17/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":428,"Cost":266,"Date":"10/6/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":252,"Cost":163,"Date":"10/8/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":480,"Cost":442,"Date":"10/26/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":579,"Cost":480,"Date":"11/16/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":716,"Cost":461,"Date":"11/18/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"Jeans","Country":"Australia","Sale":852,"Cost":786,"Date":"12/1/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":199,"Cost":113,"Date":"2/9/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":140,"Cost":78,"Date":"2/11/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":989,"Cost":837,"Date":"3/10/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":638,"Cost":470,"Date":"3/16/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":206,"Cost":127,"Date":"3/18/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":807,"Cost":526,"Date":"3/20/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":5,"Cost":4,"Date":"3/26/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":512,"Cost":276,"Date":"6/2/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":437,"Cost":402,"Date":"6/10/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":57,"Cost":36,"Date":"6/16/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":820,"Cost":514,"Date":"6/25/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":530,"Cost":362,"Date":"7/19/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":388,"Cost":311,"Date":"7/21/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":884,"Cost":738,"Date":"7/25/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":730,"Cost":667,"Date":"8/4/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":344,"Cost":296,"Date":"9/2/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":23,"Cost":12,"Date":"9/4/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":94,"Cost":82,"Date":"9/19/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":136,"Cost":103,"Date":"9/29/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":750,"Cost":479,"Date":"10/2/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":330,"Cost":262,"Date":"10/15/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":520,"Cost":433,"Date":"10/30/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":528,"Cost":422,"Date":"11/9/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":407,"Cost":359,"Date":"11/23/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":776,"Cost":394,"Date":"11/30/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":498,"Cost":347,"Date":"12/8/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":518,"Cost":342,"Date":"12/11/2018"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":942,"Cost":878,"Date":"1/15/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":853,"Cost":441,"Date":"1/24/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":446,"Cost":374,"Date":"2/3/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":635,"Cost":466,"Date":"2/4/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":499,"Cost":304,"Date":"3/9/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":448,"Cost":342,"Date":"3/12/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":601,"Cost":389,"Date":"4/19/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":836,"Cost":496,"Date":"5/3/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":664,"Cost":504,"Date":"5/4/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":996,"Cost":700,"Date":"6/8/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":168,"Cost":121,"Date":"6/26/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":18,"Cost":10,"Date":"7/4/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":969,"Cost":797,"Date":"7/13/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":926,"Cost":824,"Date":"8/8/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":609,"Cost":416,"Date":"8/26/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":488,"Cost":281,"Date":"9/2/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":423,"Cost":369,"Date":"9/29/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":24,"Cost":18,"Date":"10/12/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":247,"Cost":183,"Date":"11/2/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":835,"Cost":418,"Date":"11/4/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":204,"Cost":104,"Date":"11/7/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":9,"Cost":5,"Date":"12/1/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":528,"Cost":425,"Date":"12/4/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":157,"Cost":89,"Date":"12/7/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":248,"Cost":178,"Date":"12/18/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":237,"Cost":163,"Date":"12/20/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":889,"Cost":535,"Date":"12/20/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":92,"Cost":62,"Date":"12/21/2019"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":87,"Cost":45,"Date":"1/9/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":278,"Cost":263,"Date":"2/5/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":678,"Cost":613,"Date":"2/16/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":455,"Cost":415,"Date":"2/16/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":512,"Cost":271,"Date":"2/18/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":984,"Cost":920,"Date":"2/22/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":143,"Cost":118,"Date":"2/25/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":992,"Cost":906,"Date":"3/8/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":677,"Cost":603,"Date":"4/2/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":380,"Cost":248,"Date":"4/3/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":296,"Cost":210,"Date":"4/9/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":686,"Cost":450,"Date":"4/10/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":973,"Cost":713,"Date":"4/19/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":133,"Cost":97,"Date":"5/17/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":404,"Cost":242,"Date":"5/22/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":988,"Cost":769,"Date":"6/20/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":597,"Cost":353,"Date":"7/1/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":945,"Cost":741,"Date":"7/4/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":955,"Cost":513,"Date":"7/8/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":86,"Cost":51,"Date":"7/9/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":931,"Cost":678,"Date":"7/14/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":527,"Cost":276,"Date":"7/19/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":417,"Cost":394,"Date":"8/1/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":165,"Cost":89,"Date":"8/6/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":894,"Cost":495,"Date":"8/7/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":365,"Cost":278,"Date":"8/22/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":379,"Cost":313,"Date":"8/31/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":688,"Cost":404,"Date":"9/1/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":891,"Cost":636,"Date":"9/1/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":344,"Cost":174,"Date":"9/17/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":473,"Cost":361,"Date":"9/29/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":922,"Cost":767,"Date":"11/7/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":78,"Cost":58,"Date":"11/26/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":215,"Cost":112,"Date":"11/27/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":584,"Cost":510,"Date":"12/5/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":268,"Cost":173,"Date":"12/26/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":726,"Cost":406,"Date":"12/31/2020"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":51,"Cost":41,"Date":"1/20/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":167,"Cost":159,"Date":"2/2/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":106,"Cost":60,"Date":"2/8/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":162,"Cost":149,"Date":"2/27/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":186,"Cost":107,"Date":"3/1/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":903,"Cost":476,"Date":"3/1/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":908,"Cost":474,"Date":"3/19/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":434,"Cost":292,"Date":"3/28/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":816,"Cost":709,"Date":"5/21/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":637,"Cost":602,"Date":"7/21/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":825,"Cost":560,"Date":"8/5/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":498,"Cost":434,"Date":"8/12/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":331,"Cost":239,"Date":"8/21/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":893,"Cost":685,"Date":"8/23/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":303,"Cost":164,"Date":"9/3/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":539,"Cost":277,"Date":"9/5/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":95,"Cost":58,"Date":"10/6/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":275,"Cost":174,"Date":"10/19/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":418,"Cost":257,"Date":"11/15/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":278,"Cost":195,"Date":"12/8/2021"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":735,"Cost":644,"Date":"1/8/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":740,"Cost":402,"Date":"1/14/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":82,"Cost":76,"Date":"1/19/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":381,"Cost":263,"Date":"1/28/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":783,"Cost":596,"Date":"1/31/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":254,"Cost":239,"Date":"3/27/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":830,"Cost":539,"Date":"4/20/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":536,"Cost":493,"Date":"4/24/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":905,"Cost":782,"Date":"4/28/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":334,"Cost":306,"Date":"5/15/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":651,"Cost":502,"Date":"5/16/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":959,"Cost":794,"Date":"5/18/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":70,"Cost":44,"Date":"6/2/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":400,"Cost":377,"Date":"6/3/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":159,"Cost":144,"Date":"6/5/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":311,"Cost":211,"Date":"6/7/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":237,"Cost":155,"Date":"6/14/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":122,"Cost":86,"Date":"6/20/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":69,"Cost":50,"Date":"6/24/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":27,"Cost":22,"Date":"7/4/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":317,"Cost":273,"Date":"7/9/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":972,"Cost":650,"Date":"7/12/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":481,"Cost":241,"Date":"8/14/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":369,"Cost":309,"Date":"8/16/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":47,"Cost":40,"Date":"8/23/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":524,"Cost":475,"Date":"9/2/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":93,"Cost":58,"Date":"9/3/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":607,"Cost":457,"Date":"9/16/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":322,"Cost":186,"Date":"10/4/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":854,"Cost":611,"Date":"11/1/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":672,"Cost":560,"Date":"11/2/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":461,"Cost":384,"Date":"12/17/2022"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":394,"Cost":317,"Date":"2/10/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":939,"Cost":551,"Date":"2/28/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":617,"Cost":347,"Date":"3/4/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":588,"Cost":310,"Date":"3/9/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":612,"Cost":501,"Date":"3/9/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":102,"Cost":75,"Date":"3/11/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":349,"Cost":216,"Date":"3/17/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":123,"Cost":69,"Date":"3/17/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":96,"Cost":56,"Date":"3/23/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":285,"Cost":161,"Date":"4/1/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":422,"Cost":385,"Date":"5/7/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":834,"Cost":749,"Date":"5/10/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":478,"Cost":406,"Date":"5/20/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":802,"Cost":436,"Date":"6/2/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":50,"Cost":26,"Date":"6/11/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":283,"Cost":205,"Date":"6/16/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":12,"Cost":8,"Date":"6/16/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":413,"Cost":304,"Date":"7/10/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":377,"Cost":273,"Date":"7/11/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":775,"Cost":634,"Date":"8/28/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":433,"Cost":335,"Date":"8/29/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":8,"Cost":6,"Date":"8/31/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":116,"Cost":84,"Date":"9/8/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":362,"Cost":340,"Date":"9/13/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":694,"Cost":616,"Date":"9/14/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":988,"Cost":553,"Date":"9/19/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":123,"Cost":74,"Date":"9/25/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":16,"Cost":10,"Date":"10/4/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":359,"Cost":326,"Date":"10/10/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":533,"Cost":303,"Date":"10/17/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":914,"Cost":641,"Date":"10/28/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":652,"Cost":586,"Date":"10/30/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":740,"Cost":428,"Date":"11/1/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":463,"Cost":359,"Date":"11/15/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":599,"Cost":375,"Date":"11/25/2023"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":449,"Cost":355,"Date":"1/10/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":920,"Cost":690,"Date":"1/14/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":393,"Cost":331,"Date":"1/20/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":288,"Cost":263,"Date":"2/8/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":231,"Cost":189,"Date":"2/25/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":501,"Cost":322,"Date":"3/7/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":170,"Cost":90,"Date":"3/14/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":524,"Cost":270,"Date":"3/27/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":992,"Cost":531,"Date":"4/5/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":57,"Cost":53,"Date":"4/14/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":316,"Cost":208,"Date":"5/3/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":541,"Cost":405,"Date":"5/9/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":378,"Cost":208,"Date":"5/15/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":728,"Cost":518,"Date":"5/25/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":754,"Cost":627,"Date":"5/26/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":150,"Cost":88,"Date":"5/31/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":343,"Cost":178,"Date":"7/27/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":877,"Cost":463,"Date":"9/17/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":701,"Cost":651,"Date":"10/6/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":416,"Cost":316,"Date":"10/8/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":634,"Cost":403,"Date":"10/26/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":88,"Cost":61,"Date":"11/16/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":590,"Cost":418,"Date":"11/18/2024"},{"Store":"Robina Town Centre, Gold Coast","Brand":"HM","Country":"Australia","Sale":286,"Cost":240,"Date":"12/1/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":991,"Cost":702,"Date":"2/9/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":350,"Cost":202,"Date":"2/11/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":620,"Cost":313,"Date":"3/10/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":49,"Cost":37,"Date":"3/16/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":352,"Cost":195,"Date":"3/18/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":115,"Cost":76,"Date":"3/20/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":883,"Cost":695,"Date":"3/26/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":127,"Cost":93,"Date":"6/2/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":187,"Cost":151,"Date":"6/10/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":161,"Cost":136,"Date":"6/16/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":348,"Cost":286,"Date":"6/25/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":693,"Cost":471,"Date":"7/19/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":954,"Cost":722,"Date":"7/21/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":957,"Cost":672,"Date":"7/25/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":254,"Cost":217,"Date":"8/4/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":262,"Cost":161,"Date":"9/2/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":645,"Cost":504,"Date":"9/4/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":221,"Cost":113,"Date":"9/19/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":853,"Cost":779,"Date":"9/29/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":228,"Cost":208,"Date":"10/2/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":455,"Cost":417,"Date":"10/15/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":141,"Cost":127,"Date":"10/30/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":872,"Cost":828,"Date":"11/9/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":328,"Cost":288,"Date":"11/23/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":312,"Cost":280,"Date":"11/30/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":940,"Cost":660,"Date":"12/8/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":819,"Cost":713,"Date":"12/11/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":838,"Cost":574,"Date":"1/15/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":231,"Cost":202,"Date":"1/24/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":351,"Cost":214,"Date":"2/3/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":313,"Cost":259,"Date":"2/4/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":32,"Cost":18,"Date":"3/9/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":841,"Cost":654,"Date":"3/12/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":530,"Cost":489,"Date":"4/19/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":656,"Cost":527,"Date":"5/3/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":331,"Cost":239,"Date":"5/4/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":902,"Cost":791,"Date":"6/8/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":273,"Cost":152,"Date":"6/26/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":824,"Cost":692,"Date":"7/4/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":547,"Cost":482,"Date":"7/13/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":702,"Cost":591,"Date":"8/8/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":583,"Cost":298,"Date":"8/26/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":283,"Cost":264,"Date":"9/2/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":77,"Cost":59,"Date":"9/29/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":846,"Cost":799,"Date":"10/12/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":156,"Cost":123,"Date":"11/2/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":231,"Cost":134,"Date":"11/4/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":950,"Cost":610,"Date":"11/7/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":336,"Cost":285,"Date":"12/1/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":942,"Cost":787,"Date":"12/4/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":821,"Cost":657,"Date":"12/7/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":431,"Cost":289,"Date":"12/18/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":59,"Cost":56,"Date":"12/20/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":275,"Cost":173,"Date":"12/20/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":948,"Cost":653,"Date":"12/21/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":233,"Cost":145,"Date":"1/9/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":970,"Cost":614,"Date":"2/5/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":208,"Cost":186,"Date":"2/16/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":649,"Cost":547,"Date":"2/16/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":892,"Cost":776,"Date":"2/18/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":794,"Cost":516,"Date":"2/22/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":714,"Cost":558,"Date":"2/25/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":51,"Cost":34,"Date":"3/8/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":451,"Cost":283,"Date":"4/2/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":608,"Cost":458,"Date":"4/3/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":319,"Cost":186,"Date":"4/9/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":29,"Cost":22,"Date":"4/10/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":76,"Cost":65,"Date":"4/19/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":480,"Cost":371,"Date":"5/17/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":534,"Cost":380,"Date":"5/22/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":158,"Cost":125,"Date":"6/20/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":447,"Cost":350,"Date":"7/1/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":411,"Cost":379,"Date":"7/4/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":658,"Cost":567,"Date":"7/8/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":192,"Cost":119,"Date":"7/9/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":639,"Cost":424,"Date":"7/14/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":572,"Cost":527,"Date":"7/19/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":16,"Cost":10,"Date":"8/1/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":389,"Cost":318,"Date":"8/6/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":476,"Cost":409,"Date":"8/7/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":194,"Cost":169,"Date":"8/22/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":572,"Cost":379,"Date":"8/31/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":865,"Cost":480,"Date":"9/1/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":91,"Cost":76,"Date":"9/1/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":989,"Cost":895,"Date":"9/17/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":840,"Cost":447,"Date":"9/29/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":643,"Cost":329,"Date":"11/7/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":152,"Cost":88,"Date":"11/26/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":365,"Cost":324,"Date":"11/27/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":572,"Cost":497,"Date":"12/5/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":880,"Cost":775,"Date":"12/26/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":468,"Cost":241,"Date":"12/31/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":584,"Cost":371,"Date":"1/20/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":96,"Cost":79,"Date":"2/2/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":641,"Cost":572,"Date":"2/8/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":967,"Cost":588,"Date":"2/27/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":480,"Cost":453,"Date":"3/1/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":155,"Cost":104,"Date":"3/1/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":600,"Cost":523,"Date":"3/19/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":254,"Cost":210,"Date":"3/28/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":1000,"Cost":615,"Date":"5/21/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":66,"Cost":46,"Date":"7/21/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":211,"Cost":165,"Date":"8/5/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":833,"Cost":792,"Date":"8/12/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":522,"Cost":423,"Date":"8/21/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":794,"Cost":442,"Date":"8/23/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":208,"Cost":140,"Date":"9/3/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":263,"Cost":212,"Date":"9/5/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":970,"Cost":610,"Date":"10/6/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":282,"Cost":148,"Date":"10/19/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":439,"Cost":403,"Date":"11/15/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":303,"Cost":259,"Date":"12/8/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":838,"Cost":559,"Date":"1/8/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":152,"Cost":116,"Date":"1/14/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":745,"Cost":574,"Date":"1/19/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":341,"Cost":294,"Date":"1/28/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":188,"Cost":130,"Date":"1/31/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":717,"Cost":607,"Date":"3/27/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":460,"Cost":297,"Date":"4/20/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":636,"Cost":401,"Date":"4/24/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":198,"Cost":138,"Date":"4/28/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":520,"Cost":447,"Date":"5/15/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":975,"Cost":859,"Date":"5/16/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":339,"Cost":238,"Date":"5/18/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":299,"Cost":260,"Date":"6/2/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":362,"Cost":338,"Date":"6/3/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":899,"Cost":669,"Date":"6/5/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":730,"Cost":623,"Date":"6/7/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":571,"Cost":476,"Date":"6/14/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":10,"Cost":9,"Date":"6/20/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":621,"Cost":376,"Date":"6/24/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":29,"Cost":26,"Date":"7/4/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":687,"Cost":394,"Date":"7/9/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":579,"Cost":380,"Date":"7/12/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":719,"Cost":580,"Date":"8/14/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":726,"Cost":428,"Date":"8/16/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":385,"Cost":350,"Date":"8/23/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":111,"Cost":102,"Date":"9/2/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":221,"Cost":144,"Date":"9/3/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":919,"Cost":715,"Date":"9/16/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":420,"Cost":216,"Date":"10/4/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":310,"Cost":194,"Date":"11/1/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":470,"Cost":389,"Date":"11/2/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":380,"Cost":280,"Date":"12/17/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":582,"Cost":326,"Date":"2/10/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":145,"Cost":80,"Date":"2/28/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":759,"Cost":422,"Date":"3/4/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":719,"Cost":429,"Date":"3/9/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":184,"Cost":157,"Date":"3/9/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":732,"Cost":444,"Date":"3/11/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":415,"Cost":276,"Date":"3/17/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":233,"Cost":221,"Date":"3/17/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":696,"Cost":493,"Date":"3/23/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":372,"Cost":187,"Date":"4/1/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":729,"Cost":453,"Date":"5/7/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":132,"Cost":120,"Date":"5/10/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":209,"Cost":146,"Date":"5/20/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":583,"Cost":406,"Date":"6/2/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":273,"Cost":186,"Date":"6/11/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":831,"Cost":520,"Date":"6/16/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":474,"Cost":406,"Date":"6/16/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":545,"Cost":419,"Date":"7/10/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":875,"Cost":446,"Date":"7/11/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":746,"Cost":647,"Date":"8/28/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":705,"Cost":611,"Date":"8/29/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":903,"Cost":770,"Date":"8/31/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":707,"Cost":431,"Date":"9/8/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":264,"Cost":176,"Date":"9/13/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":65,"Cost":50,"Date":"9/14/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":53,"Cost":34,"Date":"9/19/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":468,"Cost":349,"Date":"9/25/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":993,"Cost":927,"Date":"10/4/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":514,"Cost":400,"Date":"10/10/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":260,"Cost":206,"Date":"10/17/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":443,"Cost":397,"Date":"10/28/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":26,"Cost":15,"Date":"10/30/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":9,"Cost":7,"Date":"11/1/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":477,"Cost":331,"Date":"11/15/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":145,"Cost":83,"Date":"11/25/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":726,"Cost":404,"Date":"1/10/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":119,"Cost":68,"Date":"1/14/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":528,"Cost":415,"Date":"1/20/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":391,"Cost":317,"Date":"2/8/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":380,"Cost":334,"Date":"2/25/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":766,"Cost":482,"Date":"3/7/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":125,"Cost":101,"Date":"3/14/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":506,"Cost":284,"Date":"3/27/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":258,"Cost":196,"Date":"4/5/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":131,"Cost":68,"Date":"4/14/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":468,"Cost":421,"Date":"5/3/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":932,"Cost":792,"Date":"5/9/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":217,"Cost":196,"Date":"5/15/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":796,"Cost":447,"Date":"5/25/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":686,"Cost":460,"Date":"5/26/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":860,"Cost":543,"Date":"5/31/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":676,"Cost":359,"Date":"7/27/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":637,"Cost":542,"Date":"9/17/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":930,"Cost":571,"Date":"10/6/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":404,"Cost":299,"Date":"10/8/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":579,"Cost":360,"Date":"10/26/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":838,"Cost":557,"Date":"11/16/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":958,"Cost":515,"Date":"11/18/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":361,"Cost":282,"Date":"12/1/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":269,"Cost":219,"Date":"2/9/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":499,"Cost":290,"Date":"2/11/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":251,"Cost":167,"Date":"3/10/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":845,"Cost":760,"Date":"3/16/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":668,"Cost":545,"Date":"3/18/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":39,"Cost":20,"Date":"3/20/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":505,"Cost":266,"Date":"3/26/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":243,"Cost":180,"Date":"6/2/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":402,"Cost":263,"Date":"6/10/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":887,"Cost":734,"Date":"6/16/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":290,"Cost":236,"Date":"6/25/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":42,"Cost":34,"Date":"7/19/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":692,"Cost":410,"Date":"7/21/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":685,"Cost":343,"Date":"7/25/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":350,"Cost":217,"Date":"8/4/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":170,"Cost":129,"Date":"9/2/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":456,"Cost":281,"Date":"9/4/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":930,"Cost":860,"Date":"9/19/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":762,"Cost":667,"Date":"9/29/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":891,"Cost":559,"Date":"10/2/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":609,"Cost":397,"Date":"10/15/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":856,"Cost":684,"Date":"10/30/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":824,"Cost":582,"Date":"11/9/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":504,"Cost":298,"Date":"11/23/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":53,"Cost":42,"Date":"11/30/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":288,"Cost":166,"Date":"12/8/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":84,"Cost":51,"Date":"12/11/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":412,"Cost":218,"Date":"1/15/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":620,"Cost":571,"Date":"1/24/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":618,"Cost":416,"Date":"2/3/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":728,"Cost":445,"Date":"2/4/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":85,"Cost":61,"Date":"3/9/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":983,"Cost":693,"Date":"3/12/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":898,"Cost":561,"Date":"4/19/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":990,"Cost":504,"Date":"5/3/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":845,"Cost":553,"Date":"5/4/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":391,"Cost":254,"Date":"6/8/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":498,"Cost":251,"Date":"6/26/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":33,"Cost":20,"Date":"7/4/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":23,"Cost":14,"Date":"7/13/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":992,"Cost":760,"Date":"8/8/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":934,"Cost":625,"Date":"8/26/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":195,"Cost":152,"Date":"9/2/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":117,"Cost":112,"Date":"9/29/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":968,"Cost":695,"Date":"10/12/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":919,"Cost":724,"Date":"11/2/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":468,"Cost":431,"Date":"11/4/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":271,"Cost":179,"Date":"11/7/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":236,"Cost":161,"Date":"12/1/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":899,"Cost":722,"Date":"12/4/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":310,"Cost":278,"Date":"12/7/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":263,"Cost":185,"Date":"12/18/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":888,"Cost":466,"Date":"12/20/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":164,"Cost":89,"Date":"12/20/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":219,"Cost":168,"Date":"12/21/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":248,"Cost":144,"Date":"1/9/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":684,"Cost":477,"Date":"2/5/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":377,"Cost":313,"Date":"2/16/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":409,"Cost":207,"Date":"2/16/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":611,"Cost":456,"Date":"2/18/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":884,"Cost":712,"Date":"2/22/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":310,"Cost":208,"Date":"2/25/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":619,"Cost":422,"Date":"3/8/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":380,"Cost":320,"Date":"4/2/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":84,"Cost":74,"Date":"4/3/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":974,"Cost":782,"Date":"4/9/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":880,"Cost":785,"Date":"4/10/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":749,"Cost":475,"Date":"4/19/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":393,"Cost":223,"Date":"5/17/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":83,"Cost":61,"Date":"5/22/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":550,"Cost":495,"Date":"6/20/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":990,"Cost":762,"Date":"7/1/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":559,"Cost":331,"Date":"7/4/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":203,"Cost":108,"Date":"7/8/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":741,"Cost":392,"Date":"7/9/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":2,"Cost":2,"Date":"7/14/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":221,"Cost":151,"Date":"7/19/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":836,"Cost":673,"Date":"8/1/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":562,"Cost":379,"Date":"8/6/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":187,"Cost":143,"Date":"8/7/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":557,"Cost":305,"Date":"8/22/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":514,"Cost":421,"Date":"8/31/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":645,"Cost":485,"Date":"9/1/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":532,"Cost":389,"Date":"9/1/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":459,"Cost":402,"Date":"9/17/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":559,"Cost":355,"Date":"9/29/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":253,"Cost":190,"Date":"11/7/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":195,"Cost":149,"Date":"11/26/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":703,"Cost":474,"Date":"11/27/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":461,"Cost":351,"Date":"12/5/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":980,"Cost":871,"Date":"12/26/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":452,"Cost":352,"Date":"12/31/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":745,"Cost":398,"Date":"1/20/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":440,"Cost":389,"Date":"2/2/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":730,"Cost":396,"Date":"2/8/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":490,"Cost":423,"Date":"2/27/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":152,"Cost":99,"Date":"3/1/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":780,"Cost":579,"Date":"3/1/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":531,"Cost":419,"Date":"3/19/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":853,"Cost":625,"Date":"3/28/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":503,"Cost":388,"Date":"5/21/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":180,"Cost":95,"Date":"7/21/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":883,"Cost":747,"Date":"8/5/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":691,"Cost":619,"Date":"8/12/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":591,"Cost":452,"Date":"8/21/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":405,"Cost":204,"Date":"8/23/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":514,"Cost":332,"Date":"9/3/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":610,"Cost":572,"Date":"9/5/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":987,"Cost":547,"Date":"10/6/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":254,"Cost":208,"Date":"10/19/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":95,"Cost":68,"Date":"11/15/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":183,"Cost":130,"Date":"12/8/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":467,"Cost":329,"Date":"1/8/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":975,"Cost":590,"Date":"1/14/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":364,"Cost":251,"Date":"1/19/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":74,"Cost":65,"Date":"1/28/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":807,"Cost":595,"Date":"1/31/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":803,"Cost":407,"Date":"3/27/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":26,"Cost":21,"Date":"4/20/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":162,"Cost":119,"Date":"4/24/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":716,"Cost":461,"Date":"4/28/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":467,"Cost":423,"Date":"5/15/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":86,"Cost":47,"Date":"5/16/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":268,"Cost":163,"Date":"5/18/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":148,"Cost":116,"Date":"6/2/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":947,"Cost":545,"Date":"6/3/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":626,"Cost":458,"Date":"6/5/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":228,"Cost":117,"Date":"6/7/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":864,"Cost":525,"Date":"6/14/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":386,"Cost":291,"Date":"6/20/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":823,"Cost":667,"Date":"6/24/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":909,"Cost":671,"Date":"7/4/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":818,"Cost":691,"Date":"7/9/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":594,"Cost":418,"Date":"7/12/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":216,"Cost":187,"Date":"8/14/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":102,"Cost":70,"Date":"8/16/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":220,"Cost":126,"Date":"8/23/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":774,"Cost":396,"Date":"9/2/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":631,"Cost":582,"Date":"9/3/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":488,"Cost":341,"Date":"9/16/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":704,"Cost":411,"Date":"10/4/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":913,"Cost":485,"Date":"11/1/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":57,"Cost":53,"Date":"11/2/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":336,"Cost":249,"Date":"12/17/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":706,"Cost":569,"Date":"2/10/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":888,"Cost":528,"Date":"2/28/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":144,"Cost":95,"Date":"3/4/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":708,"Cost":509,"Date":"3/9/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":577,"Cost":485,"Date":"3/9/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":711,"Cost":446,"Date":"3/11/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":403,"Cost":228,"Date":"3/17/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":743,"Cost":694,"Date":"3/17/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":207,"Cost":132,"Date":"3/23/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":65,"Cost":41,"Date":"4/1/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":421,"Cost":347,"Date":"5/7/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":114,"Cost":71,"Date":"5/10/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":214,"Cost":114,"Date":"5/20/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":869,"Cost":539,"Date":"6/2/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":826,"Cost":559,"Date":"6/11/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":885,"Cost":793,"Date":"6/16/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":741,"Cost":547,"Date":"6/16/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":73,"Cost":51,"Date":"7/10/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":496,"Cost":425,"Date":"7/11/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":713,"Cost":580,"Date":"8/28/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":89,"Cost":80,"Date":"8/29/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":707,"Cost":495,"Date":"8/31/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":757,"Cost":618,"Date":"9/8/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":859,"Cost":678,"Date":"9/13/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":937,"Cost":860,"Date":"9/14/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":988,"Cost":621,"Date":"9/19/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":375,"Cost":355,"Date":"9/25/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":413,"Cost":214,"Date":"10/4/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":991,"Cost":694,"Date":"10/10/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":408,"Cost":382,"Date":"10/17/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":667,"Cost":342,"Date":"10/28/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":388,"Cost":240,"Date":"10/30/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":852,"Cost":762,"Date":"11/1/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":783,"Cost":693,"Date":"11/15/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":409,"Cost":274,"Date":"11/25/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":571,"Cost":321,"Date":"1/10/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":163,"Cost":131,"Date":"1/14/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":890,"Cost":468,"Date":"1/20/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":358,"Cost":214,"Date":"2/8/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":791,"Cost":530,"Date":"2/25/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":934,"Cost":726,"Date":"3/7/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":530,"Cost":359,"Date":"3/14/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":120,"Cost":71,"Date":"3/27/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":367,"Cost":203,"Date":"4/5/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":515,"Cost":277,"Date":"4/14/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":241,"Cost":182,"Date":"5/3/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":60,"Cost":56,"Date":"5/9/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":76,"Cost":63,"Date":"5/15/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":503,"Cost":372,"Date":"5/25/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":254,"Cost":149,"Date":"5/26/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":549,"Cost":494,"Date":"5/31/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":238,"Cost":189,"Date":"7/27/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":448,"Cost":357,"Date":"9/17/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":732,"Cost":502,"Date":"10/6/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":38,"Cost":33,"Date":"10/8/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":418,"Cost":286,"Date":"10/26/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":889,"Cost":650,"Date":"11/16/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":541,"Cost":497,"Date":"11/18/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"Nova","Country":"Australia","Sale":366,"Cost":301,"Date":"12/1/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":80,"Cost":72,"Date":"2/9/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":542,"Cost":400,"Date":"2/11/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":339,"Cost":205,"Date":"3/10/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":372,"Cost":199,"Date":"3/16/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":673,"Cost":608,"Date":"3/18/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":574,"Cost":412,"Date":"3/20/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":743,"Cost":377,"Date":"3/26/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":436,"Cost":288,"Date":"6/2/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":590,"Cost":524,"Date":"6/10/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":139,"Cost":106,"Date":"6/16/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":753,"Cost":691,"Date":"6/25/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":649,"Cost":516,"Date":"7/19/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":760,"Cost":386,"Date":"7/21/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":50,"Cost":27,"Date":"7/25/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":71,"Cost":39,"Date":"8/4/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":641,"Cost":425,"Date":"9/2/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":366,"Cost":347,"Date":"9/4/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":433,"Cost":260,"Date":"9/19/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":676,"Cost":415,"Date":"9/29/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":352,"Cost":232,"Date":"10/2/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":727,"Cost":533,"Date":"10/15/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":976,"Cost":543,"Date":"10/30/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":454,"Cost":363,"Date":"11/9/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":856,"Cost":806,"Date":"11/23/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":671,"Cost":626,"Date":"11/30/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":98,"Cost":77,"Date":"12/8/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":573,"Cost":459,"Date":"12/11/2018"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":979,"Cost":662,"Date":"1/15/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":654,"Cost":615,"Date":"1/24/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":204,"Cost":159,"Date":"2/3/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":214,"Cost":167,"Date":"2/4/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":578,"Cost":516,"Date":"3/9/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":589,"Cost":518,"Date":"3/12/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":299,"Cost":174,"Date":"4/19/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":900,"Cost":587,"Date":"5/3/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":549,"Cost":477,"Date":"5/4/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":504,"Cost":376,"Date":"6/8/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":481,"Cost":337,"Date":"6/26/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":408,"Cost":270,"Date":"7/4/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":119,"Cost":71,"Date":"7/13/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":228,"Cost":125,"Date":"8/8/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":599,"Cost":346,"Date":"8/26/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":235,"Cost":161,"Date":"9/2/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":464,"Cost":325,"Date":"9/29/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":621,"Cost":502,"Date":"10/12/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":120,"Cost":113,"Date":"11/2/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":581,"Cost":382,"Date":"11/4/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":249,"Cost":233,"Date":"11/7/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":888,"Cost":454,"Date":"12/1/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":611,"Cost":456,"Date":"12/4/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":807,"Cost":550,"Date":"12/7/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":153,"Cost":112,"Date":"12/18/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":855,"Cost":724,"Date":"12/20/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":727,"Cost":659,"Date":"12/20/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":994,"Cost":500,"Date":"12/21/2019"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":373,"Cost":196,"Date":"1/9/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":652,"Cost":601,"Date":"2/5/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":498,"Cost":292,"Date":"2/16/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":778,"Cost":609,"Date":"2/16/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":390,"Cost":277,"Date":"2/18/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":561,"Cost":501,"Date":"2/22/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":869,"Cost":576,"Date":"2/25/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":871,"Cost":708,"Date":"3/8/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":800,"Cost":616,"Date":"4/2/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":674,"Cost":434,"Date":"4/3/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":127,"Cost":77,"Date":"4/9/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":722,"Cost":413,"Date":"4/10/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":429,"Cost":399,"Date":"4/19/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":204,"Cost":162,"Date":"5/17/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":289,"Cost":180,"Date":"5/22/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":679,"Cost":561,"Date":"6/20/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":984,"Cost":509,"Date":"7/1/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":359,"Cost":241,"Date":"7/4/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":696,"Cost":482,"Date":"7/8/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":34,"Cost":20,"Date":"7/9/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":402,"Cost":369,"Date":"7/14/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":196,"Cost":167,"Date":"7/19/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":132,"Cost":116,"Date":"8/1/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":381,"Cost":300,"Date":"8/6/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":456,"Cost":398,"Date":"8/7/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":545,"Cost":501,"Date":"8/22/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":281,"Cost":174,"Date":"8/31/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":869,"Cost":624,"Date":"9/1/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":883,"Cost":798,"Date":"9/1/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":542,"Cost":296,"Date":"9/17/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":186,"Cost":136,"Date":"9/29/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":800,"Cost":443,"Date":"11/7/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":888,"Cost":604,"Date":"11/26/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":640,"Cost":448,"Date":"11/27/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":926,"Cost":808,"Date":"12/5/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":77,"Cost":71,"Date":"12/26/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":802,"Cost":687,"Date":"12/31/2020"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":200,"Cost":125,"Date":"1/20/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":419,"Cost":371,"Date":"2/2/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":640,"Cost":411,"Date":"2/8/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":196,"Cost":119,"Date":"2/27/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":672,"Cost":384,"Date":"3/1/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":45,"Cost":25,"Date":"3/1/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":56,"Cost":34,"Date":"3/19/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":124,"Cost":89,"Date":"3/28/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":425,"Cost":348,"Date":"5/21/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":739,"Cost":416,"Date":"7/21/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":234,"Cost":190,"Date":"8/5/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":234,"Cost":199,"Date":"8/12/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":713,"Cost":527,"Date":"8/21/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":714,"Cost":384,"Date":"8/23/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":159,"Cost":138,"Date":"9/3/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":953,"Cost":647,"Date":"9/5/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":704,"Cost":669,"Date":"10/6/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":723,"Cost":486,"Date":"10/19/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":267,"Cost":186,"Date":"11/15/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":996,"Cost":700,"Date":"12/8/2021"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":574,"Cost":507,"Date":"1/8/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":254,"Cost":130,"Date":"1/14/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":845,"Cost":767,"Date":"1/19/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":885,"Cost":524,"Date":"1/28/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":565,"Cost":480,"Date":"1/31/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":946,"Cost":762,"Date":"3/27/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":830,"Cost":782,"Date":"4/20/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":948,"Cost":476,"Date":"4/24/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":75,"Cost":60,"Date":"4/28/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":425,"Cost":395,"Date":"5/15/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":600,"Cost":537,"Date":"5/16/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":221,"Cost":125,"Date":"5/18/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":431,"Cost":230,"Date":"6/2/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":205,"Cost":194,"Date":"6/3/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":190,"Cost":132,"Date":"6/5/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":894,"Cost":814,"Date":"6/7/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":379,"Cost":192,"Date":"6/14/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":940,"Cost":628,"Date":"6/20/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":576,"Cost":491,"Date":"6/24/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":721,"Cost":524,"Date":"7/4/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":316,"Cost":254,"Date":"7/9/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":488,"Cost":379,"Date":"7/12/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":69,"Cost":55,"Date":"8/14/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":580,"Cost":430,"Date":"8/16/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":753,"Cost":672,"Date":"8/23/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":14,"Cost":11,"Date":"9/2/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":786,"Cost":493,"Date":"9/3/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":938,"Cost":564,"Date":"9/16/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":680,"Cost":443,"Date":"10/4/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":957,"Cost":904,"Date":"11/1/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":101,"Cost":90,"Date":"11/2/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":251,"Cost":159,"Date":"12/17/2022"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":438,"Cost":225,"Date":"2/10/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":6,"Cost":4,"Date":"2/28/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":500,"Cost":330,"Date":"3/4/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":1000,"Cost":541,"Date":"3/9/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":452,"Cost":344,"Date":"3/9/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":685,"Cost":457,"Date":"3/11/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":143,"Cost":120,"Date":"3/17/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":396,"Cost":228,"Date":"3/17/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":616,"Cost":322,"Date":"3/23/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":296,"Cost":268,"Date":"4/1/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":262,"Cost":237,"Date":"5/7/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":558,"Cost":400,"Date":"5/10/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":857,"Cost":785,"Date":"5/20/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":974,"Cost":488,"Date":"6/2/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":577,"Cost":316,"Date":"6/11/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":672,"Cost":357,"Date":"6/16/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":9,"Cost":4,"Date":"6/16/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":208,"Cost":137,"Date":"7/10/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":994,"Cost":781,"Date":"7/11/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":437,"Cost":309,"Date":"8/28/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":972,"Cost":516,"Date":"8/29/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":733,"Cost":578,"Date":"8/31/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":566,"Cost":352,"Date":"9/8/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":844,"Cost":514,"Date":"9/13/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":614,"Cost":371,"Date":"9/14/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":472,"Cost":264,"Date":"9/19/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":313,"Cost":235,"Date":"9/25/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":451,"Cost":423,"Date":"10/4/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":303,"Cost":220,"Date":"10/10/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":389,"Cost":277,"Date":"10/17/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":848,"Cost":548,"Date":"10/28/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":834,"Cost":785,"Date":"10/30/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":545,"Cost":374,"Date":"11/1/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":609,"Cost":437,"Date":"11/15/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":407,"Cost":221,"Date":"11/25/2023"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":63,"Cost":48,"Date":"1/10/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":93,"Cost":86,"Date":"1/14/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":176,"Cost":91,"Date":"1/20/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":281,"Cost":230,"Date":"2/8/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":838,"Cost":751,"Date":"2/25/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":907,"Cost":720,"Date":"3/7/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":737,"Cost":646,"Date":"3/14/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":18,"Cost":15,"Date":"3/27/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":763,"Cost":703,"Date":"4/5/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":182,"Cost":113,"Date":"4/14/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":362,"Cost":333,"Date":"5/3/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":665,"Cost":541,"Date":"5/9/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":990,"Cost":502,"Date":"5/15/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":293,"Cost":171,"Date":"5/25/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":990,"Cost":887,"Date":"5/26/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":456,"Cost":383,"Date":"5/31/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":695,"Cost":540,"Date":"7/27/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":639,"Cost":397,"Date":"9/17/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":389,"Cost":299,"Date":"10/6/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":322,"Cost":211,"Date":"10/8/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":38,"Cost":24,"Date":"10/26/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":955,"Cost":720,"Date":"11/16/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":237,"Cost":141,"Date":"11/18/2024"},{"Store":"Westfield Kotara, Newcastle","Brand":"HM Home","Country":"Australia","Sale":307,"Cost":267,"Date":"12/1/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":893,"Cost":638,"Date":"2/9/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":924,"Cost":696,"Date":"2/11/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":691,"Cost":383,"Date":"3/10/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":939,"Cost":843,"Date":"3/16/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":457,"Cost":310,"Date":"3/18/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":367,"Cost":241,"Date":"3/20/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":95,"Cost":73,"Date":"3/26/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":225,"Cost":181,"Date":"6/2/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":699,"Cost":492,"Date":"6/10/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":586,"Cost":298,"Date":"6/16/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":497,"Cost":338,"Date":"6/25/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":198,"Cost":186,"Date":"7/19/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":598,"Cost":334,"Date":"7/21/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":886,"Cost":725,"Date":"7/25/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":324,"Cost":305,"Date":"8/4/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":304,"Cost":189,"Date":"9/2/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":643,"Cost":372,"Date":"9/4/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":976,"Cost":508,"Date":"9/19/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":659,"Cost":560,"Date":"9/29/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":374,"Cost":313,"Date":"10/2/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":341,"Cost":283,"Date":"10/15/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":714,"Cost":679,"Date":"10/30/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":753,"Cost":715,"Date":"11/9/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":687,"Cost":583,"Date":"11/23/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":390,"Cost":215,"Date":"11/30/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":890,"Cost":627,"Date":"12/8/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":690,"Cost":485,"Date":"12/11/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":618,"Cost":477,"Date":"1/15/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":768,"Cost":664,"Date":"1/24/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":943,"Cost":795,"Date":"2/3/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":786,"Cost":420,"Date":"2/4/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":544,"Cost":451,"Date":"3/9/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":649,"Cost":615,"Date":"3/12/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":113,"Cost":77,"Date":"4/19/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":690,"Cost":510,"Date":"5/3/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":148,"Cost":118,"Date":"5/4/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":213,"Cost":158,"Date":"6/8/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":709,"Cost":603,"Date":"6/26/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":812,"Cost":696,"Date":"7/4/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":765,"Cost":517,"Date":"7/13/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":689,"Cost":559,"Date":"8/8/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":227,"Cost":125,"Date":"8/26/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":683,"Cost":413,"Date":"9/2/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":118,"Cost":106,"Date":"9/29/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":508,"Cost":274,"Date":"10/12/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":693,"Cost":410,"Date":"11/2/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":271,"Cost":219,"Date":"11/4/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":25,"Cost":12,"Date":"11/7/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":625,"Cost":335,"Date":"12/1/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":388,"Cost":261,"Date":"12/4/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":410,"Cost":341,"Date":"12/7/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":402,"Cost":340,"Date":"12/18/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":730,"Cost":654,"Date":"12/20/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":238,"Cost":128,"Date":"12/20/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":929,"Cost":755,"Date":"12/21/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":478,"Cost":440,"Date":"1/9/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":793,"Cost":448,"Date":"2/5/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":46,"Cost":26,"Date":"2/16/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":420,"Cost":258,"Date":"2/16/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":886,"Cost":466,"Date":"2/18/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":429,"Cost":294,"Date":"2/22/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":141,"Cost":84,"Date":"2/25/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":526,"Cost":316,"Date":"3/8/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":882,"Cost":765,"Date":"4/2/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":841,"Cost":622,"Date":"4/3/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":381,"Cost":259,"Date":"4/9/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":732,"Cost":409,"Date":"4/10/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":880,"Cost":809,"Date":"4/19/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":898,"Cost":799,"Date":"5/17/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":19,"Cost":14,"Date":"5/22/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":789,"Cost":528,"Date":"6/20/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":158,"Cost":134,"Date":"7/1/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":193,"Cost":136,"Date":"7/4/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":715,"Cost":422,"Date":"7/8/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":696,"Cost":539,"Date":"7/9/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":458,"Cost":388,"Date":"7/14/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":595,"Cost":542,"Date":"7/19/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":558,"Cost":424,"Date":"8/1/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":476,"Cost":343,"Date":"8/6/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":139,"Cost":124,"Date":"8/7/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":653,"Cost":419,"Date":"8/22/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":927,"Cost":618,"Date":"8/31/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":146,"Cost":78,"Date":"9/1/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":204,"Cost":193,"Date":"9/1/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":93,"Cost":82,"Date":"9/17/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":352,"Cost":265,"Date":"9/29/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":133,"Cost":98,"Date":"11/7/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":934,"Cost":741,"Date":"11/26/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":333,"Cost":251,"Date":"11/27/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":571,"Cost":455,"Date":"12/5/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":17,"Cost":14,"Date":"12/26/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":578,"Cost":377,"Date":"12/31/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":110,"Cost":83,"Date":"1/20/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":159,"Cost":101,"Date":"2/2/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":847,"Cost":796,"Date":"2/8/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":929,"Cost":782,"Date":"2/27/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":567,"Cost":511,"Date":"3/1/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":238,"Cost":127,"Date":"3/1/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":838,"Cost":590,"Date":"3/19/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":475,"Cost":364,"Date":"3/28/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":354,"Cost":186,"Date":"5/21/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":278,"Cost":209,"Date":"7/21/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":637,"Cost":394,"Date":"8/5/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":243,"Cost":223,"Date":"8/12/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":677,"Cost":460,"Date":"8/21/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":772,"Cost":460,"Date":"8/23/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":573,"Cost":506,"Date":"9/3/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":156,"Cost":146,"Date":"9/5/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":783,"Cost":577,"Date":"10/6/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":928,"Cost":706,"Date":"10/19/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":720,"Cost":534,"Date":"11/15/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":34,"Cost":27,"Date":"12/8/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":117,"Cost":85,"Date":"1/8/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":849,"Cost":462,"Date":"1/14/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":854,"Cost":480,"Date":"1/19/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":180,"Cost":90,"Date":"1/28/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":142,"Cost":108,"Date":"1/31/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":19,"Cost":15,"Date":"3/27/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":378,"Cost":258,"Date":"4/20/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":800,"Cost":642,"Date":"4/24/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":15,"Cost":13,"Date":"4/28/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":635,"Cost":388,"Date":"5/15/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":108,"Cost":56,"Date":"5/16/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":947,"Cost":475,"Date":"5/18/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":991,"Cost":728,"Date":"6/2/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":61,"Cost":49,"Date":"6/3/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":746,"Cost":627,"Date":"6/5/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":305,"Cost":249,"Date":"6/7/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":382,"Cost":223,"Date":"6/14/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":871,"Cost":722,"Date":"6/20/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":872,"Cost":736,"Date":"6/24/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":155,"Cost":135,"Date":"7/4/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":356,"Cost":301,"Date":"7/9/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":464,"Cost":240,"Date":"7/12/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":314,"Cost":280,"Date":"8/14/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":490,"Cost":262,"Date":"8/16/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":1,"Cost":0,"Date":"8/23/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":420,"Cost":240,"Date":"9/2/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":769,"Cost":519,"Date":"9/3/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":759,"Cost":478,"Date":"9/16/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":990,"Cost":671,"Date":"10/4/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":356,"Cost":301,"Date":"11/1/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":700,"Cost":430,"Date":"11/2/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":887,"Cost":708,"Date":"12/17/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":788,"Cost":469,"Date":"2/10/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":364,"Cost":268,"Date":"2/28/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":61,"Cost":43,"Date":"3/4/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":604,"Cost":333,"Date":"3/9/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":450,"Cost":420,"Date":"3/9/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":2,"Cost":1,"Date":"3/11/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":709,"Cost":454,"Date":"3/17/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":347,"Cost":227,"Date":"3/17/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":916,"Cost":611,"Date":"3/23/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":971,"Cost":570,"Date":"4/1/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":858,"Cost":676,"Date":"5/7/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":62,"Cost":48,"Date":"5/10/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":531,"Cost":458,"Date":"5/20/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":289,"Cost":217,"Date":"6/2/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":452,"Cost":411,"Date":"6/11/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":403,"Cost":372,"Date":"6/16/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":935,"Cost":813,"Date":"6/16/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":990,"Cost":889,"Date":"7/10/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":831,"Cost":485,"Date":"7/11/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":896,"Cost":686,"Date":"8/28/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":994,"Cost":533,"Date":"8/29/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":406,"Cost":287,"Date":"8/31/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":52,"Cost":28,"Date":"9/8/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":666,"Cost":386,"Date":"9/13/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":975,"Cost":544,"Date":"9/14/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":101,"Cost":62,"Date":"9/19/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":147,"Cost":139,"Date":"9/25/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":687,"Cost":583,"Date":"10/4/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":295,"Cost":156,"Date":"10/10/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":98,"Cost":77,"Date":"10/17/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":822,"Cost":539,"Date":"10/28/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":191,"Cost":112,"Date":"10/30/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":153,"Cost":134,"Date":"11/1/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":953,"Cost":553,"Date":"11/15/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":740,"Cost":477,"Date":"11/25/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":268,"Cost":143,"Date":"1/10/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":869,"Cost":575,"Date":"1/14/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":410,"Cost":367,"Date":"1/20/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":961,"Cost":701,"Date":"2/8/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":998,"Cost":609,"Date":"2/25/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":617,"Cost":528,"Date":"3/7/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":415,"Cost":240,"Date":"3/14/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":375,"Cost":333,"Date":"3/27/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":691,"Cost":511,"Date":"4/5/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":881,"Cost":809,"Date":"4/14/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":238,"Cost":210,"Date":"5/3/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":685,"Cost":379,"Date":"5/9/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":770,"Cost":415,"Date":"5/15/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":635,"Cost":397,"Date":"5/25/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":577,"Cost":433,"Date":"5/26/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":148,"Cost":99,"Date":"5/31/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":822,"Cost":522,"Date":"7/27/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":152,"Cost":133,"Date":"9/17/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":875,"Cost":738,"Date":"10/6/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":501,"Cost":458,"Date":"10/8/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":404,"Cost":316,"Date":"10/26/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":288,"Cost":199,"Date":"11/16/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":363,"Cost":309,"Date":"11/18/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"COS","Country":"Australia","Sale":722,"Cost":570,"Date":"12/1/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":847,"Cost":713,"Date":"2/9/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":379,"Cost":276,"Date":"2/11/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":949,"Cost":808,"Date":"3/10/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":161,"Cost":148,"Date":"3/16/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":425,"Cost":387,"Date":"3/18/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":652,"Cost":367,"Date":"3/20/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":409,"Cost":235,"Date":"3/26/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":185,"Cost":101,"Date":"6/2/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":367,"Cost":196,"Date":"6/10/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":43,"Cost":39,"Date":"6/16/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":242,"Cost":161,"Date":"6/25/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":936,"Cost":472,"Date":"7/19/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":451,"Cost":348,"Date":"7/21/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":190,"Cost":126,"Date":"7/25/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":629,"Cost":449,"Date":"8/4/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":30,"Cost":25,"Date":"9/2/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":4,"Cost":4,"Date":"9/4/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":828,"Cost":424,"Date":"9/19/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":967,"Cost":721,"Date":"9/29/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":615,"Cost":377,"Date":"10/2/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":818,"Cost":633,"Date":"10/15/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":9,"Cost":6,"Date":"10/30/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":89,"Cost":55,"Date":"11/9/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":122,"Cost":103,"Date":"11/23/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":589,"Cost":365,"Date":"11/30/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":249,"Cost":148,"Date":"12/8/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":630,"Cost":469,"Date":"12/11/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":171,"Cost":133,"Date":"1/15/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":165,"Cost":95,"Date":"1/24/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":392,"Cost":348,"Date":"2/3/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":134,"Cost":118,"Date":"2/4/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":387,"Cost":268,"Date":"3/9/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":818,"Cost":426,"Date":"3/12/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":878,"Cost":457,"Date":"4/19/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":672,"Cost":365,"Date":"5/3/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":704,"Cost":529,"Date":"5/4/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":511,"Cost":470,"Date":"6/8/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":531,"Cost":412,"Date":"6/26/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":890,"Cost":500,"Date":"7/4/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":103,"Cost":90,"Date":"7/13/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":975,"Cost":555,"Date":"8/8/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":311,"Cost":165,"Date":"8/26/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":805,"Cost":418,"Date":"9/2/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":246,"Cost":164,"Date":"9/29/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":657,"Cost":343,"Date":"10/12/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":463,"Cost":288,"Date":"11/2/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":797,"Cost":594,"Date":"11/4/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":46,"Cost":39,"Date":"11/7/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":544,"Cost":320,"Date":"12/1/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":680,"Cost":411,"Date":"12/4/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":423,"Cost":272,"Date":"12/7/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":189,"Cost":134,"Date":"12/18/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":609,"Cost":364,"Date":"12/20/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":230,"Cost":177,"Date":"12/20/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":609,"Cost":463,"Date":"12/21/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":812,"Cost":411,"Date":"1/9/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":799,"Cost":534,"Date":"2/5/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":132,"Cost":90,"Date":"2/16/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":990,"Cost":892,"Date":"2/16/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":334,"Cost":274,"Date":"2/18/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":656,"Cost":386,"Date":"2/22/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":755,"Cost":706,"Date":"2/25/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":650,"Cost":380,"Date":"3/8/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":824,"Cost":735,"Date":"4/2/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":485,"Cost":344,"Date":"4/3/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":44,"Cost":30,"Date":"4/9/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":294,"Cost":205,"Date":"4/10/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":297,"Cost":189,"Date":"4/19/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":653,"Cost":535,"Date":"5/17/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":400,"Cost":231,"Date":"5/22/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":722,"Cost":630,"Date":"6/20/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":535,"Cost":271,"Date":"7/1/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":608,"Cost":401,"Date":"7/4/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":263,"Cost":222,"Date":"7/8/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":115,"Cost":85,"Date":"7/9/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":436,"Cost":270,"Date":"7/14/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":613,"Cost":422,"Date":"7/19/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":694,"Cost":405,"Date":"8/1/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":23,"Cost":17,"Date":"8/6/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":668,"Cost":558,"Date":"8/7/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":817,"Cost":720,"Date":"8/22/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":820,"Cost":686,"Date":"8/31/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":996,"Cost":723,"Date":"9/1/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":228,"Cost":121,"Date":"9/1/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":959,"Cost":802,"Date":"9/17/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":464,"Cost":413,"Date":"9/29/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":511,"Cost":432,"Date":"11/7/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":934,"Cost":600,"Date":"11/26/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":142,"Cost":98,"Date":"11/27/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":278,"Cost":186,"Date":"12/5/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":614,"Cost":423,"Date":"12/26/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":846,"Cost":499,"Date":"12/31/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":762,"Cost":598,"Date":"1/20/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":858,"Cost":433,"Date":"2/2/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":731,"Cost":574,"Date":"2/8/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":796,"Cost":642,"Date":"2/27/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":553,"Cost":319,"Date":"3/1/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":854,"Cost":549,"Date":"3/1/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":23,"Cost":12,"Date":"3/19/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":625,"Cost":385,"Date":"3/28/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":409,"Cost":354,"Date":"5/21/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":148,"Cost":107,"Date":"7/21/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":636,"Cost":449,"Date":"8/5/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":461,"Cost":271,"Date":"8/12/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":167,"Cost":156,"Date":"8/21/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":520,"Cost":429,"Date":"8/23/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":894,"Cost":495,"Date":"9/3/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":998,"Cost":786,"Date":"9/5/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":280,"Cost":170,"Date":"10/6/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":133,"Cost":112,"Date":"10/19/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":679,"Cost":566,"Date":"11/15/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":677,"Cost":569,"Date":"12/8/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":761,"Cost":696,"Date":"1/8/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":455,"Cost":298,"Date":"1/14/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":710,"Cost":519,"Date":"1/19/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":128,"Cost":95,"Date":"1/28/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":525,"Cost":315,"Date":"1/31/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":784,"Cost":504,"Date":"3/27/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":724,"Cost":515,"Date":"4/20/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":993,"Cost":502,"Date":"4/24/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":582,"Cost":462,"Date":"4/28/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":123,"Cost":81,"Date":"5/15/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":482,"Cost":401,"Date":"5/16/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":406,"Cost":205,"Date":"5/18/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":969,"Cost":677,"Date":"6/2/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":580,"Cost":411,"Date":"6/3/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":392,"Cost":276,"Date":"6/5/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":255,"Cost":230,"Date":"6/7/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":441,"Cost":300,"Date":"6/14/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":451,"Cost":368,"Date":"6/20/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":937,"Cost":506,"Date":"6/24/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":349,"Cost":263,"Date":"7/4/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":967,"Cost":725,"Date":"7/9/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":877,"Cost":515,"Date":"7/12/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":51,"Cost":34,"Date":"8/14/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":228,"Cost":161,"Date":"8/16/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":494,"Cost":278,"Date":"8/23/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":694,"Cost":462,"Date":"9/2/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":806,"Cost":597,"Date":"9/3/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":170,"Cost":135,"Date":"9/16/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":123,"Cost":63,"Date":"10/4/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":53,"Cost":42,"Date":"11/1/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":54,"Cost":40,"Date":"11/2/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":157,"Cost":83,"Date":"12/17/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":531,"Cost":483,"Date":"2/10/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":350,"Cost":304,"Date":"2/28/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":517,"Cost":388,"Date":"3/4/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":625,"Cost":463,"Date":"3/9/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":109,"Cost":67,"Date":"3/9/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":407,"Cost":212,"Date":"3/11/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":167,"Cost":143,"Date":"3/17/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":387,"Cost":247,"Date":"3/17/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":20,"Cost":18,"Date":"3/23/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":213,"Cost":150,"Date":"4/1/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":396,"Cost":218,"Date":"5/7/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":113,"Cost":70,"Date":"5/10/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":263,"Cost":241,"Date":"5/20/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":724,"Cost":525,"Date":"6/2/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":904,"Cost":725,"Date":"6/11/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":563,"Cost":502,"Date":"6/16/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":902,"Cost":555,"Date":"6/16/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":131,"Cost":91,"Date":"7/10/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":212,"Cost":130,"Date":"7/11/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":129,"Cost":107,"Date":"8/28/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":819,"Cost":507,"Date":"8/29/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":532,"Cost":421,"Date":"8/31/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":571,"Cost":475,"Date":"9/8/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":181,"Cost":153,"Date":"9/13/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":852,"Cost":445,"Date":"9/14/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":751,"Cost":597,"Date":"9/19/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":382,"Cost":244,"Date":"9/25/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":461,"Cost":360,"Date":"10/4/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":46,"Cost":32,"Date":"10/10/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":317,"Cost":169,"Date":"10/17/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":367,"Cost":348,"Date":"10/28/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":323,"Cost":307,"Date":"10/30/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":138,"Cost":118,"Date":"11/1/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":805,"Cost":493,"Date":"11/15/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":127,"Cost":94,"Date":"11/25/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":290,"Cost":185,"Date":"1/10/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":254,"Cost":237,"Date":"1/14/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":128,"Cost":90,"Date":"1/20/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":670,"Cost":505,"Date":"2/8/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":180,"Cost":148,"Date":"2/25/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":179,"Cost":125,"Date":"3/7/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":923,"Cost":836,"Date":"3/14/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":23,"Cost":13,"Date":"3/27/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":191,"Cost":156,"Date":"4/5/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":193,"Cost":118,"Date":"4/14/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":275,"Cost":250,"Date":"5/3/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":807,"Cost":580,"Date":"5/9/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":500,"Cost":260,"Date":"5/15/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":128,"Cost":108,"Date":"5/25/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":667,"Cost":625,"Date":"5/26/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":511,"Cost":273,"Date":"5/31/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":532,"Cost":295,"Date":"7/27/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":158,"Cost":122,"Date":"9/17/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":198,"Cost":121,"Date":"10/6/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":101,"Cost":89,"Date":"10/8/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":203,"Cost":175,"Date":"10/26/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":956,"Cost":503,"Date":"11/16/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":702,"Cost":613,"Date":"11/18/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"HM","Country":"Australia","Sale":720,"Cost":643,"Date":"12/1/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":143,"Cost":93,"Date":"2/9/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":744,"Cost":523,"Date":"2/11/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":463,"Cost":344,"Date":"3/10/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":138,"Cost":107,"Date":"3/16/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":363,"Cost":254,"Date":"3/18/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":712,"Cost":658,"Date":"3/20/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":254,"Cost":196,"Date":"3/26/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":688,"Cost":607,"Date":"6/2/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":706,"Cost":373,"Date":"6/10/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":58,"Cost":30,"Date":"6/16/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":286,"Cost":238,"Date":"6/25/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":503,"Cost":313,"Date":"7/19/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":686,"Cost":434,"Date":"7/21/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":932,"Cost":840,"Date":"7/25/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":908,"Cost":643,"Date":"8/4/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":590,"Cost":359,"Date":"9/2/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":127,"Cost":117,"Date":"9/4/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":120,"Cost":106,"Date":"9/19/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":207,"Cost":144,"Date":"9/29/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":428,"Cost":401,"Date":"10/2/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":706,"Cost":499,"Date":"10/15/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":674,"Cost":535,"Date":"10/30/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":956,"Cost":845,"Date":"11/9/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":971,"Cost":782,"Date":"11/23/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":222,"Cost":174,"Date":"11/30/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":328,"Cost":197,"Date":"12/8/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":951,"Cost":630,"Date":"12/11/2018"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":35,"Cost":21,"Date":"1/15/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":550,"Cost":408,"Date":"1/24/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":122,"Cost":86,"Date":"2/3/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":758,"Cost":546,"Date":"2/4/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":703,"Cost":661,"Date":"3/9/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":584,"Cost":532,"Date":"3/12/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":424,"Cost":274,"Date":"4/19/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":920,"Cost":815,"Date":"5/3/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":963,"Cost":652,"Date":"5/4/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":575,"Cost":339,"Date":"6/8/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":449,"Cost":422,"Date":"6/26/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":178,"Cost":150,"Date":"7/4/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":615,"Cost":423,"Date":"7/13/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":531,"Cost":467,"Date":"8/8/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":301,"Cost":165,"Date":"8/26/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":357,"Cost":214,"Date":"9/2/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":506,"Cost":305,"Date":"9/29/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":111,"Cost":98,"Date":"10/12/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":305,"Cost":237,"Date":"11/2/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":492,"Cost":260,"Date":"11/4/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":354,"Cost":236,"Date":"11/7/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":21,"Cost":15,"Date":"12/1/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":40,"Cost":37,"Date":"12/4/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":125,"Cost":101,"Date":"12/7/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":652,"Cost":517,"Date":"12/18/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":429,"Cost":305,"Date":"12/20/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":774,"Cost":520,"Date":"12/20/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":930,"Cost":851,"Date":"12/21/2019"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":838,"Cost":480,"Date":"1/9/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":292,"Cost":203,"Date":"2/5/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":620,"Cost":392,"Date":"2/16/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":393,"Cost":243,"Date":"2/16/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":96,"Cost":53,"Date":"2/18/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":699,"Cost":484,"Date":"2/22/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":540,"Cost":387,"Date":"2/25/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":179,"Cost":148,"Date":"3/8/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":880,"Cost":829,"Date":"4/2/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":662,"Cost":620,"Date":"4/3/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":369,"Cost":250,"Date":"4/9/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":500,"Cost":365,"Date":"4/10/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":102,"Cost":58,"Date":"4/19/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":528,"Cost":271,"Date":"5/17/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":862,"Cost":717,"Date":"5/22/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":45,"Cost":40,"Date":"6/20/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":461,"Cost":413,"Date":"7/1/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":197,"Cost":136,"Date":"7/4/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":382,"Cost":305,"Date":"7/8/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":775,"Cost":642,"Date":"7/9/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":571,"Cost":331,"Date":"7/14/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":823,"Cost":502,"Date":"7/19/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":903,"Cost":767,"Date":"8/1/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":963,"Cost":558,"Date":"8/6/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":37,"Cost":24,"Date":"8/7/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":845,"Cost":467,"Date":"8/22/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":626,"Cost":363,"Date":"8/31/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":248,"Cost":169,"Date":"9/1/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":612,"Cost":463,"Date":"9/1/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":473,"Cost":280,"Date":"9/17/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":187,"Cost":175,"Date":"9/29/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":674,"Cost":632,"Date":"11/7/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":13,"Cost":7,"Date":"11/26/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":827,"Cost":778,"Date":"11/27/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":196,"Cost":119,"Date":"12/5/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":153,"Cost":83,"Date":"12/26/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":797,"Cost":639,"Date":"12/31/2020"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":888,"Cost":629,"Date":"1/20/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":17,"Cost":14,"Date":"2/2/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":88,"Cost":71,"Date":"2/8/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":119,"Cost":85,"Date":"2/27/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":507,"Cost":408,"Date":"3/1/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":938,"Cost":832,"Date":"3/1/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":450,"Cost":252,"Date":"3/19/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":566,"Cost":451,"Date":"3/28/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":459,"Cost":375,"Date":"5/21/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":677,"Cost":611,"Date":"7/21/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":997,"Cost":848,"Date":"8/5/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":689,"Cost":441,"Date":"8/12/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":303,"Cost":273,"Date":"8/21/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":272,"Cost":162,"Date":"8/23/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":718,"Cost":461,"Date":"9/3/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":809,"Cost":475,"Date":"9/5/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":547,"Cost":301,"Date":"10/6/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":180,"Cost":125,"Date":"10/19/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":79,"Cost":50,"Date":"11/15/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":555,"Cost":462,"Date":"12/8/2021"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":942,"Cost":634,"Date":"1/8/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":9,"Cost":9,"Date":"1/14/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":945,"Cost":612,"Date":"1/19/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":584,"Cost":420,"Date":"1/28/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":221,"Cost":163,"Date":"1/31/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":1000,"Cost":927,"Date":"3/27/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":817,"Cost":436,"Date":"4/20/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":205,"Cost":182,"Date":"4/24/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":30,"Cost":27,"Date":"4/28/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":682,"Cost":366,"Date":"5/15/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":474,"Cost":402,"Date":"5/16/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":719,"Cost":597,"Date":"5/18/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":293,"Cost":226,"Date":"6/2/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":101,"Cost":58,"Date":"6/3/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":294,"Cost":164,"Date":"6/5/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":643,"Cost":406,"Date":"6/7/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":205,"Cost":134,"Date":"6/14/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":27,"Cost":25,"Date":"6/20/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":867,"Cost":647,"Date":"6/24/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":188,"Cost":102,"Date":"7/4/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":352,"Cost":183,"Date":"7/9/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":313,"Cost":289,"Date":"7/12/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":432,"Cost":382,"Date":"8/14/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":673,"Cost":549,"Date":"8/16/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":451,"Cost":374,"Date":"8/23/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":858,"Cost":693,"Date":"9/2/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":90,"Cost":55,"Date":"9/3/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":692,"Cost":651,"Date":"9/16/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":932,"Cost":587,"Date":"10/4/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":240,"Cost":197,"Date":"11/1/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":664,"Cost":376,"Date":"11/2/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":739,"Cost":391,"Date":"12/17/2022"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":441,"Cost":242,"Date":"2/10/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":979,"Cost":884,"Date":"2/28/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":415,"Cost":228,"Date":"3/4/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":692,"Cost":616,"Date":"3/9/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":170,"Cost":158,"Date":"3/9/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":524,"Cost":464,"Date":"3/11/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":580,"Cost":298,"Date":"3/17/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":250,"Cost":227,"Date":"3/17/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":613,"Cost":535,"Date":"3/23/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":545,"Cost":423,"Date":"4/1/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":892,"Cost":470,"Date":"5/7/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":385,"Cost":313,"Date":"5/10/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":250,"Cost":149,"Date":"5/20/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":273,"Cost":225,"Date":"6/2/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":286,"Cost":225,"Date":"6/11/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":445,"Cost":299,"Date":"6/16/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":892,"Cost":747,"Date":"6/16/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":572,"Cost":455,"Date":"7/10/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":334,"Cost":185,"Date":"7/11/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":10,"Cost":6,"Date":"8/28/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":719,"Cost":509,"Date":"8/29/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":58,"Cost":38,"Date":"8/31/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":762,"Cost":390,"Date":"9/8/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":194,"Cost":180,"Date":"9/13/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":972,"Cost":703,"Date":"9/14/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":376,"Cost":230,"Date":"9/19/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":21,"Cost":16,"Date":"9/25/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":297,"Cost":180,"Date":"10/4/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":400,"Cost":280,"Date":"10/10/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":210,"Cost":127,"Date":"10/17/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":815,"Cost":729,"Date":"10/28/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":712,"Cost":528,"Date":"10/30/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":433,"Cost":323,"Date":"11/1/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":288,"Cost":258,"Date":"11/15/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":389,"Cost":300,"Date":"11/25/2023"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":371,"Cost":224,"Date":"1/10/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":717,"Cost":505,"Date":"1/14/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":416,"Cost":284,"Date":"1/20/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":121,"Cost":115,"Date":"2/8/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":737,"Cost":492,"Date":"2/25/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":362,"Cost":266,"Date":"3/7/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":498,"Cost":287,"Date":"3/14/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":823,"Cost":434,"Date":"3/27/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":402,"Cost":260,"Date":"4/5/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":116,"Cost":59,"Date":"4/14/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":857,"Cost":605,"Date":"5/3/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":524,"Cost":367,"Date":"5/9/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":886,"Cost":798,"Date":"5/15/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":612,"Cost":452,"Date":"5/25/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":521,"Cost":279,"Date":"5/26/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":165,"Cost":116,"Date":"5/31/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":100,"Cost":52,"Date":"7/27/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":902,"Cost":709,"Date":"9/17/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":855,"Cost":657,"Date":"10/6/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":928,"Cost":801,"Date":"10/8/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":40,"Cost":30,"Date":"10/26/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":799,"Cost":613,"Date":"11/16/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":458,"Cost":415,"Date":"11/18/2024"},{"Store":"Charlestown Square, Newcastle","Brand":"Sellpy","Country":"Australia","Sale":779,"Cost":434,"Date":"12/1/2024"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":851,"Cost":669,"Date":"2/9/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":848,"Cost":445,"Date":"2/11/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":857,"Cost":607,"Date":"3/10/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":427,"Cost":355,"Date":"3/16/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":457,"Cost":368,"Date":"3/18/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":176,"Cost":122,"Date":"3/20/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":515,"Cost":272,"Date":"3/26/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":310,"Cost":249,"Date":"6/2/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":397,"Cost":337,"Date":"6/10/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":855,"Cost":799,"Date":"6/16/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":722,"Cost":654,"Date":"6/25/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":844,"Cost":692,"Date":"7/19/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":727,"Cost":640,"Date":"7/21/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":889,"Cost":556,"Date":"7/25/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":956,"Cost":592,"Date":"8/4/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":895,"Cost":630,"Date":"9/2/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":790,"Cost":634,"Date":"9/4/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":625,"Cost":562,"Date":"9/19/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":937,"Cost":613,"Date":"9/29/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":801,"Cost":709,"Date":"10/2/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":674,"Cost":437,"Date":"10/15/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":917,"Cost":643,"Date":"10/30/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":271,"Cost":163,"Date":"11/9/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":546,"Cost":433,"Date":"11/23/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":524,"Cost":347,"Date":"11/30/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":906,"Cost":531,"Date":"12/8/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":167,"Cost":99,"Date":"12/11/2018"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":508,"Cost":382,"Date":"1/15/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":813,"Cost":707,"Date":"1/24/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":391,"Cost":256,"Date":"2/3/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":161,"Cost":98,"Date":"2/4/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":128,"Cost":114,"Date":"3/9/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":214,"Cost":185,"Date":"3/12/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":942,"Cost":568,"Date":"4/19/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":51,"Cost":34,"Date":"5/3/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":627,"Cost":384,"Date":"5/4/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":15,"Cost":8,"Date":"6/8/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":923,"Cost":713,"Date":"6/26/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":254,"Cost":191,"Date":"7/4/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":148,"Cost":135,"Date":"7/13/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":422,"Cost":214,"Date":"8/8/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":277,"Cost":255,"Date":"8/26/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":907,"Cost":734,"Date":"9/2/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":383,"Cost":329,"Date":"9/29/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":736,"Cost":373,"Date":"10/12/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":254,"Cost":167,"Date":"11/2/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":270,"Cost":138,"Date":"11/4/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":753,"Cost":580,"Date":"11/7/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":696,"Cost":562,"Date":"12/1/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":794,"Cost":585,"Date":"12/4/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":901,"Cost":515,"Date":"12/7/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":789,"Cost":724,"Date":"12/18/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":740,"Cost":659,"Date":"12/20/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":891,"Cost":817,"Date":"12/20/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":211,"Cost":138,"Date":"12/21/2019"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":914,"Cost":512,"Date":"1/9/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":397,"Cost":215,"Date":"2/5/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":997,"Cost":865,"Date":"2/16/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":508,"Cost":360,"Date":"2/16/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":191,"Cost":158,"Date":"2/18/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":858,"Cost":763,"Date":"2/22/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":891,"Cost":759,"Date":"2/25/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":340,"Cost":172,"Date":"3/8/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":899,"Cost":817,"Date":"4/2/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":935,"Cost":853,"Date":"4/3/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":361,"Cost":264,"Date":"4/9/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":616,"Cost":457,"Date":"4/10/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":546,"Cost":412,"Date":"4/19/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":169,"Cost":119,"Date":"5/17/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":243,"Cost":197,"Date":"5/22/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":717,"Cost":390,"Date":"6/20/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":7,"Cost":5,"Date":"7/1/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":776,"Cost":524,"Date":"7/4/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":177,"Cost":164,"Date":"7/8/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":627,"Cost":568,"Date":"7/9/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":125,"Cost":119,"Date":"7/14/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":719,"Cost":503,"Date":"7/19/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":909,"Cost":791,"Date":"8/1/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":392,"Cost":277,"Date":"8/6/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":647,"Cost":413,"Date":"8/7/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":327,"Cost":201,"Date":"8/22/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":32,"Cost":27,"Date":"8/31/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":359,"Cost":247,"Date":"9/1/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":566,"Cost":488,"Date":"9/1/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":272,"Cost":144,"Date":"9/17/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":199,"Cost":148,"Date":"9/29/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":910,"Cost":469,"Date":"11/7/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":718,"Cost":652,"Date":"11/26/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":850,"Cost":462,"Date":"11/27/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":464,"Cost":384,"Date":"12/5/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":227,"Cost":158,"Date":"12/26/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":482,"Cost":403,"Date":"12/31/2020"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":385,"Cost":261,"Date":"1/20/2021"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":760,"Cost":528,"Date":"2/2/2021"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":242,"Cost":225,"Date":"2/8/2021"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":957,"Cost":627,"Date":"2/27/2021"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":923,"Cost":730,"Date":"3/1/2021"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":932,"Cost":768,"Date":"3/1/2021"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":971,"Cost":888,"Date":"3/19/2021"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":183,"Cost":102,"Date":"3/28/2021"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":400,"Cost":363,"Date":"5/21/2021"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":794,"Cost":627,"Date":"7/21/2021"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":84,"Cost":45,"Date":"8/5/2021"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":16,"Cost":10,"Date":"8/12/2021"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":924,"Cost":615,"Date":"8/21/2021"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":488,"Cost":281,"Date":"8/23/2021"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":145,"Cost":97,"Date":"9/3/2021"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":931,"Cost":695,"Date":"9/5/2021"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":219,"Cost":185,"Date":"10/6/2021"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":684,"Cost":562,"Date":"10/19/2021"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":453,"Cost":421,"Date":"11/15/2021"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":424,"Cost":262,"Date":"12/8/2021"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":372,"Cost":204,"Date":"1/8/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":482,"Cost":286,"Date":"1/14/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":592,"Cost":471,"Date":"1/19/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":315,"Cost":237,"Date":"1/28/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":280,"Cost":174,"Date":"1/31/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":640,"Cost":561,"Date":"3/27/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":745,"Cost":575,"Date":"4/20/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":342,"Cost":215,"Date":"4/24/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":129,"Cost":82,"Date":"4/28/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":302,"Cost":204,"Date":"5/15/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":429,"Cost":305,"Date":"5/16/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":809,"Cost":504,"Date":"5/18/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":431,"Cost":281,"Date":"6/2/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":815,"Cost":726,"Date":"6/3/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":3,"Cost":1,"Date":"6/5/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":230,"Cost":123,"Date":"6/7/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":157,"Cost":130,"Date":"6/14/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":873,"Cost":588,"Date":"6/20/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":780,"Cost":408,"Date":"6/24/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":936,"Cost":582,"Date":"7/4/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":759,"Cost":478,"Date":"7/9/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":540,"Cost":385,"Date":"7/12/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":303,"Cost":213,"Date":"8/14/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":273,"Cost":169,"Date":"8/16/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":643,"Cost":574,"Date":"8/23/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":868,"Cost":539,"Date":"9/2/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":502,"Cost":321,"Date":"9/3/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":789,"Cost":686,"Date":"9/16/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":97,"Cost":84,"Date":"10/4/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":743,"Cost":609,"Date":"11/1/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":593,"Cost":525,"Date":"11/2/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":31,"Cost":25,"Date":"12/17/2022"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":948,"Cost":615,"Date":"2/10/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":358,"Cost":245,"Date":"2/28/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":763,"Cost":479,"Date":"3/4/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":765,"Cost":453,"Date":"3/9/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":17,"Cost":15,"Date":"3/9/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":179,"Cost":96,"Date":"3/11/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":802,"Cost":503,"Date":"3/17/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":851,"Cost":549,"Date":"3/17/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":875,"Cost":821,"Date":"3/23/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":219,"Cost":123,"Date":"4/1/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":478,"Cost":450,"Date":"5/7/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":548,"Cost":463,"Date":"5/10/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":879,"Cost":500,"Date":"5/20/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":705,"Cost":456,"Date":"6/2/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":20,"Cost":18,"Date":"6/11/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":904,"Cost":729,"Date":"6/16/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":139,"Cost":125,"Date":"6/16/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":385,"Cost":229,"Date":"7/10/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":295,"Cost":183,"Date":"7/11/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":618,"Cost":473,"Date":"8/28/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":627,"Cost":548,"Date":"8/29/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":619,"Cost":502,"Date":"8/31/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":238,"Cost":167,"Date":"9/8/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":838,"Cost":715,"Date":"9/13/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":162,"Cost":152,"Date":"9/14/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":992,"Cost":631,"Date":"9/19/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":244,"Cost":166,"Date":"9/25/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":956,"Cost":621,"Date":"10/4/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":774,"Cost":544,"Date":"10/10/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":981,"Cost":811,"Date":"10/17/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":810,"Cost":627,"Date":"10/28/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":772,"Cost":531,"Date":"10/30/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":323,"Cost":195,"Date":"11/1/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":492,"Cost":415,"Date":"11/15/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":510,"Cost":411,"Date":"11/25/2023"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":664,"Cost":496,"Date":"1/10/2024"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":264,"Cost":167,"Date":"1/14/2024"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":399,"Cost":216,"Date":"1/20/2024"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":745,"Cost":401,"Date":"2/8/2024"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":728,"Cost":557,"Date":"2/25/2024"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":277,"Cost":170,"Date":"3/7/2024"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":358,"Cost":244,"Date":"3/14/2024"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":994,"Cost":544,"Date":"3/27/2024"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":226,"Cost":139,"Date":"4/5/2024"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":945,"Cost":674,"Date":"4/14/2024"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":485,"Cost":430,"Date":"5/3/2024"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":498,"Cost":316,"Date":"5/9/2024"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":912,"Cost":469,"Date":"5/15/2024"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":672,"Cost":414,"Date":"5/25/2024"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":191,"Cost":145,"Date":"5/26/2024"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":132,"Cost":119,"Date":"5/31/2024"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":777,"Cost":556,"Date":"7/27/2024"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":886,"Cost":477,"Date":"9/17/2024"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":718,"Cost":588,"Date":"10/6/2024"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":559,"Cost":474,"Date":"10/8/2024"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":135,"Cost":79,"Date":"10/26/2024"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":227,"Cost":174,"Date":"11/16/2024"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":900,"Cost":791,"Date":"11/18/2024"},{"Store":"Cairns Central","Brand":"ARKET","Country":"Australia","Sale":84,"Cost":62,"Date":"12/1/2024"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":861,"Cost":473,"Date":"2/9/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":921,"Cost":578,"Date":"2/11/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":446,"Cost":422,"Date":"3/10/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":164,"Cost":83,"Date":"3/16/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":787,"Cost":421,"Date":"3/18/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":597,"Cost":558,"Date":"3/20/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":993,"Cost":924,"Date":"3/26/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":470,"Cost":361,"Date":"6/2/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":549,"Cost":320,"Date":"6/10/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":576,"Cost":503,"Date":"6/16/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":291,"Cost":238,"Date":"6/25/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":101,"Cost":62,"Date":"7/19/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":617,"Cost":374,"Date":"7/21/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":528,"Cost":354,"Date":"7/25/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":58,"Cost":35,"Date":"8/4/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":134,"Cost":123,"Date":"9/2/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":996,"Cost":656,"Date":"9/4/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":318,"Cost":209,"Date":"9/19/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":429,"Cost":406,"Date":"9/29/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":25,"Cost":19,"Date":"10/2/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":260,"Cost":212,"Date":"10/15/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":461,"Cost":395,"Date":"10/30/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":469,"Cost":415,"Date":"11/9/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":574,"Cost":518,"Date":"11/23/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":128,"Cost":88,"Date":"11/30/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":674,"Cost":517,"Date":"12/8/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":988,"Cost":569,"Date":"12/11/2018"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":861,"Cost":487,"Date":"1/15/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":875,"Cost":666,"Date":"1/24/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":289,"Cost":247,"Date":"2/3/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":535,"Cost":297,"Date":"2/4/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":815,"Cost":513,"Date":"3/9/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":601,"Cost":439,"Date":"3/12/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":850,"Cost":669,"Date":"4/19/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":760,"Cost":474,"Date":"5/3/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":704,"Cost":527,"Date":"5/4/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":220,"Cost":142,"Date":"6/8/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":478,"Cost":288,"Date":"6/26/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":625,"Cost":327,"Date":"7/4/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":542,"Cost":508,"Date":"7/13/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":965,"Cost":610,"Date":"8/8/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":894,"Cost":448,"Date":"8/26/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":979,"Cost":634,"Date":"9/2/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":623,"Cost":347,"Date":"9/29/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":572,"Cost":512,"Date":"10/12/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":204,"Cost":134,"Date":"11/2/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":481,"Cost":417,"Date":"11/4/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":737,"Cost":684,"Date":"11/7/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":520,"Cost":493,"Date":"12/1/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":458,"Cost":237,"Date":"12/4/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":409,"Cost":259,"Date":"12/7/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":587,"Cost":537,"Date":"12/18/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":972,"Cost":768,"Date":"12/20/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":699,"Cost":630,"Date":"12/20/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":88,"Cost":47,"Date":"12/21/2019"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":887,"Cost":764,"Date":"1/9/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":382,"Cost":244,"Date":"2/5/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":346,"Cost":274,"Date":"2/16/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":333,"Cost":248,"Date":"2/16/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":415,"Cost":389,"Date":"2/18/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":112,"Cost":68,"Date":"2/22/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":886,"Cost":784,"Date":"2/25/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":60,"Cost":46,"Date":"3/8/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":881,"Cost":783,"Date":"4/2/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":908,"Cost":644,"Date":"4/3/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":950,"Cost":667,"Date":"4/9/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":112,"Cost":95,"Date":"4/10/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":483,"Cost":382,"Date":"4/19/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":364,"Cost":197,"Date":"5/17/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":441,"Cost":371,"Date":"5/22/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":29,"Cost":25,"Date":"6/20/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":754,"Cost":706,"Date":"7/1/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":687,"Cost":367,"Date":"7/4/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":176,"Cost":166,"Date":"7/8/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":911,"Cost":686,"Date":"7/9/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":734,"Cost":489,"Date":"7/14/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":93,"Cost":76,"Date":"7/19/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":208,"Cost":187,"Date":"8/1/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":509,"Cost":441,"Date":"8/6/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":398,"Cost":290,"Date":"8/7/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":76,"Cost":61,"Date":"8/22/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":724,"Cost":680,"Date":"8/31/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":138,"Cost":112,"Date":"9/1/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":416,"Cost":385,"Date":"9/1/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":979,"Cost":601,"Date":"9/17/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":141,"Cost":127,"Date":"9/29/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":87,"Cost":66,"Date":"11/7/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":492,"Cost":415,"Date":"11/26/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":229,"Cost":152,"Date":"11/27/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":716,"Cost":608,"Date":"12/5/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":857,"Cost":569,"Date":"12/26/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":167,"Cost":126,"Date":"12/31/2020"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":108,"Cost":64,"Date":"1/20/2021"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":750,"Cost":436,"Date":"2/2/2021"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":329,"Cost":292,"Date":"2/8/2021"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":480,"Cost":333,"Date":"2/27/2021"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":901,"Cost":490,"Date":"3/1/2021"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":841,"Cost":459,"Date":"3/1/2021"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":84,"Cost":44,"Date":"3/19/2021"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":268,"Cost":214,"Date":"3/28/2021"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":915,"Cost":702,"Date":"5/21/2021"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":303,"Cost":213,"Date":"7/21/2021"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":496,"Cost":385,"Date":"8/5/2021"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":434,"Cost":382,"Date":"8/12/2021"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":777,"Cost":570,"Date":"8/21/2021"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":669,"Cost":396,"Date":"8/23/2021"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":89,"Cost":60,"Date":"9/3/2021"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":942,"Cost":785,"Date":"9/5/2021"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":314,"Cost":167,"Date":"10/6/2021"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":675,"Cost":539,"Date":"10/19/2021"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":359,"Cost":212,"Date":"11/15/2021"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":176,"Cost":158,"Date":"12/8/2021"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":138,"Cost":122,"Date":"1/8/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":536,"Cost":321,"Date":"1/14/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":828,"Cost":599,"Date":"1/19/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":263,"Cost":148,"Date":"1/28/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":25,"Cost":13,"Date":"1/31/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":882,"Cost":533,"Date":"3/27/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":339,"Cost":185,"Date":"4/20/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":668,"Cost":522,"Date":"4/24/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":750,"Cost":486,"Date":"4/28/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":303,"Cost":199,"Date":"5/15/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":97,"Cost":84,"Date":"5/16/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":285,"Cost":262,"Date":"5/18/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":156,"Cost":147,"Date":"6/2/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":582,"Cost":347,"Date":"6/3/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":677,"Cost":457,"Date":"6/5/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":840,"Cost":736,"Date":"6/7/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":60,"Cost":40,"Date":"6/14/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":435,"Cost":275,"Date":"6/20/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":220,"Cost":166,"Date":"6/24/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":204,"Cost":156,"Date":"7/4/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":678,"Cost":474,"Date":"7/9/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":684,"Cost":411,"Date":"7/12/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":103,"Cost":74,"Date":"8/14/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":703,"Cost":412,"Date":"8/16/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":653,"Cost":448,"Date":"8/23/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":180,"Cost":123,"Date":"9/2/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":662,"Cost":464,"Date":"9/3/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":465,"Cost":318,"Date":"9/16/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":73,"Cost":53,"Date":"10/4/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":558,"Cost":297,"Date":"11/1/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":809,"Cost":679,"Date":"11/2/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":710,"Cost":417,"Date":"12/17/2022"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":283,"Cost":161,"Date":"2/10/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":595,"Cost":320,"Date":"2/28/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":625,"Cost":393,"Date":"3/4/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":675,"Cost":446,"Date":"3/9/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":903,"Cost":644,"Date":"3/9/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":528,"Cost":290,"Date":"3/11/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":367,"Cost":220,"Date":"3/17/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":7,"Cost":4,"Date":"3/17/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":700,"Cost":507,"Date":"3/23/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":261,"Cost":165,"Date":"4/1/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":567,"Cost":291,"Date":"5/7/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":887,"Cost":815,"Date":"5/10/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":580,"Cost":308,"Date":"5/20/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":523,"Cost":362,"Date":"6/2/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":132,"Cost":82,"Date":"6/11/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":734,"Cost":437,"Date":"6/16/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":340,"Cost":171,"Date":"6/16/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":656,"Cost":406,"Date":"7/10/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":202,"Cost":111,"Date":"7/11/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":650,"Cost":532,"Date":"8/28/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":207,"Cost":164,"Date":"8/29/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":522,"Cost":337,"Date":"8/31/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":107,"Cost":91,"Date":"9/8/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":595,"Cost":529,"Date":"9/13/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":337,"Cost":239,"Date":"9/14/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":845,"Cost":578,"Date":"9/19/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":227,"Cost":214,"Date":"9/25/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":638,"Cost":505,"Date":"10/4/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":862,"Cost":768,"Date":"10/10/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":169,"Cost":131,"Date":"10/17/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":656,"Cost":587,"Date":"10/28/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":994,"Cost":882,"Date":"10/30/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":934,"Cost":678,"Date":"11/1/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":184,"Cost":146,"Date":"11/15/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":262,"Cost":146,"Date":"11/25/2023"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":881,"Cost":537,"Date":"1/10/2024"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":142,"Cost":90,"Date":"1/14/2024"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":511,"Cost":317,"Date":"1/20/2024"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":327,"Cost":253,"Date":"2/8/2024"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":35,"Cost":31,"Date":"2/25/2024"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":560,"Cost":467,"Date":"3/7/2024"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":531,"Cost":483,"Date":"3/14/2024"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":351,"Cost":303,"Date":"3/27/2024"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":617,"Cost":578,"Date":"4/5/2024"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":969,"Cost":548,"Date":"4/14/2024"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":319,"Cost":243,"Date":"5/3/2024"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":934,"Cost":674,"Date":"5/9/2024"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":350,"Cost":231,"Date":"5/15/2024"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":378,"Cost":346,"Date":"5/25/2024"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":323,"Cost":190,"Date":"5/26/2024"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":189,"Cost":111,"Date":"5/31/2024"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":680,"Cost":460,"Date":"7/27/2024"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":687,"Cost":628,"Date":"9/17/2024"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":205,"Cost":186,"Date":"10/6/2024"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":524,"Cost":276,"Date":"10/8/2024"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":245,"Cost":186,"Date":"10/26/2024"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":264,"Cost":180,"Date":"11/16/2024"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":740,"Cost":680,"Date":"11/18/2024"},{"Store":"Cairns Central","Brand":"Nova","Country":"Australia","Sale":636,"Cost":567,"Date":"12/1/2024"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":783,"Cost":453,"Date":"2/9/2018"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":757,"Cost":709,"Date":"2/11/2018"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":681,"Cost":637,"Date":"3/10/2018"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":378,"Cost":300,"Date":"3/16/2018"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":209,"Cost":130,"Date":"3/18/2018"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":39,"Cost":25,"Date":"3/20/2018"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":617,"Cost":551,"Date":"3/26/2018"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":533,"Cost":285,"Date":"6/2/2018"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":625,"Cost":373,"Date":"6/10/2018"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":273,"Cost":155,"Date":"6/16/2018"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":253,"Cost":169,"Date":"6/25/2018"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":20,"Cost":12,"Date":"7/19/2018"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":506,"Cost":475,"Date":"7/21/2018"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":503,"Cost":404,"Date":"7/25/2018"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":646,"Cost":371,"Date":"8/4/2018"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":379,"Cost":339,"Date":"9/2/2018"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":700,"Cost":367,"Date":"9/4/2018"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":603,"Cost":377,"Date":"9/19/2018"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":975,"Cost":792,"Date":"9/29/2018"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":238,"Cost":182,"Date":"10/2/2018"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":283,"Cost":177,"Date":"10/15/2018"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":436,"Cost":398,"Date":"10/30/2018"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":199,"Cost":149,"Date":"11/9/2018"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":926,"Cost":718,"Date":"11/23/2018"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":88,"Cost":47,"Date":"11/30/2018"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":933,"Cost":511,"Date":"12/8/2018"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":415,"Cost":342,"Date":"12/11/2018"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":147,"Cost":139,"Date":"1/15/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":852,"Cost":687,"Date":"1/24/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":862,"Cost":666,"Date":"2/3/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":822,"Cost":652,"Date":"2/4/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":728,"Cost":441,"Date":"3/9/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":589,"Cost":301,"Date":"3/12/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":36,"Cost":31,"Date":"4/19/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":262,"Cost":169,"Date":"5/3/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":943,"Cost":750,"Date":"5/4/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":10,"Cost":9,"Date":"6/8/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":534,"Cost":307,"Date":"6/26/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":769,"Cost":713,"Date":"7/4/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":682,"Cost":444,"Date":"7/13/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":440,"Cost":414,"Date":"8/8/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":929,"Cost":519,"Date":"8/26/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":940,"Cost":482,"Date":"9/2/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":196,"Cost":150,"Date":"9/29/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":615,"Cost":395,"Date":"10/12/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":449,"Cost":308,"Date":"11/2/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":320,"Cost":210,"Date":"11/4/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":444,"Cost":306,"Date":"11/7/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":633,"Cost":354,"Date":"12/1/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":485,"Cost":442,"Date":"12/4/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":727,"Cost":450,"Date":"12/7/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":174,"Cost":119,"Date":"12/18/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":965,"Cost":841,"Date":"12/20/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":405,"Cost":254,"Date":"12/20/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":181,"Cost":144,"Date":"12/21/2019"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":574,"Cost":544,"Date":"1/9/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":515,"Cost":262,"Date":"2/5/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":154,"Cost":140,"Date":"2/16/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":940,"Cost":478,"Date":"2/16/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":743,"Cost":604,"Date":"2/18/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":61,"Cost":53,"Date":"2/22/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":570,"Cost":287,"Date":"2/25/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":821,"Cost":617,"Date":"3/8/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":467,"Cost":291,"Date":"4/2/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":958,"Cost":726,"Date":"4/3/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":952,"Cost":483,"Date":"4/9/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":984,"Cost":654,"Date":"4/10/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":813,"Cost":673,"Date":"4/19/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":412,"Cost":210,"Date":"5/17/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":825,"Cost":697,"Date":"5/22/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":988,"Cost":651,"Date":"6/20/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":77,"Cost":67,"Date":"7/1/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":544,"Cost":509,"Date":"7/4/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":907,"Cost":774,"Date":"7/8/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":327,"Cost":172,"Date":"7/9/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":22,"Cost":17,"Date":"7/14/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":238,"Cost":131,"Date":"7/19/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":908,"Cost":820,"Date":"8/1/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":644,"Cost":422,"Date":"8/6/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":11,"Cost":7,"Date":"8/7/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":102,"Cost":84,"Date":"8/22/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":860,"Cost":475,"Date":"8/31/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":415,"Cost":228,"Date":"9/1/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":317,"Cost":290,"Date":"9/1/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":888,"Cost":811,"Date":"9/17/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":572,"Cost":426,"Date":"9/29/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":644,"Cost":357,"Date":"11/7/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":149,"Cost":84,"Date":"11/26/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":912,"Cost":630,"Date":"11/27/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":295,"Cost":280,"Date":"12/5/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":726,"Cost":388,"Date":"12/26/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":789,"Cost":660,"Date":"12/31/2020"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":632,"Cost":600,"Date":"1/20/2021"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":153,"Cost":98,"Date":"2/2/2021"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":877,"Cost":721,"Date":"2/8/2021"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":432,"Cost":374,"Date":"2/27/2021"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":328,"Cost":235,"Date":"3/1/2021"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":45,"Cost":25,"Date":"3/1/2021"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":57,"Cost":49,"Date":"3/19/2021"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":105,"Cost":81,"Date":"3/28/2021"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":806,"Cost":591,"Date":"5/21/2021"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":85,"Cost":45,"Date":"7/21/2021"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":504,"Cost":462,"Date":"8/5/2021"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":642,"Cost":443,"Date":"8/12/2021"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":310,"Cost":283,"Date":"8/21/2021"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":1,"Cost":1,"Date":"8/23/2021"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":329,"Cost":309,"Date":"9/3/2021"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":700,"Cost":406,"Date":"9/5/2021"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":155,"Cost":104,"Date":"10/6/2021"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":440,"Cost":307,"Date":"10/19/2021"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":615,"Cost":520,"Date":"11/15/2021"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":9,"Cost":4,"Date":"12/8/2021"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":164,"Cost":100,"Date":"1/8/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":621,"Cost":318,"Date":"1/14/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":354,"Cost":286,"Date":"1/19/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":348,"Cost":201,"Date":"1/28/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":840,"Cost":651,"Date":"1/31/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":528,"Cost":419,"Date":"3/27/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":489,"Cost":386,"Date":"4/20/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":548,"Cost":490,"Date":"4/24/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":741,"Cost":534,"Date":"4/28/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":548,"Cost":492,"Date":"5/15/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":263,"Cost":135,"Date":"5/16/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":859,"Cost":457,"Date":"5/18/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":264,"Cost":170,"Date":"6/2/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":868,"Cost":566,"Date":"6/3/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":371,"Cost":318,"Date":"6/5/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":103,"Cost":79,"Date":"6/7/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":127,"Cost":75,"Date":"6/14/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":183,"Cost":117,"Date":"6/20/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":75,"Cost":39,"Date":"6/24/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":137,"Cost":71,"Date":"7/4/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":504,"Cost":420,"Date":"7/9/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":71,"Cost":38,"Date":"7/12/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":214,"Cost":193,"Date":"8/14/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":602,"Cost":311,"Date":"8/16/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":476,"Cost":431,"Date":"8/23/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":573,"Cost":458,"Date":"9/2/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":209,"Cost":191,"Date":"9/3/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":255,"Cost":225,"Date":"9/16/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":671,"Cost":463,"Date":"10/4/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":909,"Cost":768,"Date":"11/1/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":311,"Cost":249,"Date":"11/2/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":149,"Cost":108,"Date":"12/17/2022"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":31,"Cost":28,"Date":"2/10/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":541,"Cost":295,"Date":"2/28/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":923,"Cost":486,"Date":"3/4/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":802,"Cost":728,"Date":"3/9/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":557,"Cost":491,"Date":"3/9/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":132,"Cost":101,"Date":"3/11/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":984,"Cost":811,"Date":"3/17/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":185,"Cost":128,"Date":"3/17/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":840,"Cost":716,"Date":"3/23/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":869,"Cost":481,"Date":"4/1/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":464,"Cost":370,"Date":"5/7/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":195,"Cost":112,"Date":"5/10/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":507,"Cost":477,"Date":"5/20/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":820,"Cost":425,"Date":"6/2/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":244,"Cost":228,"Date":"6/11/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":660,"Cost":541,"Date":"6/16/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":1000,"Cost":607,"Date":"6/16/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":411,"Cost":370,"Date":"7/10/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":906,"Cost":490,"Date":"7/11/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":338,"Cost":291,"Date":"8/28/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":918,"Cost":772,"Date":"8/29/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":957,"Cost":906,"Date":"8/31/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":525,"Cost":356,"Date":"9/8/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":89,"Cost":65,"Date":"9/13/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":250,"Cost":177,"Date":"9/14/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":388,"Cost":287,"Date":"9/19/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":389,"Cost":307,"Date":"9/25/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":939,"Cost":693,"Date":"10/4/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":138,"Cost":110,"Date":"10/10/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":991,"Cost":502,"Date":"10/17/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":923,"Cost":614,"Date":"10/28/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":89,"Cost":54,"Date":"10/30/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":18,"Cost":14,"Date":"11/1/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":689,"Cost":545,"Date":"11/15/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":697,"Cost":533,"Date":"11/25/2023"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":219,"Cost":160,"Date":"1/10/2024"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":396,"Cost":364,"Date":"1/14/2024"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":744,"Cost":546,"Date":"1/20/2024"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":223,"Cost":152,"Date":"2/8/2024"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":266,"Cost":181,"Date":"2/25/2024"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":403,"Cost":215,"Date":"3/7/2024"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":861,"Cost":770,"Date":"3/14/2024"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":510,"Cost":296,"Date":"3/27/2024"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":786,"Cost":507,"Date":"4/5/2024"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":916,"Cost":529,"Date":"4/14/2024"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":950,"Cost":677,"Date":"5/3/2024"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":661,"Cost":604,"Date":"5/9/2024"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":552,"Cost":436,"Date":"5/15/2024"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":829,"Cost":418,"Date":"5/25/2024"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":134,"Cost":111,"Date":"5/26/2024"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":637,"Cost":458,"Date":"5/31/2024"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":195,"Cost":153,"Date":"7/27/2024"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":244,"Cost":206,"Date":"9/17/2024"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":714,"Cost":674,"Date":"10/6/2024"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":912,"Cost":476,"Date":"10/8/2024"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":433,"Cost":249,"Date":"10/26/2024"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":363,"Cost":321,"Date":"11/16/2024"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":461,"Cost":392,"Date":"11/18/2024"},{"Store":"Cairns Central","Brand":"COS","Country":"Australia","Sale":256,"Cost":176,"Date":"12/1/2024"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":628,"Cost":569,"Date":"2/9/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":669,"Cost":541,"Date":"2/11/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":22,"Cost":14,"Date":"3/10/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":135,"Cost":126,"Date":"3/16/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":701,"Cost":655,"Date":"3/18/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":849,"Cost":776,"Date":"3/20/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":526,"Cost":409,"Date":"3/26/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":207,"Cost":179,"Date":"6/2/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":242,"Cost":175,"Date":"6/10/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":144,"Cost":77,"Date":"6/16/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":28,"Cost":17,"Date":"6/25/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":423,"Cost":212,"Date":"7/19/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":323,"Cost":174,"Date":"7/21/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":281,"Cost":263,"Date":"7/25/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":966,"Cost":522,"Date":"8/4/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":586,"Cost":413,"Date":"9/2/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":462,"Cost":382,"Date":"9/4/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":480,"Cost":329,"Date":"9/19/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":693,"Cost":589,"Date":"9/29/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":90,"Cost":76,"Date":"10/2/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":181,"Cost":167,"Date":"10/15/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":535,"Cost":419,"Date":"10/30/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":3,"Cost":3,"Date":"11/9/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":275,"Cost":200,"Date":"11/23/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":847,"Cost":659,"Date":"11/30/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":392,"Cost":199,"Date":"12/8/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":106,"Cost":74,"Date":"12/11/2018"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":594,"Cost":556,"Date":"1/15/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":87,"Cost":54,"Date":"1/24/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":477,"Cost":453,"Date":"2/3/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":559,"Cost":311,"Date":"2/4/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":495,"Cost":435,"Date":"3/9/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":41,"Cost":22,"Date":"3/12/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":704,"Cost":437,"Date":"4/19/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":914,"Cost":670,"Date":"5/3/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":622,"Cost":556,"Date":"5/4/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":633,"Cost":356,"Date":"6/8/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":505,"Cost":268,"Date":"6/26/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":555,"Cost":350,"Date":"7/4/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":464,"Cost":368,"Date":"7/13/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":173,"Cost":123,"Date":"8/8/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":511,"Cost":256,"Date":"8/26/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":960,"Cost":735,"Date":"9/2/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":115,"Cost":79,"Date":"9/29/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":590,"Cost":495,"Date":"10/12/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":684,"Cost":374,"Date":"11/2/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":169,"Cost":122,"Date":"11/4/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":271,"Cost":244,"Date":"11/7/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":356,"Cost":183,"Date":"12/1/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":240,"Cost":203,"Date":"12/4/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":247,"Cost":204,"Date":"12/7/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":676,"Cost":602,"Date":"12/18/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":885,"Cost":771,"Date":"12/20/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":965,"Cost":751,"Date":"12/20/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":215,"Cost":136,"Date":"12/21/2019"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":431,"Cost":219,"Date":"1/9/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":524,"Cost":401,"Date":"2/5/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":54,"Cost":44,"Date":"2/16/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":698,"Cost":476,"Date":"2/16/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":724,"Cost":608,"Date":"2/18/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":258,"Cost":232,"Date":"2/22/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":908,"Cost":667,"Date":"2/25/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":520,"Cost":451,"Date":"3/8/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":479,"Cost":389,"Date":"4/2/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":284,"Cost":149,"Date":"4/3/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":555,"Cost":336,"Date":"4/9/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":189,"Cost":171,"Date":"4/10/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":428,"Cost":356,"Date":"4/19/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":661,"Cost":551,"Date":"5/17/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":921,"Cost":599,"Date":"5/22/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":108,"Cost":94,"Date":"6/20/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":374,"Cost":295,"Date":"7/1/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":260,"Cost":201,"Date":"7/4/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":599,"Cost":333,"Date":"7/8/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":165,"Cost":106,"Date":"7/9/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":440,"Cost":336,"Date":"7/14/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":234,"Cost":125,"Date":"7/19/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":601,"Cost":565,"Date":"8/1/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":735,"Cost":534,"Date":"8/6/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":989,"Cost":914,"Date":"8/7/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":487,"Cost":266,"Date":"8/22/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":101,"Cost":53,"Date":"8/31/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":298,"Cost":253,"Date":"9/1/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":284,"Cost":265,"Date":"9/1/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":640,"Cost":461,"Date":"9/17/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":606,"Cost":380,"Date":"9/29/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":975,"Cost":818,"Date":"11/7/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":501,"Cost":389,"Date":"11/26/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":578,"Cost":495,"Date":"11/27/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":207,"Cost":158,"Date":"12/5/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":760,"Cost":394,"Date":"12/26/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":286,"Cost":260,"Date":"12/31/2020"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":328,"Cost":202,"Date":"1/20/2021"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":16,"Cost":14,"Date":"2/2/2021"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":719,"Cost":536,"Date":"2/8/2021"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":346,"Cost":215,"Date":"2/27/2021"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":52,"Cost":35,"Date":"3/1/2021"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":520,"Cost":276,"Date":"3/1/2021"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":630,"Cost":393,"Date":"3/19/2021"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":773,"Cost":387,"Date":"3/28/2021"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":91,"Cost":58,"Date":"5/21/2021"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":169,"Cost":136,"Date":"7/21/2021"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":937,"Cost":534,"Date":"8/5/2021"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":599,"Cost":557,"Date":"8/12/2021"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":344,"Cost":186,"Date":"8/21/2021"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":338,"Cost":254,"Date":"8/23/2021"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":350,"Cost":234,"Date":"9/3/2021"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":922,"Cost":563,"Date":"9/5/2021"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":51,"Cost":34,"Date":"10/6/2021"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":526,"Cost":458,"Date":"10/19/2021"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":143,"Cost":78,"Date":"11/15/2021"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":753,"Cost":496,"Date":"12/8/2021"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":432,"Cost":239,"Date":"1/8/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":160,"Cost":100,"Date":"1/14/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":150,"Cost":81,"Date":"1/19/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":48,"Cost":45,"Date":"1/28/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":64,"Cost":52,"Date":"1/31/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":17,"Cost":12,"Date":"3/27/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":602,"Cost":513,"Date":"4/20/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":306,"Cost":222,"Date":"4/24/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":22,"Cost":16,"Date":"4/28/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":807,"Cost":704,"Date":"5/15/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":482,"Cost":453,"Date":"5/16/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":923,"Cost":497,"Date":"5/18/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":405,"Cost":326,"Date":"6/2/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":618,"Cost":539,"Date":"6/3/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":719,"Cost":490,"Date":"6/5/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":345,"Cost":187,"Date":"6/7/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":170,"Cost":116,"Date":"6/14/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":749,"Cost":511,"Date":"6/20/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":378,"Cost":243,"Date":"6/24/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":903,"Cost":609,"Date":"7/4/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":963,"Cost":782,"Date":"7/9/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":598,"Cost":475,"Date":"7/12/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":467,"Cost":348,"Date":"8/14/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":5,"Cost":3,"Date":"8/16/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":969,"Cost":694,"Date":"8/23/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":390,"Cost":288,"Date":"9/2/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":280,"Cost":166,"Date":"9/3/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":896,"Cost":516,"Date":"9/16/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":217,"Cost":146,"Date":"10/4/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":232,"Cost":200,"Date":"11/1/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":81,"Cost":60,"Date":"11/2/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":389,"Cost":340,"Date":"12/17/2022"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":789,"Cost":566,"Date":"2/10/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":714,"Cost":640,"Date":"2/28/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":200,"Cost":129,"Date":"3/4/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":414,"Cost":347,"Date":"3/9/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":929,"Cost":676,"Date":"3/9/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":96,"Cost":50,"Date":"3/11/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":461,"Cost":312,"Date":"3/17/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":321,"Cost":204,"Date":"3/17/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":133,"Cost":91,"Date":"3/23/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":708,"Cost":426,"Date":"4/1/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":217,"Cost":144,"Date":"5/7/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":456,"Cost":401,"Date":"5/10/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":709,"Cost":557,"Date":"5/20/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":597,"Cost":426,"Date":"6/2/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":996,"Cost":574,"Date":"6/11/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":606,"Cost":569,"Date":"6/16/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":522,"Cost":286,"Date":"6/16/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":816,"Cost":774,"Date":"7/10/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":50,"Cost":32,"Date":"7/11/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":641,"Cost":405,"Date":"8/28/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":790,"Cost":462,"Date":"8/29/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":325,"Cost":228,"Date":"8/31/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":302,"Cost":206,"Date":"9/8/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":858,"Cost":623,"Date":"9/13/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":76,"Cost":71,"Date":"9/14/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":492,"Cost":247,"Date":"9/19/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":527,"Cost":327,"Date":"9/25/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":107,"Cost":56,"Date":"10/4/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":834,"Cost":478,"Date":"10/10/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":729,"Cost":404,"Date":"10/17/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":205,"Cost":125,"Date":"10/28/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":532,"Cost":325,"Date":"10/30/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":85,"Cost":50,"Date":"11/1/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":14,"Cost":10,"Date":"11/15/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":180,"Cost":159,"Date":"11/25/2023"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":685,"Cost":344,"Date":"1/10/2024"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":656,"Cost":580,"Date":"1/14/2024"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":620,"Cost":546,"Date":"1/20/2024"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":529,"Cost":270,"Date":"2/8/2024"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":47,"Cost":27,"Date":"2/25/2024"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":636,"Cost":408,"Date":"3/7/2024"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":280,"Cost":249,"Date":"3/14/2024"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":739,"Cost":487,"Date":"3/27/2024"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":362,"Cost":320,"Date":"4/5/2024"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":497,"Cost":321,"Date":"4/14/2024"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":294,"Cost":246,"Date":"5/3/2024"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":719,"Cost":547,"Date":"5/9/2024"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":790,"Cost":428,"Date":"5/15/2024"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":607,"Cost":525,"Date":"5/25/2024"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":160,"Cost":112,"Date":"5/26/2024"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":145,"Cost":125,"Date":"5/31/2024"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":497,"Cost":435,"Date":"7/27/2024"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":134,"Cost":112,"Date":"9/17/2024"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":75,"Cost":62,"Date":"10/6/2024"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":733,"Cost":640,"Date":"10/8/2024"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":405,"Cost":255,"Date":"10/26/2024"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":821,"Cost":516,"Date":"11/16/2024"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":783,"Cost":396,"Date":"11/18/2024"},{"Store":"Stockland Cairns","Brand":"HM Home","Country":"Australia","Sale":380,"Cost":234,"Date":"12/1/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":10,"Cost":10,"Date":"2/9/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":552,"Cost":376,"Date":"2/11/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":133,"Cost":70,"Date":"3/10/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":569,"Cost":381,"Date":"3/16/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":310,"Cost":212,"Date":"3/18/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":549,"Cost":282,"Date":"3/20/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":49,"Cost":35,"Date":"3/26/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":637,"Cost":490,"Date":"6/2/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":550,"Cost":405,"Date":"6/10/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":165,"Cost":153,"Date":"6/16/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":890,"Cost":617,"Date":"6/25/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":81,"Cost":65,"Date":"7/19/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":723,"Cost":598,"Date":"7/21/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":665,"Cost":380,"Date":"7/25/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":257,"Cost":163,"Date":"8/4/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":484,"Cost":274,"Date":"9/2/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":767,"Cost":475,"Date":"9/4/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":262,"Cost":216,"Date":"9/19/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":382,"Cost":265,"Date":"9/29/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":112,"Cost":76,"Date":"10/2/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":695,"Cost":462,"Date":"10/15/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":697,"Cost":464,"Date":"10/30/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":347,"Cost":188,"Date":"11/9/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":596,"Cost":404,"Date":"11/23/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":543,"Cost":296,"Date":"11/30/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":433,"Cost":251,"Date":"12/8/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":236,"Cost":134,"Date":"12/11/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":200,"Cost":157,"Date":"1/15/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":635,"Cost":597,"Date":"1/24/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":85,"Cost":73,"Date":"2/3/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":552,"Cost":375,"Date":"2/4/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":718,"Cost":534,"Date":"3/9/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":552,"Cost":462,"Date":"3/12/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":628,"Cost":396,"Date":"4/19/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":502,"Cost":450,"Date":"5/3/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":347,"Cost":205,"Date":"5/4/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":425,"Cost":295,"Date":"6/8/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":18,"Cost":17,"Date":"6/26/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":641,"Cost":571,"Date":"7/4/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":635,"Cost":409,"Date":"7/13/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":901,"Cost":477,"Date":"8/8/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":160,"Cost":96,"Date":"8/26/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":725,"Cost":689,"Date":"9/2/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":686,"Cost":395,"Date":"9/29/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":235,"Cost":222,"Date":"10/12/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":766,"Cost":606,"Date":"11/2/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":56,"Cost":42,"Date":"11/4/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":380,"Cost":266,"Date":"11/7/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":604,"Cost":496,"Date":"12/1/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":878,"Cost":490,"Date":"12/4/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":742,"Cost":593,"Date":"12/7/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":731,"Cost":416,"Date":"12/18/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":722,"Cost":681,"Date":"12/20/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":697,"Cost":577,"Date":"12/20/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":475,"Cost":367,"Date":"12/21/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":270,"Cost":156,"Date":"1/9/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":99,"Cost":93,"Date":"2/5/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":305,"Cost":210,"Date":"2/16/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":800,"Cost":741,"Date":"2/16/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":767,"Cost":468,"Date":"2/18/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":571,"Cost":515,"Date":"2/22/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":744,"Cost":457,"Date":"2/25/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":847,"Cost":804,"Date":"3/8/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":225,"Cost":185,"Date":"4/2/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":962,"Cost":712,"Date":"4/3/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":113,"Cost":94,"Date":"4/9/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":909,"Cost":741,"Date":"4/10/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":560,"Cost":427,"Date":"4/19/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":862,"Cost":626,"Date":"5/17/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":229,"Cost":190,"Date":"5/22/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":604,"Cost":366,"Date":"6/20/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":897,"Cost":787,"Date":"7/1/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":765,"Cost":564,"Date":"7/4/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":117,"Cost":76,"Date":"7/8/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":166,"Cost":91,"Date":"7/9/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":406,"Cost":262,"Date":"7/14/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":644,"Cost":498,"Date":"7/19/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":109,"Cost":92,"Date":"8/1/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":892,"Cost":844,"Date":"8/6/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":953,"Cost":759,"Date":"8/7/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":577,"Cost":309,"Date":"8/22/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":239,"Cost":222,"Date":"8/31/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":275,"Cost":243,"Date":"9/1/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":823,"Cost":539,"Date":"9/1/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":440,"Cost":375,"Date":"9/17/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":897,"Cost":594,"Date":"9/29/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":551,"Cost":370,"Date":"11/7/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":441,"Cost":366,"Date":"11/26/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":541,"Cost":310,"Date":"11/27/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":152,"Cost":116,"Date":"12/5/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":779,"Cost":420,"Date":"12/26/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":526,"Cost":296,"Date":"12/31/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":460,"Cost":269,"Date":"1/20/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":306,"Cost":238,"Date":"2/2/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":54,"Cost":39,"Date":"2/8/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":973,"Cost":853,"Date":"2/27/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":676,"Cost":463,"Date":"3/1/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":487,"Cost":340,"Date":"3/1/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":957,"Cost":790,"Date":"3/19/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":160,"Cost":109,"Date":"3/28/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":452,"Cost":279,"Date":"5/21/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":497,"Cost":368,"Date":"7/21/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":414,"Cost":388,"Date":"8/5/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":304,"Cost":229,"Date":"8/12/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":313,"Cost":231,"Date":"8/21/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":107,"Cost":77,"Date":"8/23/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":119,"Cost":66,"Date":"9/3/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":468,"Cost":346,"Date":"9/5/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":280,"Cost":186,"Date":"10/6/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":11,"Cost":7,"Date":"10/19/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":525,"Cost":423,"Date":"11/15/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":274,"Cost":168,"Date":"12/8/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":734,"Cost":416,"Date":"1/8/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":442,"Cost":324,"Date":"1/14/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":899,"Cost":520,"Date":"1/19/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":932,"Cost":752,"Date":"1/28/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":505,"Cost":333,"Date":"1/31/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":647,"Cost":381,"Date":"3/27/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":311,"Cost":232,"Date":"4/20/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":286,"Cost":150,"Date":"4/24/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":763,"Cost":681,"Date":"4/28/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":747,"Cost":424,"Date":"5/15/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":999,"Cost":788,"Date":"5/16/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":754,"Cost":481,"Date":"5/18/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":355,"Cost":331,"Date":"6/2/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":581,"Cost":331,"Date":"6/3/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":195,"Cost":175,"Date":"6/5/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":618,"Cost":521,"Date":"6/7/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":610,"Cost":563,"Date":"6/14/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":614,"Cost":426,"Date":"6/20/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":370,"Cost":289,"Date":"6/24/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":961,"Cost":851,"Date":"7/4/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":400,"Cost":253,"Date":"7/9/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":173,"Cost":101,"Date":"7/12/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":275,"Cost":249,"Date":"8/14/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":376,"Cost":270,"Date":"8/16/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":182,"Cost":164,"Date":"8/23/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":436,"Cost":394,"Date":"9/2/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":629,"Cost":370,"Date":"9/3/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":279,"Cost":147,"Date":"9/16/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":230,"Cost":186,"Date":"10/4/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":434,"Cost":280,"Date":"11/1/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":725,"Cost":597,"Date":"11/2/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":194,"Cost":175,"Date":"12/17/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":101,"Cost":57,"Date":"2/10/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":794,"Cost":621,"Date":"2/28/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":112,"Cost":76,"Date":"3/4/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":250,"Cost":234,"Date":"3/9/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":339,"Cost":250,"Date":"3/9/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":380,"Cost":327,"Date":"3/11/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":788,"Cost":667,"Date":"3/17/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":984,"Cost":853,"Date":"3/17/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":946,"Cost":855,"Date":"3/23/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":268,"Cost":245,"Date":"4/1/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":637,"Cost":363,"Date":"5/7/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":966,"Cost":580,"Date":"5/10/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":967,"Cost":756,"Date":"5/20/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":587,"Cost":338,"Date":"6/2/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":270,"Cost":226,"Date":"6/11/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":131,"Cost":115,"Date":"6/16/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":663,"Cost":487,"Date":"6/16/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":334,"Cost":217,"Date":"7/10/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":538,"Cost":460,"Date":"7/11/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":553,"Cost":292,"Date":"8/28/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":924,"Cost":670,"Date":"8/29/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":498,"Cost":442,"Date":"8/31/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":897,"Cost":646,"Date":"9/8/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":903,"Cost":685,"Date":"9/13/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":958,"Cost":607,"Date":"9/14/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":188,"Cost":143,"Date":"9/19/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":720,"Cost":497,"Date":"9/25/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":341,"Cost":323,"Date":"10/4/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":717,"Cost":380,"Date":"10/10/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":288,"Cost":255,"Date":"10/17/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":200,"Cost":132,"Date":"10/28/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":880,"Cost":512,"Date":"10/30/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":802,"Cost":709,"Date":"11/1/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":885,"Cost":799,"Date":"11/15/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":398,"Cost":207,"Date":"11/25/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":478,"Cost":414,"Date":"1/10/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":264,"Cost":175,"Date":"1/14/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":331,"Cost":263,"Date":"1/20/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":214,"Cost":165,"Date":"2/8/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":246,"Cost":190,"Date":"2/25/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":318,"Cost":242,"Date":"3/7/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":175,"Cost":161,"Date":"3/14/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":435,"Cost":312,"Date":"3/27/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":805,"Cost":650,"Date":"4/5/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":505,"Cost":358,"Date":"4/14/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":35,"Cost":26,"Date":"5/3/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":202,"Cost":191,"Date":"5/9/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":404,"Cost":326,"Date":"5/15/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":821,"Cost":469,"Date":"5/25/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":215,"Cost":163,"Date":"5/26/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":33,"Cost":20,"Date":"5/31/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":780,"Cost":580,"Date":"7/27/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":284,"Cost":149,"Date":"9/17/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":940,"Cost":840,"Date":"10/6/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":493,"Cost":361,"Date":"10/8/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":510,"Cost":395,"Date":"10/26/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":689,"Cost":442,"Date":"11/16/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":1,"Cost":1,"Date":"11/18/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":539,"Cost":335,"Date":"12/1/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":498,"Cost":450,"Date":"2/9/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":277,"Cost":228,"Date":"2/11/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":375,"Cost":253,"Date":"3/10/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":849,"Cost":629,"Date":"3/16/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":891,"Cost":614,"Date":"3/18/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":27,"Cost":24,"Date":"3/20/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":262,"Cost":158,"Date":"3/26/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":246,"Cost":187,"Date":"6/2/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":754,"Cost":690,"Date":"6/10/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":714,"Cost":450,"Date":"6/16/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":275,"Cost":256,"Date":"6/25/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":771,"Cost":428,"Date":"7/19/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":109,"Cost":93,"Date":"7/21/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":746,"Cost":611,"Date":"7/25/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":853,"Cost":753,"Date":"8/4/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":545,"Cost":511,"Date":"9/2/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":244,"Cost":176,"Date":"9/4/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":177,"Cost":100,"Date":"9/19/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":857,"Cost":778,"Date":"9/29/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":969,"Cost":655,"Date":"10/2/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":161,"Cost":134,"Date":"10/15/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":331,"Cost":187,"Date":"10/30/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":327,"Cost":177,"Date":"11/9/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":562,"Cost":307,"Date":"11/23/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":288,"Cost":253,"Date":"11/30/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":947,"Cost":509,"Date":"12/8/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":51,"Cost":29,"Date":"12/11/2018"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":127,"Cost":81,"Date":"1/15/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":178,"Cost":109,"Date":"1/24/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":732,"Cost":533,"Date":"2/3/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":676,"Cost":358,"Date":"2/4/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":536,"Cost":363,"Date":"3/9/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":939,"Cost":553,"Date":"3/12/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":437,"Cost":399,"Date":"4/19/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":248,"Cost":231,"Date":"5/3/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":434,"Cost":366,"Date":"5/4/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":720,"Cost":503,"Date":"6/8/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":105,"Cost":75,"Date":"6/26/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":990,"Cost":745,"Date":"7/4/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":565,"Cost":492,"Date":"7/13/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":771,"Cost":552,"Date":"8/8/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":117,"Cost":101,"Date":"8/26/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":705,"Cost":585,"Date":"9/2/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":413,"Cost":241,"Date":"9/29/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":613,"Cost":404,"Date":"10/12/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":177,"Cost":98,"Date":"11/2/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":344,"Cost":258,"Date":"11/4/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":695,"Cost":524,"Date":"11/7/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":156,"Cost":91,"Date":"12/1/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":429,"Cost":291,"Date":"12/4/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":35,"Cost":21,"Date":"12/7/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":163,"Cost":124,"Date":"12/18/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":295,"Cost":260,"Date":"12/20/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":514,"Cost":267,"Date":"12/20/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":249,"Cost":180,"Date":"12/21/2019"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":863,"Cost":536,"Date":"1/9/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":944,"Cost":675,"Date":"2/5/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":181,"Cost":169,"Date":"2/16/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":691,"Cost":559,"Date":"2/16/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":788,"Cost":707,"Date":"2/18/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":803,"Cost":470,"Date":"2/22/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":531,"Cost":423,"Date":"2/25/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":553,"Cost":447,"Date":"3/8/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":178,"Cost":101,"Date":"4/2/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":612,"Cost":383,"Date":"4/3/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":425,"Cost":220,"Date":"4/9/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":793,"Cost":710,"Date":"4/10/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":546,"Cost":388,"Date":"4/19/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":131,"Cost":109,"Date":"5/17/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":279,"Cost":187,"Date":"5/22/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":674,"Cost":340,"Date":"6/20/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":782,"Cost":560,"Date":"7/1/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":147,"Cost":120,"Date":"7/4/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":891,"Cost":546,"Date":"7/8/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":908,"Cost":837,"Date":"7/9/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":866,"Cost":502,"Date":"7/14/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":940,"Cost":868,"Date":"7/19/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":748,"Cost":546,"Date":"8/1/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":303,"Cost":265,"Date":"8/6/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":764,"Cost":694,"Date":"8/7/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":906,"Cost":595,"Date":"8/22/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":163,"Cost":100,"Date":"8/31/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":670,"Cost":604,"Date":"9/1/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":9,"Cost":8,"Date":"9/1/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":286,"Cost":177,"Date":"9/17/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":415,"Cost":307,"Date":"9/29/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":55,"Cost":40,"Date":"11/7/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":825,"Cost":730,"Date":"11/26/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":950,"Cost":669,"Date":"11/27/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":853,"Cost":431,"Date":"12/5/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":50,"Cost":40,"Date":"12/26/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":783,"Cost":451,"Date":"12/31/2020"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":599,"Cost":473,"Date":"1/20/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":997,"Cost":821,"Date":"2/2/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":644,"Cost":597,"Date":"2/8/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":641,"Cost":608,"Date":"2/27/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":506,"Cost":356,"Date":"3/1/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":785,"Cost":648,"Date":"3/1/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":453,"Cost":360,"Date":"3/19/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":398,"Cost":361,"Date":"3/28/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":303,"Cost":263,"Date":"5/21/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":633,"Cost":416,"Date":"7/21/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":619,"Cost":481,"Date":"8/5/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":213,"Cost":177,"Date":"8/12/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":89,"Cost":57,"Date":"8/21/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":937,"Cost":636,"Date":"8/23/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":936,"Cost":648,"Date":"9/3/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":626,"Cost":421,"Date":"9/5/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":151,"Cost":79,"Date":"10/6/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":924,"Cost":592,"Date":"10/19/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":21,"Cost":11,"Date":"11/15/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":220,"Cost":209,"Date":"12/8/2021"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":180,"Cost":119,"Date":"1/8/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":694,"Cost":457,"Date":"1/14/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":939,"Cost":786,"Date":"1/19/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":182,"Cost":152,"Date":"1/28/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":538,"Cost":496,"Date":"1/31/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":116,"Cost":108,"Date":"3/27/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":482,"Cost":308,"Date":"4/20/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":250,"Cost":184,"Date":"4/24/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":96,"Cost":72,"Date":"4/28/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":494,"Cost":393,"Date":"5/15/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":967,"Cost":610,"Date":"5/16/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":213,"Cost":157,"Date":"5/18/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":59,"Cost":51,"Date":"6/2/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":209,"Cost":128,"Date":"6/3/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":919,"Cost":519,"Date":"6/5/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":832,"Cost":492,"Date":"6/7/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":961,"Cost":721,"Date":"6/14/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":682,"Cost":441,"Date":"6/20/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":821,"Cost":518,"Date":"6/24/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":836,"Cost":432,"Date":"7/4/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":488,"Cost":420,"Date":"7/9/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":421,"Cost":273,"Date":"7/12/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":800,"Cost":682,"Date":"8/14/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":721,"Cost":503,"Date":"8/16/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":751,"Cost":431,"Date":"8/23/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":762,"Cost":479,"Date":"9/2/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":259,"Cost":219,"Date":"9/3/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":708,"Cost":518,"Date":"9/16/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":70,"Cost":52,"Date":"10/4/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":363,"Cost":206,"Date":"11/1/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":867,"Cost":704,"Date":"11/2/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":441,"Cost":257,"Date":"12/17/2022"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":463,"Cost":400,"Date":"2/10/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":375,"Cost":303,"Date":"2/28/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":533,"Cost":447,"Date":"3/4/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":329,"Cost":257,"Date":"3/9/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":817,"Cost":602,"Date":"3/9/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":58,"Cost":50,"Date":"3/11/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":54,"Cost":29,"Date":"3/17/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":782,"Cost":532,"Date":"3/17/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":996,"Cost":939,"Date":"3/23/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":624,"Cost":537,"Date":"4/1/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":596,"Cost":333,"Date":"5/7/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":329,"Cost":195,"Date":"5/10/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":732,"Cost":436,"Date":"5/20/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":973,"Cost":641,"Date":"6/2/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":304,"Cost":191,"Date":"6/11/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":968,"Cost":618,"Date":"6/16/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":630,"Cost":549,"Date":"6/16/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":385,"Cost":287,"Date":"7/10/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":214,"Cost":161,"Date":"7/11/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":171,"Cost":138,"Date":"8/28/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":701,"Cost":626,"Date":"8/29/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":348,"Cost":229,"Date":"8/31/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":864,"Cost":739,"Date":"9/8/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":135,"Cost":85,"Date":"9/13/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":438,"Cost":251,"Date":"9/14/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":620,"Cost":418,"Date":"9/19/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":21,"Cost":15,"Date":"9/25/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":497,"Cost":282,"Date":"10/4/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":212,"Cost":132,"Date":"10/10/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":260,"Cost":201,"Date":"10/17/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":559,"Cost":339,"Date":"10/28/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":49,"Cost":25,"Date":"10/30/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":417,"Cost":276,"Date":"11/1/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":774,"Cost":465,"Date":"11/15/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":81,"Cost":58,"Date":"11/25/2023"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":581,"Cost":437,"Date":"1/10/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":462,"Cost":253,"Date":"1/14/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":849,"Cost":589,"Date":"1/20/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":941,"Cost":650,"Date":"2/8/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":329,"Cost":242,"Date":"2/25/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":65,"Cost":48,"Date":"3/7/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":314,"Cost":221,"Date":"3/14/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":898,"Cost":845,"Date":"3/27/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":93,"Cost":68,"Date":"4/5/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":129,"Cost":73,"Date":"4/14/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":445,"Cost":304,"Date":"5/3/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":372,"Cost":291,"Date":"5/9/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":985,"Cost":698,"Date":"5/15/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":999,"Cost":927,"Date":"5/25/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":200,"Cost":157,"Date":"5/26/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":274,"Cost":197,"Date":"5/31/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":611,"Cost":315,"Date":"7/27/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":212,"Cost":123,"Date":"9/17/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":28,"Cost":14,"Date":"10/6/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":642,"Cost":333,"Date":"10/8/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":897,"Cost":817,"Date":"10/26/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":934,"Cost":800,"Date":"11/16/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":953,"Cost":902,"Date":"11/18/2024"},{"Store":"Stockland Cairns","Brand":"COS","Country":"Australia","Sale":21,"Cost":14,"Date":"12/1/2024"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":669,"Cost":412,"Date":"2/9/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":898,"Cost":738,"Date":"2/11/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":942,"Cost":534,"Date":"3/10/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":74,"Cost":54,"Date":"3/16/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":903,"Cost":797,"Date":"3/18/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":429,"Cost":298,"Date":"3/20/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":159,"Cost":127,"Date":"3/26/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":881,"Cost":474,"Date":"6/2/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":83,"Cost":52,"Date":"6/10/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":443,"Cost":354,"Date":"6/16/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":730,"Cost":454,"Date":"6/25/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":36,"Cost":30,"Date":"7/19/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":611,"Cost":568,"Date":"7/21/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":131,"Cost":82,"Date":"7/25/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":597,"Cost":414,"Date":"8/4/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":29,"Cost":18,"Date":"9/2/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":852,"Cost":745,"Date":"9/4/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":498,"Cost":340,"Date":"9/19/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":420,"Cost":246,"Date":"9/29/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":282,"Cost":185,"Date":"10/2/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":64,"Cost":60,"Date":"10/15/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":524,"Cost":465,"Date":"10/30/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":331,"Cost":273,"Date":"11/9/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":371,"Cost":236,"Date":"11/23/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":925,"Cost":769,"Date":"11/30/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":169,"Cost":129,"Date":"12/8/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":840,"Cost":432,"Date":"12/11/2018"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":429,"Cost":370,"Date":"1/15/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":189,"Cost":110,"Date":"1/24/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":150,"Cost":100,"Date":"2/3/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":418,"Cost":249,"Date":"2/4/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":335,"Cost":189,"Date":"3/9/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":304,"Cost":227,"Date":"3/12/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":515,"Cost":342,"Date":"4/19/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":706,"Cost":507,"Date":"5/3/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":908,"Cost":531,"Date":"5/4/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":801,"Cost":645,"Date":"6/8/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":738,"Cost":436,"Date":"6/26/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":216,"Cost":182,"Date":"7/4/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":606,"Cost":518,"Date":"7/13/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":381,"Cost":200,"Date":"8/8/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":512,"Cost":315,"Date":"8/26/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":426,"Cost":332,"Date":"9/2/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":823,"Cost":464,"Date":"9/29/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":779,"Cost":711,"Date":"10/12/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":769,"Cost":454,"Date":"11/2/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":253,"Cost":148,"Date":"11/4/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":581,"Cost":397,"Date":"11/7/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":934,"Cost":816,"Date":"12/1/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":446,"Cost":330,"Date":"12/4/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":149,"Cost":83,"Date":"12/7/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":101,"Cost":76,"Date":"12/18/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":668,"Cost":424,"Date":"12/20/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":43,"Cost":22,"Date":"12/20/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":568,"Cost":334,"Date":"12/21/2019"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":201,"Cost":115,"Date":"1/9/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":845,"Cost":679,"Date":"2/5/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":945,"Cost":766,"Date":"2/16/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":448,"Cost":273,"Date":"2/16/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":863,"Cost":483,"Date":"2/18/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":913,"Cost":792,"Date":"2/22/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":568,"Cost":459,"Date":"2/25/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":108,"Cost":61,"Date":"3/8/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":696,"Cost":359,"Date":"4/2/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":713,"Cost":514,"Date":"4/3/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":641,"Cost":470,"Date":"4/9/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":44,"Cost":41,"Date":"4/10/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":300,"Cost":205,"Date":"4/19/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":749,"Cost":473,"Date":"5/17/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":24,"Cost":21,"Date":"5/22/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":603,"Cost":317,"Date":"6/20/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":952,"Cost":561,"Date":"7/1/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":597,"Cost":326,"Date":"7/4/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":76,"Cost":40,"Date":"7/8/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":580,"Cost":295,"Date":"7/9/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":906,"Cost":757,"Date":"7/14/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":619,"Cost":581,"Date":"7/19/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":474,"Cost":267,"Date":"8/1/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":321,"Cost":227,"Date":"8/6/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":304,"Cost":255,"Date":"8/7/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":942,"Cost":703,"Date":"8/22/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":55,"Cost":39,"Date":"8/31/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":976,"Cost":701,"Date":"9/1/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":287,"Cost":226,"Date":"9/1/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":847,"Cost":746,"Date":"9/17/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":953,"Cost":700,"Date":"9/29/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":391,"Cost":315,"Date":"11/7/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":563,"Cost":449,"Date":"11/26/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":48,"Cost":45,"Date":"11/27/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":386,"Cost":320,"Date":"12/5/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":433,"Cost":392,"Date":"12/26/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":933,"Cost":473,"Date":"12/31/2020"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":476,"Cost":334,"Date":"1/20/2021"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":465,"Cost":260,"Date":"2/2/2021"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":84,"Cost":63,"Date":"2/8/2021"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":204,"Cost":136,"Date":"2/27/2021"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":412,"Cost":355,"Date":"3/1/2021"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":631,"Cost":538,"Date":"3/1/2021"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":446,"Cost":359,"Date":"3/19/2021"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":315,"Cost":294,"Date":"3/28/2021"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":924,"Cost":676,"Date":"5/21/2021"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":277,"Cost":241,"Date":"7/21/2021"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":138,"Cost":82,"Date":"8/5/2021"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":686,"Cost":420,"Date":"8/12/2021"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":685,"Cost":358,"Date":"8/21/2021"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":701,"Cost":564,"Date":"8/23/2021"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":689,"Cost":461,"Date":"9/3/2021"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":345,"Cost":192,"Date":"9/5/2021"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":449,"Cost":367,"Date":"10/6/2021"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":558,"Cost":419,"Date":"10/19/2021"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":206,"Cost":129,"Date":"11/15/2021"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":979,"Cost":644,"Date":"12/8/2021"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":620,"Cost":382,"Date":"1/8/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":426,"Cost":299,"Date":"1/14/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":33,"Cost":17,"Date":"1/19/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":146,"Cost":110,"Date":"1/28/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":510,"Cost":459,"Date":"1/31/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":314,"Cost":225,"Date":"3/27/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":527,"Cost":320,"Date":"4/20/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":180,"Cost":96,"Date":"4/24/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":87,"Cost":82,"Date":"4/28/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":998,"Cost":839,"Date":"5/15/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":773,"Cost":392,"Date":"5/16/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":871,"Cost":437,"Date":"5/18/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":615,"Cost":523,"Date":"6/2/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":338,"Cost":290,"Date":"6/3/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":42,"Cost":37,"Date":"6/5/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":751,"Cost":387,"Date":"6/7/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":299,"Cost":272,"Date":"6/14/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":149,"Cost":82,"Date":"6/20/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":41,"Cost":28,"Date":"6/24/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":640,"Cost":340,"Date":"7/4/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":129,"Cost":121,"Date":"7/9/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":16,"Cost":11,"Date":"7/12/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":272,"Cost":148,"Date":"8/14/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":321,"Cost":301,"Date":"8/16/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":588,"Cost":427,"Date":"8/23/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":367,"Cost":334,"Date":"9/2/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":10,"Cost":9,"Date":"9/3/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":723,"Cost":384,"Date":"9/16/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":58,"Cost":36,"Date":"10/4/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":570,"Cost":376,"Date":"11/1/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":989,"Cost":497,"Date":"11/2/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":312,"Cost":211,"Date":"12/17/2022"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":416,"Cost":382,"Date":"2/10/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":490,"Cost":340,"Date":"2/28/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":676,"Cost":502,"Date":"3/4/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":766,"Cost":471,"Date":"3/9/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":513,"Cost":398,"Date":"3/9/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":798,"Cost":583,"Date":"3/11/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":784,"Cost":437,"Date":"3/17/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":660,"Cost":462,"Date":"3/17/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":477,"Cost":442,"Date":"3/23/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":742,"Cost":458,"Date":"4/1/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":495,"Cost":467,"Date":"5/7/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":5,"Cost":4,"Date":"5/10/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":986,"Cost":610,"Date":"5/20/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":720,"Cost":464,"Date":"6/2/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":546,"Cost":397,"Date":"6/11/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":892,"Cost":548,"Date":"6/16/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":361,"Cost":259,"Date":"6/16/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":974,"Cost":593,"Date":"7/10/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":322,"Cost":226,"Date":"7/11/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":712,"Cost":445,"Date":"8/28/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":65,"Cost":56,"Date":"8/29/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":435,"Cost":376,"Date":"8/31/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":996,"Cost":513,"Date":"9/8/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":925,"Cost":462,"Date":"9/13/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":193,"Cost":154,"Date":"9/14/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":391,"Cost":367,"Date":"9/19/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":512,"Cost":382,"Date":"9/25/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":145,"Cost":79,"Date":"10/4/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":171,"Cost":121,"Date":"10/10/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":292,"Cost":150,"Date":"10/17/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":961,"Cost":702,"Date":"10/28/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":346,"Cost":222,"Date":"10/30/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":440,"Cost":229,"Date":"11/1/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":820,"Cost":636,"Date":"11/15/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":710,"Cost":531,"Date":"11/25/2023"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":222,"Cost":139,"Date":"1/10/2024"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":549,"Cost":433,"Date":"1/14/2024"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":250,"Cost":140,"Date":"1/20/2024"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":39,"Cost":20,"Date":"2/8/2024"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":735,"Cost":550,"Date":"2/25/2024"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":436,"Cost":348,"Date":"3/7/2024"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":308,"Cost":263,"Date":"3/14/2024"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":150,"Cost":78,"Date":"3/27/2024"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":857,"Cost":700,"Date":"4/5/2024"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":994,"Cost":868,"Date":"4/14/2024"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":53,"Cost":38,"Date":"5/3/2024"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":787,"Cost":661,"Date":"5/9/2024"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":783,"Cost":588,"Date":"5/15/2024"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":512,"Cost":311,"Date":"5/25/2024"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":759,"Cost":532,"Date":"5/26/2024"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":690,"Cost":410,"Date":"5/31/2024"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":538,"Cost":336,"Date":"7/27/2024"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":287,"Cost":260,"Date":"9/17/2024"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":865,"Cost":516,"Date":"10/6/2024"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":536,"Cost":374,"Date":"10/8/2024"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":689,"Cost":345,"Date":"10/26/2024"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":616,"Cost":514,"Date":"11/16/2024"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":333,"Cost":195,"Date":"11/18/2024"},{"Store":"Westfield Wollongong","Brand":"HM","Country":"Australia","Sale":612,"Cost":430,"Date":"12/1/2024"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":538,"Cost":501,"Date":"2/9/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":962,"Cost":775,"Date":"2/11/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":539,"Cost":365,"Date":"3/10/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":437,"Cost":297,"Date":"3/16/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":672,"Cost":452,"Date":"3/18/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":898,"Cost":795,"Date":"3/20/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":299,"Cost":152,"Date":"3/26/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":454,"Cost":314,"Date":"6/2/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":11,"Cost":8,"Date":"6/10/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":704,"Cost":586,"Date":"6/16/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":716,"Cost":460,"Date":"6/25/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":79,"Cost":60,"Date":"7/19/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":914,"Cost":646,"Date":"7/21/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":200,"Cost":117,"Date":"7/25/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":604,"Cost":406,"Date":"8/4/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":618,"Cost":490,"Date":"9/2/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":963,"Cost":793,"Date":"9/4/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":15,"Cost":9,"Date":"9/19/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":878,"Cost":440,"Date":"9/29/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":32,"Cost":25,"Date":"10/2/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":878,"Cost":720,"Date":"10/15/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":872,"Cost":441,"Date":"10/30/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":632,"Cost":408,"Date":"11/9/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":670,"Cost":552,"Date":"11/23/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":142,"Cost":125,"Date":"11/30/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":402,"Cost":360,"Date":"12/8/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":20,"Cost":15,"Date":"12/11/2018"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":725,"Cost":389,"Date":"1/15/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":11,"Cost":6,"Date":"1/24/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":734,"Cost":401,"Date":"2/3/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":936,"Cost":817,"Date":"2/4/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":458,"Cost":346,"Date":"3/9/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":988,"Cost":754,"Date":"3/12/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":821,"Cost":530,"Date":"4/19/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":607,"Cost":507,"Date":"5/3/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":439,"Cost":393,"Date":"5/4/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":611,"Cost":398,"Date":"6/8/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":899,"Cost":461,"Date":"6/26/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":254,"Cost":154,"Date":"7/4/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":644,"Cost":572,"Date":"7/13/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":390,"Cost":371,"Date":"8/8/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":550,"Cost":285,"Date":"8/26/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":128,"Cost":119,"Date":"9/2/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":416,"Cost":239,"Date":"9/29/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":895,"Cost":679,"Date":"10/12/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":586,"Cost":504,"Date":"11/2/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":556,"Cost":316,"Date":"11/4/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":77,"Cost":42,"Date":"11/7/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":213,"Cost":190,"Date":"12/1/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":754,"Cost":607,"Date":"12/4/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":789,"Cost":623,"Date":"12/7/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":850,"Cost":734,"Date":"12/18/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":533,"Cost":311,"Date":"12/20/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":187,"Cost":140,"Date":"12/20/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":472,"Cost":298,"Date":"12/21/2019"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":800,"Cost":549,"Date":"1/9/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":450,"Cost":262,"Date":"2/5/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":364,"Cost":245,"Date":"2/16/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":530,"Cost":272,"Date":"2/16/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":364,"Cost":219,"Date":"2/18/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":715,"Cost":629,"Date":"2/22/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":986,"Cost":806,"Date":"2/25/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":654,"Cost":518,"Date":"3/8/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":507,"Cost":400,"Date":"4/2/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":786,"Cost":726,"Date":"4/3/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":585,"Cost":388,"Date":"4/9/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":311,"Cost":187,"Date":"4/10/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":212,"Cost":119,"Date":"4/19/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":428,"Cost":364,"Date":"5/17/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":848,"Cost":696,"Date":"5/22/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":777,"Cost":441,"Date":"6/20/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":816,"Cost":426,"Date":"7/1/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":744,"Cost":634,"Date":"7/4/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":635,"Cost":418,"Date":"7/8/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":146,"Cost":119,"Date":"7/9/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":447,"Cost":390,"Date":"7/14/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":493,"Cost":263,"Date":"7/19/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":355,"Cost":306,"Date":"8/1/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":258,"Cost":182,"Date":"8/6/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":290,"Cost":152,"Date":"8/7/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":286,"Cost":178,"Date":"8/22/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":386,"Cost":352,"Date":"8/31/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":59,"Cost":42,"Date":"9/1/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":212,"Cost":180,"Date":"9/1/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":181,"Cost":169,"Date":"9/17/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":105,"Cost":58,"Date":"9/29/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":536,"Cost":311,"Date":"11/7/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":277,"Cost":162,"Date":"11/26/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":400,"Cost":315,"Date":"11/27/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":251,"Cost":220,"Date":"12/5/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":785,"Cost":614,"Date":"12/26/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":683,"Cost":541,"Date":"12/31/2020"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":859,"Cost":562,"Date":"1/20/2021"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":336,"Cost":173,"Date":"2/2/2021"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":817,"Cost":656,"Date":"2/8/2021"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":626,"Cost":447,"Date":"2/27/2021"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":307,"Cost":280,"Date":"3/1/2021"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":449,"Cost":359,"Date":"3/1/2021"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":398,"Cost":282,"Date":"3/19/2021"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":31,"Cost":27,"Date":"3/28/2021"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":127,"Cost":67,"Date":"5/21/2021"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":293,"Cost":258,"Date":"7/21/2021"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":527,"Cost":446,"Date":"8/5/2021"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":180,"Cost":156,"Date":"8/12/2021"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":264,"Cost":166,"Date":"8/21/2021"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":867,"Cost":530,"Date":"8/23/2021"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":203,"Cost":135,"Date":"9/3/2021"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":671,"Cost":419,"Date":"9/5/2021"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":323,"Cost":180,"Date":"10/6/2021"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":421,"Cost":285,"Date":"10/19/2021"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":717,"Cost":594,"Date":"11/15/2021"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":326,"Cost":240,"Date":"12/8/2021"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":829,"Cost":449,"Date":"1/8/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":817,"Cost":455,"Date":"1/14/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":482,"Cost":416,"Date":"1/19/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":967,"Cost":484,"Date":"1/28/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":876,"Cost":607,"Date":"1/31/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":221,"Cost":166,"Date":"3/27/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":228,"Cost":160,"Date":"4/20/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":59,"Cost":32,"Date":"4/24/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":554,"Cost":359,"Date":"4/28/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":757,"Cost":593,"Date":"5/15/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":343,"Cost":221,"Date":"5/16/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":239,"Cost":209,"Date":"5/18/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":850,"Cost":506,"Date":"6/2/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":58,"Cost":48,"Date":"6/3/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":867,"Cost":720,"Date":"6/5/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":543,"Cost":509,"Date":"6/7/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":330,"Cost":224,"Date":"6/14/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":288,"Cost":203,"Date":"6/20/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":786,"Cost":683,"Date":"6/24/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":656,"Cost":331,"Date":"7/4/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":478,"Cost":444,"Date":"7/9/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":229,"Cost":199,"Date":"7/12/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":985,"Cost":642,"Date":"8/14/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":75,"Cost":39,"Date":"8/16/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":943,"Cost":518,"Date":"8/23/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":290,"Cost":193,"Date":"9/2/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":234,"Cost":208,"Date":"9/3/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":763,"Cost":548,"Date":"9/16/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":569,"Cost":452,"Date":"10/4/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":598,"Cost":512,"Date":"11/1/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":768,"Cost":568,"Date":"11/2/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":389,"Cost":257,"Date":"12/17/2022"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":409,"Cost":320,"Date":"2/10/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":174,"Cost":135,"Date":"2/28/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":755,"Cost":575,"Date":"3/4/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":187,"Cost":112,"Date":"3/9/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":221,"Cost":172,"Date":"3/9/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":898,"Cost":683,"Date":"3/11/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":352,"Cost":201,"Date":"3/17/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":105,"Cost":84,"Date":"3/17/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":723,"Cost":446,"Date":"3/23/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":878,"Cost":772,"Date":"4/1/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":517,"Cost":489,"Date":"5/7/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":168,"Cost":126,"Date":"5/10/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":664,"Cost":484,"Date":"5/20/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":741,"Cost":616,"Date":"6/2/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":470,"Cost":263,"Date":"6/11/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":909,"Cost":546,"Date":"6/16/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":151,"Cost":105,"Date":"6/16/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":821,"Cost":420,"Date":"7/10/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":711,"Cost":434,"Date":"7/11/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":507,"Cost":418,"Date":"8/28/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":428,"Cost":378,"Date":"8/29/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":76,"Cost":61,"Date":"8/31/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":584,"Cost":548,"Date":"9/8/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":380,"Cost":264,"Date":"9/13/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":772,"Cost":582,"Date":"9/14/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":708,"Cost":415,"Date":"9/19/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":198,"Cost":165,"Date":"9/25/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":547,"Cost":395,"Date":"10/4/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":646,"Cost":436,"Date":"10/10/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":608,"Cost":381,"Date":"10/17/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":201,"Cost":125,"Date":"10/28/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":187,"Cost":95,"Date":"10/30/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":137,"Cost":73,"Date":"11/1/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":228,"Cost":216,"Date":"11/15/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":577,"Cost":547,"Date":"11/25/2023"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":775,"Cost":661,"Date":"1/10/2024"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":270,"Cost":234,"Date":"1/14/2024"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":783,"Cost":668,"Date":"1/20/2024"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":162,"Cost":117,"Date":"2/8/2024"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":731,"Cost":530,"Date":"2/25/2024"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":244,"Cost":201,"Date":"3/7/2024"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":897,"Cost":591,"Date":"3/14/2024"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":891,"Cost":665,"Date":"3/27/2024"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":581,"Cost":551,"Date":"4/5/2024"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":996,"Cost":769,"Date":"4/14/2024"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":257,"Cost":213,"Date":"5/3/2024"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":327,"Cost":193,"Date":"5/9/2024"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":873,"Cost":761,"Date":"5/15/2024"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":7,"Cost":5,"Date":"5/25/2024"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":647,"Cost":346,"Date":"5/26/2024"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":660,"Cost":615,"Date":"5/31/2024"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":166,"Cost":103,"Date":"7/27/2024"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":621,"Cost":429,"Date":"9/17/2024"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":930,"Cost":757,"Date":"10/6/2024"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":236,"Cost":223,"Date":"10/8/2024"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":645,"Cost":516,"Date":"10/26/2024"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":592,"Cost":413,"Date":"11/16/2024"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":625,"Cost":426,"Date":"11/18/2024"},{"Store":"Westfield Wollongong","Brand":"Nova","Country":"Australia","Sale":553,"Cost":467,"Date":"12/1/2024"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":461,"Cost":312,"Date":"2/9/2018"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":413,"Cost":383,"Date":"2/11/2018"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":115,"Cost":65,"Date":"3/10/2018"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":251,"Cost":200,"Date":"3/16/2018"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":53,"Cost":45,"Date":"3/18/2018"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":40,"Cost":28,"Date":"3/20/2018"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":435,"Cost":274,"Date":"3/26/2018"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":889,"Cost":550,"Date":"6/2/2018"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":927,"Cost":812,"Date":"6/10/2018"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":26,"Cost":13,"Date":"6/16/2018"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":338,"Cost":220,"Date":"6/25/2018"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":647,"Cost":610,"Date":"7/19/2018"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":297,"Cost":181,"Date":"7/21/2018"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":440,"Cost":416,"Date":"7/25/2018"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":718,"Cost":667,"Date":"8/4/2018"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":484,"Cost":382,"Date":"9/2/2018"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":771,"Cost":471,"Date":"9/4/2018"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":632,"Cost":592,"Date":"9/19/2018"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":81,"Cost":43,"Date":"9/29/2018"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":948,"Cost":716,"Date":"10/2/2018"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":344,"Cost":316,"Date":"10/15/2018"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":129,"Cost":86,"Date":"10/30/2018"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":371,"Cost":221,"Date":"11/9/2018"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":411,"Cost":384,"Date":"11/23/2018"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":232,"Cost":160,"Date":"11/30/2018"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":647,"Cost":359,"Date":"12/8/2018"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":895,"Cost":787,"Date":"12/11/2018"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":739,"Cost":469,"Date":"1/15/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":1000,"Cost":833,"Date":"1/24/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":376,"Cost":309,"Date":"2/3/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":585,"Cost":311,"Date":"2/4/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":936,"Cost":558,"Date":"3/9/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":969,"Cost":632,"Date":"3/12/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":213,"Cost":156,"Date":"4/19/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":714,"Cost":549,"Date":"5/3/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":324,"Cost":287,"Date":"5/4/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":956,"Cost":807,"Date":"6/8/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":901,"Cost":701,"Date":"6/26/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":572,"Cost":533,"Date":"7/4/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":579,"Cost":407,"Date":"7/13/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":317,"Cost":231,"Date":"8/8/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":848,"Cost":476,"Date":"8/26/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":246,"Cost":191,"Date":"9/2/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":625,"Cost":360,"Date":"9/29/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":168,"Cost":104,"Date":"10/12/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":296,"Cost":248,"Date":"11/2/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":701,"Cost":522,"Date":"11/4/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":168,"Cost":85,"Date":"11/7/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":151,"Cost":102,"Date":"12/1/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":727,"Cost":435,"Date":"12/4/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":676,"Cost":634,"Date":"12/7/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":650,"Cost":544,"Date":"12/18/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":949,"Cost":722,"Date":"12/20/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":890,"Cost":470,"Date":"12/20/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":188,"Cost":134,"Date":"12/21/2019"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":447,"Cost":369,"Date":"1/9/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":741,"Cost":370,"Date":"2/5/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":578,"Cost":290,"Date":"2/16/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":936,"Cost":496,"Date":"2/16/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":833,"Cost":517,"Date":"2/18/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":289,"Cost":158,"Date":"2/22/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":769,"Cost":587,"Date":"2/25/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":230,"Cost":161,"Date":"3/8/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":980,"Cost":596,"Date":"4/2/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":666,"Cost":378,"Date":"4/3/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":376,"Cost":293,"Date":"4/9/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":894,"Cost":566,"Date":"4/10/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":930,"Cost":871,"Date":"4/19/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":814,"Cost":603,"Date":"5/17/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":575,"Cost":341,"Date":"5/22/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":696,"Cost":558,"Date":"6/20/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":628,"Cost":507,"Date":"7/1/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":452,"Cost":342,"Date":"7/4/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":112,"Cost":87,"Date":"7/8/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":862,"Cost":720,"Date":"7/9/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":313,"Cost":164,"Date":"7/14/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":982,"Cost":875,"Date":"7/19/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":696,"Cost":613,"Date":"8/1/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":470,"Cost":409,"Date":"8/6/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":226,"Cost":142,"Date":"8/7/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":110,"Cost":76,"Date":"8/22/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":376,"Cost":280,"Date":"8/31/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":179,"Cost":117,"Date":"9/1/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":715,"Cost":577,"Date":"9/1/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":574,"Cost":375,"Date":"9/17/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":329,"Cost":209,"Date":"9/29/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":833,"Cost":486,"Date":"11/7/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":395,"Cost":231,"Date":"11/26/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":287,"Cost":178,"Date":"11/27/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":546,"Cost":280,"Date":"12/5/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":991,"Cost":924,"Date":"12/26/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":477,"Cost":271,"Date":"12/31/2020"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":155,"Cost":129,"Date":"1/20/2021"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":130,"Cost":105,"Date":"2/2/2021"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":252,"Cost":180,"Date":"2/8/2021"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":423,"Cost":385,"Date":"2/27/2021"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":377,"Cost":275,"Date":"3/1/2021"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":264,"Cost":247,"Date":"3/1/2021"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":554,"Cost":363,"Date":"3/19/2021"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":774,"Cost":552,"Date":"3/28/2021"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":167,"Cost":157,"Date":"5/21/2021"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":471,"Cost":426,"Date":"7/21/2021"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":682,"Cost":624,"Date":"8/5/2021"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":864,"Cost":618,"Date":"8/12/2021"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":89,"Cost":61,"Date":"8/21/2021"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":827,"Cost":425,"Date":"8/23/2021"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":754,"Cost":569,"Date":"9/3/2021"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":975,"Cost":526,"Date":"9/5/2021"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":829,"Cost":754,"Date":"10/6/2021"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":726,"Cost":406,"Date":"10/19/2021"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":516,"Cost":474,"Date":"11/15/2021"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":759,"Cost":530,"Date":"12/8/2021"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":768,"Cost":578,"Date":"1/8/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":57,"Cost":49,"Date":"1/14/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":525,"Cost":307,"Date":"1/19/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":943,"Cost":634,"Date":"1/28/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":501,"Cost":449,"Date":"1/31/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":323,"Cost":194,"Date":"3/27/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":289,"Cost":161,"Date":"4/20/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":258,"Cost":219,"Date":"4/24/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":696,"Cost":423,"Date":"4/28/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":229,"Cost":154,"Date":"5/15/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":786,"Cost":661,"Date":"5/16/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":938,"Cost":736,"Date":"5/18/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":652,"Cost":575,"Date":"6/2/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":238,"Cost":212,"Date":"6/3/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":467,"Cost":263,"Date":"6/5/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":431,"Cost":322,"Date":"6/7/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":177,"Cost":150,"Date":"6/14/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":746,"Cost":380,"Date":"6/20/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":767,"Cost":440,"Date":"6/24/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":685,"Cost":511,"Date":"7/4/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":683,"Cost":478,"Date":"7/9/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":472,"Cost":305,"Date":"7/12/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":987,"Cost":675,"Date":"8/14/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":51,"Cost":28,"Date":"8/16/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":166,"Cost":127,"Date":"8/23/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":135,"Cost":106,"Date":"9/2/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":652,"Cost":422,"Date":"9/3/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":722,"Cost":401,"Date":"9/16/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":202,"Cost":170,"Date":"10/4/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":630,"Cost":585,"Date":"11/1/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":575,"Cost":345,"Date":"11/2/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":580,"Cost":435,"Date":"12/17/2022"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":184,"Cost":139,"Date":"2/10/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":528,"Cost":404,"Date":"2/28/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":981,"Cost":586,"Date":"3/4/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":104,"Cost":57,"Date":"3/9/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":521,"Cost":275,"Date":"3/9/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":6,"Cost":6,"Date":"3/11/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":927,"Cost":742,"Date":"3/17/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":962,"Cost":648,"Date":"3/17/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":84,"Cost":56,"Date":"3/23/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":964,"Cost":545,"Date":"4/1/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":773,"Cost":563,"Date":"5/7/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":222,"Cost":186,"Date":"5/10/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":971,"Cost":650,"Date":"5/20/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":538,"Cost":481,"Date":"6/2/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":694,"Cost":377,"Date":"6/11/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":947,"Cost":677,"Date":"6/16/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":970,"Cost":637,"Date":"6/16/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":949,"Cost":776,"Date":"7/10/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":634,"Cost":494,"Date":"7/11/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":850,"Cost":496,"Date":"8/28/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":428,"Cost":335,"Date":"8/29/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":739,"Cost":588,"Date":"8/31/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":802,"Cost":715,"Date":"9/8/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":230,"Cost":115,"Date":"9/13/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":322,"Cost":252,"Date":"9/14/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":835,"Cost":752,"Date":"9/19/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":98,"Cost":68,"Date":"9/25/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":25,"Cost":19,"Date":"10/4/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":964,"Cost":806,"Date":"10/10/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":900,"Cost":574,"Date":"10/17/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":191,"Cost":125,"Date":"10/28/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":926,"Cost":752,"Date":"10/30/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":657,"Cost":440,"Date":"11/1/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":841,"Cost":754,"Date":"11/15/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":220,"Cost":122,"Date":"11/25/2023"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":782,"Cost":584,"Date":"1/10/2024"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":702,"Cost":494,"Date":"1/14/2024"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":555,"Cost":360,"Date":"1/20/2024"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":930,"Cost":650,"Date":"2/8/2024"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":351,"Cost":277,"Date":"2/25/2024"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":796,"Cost":499,"Date":"3/7/2024"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":228,"Cost":200,"Date":"3/14/2024"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":76,"Cost":69,"Date":"3/27/2024"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":376,"Cost":323,"Date":"4/5/2024"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":177,"Cost":97,"Date":"4/14/2024"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":947,"Cost":678,"Date":"5/3/2024"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":617,"Cost":464,"Date":"5/9/2024"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":983,"Cost":585,"Date":"5/15/2024"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":93,"Cost":53,"Date":"5/25/2024"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":983,"Cost":703,"Date":"5/26/2024"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":664,"Cost":585,"Date":"5/31/2024"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":434,"Cost":256,"Date":"7/27/2024"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":812,"Cost":487,"Date":"9/17/2024"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":617,"Cost":362,"Date":"10/6/2024"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":650,"Cost":612,"Date":"10/8/2024"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":880,"Cost":783,"Date":"10/26/2024"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":128,"Cost":122,"Date":"11/16/2024"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":739,"Cost":560,"Date":"11/18/2024"},{"Store":"Westfield Wollongong","Brand":"HM Home","Country":"Australia","Sale":60,"Cost":32,"Date":"12/1/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":76,"Cost":62,"Date":"2/9/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":980,"Cost":855,"Date":"2/11/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":558,"Cost":283,"Date":"3/10/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":46,"Cost":23,"Date":"3/16/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":506,"Cost":254,"Date":"3/18/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":779,"Cost":695,"Date":"3/20/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":758,"Cost":638,"Date":"3/26/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":985,"Cost":516,"Date":"6/2/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":647,"Cost":427,"Date":"6/10/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":923,"Cost":696,"Date":"6/16/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":258,"Cost":216,"Date":"6/25/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":181,"Cost":122,"Date":"7/19/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":917,"Cost":840,"Date":"7/21/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":300,"Cost":176,"Date":"7/25/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":159,"Cost":149,"Date":"8/4/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":167,"Cost":101,"Date":"9/2/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":498,"Cost":289,"Date":"9/4/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":933,"Cost":725,"Date":"9/19/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":773,"Cost":413,"Date":"9/29/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":823,"Cost":718,"Date":"10/2/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":115,"Cost":66,"Date":"10/15/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":560,"Cost":364,"Date":"10/30/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":161,"Cost":152,"Date":"11/9/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":986,"Cost":687,"Date":"11/23/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":66,"Cost":60,"Date":"11/30/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":273,"Cost":158,"Date":"12/8/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":487,"Cost":288,"Date":"12/11/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":497,"Cost":368,"Date":"1/15/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":869,"Cost":649,"Date":"1/24/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":194,"Cost":172,"Date":"2/3/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":34,"Cost":23,"Date":"2/4/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":523,"Cost":422,"Date":"3/9/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":653,"Cost":509,"Date":"3/12/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":247,"Cost":153,"Date":"4/19/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":270,"Cost":226,"Date":"5/3/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":159,"Cost":152,"Date":"5/4/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":652,"Cost":489,"Date":"6/8/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":411,"Cost":322,"Date":"6/26/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":711,"Cost":675,"Date":"7/4/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":504,"Cost":258,"Date":"7/13/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":732,"Cost":536,"Date":"8/8/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":665,"Cost":491,"Date":"8/26/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":577,"Cost":519,"Date":"9/2/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":600,"Cost":566,"Date":"9/29/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":83,"Cost":79,"Date":"10/12/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":861,"Cost":813,"Date":"11/2/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":486,"Cost":437,"Date":"11/4/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":798,"Cost":425,"Date":"11/7/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":393,"Cost":257,"Date":"12/1/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":701,"Cost":658,"Date":"12/4/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":442,"Cost":412,"Date":"12/7/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":789,"Cost":603,"Date":"12/18/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":837,"Cost":669,"Date":"12/20/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":608,"Cost":532,"Date":"12/20/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":610,"Cost":308,"Date":"12/21/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":315,"Cost":169,"Date":"1/9/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":618,"Cost":322,"Date":"2/5/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":721,"Cost":380,"Date":"2/16/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":378,"Cost":235,"Date":"2/16/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":981,"Cost":761,"Date":"2/18/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":715,"Cost":453,"Date":"2/22/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":983,"Cost":506,"Date":"2/25/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":851,"Cost":597,"Date":"3/8/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":361,"Cost":302,"Date":"4/2/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":394,"Cost":332,"Date":"4/3/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":22,"Cost":12,"Date":"4/9/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":779,"Cost":568,"Date":"4/10/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":838,"Cost":440,"Date":"4/19/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":898,"Cost":714,"Date":"5/17/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":903,"Cost":665,"Date":"5/22/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":731,"Cost":370,"Date":"6/20/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":7,"Cost":7,"Date":"7/1/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":942,"Cost":515,"Date":"7/4/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":794,"Cost":548,"Date":"7/8/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":408,"Cost":256,"Date":"7/9/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":162,"Cost":95,"Date":"7/14/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":141,"Cost":85,"Date":"7/19/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":335,"Cost":177,"Date":"8/1/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":960,"Cost":539,"Date":"8/6/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":288,"Cost":213,"Date":"8/7/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":688,"Cost":481,"Date":"8/22/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":757,"Cost":716,"Date":"8/31/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":757,"Cost":472,"Date":"9/1/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":837,"Cost":666,"Date":"9/1/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":555,"Cost":501,"Date":"9/17/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":687,"Cost":622,"Date":"9/29/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":154,"Cost":117,"Date":"11/7/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":838,"Cost":669,"Date":"11/26/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":83,"Cost":45,"Date":"11/27/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":551,"Cost":486,"Date":"12/5/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":356,"Cost":329,"Date":"12/26/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":337,"Cost":256,"Date":"12/31/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":674,"Cost":564,"Date":"1/20/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":903,"Cost":626,"Date":"2/2/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":713,"Cost":495,"Date":"2/8/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":739,"Cost":383,"Date":"2/27/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":52,"Cost":47,"Date":"3/1/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":381,"Cost":261,"Date":"3/1/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":609,"Cost":339,"Date":"3/19/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":569,"Cost":318,"Date":"3/28/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":874,"Cost":553,"Date":"5/21/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":342,"Cost":293,"Date":"7/21/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":49,"Cost":40,"Date":"8/5/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":507,"Cost":328,"Date":"8/12/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":906,"Cost":831,"Date":"8/21/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":676,"Cost":518,"Date":"8/23/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":216,"Cost":205,"Date":"9/3/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":622,"Cost":581,"Date":"9/5/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":254,"Cost":201,"Date":"10/6/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":919,"Cost":623,"Date":"10/19/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":28,"Cost":22,"Date":"11/15/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":706,"Cost":365,"Date":"12/8/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":856,"Cost":691,"Date":"1/8/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":897,"Cost":615,"Date":"1/14/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":333,"Cost":184,"Date":"1/19/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":870,"Cost":570,"Date":"1/28/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":681,"Cost":447,"Date":"1/31/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":376,"Cost":245,"Date":"3/27/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":652,"Cost":441,"Date":"4/20/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":105,"Cost":64,"Date":"4/24/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":645,"Cost":605,"Date":"4/28/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":799,"Cost":516,"Date":"5/15/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":952,"Cost":670,"Date":"5/16/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":906,"Cost":650,"Date":"5/18/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":718,"Cost":650,"Date":"6/2/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":61,"Cost":56,"Date":"6/3/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":654,"Cost":579,"Date":"6/5/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":399,"Cost":267,"Date":"6/7/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":817,"Cost":443,"Date":"6/14/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":334,"Cost":239,"Date":"6/20/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":433,"Cost":343,"Date":"6/24/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":404,"Cost":249,"Date":"7/4/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":444,"Cost":264,"Date":"7/9/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":484,"Cost":277,"Date":"7/12/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":57,"Cost":40,"Date":"8/14/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":488,"Cost":325,"Date":"8/16/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":964,"Cost":586,"Date":"8/23/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":340,"Cost":288,"Date":"9/2/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":875,"Cost":540,"Date":"9/3/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":958,"Cost":811,"Date":"9/16/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":628,"Cost":458,"Date":"10/4/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":819,"Cost":734,"Date":"11/1/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":849,"Cost":726,"Date":"11/2/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":119,"Cost":77,"Date":"12/17/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":687,"Cost":483,"Date":"2/10/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":995,"Cost":690,"Date":"2/28/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":509,"Cost":428,"Date":"3/4/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":407,"Cost":281,"Date":"3/9/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":388,"Cost":200,"Date":"3/9/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":981,"Cost":918,"Date":"3/11/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":740,"Cost":427,"Date":"3/17/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":174,"Cost":122,"Date":"3/17/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":664,"Cost":357,"Date":"3/23/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":829,"Cost":477,"Date":"4/1/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":911,"Cost":715,"Date":"5/7/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":775,"Cost":415,"Date":"5/10/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":323,"Cost":171,"Date":"5/20/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":107,"Cost":96,"Date":"6/2/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":979,"Cost":869,"Date":"6/11/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":509,"Cost":323,"Date":"6/16/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":275,"Cost":223,"Date":"6/16/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":883,"Cost":613,"Date":"7/10/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":331,"Cost":303,"Date":"7/11/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":19,"Cost":10,"Date":"8/28/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":879,"Cost":727,"Date":"8/29/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":452,"Cost":260,"Date":"8/31/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":983,"Cost":605,"Date":"9/8/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":282,"Cost":260,"Date":"9/13/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":821,"Cost":624,"Date":"9/14/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":128,"Cost":121,"Date":"9/19/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":367,"Cost":329,"Date":"9/25/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":856,"Cost":589,"Date":"10/4/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":729,"Cost":464,"Date":"10/10/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":387,"Cost":201,"Date":"10/17/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":250,"Cost":175,"Date":"10/28/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":604,"Cost":479,"Date":"10/30/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":125,"Cost":79,"Date":"11/1/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":514,"Cost":375,"Date":"11/15/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":358,"Cost":196,"Date":"11/25/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":952,"Cost":496,"Date":"1/10/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":656,"Cost":496,"Date":"1/14/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":826,"Cost":589,"Date":"1/20/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":648,"Cost":446,"Date":"2/8/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":222,"Cost":183,"Date":"2/25/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":93,"Cost":49,"Date":"3/7/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":421,"Cost":334,"Date":"3/14/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":473,"Cost":324,"Date":"3/27/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":945,"Cost":700,"Date":"4/5/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":496,"Cost":310,"Date":"4/14/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":871,"Cost":750,"Date":"5/3/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":326,"Cost":277,"Date":"5/9/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":544,"Cost":272,"Date":"5/15/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":177,"Cost":94,"Date":"5/25/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":830,"Cost":435,"Date":"5/26/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":148,"Cost":139,"Date":"5/31/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":814,"Cost":745,"Date":"7/27/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":944,"Cost":619,"Date":"9/17/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":230,"Cost":115,"Date":"10/6/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":523,"Cost":476,"Date":"10/8/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":321,"Cost":291,"Date":"10/26/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":523,"Cost":304,"Date":"11/16/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":867,"Cost":655,"Date":"11/18/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":675,"Cost":416,"Date":"12/1/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":911,"Cost":555,"Date":"2/9/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":329,"Cost":302,"Date":"2/11/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":713,"Cost":595,"Date":"3/10/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":494,"Cost":438,"Date":"3/16/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":85,"Cost":43,"Date":"3/18/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":32,"Cost":30,"Date":"3/20/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":353,"Cost":305,"Date":"3/26/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":680,"Cost":564,"Date":"6/2/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":954,"Cost":876,"Date":"6/10/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":642,"Cost":327,"Date":"6/16/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":46,"Cost":41,"Date":"6/25/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":811,"Cost":592,"Date":"7/19/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":524,"Cost":447,"Date":"7/21/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":262,"Cost":203,"Date":"7/25/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":334,"Cost":277,"Date":"8/4/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":374,"Cost":311,"Date":"9/2/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":606,"Cost":457,"Date":"9/4/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":701,"Cost":426,"Date":"9/19/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":451,"Cost":250,"Date":"9/29/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":313,"Cost":273,"Date":"10/2/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":42,"Cost":31,"Date":"10/15/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":839,"Cost":689,"Date":"10/30/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":133,"Cost":96,"Date":"11/9/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":841,"Cost":705,"Date":"11/23/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":279,"Cost":165,"Date":"11/30/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":835,"Cost":555,"Date":"12/8/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":929,"Cost":687,"Date":"12/11/2018"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":629,"Cost":498,"Date":"1/15/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":249,"Cost":213,"Date":"1/24/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":14,"Cost":9,"Date":"2/3/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":97,"Cost":66,"Date":"2/4/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":169,"Cost":90,"Date":"3/9/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":701,"Cost":507,"Date":"3/12/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":814,"Cost":749,"Date":"4/19/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":844,"Cost":494,"Date":"5/3/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":116,"Cost":105,"Date":"5/4/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":875,"Cost":505,"Date":"6/8/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":113,"Cost":101,"Date":"6/26/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":946,"Cost":891,"Date":"7/4/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":301,"Cost":174,"Date":"7/13/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":349,"Cost":214,"Date":"8/8/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":38,"Cost":24,"Date":"8/26/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":711,"Cost":563,"Date":"9/2/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":905,"Cost":649,"Date":"9/29/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":684,"Cost":519,"Date":"10/12/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":29,"Cost":21,"Date":"11/2/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":875,"Cost":577,"Date":"11/4/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":635,"Cost":596,"Date":"11/7/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":577,"Cost":389,"Date":"12/1/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":741,"Cost":652,"Date":"12/4/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":808,"Cost":594,"Date":"12/7/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":73,"Cost":48,"Date":"12/18/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":605,"Cost":570,"Date":"12/20/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":461,"Cost":325,"Date":"12/20/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":57,"Cost":50,"Date":"12/21/2019"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":187,"Cost":110,"Date":"1/9/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":850,"Cost":516,"Date":"2/5/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":686,"Cost":569,"Date":"2/16/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":976,"Cost":708,"Date":"2/16/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":685,"Cost":468,"Date":"2/18/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":35,"Cost":25,"Date":"2/22/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":728,"Cost":399,"Date":"2/25/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":21,"Cost":16,"Date":"3/8/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":713,"Cost":425,"Date":"4/2/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":947,"Cost":496,"Date":"4/3/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":497,"Cost":250,"Date":"4/9/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":896,"Cost":800,"Date":"4/10/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":258,"Cost":224,"Date":"4/19/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":503,"Cost":377,"Date":"5/17/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":584,"Cost":547,"Date":"5/22/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":699,"Cost":419,"Date":"6/20/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":301,"Cost":166,"Date":"7/1/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":841,"Cost":490,"Date":"7/4/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":530,"Cost":492,"Date":"7/8/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":401,"Cost":251,"Date":"7/9/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":179,"Cost":97,"Date":"7/14/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":787,"Cost":567,"Date":"7/19/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":206,"Cost":186,"Date":"8/1/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":985,"Cost":821,"Date":"8/6/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":796,"Cost":463,"Date":"8/7/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":322,"Cost":289,"Date":"8/22/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":841,"Cost":775,"Date":"8/31/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":934,"Cost":639,"Date":"9/1/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":325,"Cost":188,"Date":"9/1/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":744,"Cost":662,"Date":"9/17/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":93,"Cost":78,"Date":"9/29/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":35,"Cost":25,"Date":"11/7/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":688,"Cost":346,"Date":"11/26/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":468,"Cost":420,"Date":"11/27/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":324,"Cost":302,"Date":"12/5/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":258,"Cost":145,"Date":"12/26/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":446,"Cost":408,"Date":"12/31/2020"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":461,"Cost":250,"Date":"1/20/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":366,"Cost":194,"Date":"2/2/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":166,"Cost":121,"Date":"2/8/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":949,"Cost":770,"Date":"2/27/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":134,"Cost":82,"Date":"3/1/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":632,"Cost":547,"Date":"3/1/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":713,"Cost":638,"Date":"3/19/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":950,"Cost":584,"Date":"3/28/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":514,"Cost":375,"Date":"5/21/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":220,"Cost":143,"Date":"7/21/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":119,"Cost":81,"Date":"8/5/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":983,"Cost":922,"Date":"8/12/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":925,"Cost":834,"Date":"8/21/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":361,"Cost":254,"Date":"8/23/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":930,"Cost":715,"Date":"9/3/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":338,"Cost":278,"Date":"9/5/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":769,"Cost":563,"Date":"10/6/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":504,"Cost":286,"Date":"10/19/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":486,"Cost":413,"Date":"11/15/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":928,"Cost":625,"Date":"12/8/2021"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":84,"Cost":77,"Date":"1/8/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":838,"Cost":493,"Date":"1/14/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":583,"Cost":458,"Date":"1/19/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":83,"Cost":78,"Date":"1/28/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":986,"Cost":572,"Date":"1/31/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":343,"Cost":267,"Date":"3/27/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":523,"Cost":468,"Date":"4/20/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":80,"Cost":72,"Date":"4/24/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":326,"Cost":291,"Date":"4/28/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":858,"Cost":732,"Date":"5/15/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":126,"Cost":75,"Date":"5/16/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":944,"Cost":798,"Date":"5/18/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":517,"Cost":449,"Date":"6/2/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":198,"Cost":176,"Date":"6/3/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":316,"Cost":247,"Date":"6/5/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":807,"Cost":671,"Date":"6/7/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":876,"Cost":579,"Date":"6/14/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":245,"Cost":129,"Date":"6/20/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":759,"Cost":682,"Date":"6/24/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":33,"Cost":18,"Date":"7/4/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":786,"Cost":634,"Date":"7/9/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":73,"Cost":50,"Date":"7/12/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":564,"Cost":532,"Date":"8/14/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":329,"Cost":165,"Date":"8/16/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":43,"Cost":24,"Date":"8/23/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":7,"Cost":6,"Date":"9/2/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":882,"Cost":556,"Date":"9/3/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":822,"Cost":677,"Date":"9/16/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":862,"Cost":677,"Date":"10/4/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":26,"Cost":16,"Date":"11/1/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":579,"Cost":414,"Date":"11/2/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":49,"Cost":41,"Date":"12/17/2022"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":55,"Cost":52,"Date":"2/10/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":448,"Cost":306,"Date":"2/28/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":808,"Cost":539,"Date":"3/4/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":705,"Cost":442,"Date":"3/9/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":451,"Cost":390,"Date":"3/9/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":135,"Cost":90,"Date":"3/11/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":674,"Cost":402,"Date":"3/17/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":681,"Cost":565,"Date":"3/17/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":556,"Cost":317,"Date":"3/23/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":986,"Cost":657,"Date":"4/1/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":411,"Cost":306,"Date":"5/7/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":817,"Cost":615,"Date":"5/10/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":954,"Cost":835,"Date":"5/20/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":130,"Cost":104,"Date":"6/2/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":679,"Cost":511,"Date":"6/11/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":951,"Cost":882,"Date":"6/16/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":487,"Cost":314,"Date":"6/16/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":384,"Cost":217,"Date":"7/10/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":996,"Cost":856,"Date":"7/11/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":188,"Cost":147,"Date":"8/28/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":967,"Cost":896,"Date":"8/29/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":903,"Cost":637,"Date":"8/31/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":516,"Cost":284,"Date":"9/8/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":65,"Cost":39,"Date":"9/13/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":266,"Cost":160,"Date":"9/14/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":295,"Cost":172,"Date":"9/19/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":672,"Cost":430,"Date":"9/25/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":318,"Cost":168,"Date":"10/4/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":72,"Cost":50,"Date":"10/10/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":274,"Cost":227,"Date":"10/17/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":185,"Cost":114,"Date":"10/28/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":531,"Cost":480,"Date":"10/30/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":152,"Cost":84,"Date":"11/1/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":108,"Cost":72,"Date":"11/15/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":738,"Cost":402,"Date":"11/25/2023"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":999,"Cost":712,"Date":"1/10/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":40,"Cost":21,"Date":"1/14/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":198,"Cost":149,"Date":"1/20/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":159,"Cost":110,"Date":"2/8/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":668,"Cost":478,"Date":"2/25/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":321,"Cost":229,"Date":"3/7/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":763,"Cost":622,"Date":"3/14/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":34,"Cost":19,"Date":"3/27/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":904,"Cost":466,"Date":"4/5/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":65,"Cost":38,"Date":"4/14/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":594,"Cost":476,"Date":"5/3/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":214,"Cost":161,"Date":"5/9/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":119,"Cost":84,"Date":"5/15/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":756,"Cost":511,"Date":"5/25/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":22,"Cost":16,"Date":"5/26/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":41,"Cost":29,"Date":"5/31/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":61,"Cost":44,"Date":"7/27/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":453,"Cost":262,"Date":"9/17/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":73,"Cost":55,"Date":"10/6/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":8,"Cost":8,"Date":"10/8/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":722,"Cost":650,"Date":"10/26/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":993,"Cost":748,"Date":"11/16/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":553,"Cost":411,"Date":"11/18/2024"},{"Store":"Westfield Geelong","Brand":"HM Home","Country":"Australia","Sale":259,"Cost":147,"Date":"12/1/2024"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":465,"Cost":381,"Date":"2/9/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":478,"Cost":316,"Date":"2/11/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":883,"Cost":528,"Date":"3/10/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":10,"Cost":7,"Date":"3/16/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":745,"Cost":378,"Date":"3/18/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":148,"Cost":135,"Date":"3/20/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":88,"Cost":80,"Date":"3/26/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":760,"Cost":688,"Date":"6/2/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":35,"Cost":18,"Date":"6/10/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":972,"Cost":608,"Date":"6/16/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":325,"Cost":227,"Date":"6/25/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":300,"Cost":269,"Date":"7/19/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":336,"Cost":319,"Date":"7/21/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":235,"Cost":182,"Date":"7/25/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":254,"Cost":179,"Date":"8/4/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":510,"Cost":279,"Date":"9/2/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":504,"Cost":291,"Date":"9/4/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":970,"Cost":572,"Date":"9/19/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":744,"Cost":545,"Date":"9/29/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":149,"Cost":103,"Date":"10/2/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":476,"Cost":440,"Date":"10/15/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":71,"Cost":45,"Date":"10/30/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":737,"Cost":382,"Date":"11/9/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":840,"Cost":568,"Date":"11/23/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":585,"Cost":548,"Date":"11/30/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":907,"Cost":532,"Date":"12/8/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":898,"Cost":657,"Date":"12/11/2018"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":668,"Cost":628,"Date":"1/15/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":801,"Cost":541,"Date":"1/24/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":851,"Cost":717,"Date":"2/3/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":541,"Cost":388,"Date":"2/4/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":693,"Cost":411,"Date":"3/9/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":769,"Cost":430,"Date":"3/12/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":207,"Cost":192,"Date":"4/19/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":551,"Cost":414,"Date":"5/3/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":933,"Cost":724,"Date":"5/4/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":229,"Cost":191,"Date":"6/8/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":124,"Cost":106,"Date":"6/26/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":423,"Cost":228,"Date":"7/4/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":392,"Cost":242,"Date":"7/13/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":790,"Cost":451,"Date":"8/8/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":609,"Cost":379,"Date":"8/26/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":878,"Cost":686,"Date":"9/2/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":308,"Cost":264,"Date":"9/29/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":150,"Cost":90,"Date":"10/12/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":729,"Cost":479,"Date":"11/2/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":633,"Cost":525,"Date":"11/4/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":599,"Cost":452,"Date":"11/7/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":917,"Cost":808,"Date":"12/1/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":70,"Cost":62,"Date":"12/4/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":186,"Cost":170,"Date":"12/7/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":649,"Cost":568,"Date":"12/18/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":233,"Cost":125,"Date":"12/20/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":736,"Cost":672,"Date":"12/20/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":909,"Cost":686,"Date":"12/21/2019"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":307,"Cost":256,"Date":"1/9/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":508,"Cost":316,"Date":"2/5/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":292,"Cost":248,"Date":"2/16/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":953,"Cost":699,"Date":"2/16/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":658,"Cost":545,"Date":"2/18/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":720,"Cost":559,"Date":"2/22/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":721,"Cost":529,"Date":"2/25/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":808,"Cost":473,"Date":"3/8/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":120,"Cost":89,"Date":"4/2/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":983,"Cost":634,"Date":"4/3/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":40,"Cost":29,"Date":"4/9/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":253,"Cost":156,"Date":"4/10/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":747,"Cost":687,"Date":"4/19/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":245,"Cost":190,"Date":"5/17/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":143,"Cost":133,"Date":"5/22/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":11,"Cost":7,"Date":"6/20/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":620,"Cost":509,"Date":"7/1/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":902,"Cost":459,"Date":"7/4/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":222,"Cost":170,"Date":"7/8/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":549,"Cost":519,"Date":"7/9/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":988,"Cost":835,"Date":"7/14/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":530,"Cost":419,"Date":"7/19/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":601,"Cost":375,"Date":"8/1/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":2,"Cost":1,"Date":"8/6/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":609,"Cost":489,"Date":"8/7/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":148,"Cost":108,"Date":"8/22/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":639,"Cost":444,"Date":"8/31/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":101,"Cost":64,"Date":"9/1/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":159,"Cost":111,"Date":"9/1/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":258,"Cost":186,"Date":"9/17/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":547,"Cost":296,"Date":"9/29/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":70,"Cost":66,"Date":"11/7/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":403,"Cost":338,"Date":"11/26/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":898,"Cost":707,"Date":"11/27/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":193,"Cost":117,"Date":"12/5/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":165,"Cost":136,"Date":"12/26/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":224,"Cost":175,"Date":"12/31/2020"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":138,"Cost":102,"Date":"1/20/2021"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":555,"Cost":368,"Date":"2/2/2021"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":345,"Cost":266,"Date":"2/8/2021"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":435,"Cost":403,"Date":"2/27/2021"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":290,"Cost":145,"Date":"3/1/2021"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":349,"Cost":178,"Date":"3/1/2021"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":582,"Cost":488,"Date":"3/19/2021"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":932,"Cost":557,"Date":"3/28/2021"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":706,"Cost":387,"Date":"5/21/2021"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":693,"Cost":612,"Date":"7/21/2021"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":612,"Cost":383,"Date":"8/5/2021"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":585,"Cost":523,"Date":"8/12/2021"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":823,"Cost":610,"Date":"8/21/2021"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":349,"Cost":215,"Date":"8/23/2021"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":715,"Cost":551,"Date":"9/3/2021"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":572,"Cost":474,"Date":"9/5/2021"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":322,"Cost":166,"Date":"10/6/2021"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":661,"Cost":505,"Date":"10/19/2021"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":620,"Cost":513,"Date":"11/15/2021"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":485,"Cost":301,"Date":"12/8/2021"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":910,"Cost":548,"Date":"1/8/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":171,"Cost":153,"Date":"1/14/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":396,"Cost":351,"Date":"1/19/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":41,"Cost":20,"Date":"1/28/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":912,"Cost":520,"Date":"1/31/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":49,"Cost":30,"Date":"3/27/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":592,"Cost":409,"Date":"4/20/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":905,"Cost":722,"Date":"4/24/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":366,"Cost":286,"Date":"4/28/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":77,"Cost":57,"Date":"5/15/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":58,"Cost":51,"Date":"5/16/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":225,"Cost":188,"Date":"5/18/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":497,"Cost":258,"Date":"6/2/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":17,"Cost":9,"Date":"6/3/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":342,"Cost":261,"Date":"6/5/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":53,"Cost":33,"Date":"6/7/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":209,"Cost":176,"Date":"6/14/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":737,"Cost":693,"Date":"6/20/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":712,"Cost":435,"Date":"6/24/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":358,"Cost":336,"Date":"7/4/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":583,"Cost":454,"Date":"7/9/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":52,"Cost":35,"Date":"7/12/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":353,"Cost":178,"Date":"8/14/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":727,"Cost":477,"Date":"8/16/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":390,"Cost":326,"Date":"8/23/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":444,"Cost":374,"Date":"9/2/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":152,"Cost":96,"Date":"9/3/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":113,"Cost":98,"Date":"9/16/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":358,"Cost":269,"Date":"10/4/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":845,"Cost":728,"Date":"11/1/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":463,"Cost":242,"Date":"11/2/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":847,"Cost":623,"Date":"12/17/2022"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":394,"Cost":313,"Date":"2/10/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":903,"Cost":492,"Date":"2/28/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":827,"Cost":609,"Date":"3/4/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":294,"Cost":166,"Date":"3/9/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":759,"Cost":459,"Date":"3/9/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":16,"Cost":15,"Date":"3/11/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":545,"Cost":509,"Date":"3/17/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":499,"Cost":347,"Date":"3/17/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":441,"Cost":318,"Date":"3/23/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":330,"Cost":312,"Date":"4/1/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":350,"Cost":262,"Date":"5/7/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":967,"Cost":747,"Date":"5/10/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":890,"Cost":795,"Date":"5/20/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":714,"Cost":635,"Date":"6/2/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":50,"Cost":25,"Date":"6/11/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":988,"Cost":590,"Date":"6/16/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":855,"Cost":505,"Date":"6/16/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":507,"Cost":372,"Date":"7/10/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":684,"Cost":379,"Date":"7/11/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":677,"Cost":548,"Date":"8/28/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":335,"Cost":234,"Date":"8/29/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":973,"Cost":709,"Date":"8/31/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":584,"Cost":532,"Date":"9/8/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":678,"Cost":363,"Date":"9/13/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":882,"Cost":750,"Date":"9/14/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":447,"Cost":399,"Date":"9/19/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":871,"Cost":805,"Date":"9/25/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":789,"Cost":521,"Date":"10/4/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":615,"Cost":444,"Date":"10/10/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":317,"Cost":236,"Date":"10/17/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":411,"Cost":238,"Date":"10/28/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":5,"Cost":4,"Date":"10/30/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":879,"Cost":459,"Date":"11/1/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":725,"Cost":615,"Date":"11/15/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":121,"Cost":80,"Date":"11/25/2023"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":303,"Cost":282,"Date":"1/10/2024"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":248,"Cost":171,"Date":"1/14/2024"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":482,"Cost":367,"Date":"1/20/2024"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":980,"Cost":802,"Date":"2/8/2024"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":311,"Cost":295,"Date":"2/25/2024"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":630,"Cost":360,"Date":"3/7/2024"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":281,"Cost":233,"Date":"3/14/2024"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":752,"Cost":548,"Date":"3/27/2024"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":230,"Cost":171,"Date":"4/5/2024"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":758,"Cost":658,"Date":"4/14/2024"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":182,"Cost":131,"Date":"5/3/2024"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":348,"Cost":178,"Date":"5/9/2024"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":917,"Cost":486,"Date":"5/15/2024"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":627,"Cost":338,"Date":"5/25/2024"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":340,"Cost":287,"Date":"5/26/2024"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":771,"Cost":594,"Date":"5/31/2024"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":173,"Cost":100,"Date":"7/27/2024"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":942,"Cost":520,"Date":"9/17/2024"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":171,"Cost":104,"Date":"10/6/2024"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":881,"Cost":697,"Date":"10/8/2024"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":659,"Cost":479,"Date":"10/26/2024"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":825,"Cost":740,"Date":"11/16/2024"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":837,"Cost":619,"Date":"11/18/2024"},{"Store":"Westfield Geelong","Brand":"COS","Country":"Australia","Sale":302,"Cost":195,"Date":"12/1/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":391,"Cost":242,"Date":"2/9/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":274,"Cost":189,"Date":"2/11/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":135,"Cost":86,"Date":"3/10/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":15,"Cost":9,"Date":"3/16/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":18,"Cost":13,"Date":"3/18/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":924,"Cost":526,"Date":"3/20/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":798,"Cost":677,"Date":"3/26/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":822,"Cost":434,"Date":"6/2/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":682,"Cost":616,"Date":"6/10/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":492,"Cost":327,"Date":"6/16/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":94,"Cost":69,"Date":"6/25/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":162,"Cost":132,"Date":"7/19/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":415,"Cost":360,"Date":"7/21/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":25,"Cost":14,"Date":"7/25/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":823,"Cost":476,"Date":"8/4/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":134,"Cost":122,"Date":"9/2/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":658,"Cost":530,"Date":"9/4/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":327,"Cost":251,"Date":"9/19/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":19,"Cost":18,"Date":"9/29/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":887,"Cost":633,"Date":"10/2/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":114,"Cost":101,"Date":"10/15/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":431,"Cost":256,"Date":"10/30/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":340,"Cost":319,"Date":"11/9/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":732,"Cost":580,"Date":"11/23/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":765,"Cost":400,"Date":"11/30/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":371,"Cost":215,"Date":"12/8/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":881,"Cost":746,"Date":"12/11/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":769,"Cost":571,"Date":"1/15/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":33,"Cost":27,"Date":"1/24/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":985,"Cost":681,"Date":"2/3/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":432,"Cost":260,"Date":"2/4/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":911,"Cost":759,"Date":"3/9/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":248,"Cost":137,"Date":"3/12/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":920,"Cost":672,"Date":"4/19/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":862,"Cost":799,"Date":"5/3/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":431,"Cost":347,"Date":"5/4/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":9,"Cost":9,"Date":"6/8/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":493,"Cost":391,"Date":"6/26/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":459,"Cost":402,"Date":"7/4/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":789,"Cost":674,"Date":"7/13/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":930,"Cost":701,"Date":"8/8/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":866,"Cost":645,"Date":"8/26/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":74,"Cost":70,"Date":"9/2/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":212,"Cost":121,"Date":"9/29/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":455,"Cost":432,"Date":"10/12/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":759,"Cost":569,"Date":"11/2/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":806,"Cost":650,"Date":"11/4/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":865,"Cost":614,"Date":"11/7/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":251,"Cost":187,"Date":"12/1/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":119,"Cost":79,"Date":"12/4/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":682,"Cost":368,"Date":"12/7/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":801,"Cost":521,"Date":"12/18/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":891,"Cost":751,"Date":"12/20/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":932,"Cost":486,"Date":"12/20/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":590,"Cost":402,"Date":"12/21/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":671,"Cost":349,"Date":"1/9/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":550,"Cost":496,"Date":"2/5/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":506,"Cost":434,"Date":"2/16/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":21,"Cost":17,"Date":"2/16/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":158,"Cost":141,"Date":"2/18/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":557,"Cost":347,"Date":"2/22/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":270,"Cost":156,"Date":"2/25/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":92,"Cost":70,"Date":"3/8/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":847,"Cost":435,"Date":"4/2/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":586,"Cost":300,"Date":"4/3/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":49,"Cost":46,"Date":"4/9/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":443,"Cost":279,"Date":"4/10/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":907,"Cost":562,"Date":"4/19/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":902,"Cost":501,"Date":"5/17/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":706,"Cost":572,"Date":"5/22/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":392,"Cost":217,"Date":"6/20/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":610,"Cost":544,"Date":"7/1/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":449,"Cost":296,"Date":"7/4/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":435,"Cost":280,"Date":"7/8/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":714,"Cost":368,"Date":"7/9/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":813,"Cost":752,"Date":"7/14/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":779,"Cost":455,"Date":"7/19/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":187,"Cost":145,"Date":"8/1/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":262,"Cost":246,"Date":"8/6/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":711,"Cost":625,"Date":"8/7/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":624,"Cost":408,"Date":"8/22/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":579,"Cost":525,"Date":"8/31/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":672,"Cost":515,"Date":"9/1/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":695,"Cost":431,"Date":"9/1/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":101,"Cost":95,"Date":"9/17/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":15,"Cost":14,"Date":"9/29/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":889,"Cost":508,"Date":"11/7/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":760,"Cost":421,"Date":"11/26/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":527,"Cost":424,"Date":"11/27/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":78,"Cost":55,"Date":"12/5/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":958,"Cost":859,"Date":"12/26/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":959,"Cost":851,"Date":"12/31/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":554,"Cost":407,"Date":"1/20/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":587,"Cost":352,"Date":"2/2/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":538,"Cost":333,"Date":"2/8/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":525,"Cost":297,"Date":"2/27/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":946,"Cost":795,"Date":"3/1/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":838,"Cost":754,"Date":"3/1/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":595,"Cost":524,"Date":"3/19/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":40,"Cost":22,"Date":"3/28/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":137,"Cost":107,"Date":"5/21/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":370,"Cost":226,"Date":"7/21/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":279,"Cost":147,"Date":"8/5/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":415,"Cost":221,"Date":"8/12/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":382,"Cost":282,"Date":"8/21/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":510,"Cost":327,"Date":"8/23/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":156,"Cost":111,"Date":"9/3/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":518,"Cost":293,"Date":"9/5/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":727,"Cost":629,"Date":"10/6/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":685,"Cost":557,"Date":"10/19/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":737,"Cost":684,"Date":"11/15/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":508,"Cost":411,"Date":"12/8/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":752,"Cost":692,"Date":"1/8/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":725,"Cost":528,"Date":"1/14/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":64,"Cost":59,"Date":"1/19/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":776,"Cost":540,"Date":"1/28/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":668,"Cost":592,"Date":"1/31/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":367,"Cost":189,"Date":"3/27/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":883,"Cost":826,"Date":"4/20/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":518,"Cost":321,"Date":"4/24/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":778,"Cost":486,"Date":"4/28/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":159,"Cost":150,"Date":"5/15/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":530,"Cost":443,"Date":"5/16/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":642,"Cost":406,"Date":"5/18/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":162,"Cost":108,"Date":"6/2/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":210,"Cost":186,"Date":"6/3/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":4,"Cost":3,"Date":"6/5/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":871,"Cost":800,"Date":"6/7/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":486,"Cost":374,"Date":"6/14/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":303,"Cost":208,"Date":"6/20/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":653,"Cost":591,"Date":"6/24/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":181,"Cost":158,"Date":"7/4/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":190,"Cost":111,"Date":"7/9/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":374,"Cost":349,"Date":"7/12/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":270,"Cost":224,"Date":"8/14/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":527,"Cost":338,"Date":"8/16/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":486,"Cost":291,"Date":"8/23/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":868,"Cost":625,"Date":"9/2/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":479,"Cost":313,"Date":"9/3/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":529,"Cost":410,"Date":"9/16/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":352,"Cost":213,"Date":"10/4/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":745,"Cost":533,"Date":"11/1/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":752,"Cost":576,"Date":"11/2/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":395,"Cost":325,"Date":"12/17/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":418,"Cost":227,"Date":"2/10/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":370,"Cost":273,"Date":"2/28/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":568,"Cost":319,"Date":"3/4/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":820,"Cost":614,"Date":"3/9/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":923,"Cost":550,"Date":"3/9/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":32,"Cost":27,"Date":"3/11/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":655,"Cost":490,"Date":"3/17/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":359,"Cost":327,"Date":"3/17/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":554,"Cost":393,"Date":"3/23/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":329,"Cost":272,"Date":"4/1/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":538,"Cost":362,"Date":"5/7/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":842,"Cost":552,"Date":"5/10/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":626,"Cost":321,"Date":"5/20/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":519,"Cost":413,"Date":"6/2/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":922,"Cost":695,"Date":"6/11/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":480,"Cost":384,"Date":"6/16/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":133,"Cost":91,"Date":"6/16/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":869,"Cost":791,"Date":"7/10/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":386,"Cost":223,"Date":"7/11/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":279,"Cost":215,"Date":"8/28/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":651,"Cost":596,"Date":"8/29/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":622,"Cost":451,"Date":"8/31/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":148,"Cost":86,"Date":"9/8/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":954,"Cost":785,"Date":"9/13/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":332,"Cost":310,"Date":"9/14/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":923,"Cost":775,"Date":"9/19/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":327,"Cost":168,"Date":"9/25/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":309,"Cost":165,"Date":"10/4/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":355,"Cost":225,"Date":"10/10/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":241,"Cost":190,"Date":"10/17/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":39,"Cost":21,"Date":"10/28/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":723,"Cost":664,"Date":"10/30/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":834,"Cost":587,"Date":"11/1/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":78,"Cost":46,"Date":"11/15/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":71,"Cost":42,"Date":"11/25/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":490,"Cost":271,"Date":"1/10/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":757,"Cost":657,"Date":"1/14/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":667,"Cost":532,"Date":"1/20/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":611,"Cost":511,"Date":"2/8/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":286,"Cost":222,"Date":"2/25/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":753,"Cost":622,"Date":"3/7/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":819,"Cost":694,"Date":"3/14/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":903,"Cost":734,"Date":"3/27/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":977,"Cost":616,"Date":"4/5/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":634,"Cost":569,"Date":"4/14/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":656,"Cost":409,"Date":"5/3/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":288,"Cost":164,"Date":"5/9/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":323,"Cost":174,"Date":"5/15/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":935,"Cost":579,"Date":"5/25/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":269,"Cost":217,"Date":"5/26/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":240,"Cost":181,"Date":"5/31/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":430,"Cost":350,"Date":"7/27/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":513,"Cost":323,"Date":"9/17/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":735,"Cost":684,"Date":"10/6/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":708,"Cost":649,"Date":"10/8/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":630,"Cost":547,"Date":"10/26/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":901,"Cost":497,"Date":"11/16/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":350,"Cost":332,"Date":"11/18/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"HM Home","Country":"Australia","Sale":603,"Cost":402,"Date":"12/1/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":427,"Cost":305,"Date":"2/9/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":786,"Cost":645,"Date":"2/11/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":401,"Cost":377,"Date":"3/10/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":115,"Cost":83,"Date":"3/16/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":403,"Cost":225,"Date":"3/18/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":543,"Cost":334,"Date":"3/20/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":991,"Cost":741,"Date":"3/26/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":674,"Cost":454,"Date":"6/2/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":458,"Cost":330,"Date":"6/10/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":90,"Cost":85,"Date":"6/16/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":520,"Cost":373,"Date":"6/25/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":577,"Cost":309,"Date":"7/19/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":973,"Cost":715,"Date":"7/21/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":372,"Cost":267,"Date":"7/25/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":494,"Cost":441,"Date":"8/4/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":941,"Cost":682,"Date":"9/2/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":611,"Cost":480,"Date":"9/4/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":816,"Cost":511,"Date":"9/19/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":363,"Cost":318,"Date":"9/29/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":522,"Cost":477,"Date":"10/2/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":887,"Cost":695,"Date":"10/15/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":141,"Cost":80,"Date":"10/30/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":797,"Cost":644,"Date":"11/9/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":363,"Cost":292,"Date":"11/23/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":752,"Cost":575,"Date":"11/30/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":737,"Cost":672,"Date":"12/8/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":546,"Cost":357,"Date":"12/11/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":138,"Cost":117,"Date":"1/15/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":842,"Cost":579,"Date":"1/24/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":272,"Cost":224,"Date":"2/3/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":254,"Cost":210,"Date":"2/4/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":191,"Cost":172,"Date":"3/9/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":883,"Cost":705,"Date":"3/12/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":839,"Cost":517,"Date":"4/19/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":159,"Cost":143,"Date":"5/3/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":28,"Cost":16,"Date":"5/4/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":70,"Cost":39,"Date":"6/8/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":331,"Cost":240,"Date":"6/26/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":942,"Cost":857,"Date":"7/4/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":522,"Cost":467,"Date":"7/13/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":254,"Cost":234,"Date":"8/8/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":372,"Cost":323,"Date":"8/26/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":552,"Cost":468,"Date":"9/2/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":701,"Cost":560,"Date":"9/29/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":832,"Cost":431,"Date":"10/12/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":902,"Cost":720,"Date":"11/2/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":132,"Cost":106,"Date":"11/4/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":998,"Cost":598,"Date":"11/7/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":186,"Cost":141,"Date":"12/1/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":297,"Cost":231,"Date":"12/4/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":718,"Cost":445,"Date":"12/7/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":415,"Cost":375,"Date":"12/18/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":679,"Cost":547,"Date":"12/20/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":280,"Cost":150,"Date":"12/20/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":395,"Cost":309,"Date":"12/21/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":210,"Cost":145,"Date":"1/9/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":915,"Cost":607,"Date":"2/5/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":313,"Cost":269,"Date":"2/16/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":762,"Cost":556,"Date":"2/16/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":612,"Cost":315,"Date":"2/18/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":218,"Cost":170,"Date":"2/22/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":730,"Cost":451,"Date":"2/25/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":391,"Cost":280,"Date":"3/8/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":199,"Cost":162,"Date":"4/2/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":492,"Cost":280,"Date":"4/3/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":183,"Cost":123,"Date":"4/9/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":372,"Cost":334,"Date":"4/10/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":773,"Cost":594,"Date":"4/19/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":877,"Cost":727,"Date":"5/17/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":424,"Cost":397,"Date":"5/22/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":967,"Cost":637,"Date":"6/20/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":189,"Cost":100,"Date":"7/1/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":770,"Cost":424,"Date":"7/4/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":130,"Cost":73,"Date":"7/8/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":495,"Cost":286,"Date":"7/9/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":27,"Cost":16,"Date":"7/14/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":842,"Cost":534,"Date":"7/19/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":943,"Cost":497,"Date":"8/1/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":992,"Cost":750,"Date":"8/6/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":368,"Cost":343,"Date":"8/7/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":249,"Cost":143,"Date":"8/22/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":159,"Cost":118,"Date":"8/31/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":26,"Cost":16,"Date":"9/1/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":192,"Cost":97,"Date":"9/1/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":171,"Cost":155,"Date":"9/17/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":175,"Cost":152,"Date":"9/29/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":592,"Cost":300,"Date":"11/7/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":440,"Cost":376,"Date":"11/26/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":51,"Cost":37,"Date":"11/27/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":434,"Cost":408,"Date":"12/5/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":239,"Cost":125,"Date":"12/26/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":913,"Cost":537,"Date":"12/31/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":334,"Cost":195,"Date":"1/20/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":566,"Cost":369,"Date":"2/2/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":961,"Cost":626,"Date":"2/8/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":52,"Cost":38,"Date":"2/27/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":762,"Cost":643,"Date":"3/1/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":852,"Cost":784,"Date":"3/1/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":982,"Cost":616,"Date":"3/19/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":731,"Cost":446,"Date":"3/28/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":63,"Cost":52,"Date":"5/21/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":239,"Cost":188,"Date":"7/21/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":177,"Cost":108,"Date":"8/5/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":251,"Cost":170,"Date":"8/12/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":509,"Cost":482,"Date":"8/21/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":34,"Cost":30,"Date":"8/23/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":353,"Cost":301,"Date":"9/3/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":363,"Cost":267,"Date":"9/5/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":891,"Cost":499,"Date":"10/6/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":365,"Cost":304,"Date":"10/19/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":207,"Cost":169,"Date":"11/15/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":389,"Cost":277,"Date":"12/8/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":547,"Cost":352,"Date":"1/8/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":511,"Cost":272,"Date":"1/14/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":285,"Cost":248,"Date":"1/19/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":865,"Cost":766,"Date":"1/28/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":12,"Cost":9,"Date":"1/31/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":520,"Cost":303,"Date":"3/27/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":312,"Cost":283,"Date":"4/20/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":698,"Cost":494,"Date":"4/24/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":872,"Cost":664,"Date":"4/28/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":222,"Cost":147,"Date":"5/15/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":987,"Cost":817,"Date":"5/16/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":197,"Cost":143,"Date":"5/18/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":975,"Cost":642,"Date":"6/2/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":476,"Cost":299,"Date":"6/3/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":665,"Cost":414,"Date":"6/5/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":168,"Cost":133,"Date":"6/7/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":756,"Cost":530,"Date":"6/14/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":895,"Cost":760,"Date":"6/20/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":570,"Cost":457,"Date":"6/24/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":838,"Cost":667,"Date":"7/4/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":795,"Cost":572,"Date":"7/9/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":774,"Cost":624,"Date":"7/12/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":878,"Cost":602,"Date":"8/14/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":234,"Cost":166,"Date":"8/16/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":894,"Cost":555,"Date":"8/23/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":884,"Cost":487,"Date":"9/2/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":456,"Cost":267,"Date":"9/3/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":444,"Cost":372,"Date":"9/16/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":967,"Cost":614,"Date":"10/4/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":6,"Cost":4,"Date":"11/1/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":224,"Cost":166,"Date":"11/2/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":523,"Cost":493,"Date":"12/17/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":113,"Cost":92,"Date":"2/10/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":601,"Cost":410,"Date":"2/28/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":634,"Cost":428,"Date":"3/4/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":150,"Cost":82,"Date":"3/9/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":198,"Cost":172,"Date":"3/9/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":851,"Cost":490,"Date":"3/11/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":516,"Cost":452,"Date":"3/17/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":411,"Cost":367,"Date":"3/17/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":298,"Cost":177,"Date":"3/23/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":12,"Cost":6,"Date":"4/1/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":772,"Cost":704,"Date":"5/7/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":256,"Cost":193,"Date":"5/10/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":684,"Cost":472,"Date":"5/20/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":887,"Cost":770,"Date":"6/2/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":729,"Cost":551,"Date":"6/11/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":903,"Cost":477,"Date":"6/16/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":134,"Cost":88,"Date":"6/16/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":878,"Cost":760,"Date":"7/10/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":341,"Cost":194,"Date":"7/11/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":284,"Cost":258,"Date":"8/28/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":175,"Cost":141,"Date":"8/29/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":419,"Cost":213,"Date":"8/31/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":296,"Cost":161,"Date":"9/8/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":469,"Cost":427,"Date":"9/13/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":742,"Cost":481,"Date":"9/14/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":58,"Cost":31,"Date":"9/19/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":915,"Cost":695,"Date":"9/25/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":965,"Cost":644,"Date":"10/4/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":167,"Cost":110,"Date":"10/10/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":636,"Cost":574,"Date":"10/17/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":286,"Cost":192,"Date":"10/28/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":837,"Cost":504,"Date":"10/30/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":823,"Cost":432,"Date":"11/1/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":242,"Cost":181,"Date":"11/15/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":58,"Cost":41,"Date":"11/25/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":347,"Cost":311,"Date":"1/10/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":284,"Cost":161,"Date":"1/14/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":413,"Cost":237,"Date":"1/20/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":243,"Cost":227,"Date":"2/8/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":313,"Cost":185,"Date":"2/25/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":924,"Cost":852,"Date":"3/7/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":742,"Cost":488,"Date":"3/14/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":469,"Cost":359,"Date":"3/27/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":410,"Cost":374,"Date":"4/5/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":163,"Cost":139,"Date":"4/14/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":684,"Cost":504,"Date":"5/3/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":698,"Cost":550,"Date":"5/9/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":482,"Cost":404,"Date":"5/15/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":765,"Cost":676,"Date":"5/25/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":740,"Cost":658,"Date":"5/26/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":967,"Cost":694,"Date":"5/31/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":250,"Cost":188,"Date":"7/27/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":93,"Cost":77,"Date":"9/17/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":339,"Cost":279,"Date":"10/6/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":734,"Cost":640,"Date":"10/8/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":320,"Cost":254,"Date":"10/26/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":585,"Cost":491,"Date":"11/16/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":681,"Cost":483,"Date":"11/18/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"COS","Country":"Australia","Sale":289,"Cost":229,"Date":"12/1/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":340,"Cost":241,"Date":"2/9/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":330,"Cost":229,"Date":"2/11/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":774,"Cost":533,"Date":"3/10/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":60,"Cost":54,"Date":"3/16/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":414,"Cost":296,"Date":"3/18/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":271,"Cost":208,"Date":"3/20/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":99,"Cost":90,"Date":"3/26/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":358,"Cost":337,"Date":"6/2/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":855,"Cost":796,"Date":"6/10/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":461,"Cost":277,"Date":"6/16/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":697,"Cost":406,"Date":"6/25/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":976,"Cost":713,"Date":"7/19/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":462,"Cost":283,"Date":"7/21/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":144,"Cost":101,"Date":"7/25/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":627,"Cost":577,"Date":"8/4/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":511,"Cost":415,"Date":"9/2/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":142,"Cost":113,"Date":"9/4/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":573,"Cost":427,"Date":"9/19/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":706,"Cost":480,"Date":"9/29/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":9,"Cost":5,"Date":"10/2/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":638,"Cost":540,"Date":"10/15/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":574,"Cost":332,"Date":"10/30/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":267,"Cost":249,"Date":"11/9/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":958,"Cost":572,"Date":"11/23/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":394,"Cost":321,"Date":"11/30/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":5,"Cost":4,"Date":"12/8/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":675,"Cost":365,"Date":"12/11/2018"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":977,"Cost":782,"Date":"1/15/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":975,"Cost":694,"Date":"1/24/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":418,"Cost":315,"Date":"2/3/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":935,"Cost":836,"Date":"2/4/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":705,"Cost":398,"Date":"3/9/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":557,"Cost":432,"Date":"3/12/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":84,"Cost":62,"Date":"4/19/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":647,"Cost":407,"Date":"5/3/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":195,"Cost":111,"Date":"5/4/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":534,"Cost":445,"Date":"6/8/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":691,"Cost":514,"Date":"6/26/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":182,"Cost":114,"Date":"7/4/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":257,"Cost":205,"Date":"7/13/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":990,"Cost":523,"Date":"8/8/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":417,"Cost":350,"Date":"8/26/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":99,"Cost":90,"Date":"9/2/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":101,"Cost":91,"Date":"9/29/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":899,"Cost":809,"Date":"10/12/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":417,"Cost":248,"Date":"11/2/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":185,"Cost":105,"Date":"11/4/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":550,"Cost":389,"Date":"11/7/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":572,"Cost":302,"Date":"12/1/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":1000,"Cost":545,"Date":"12/4/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":996,"Cost":625,"Date":"12/7/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":199,"Cost":109,"Date":"12/18/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":712,"Cost":573,"Date":"12/20/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":477,"Cost":307,"Date":"12/20/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":369,"Cost":274,"Date":"12/21/2019"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":689,"Cost":397,"Date":"1/9/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":858,"Cost":701,"Date":"2/5/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":123,"Cost":61,"Date":"2/16/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":700,"Cost":541,"Date":"2/16/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":606,"Cost":343,"Date":"2/18/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":497,"Cost":293,"Date":"2/22/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":496,"Cost":390,"Date":"2/25/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":625,"Cost":551,"Date":"3/8/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":8,"Cost":6,"Date":"4/2/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":686,"Cost":639,"Date":"4/3/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":488,"Cost":381,"Date":"4/9/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":152,"Cost":128,"Date":"4/10/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":620,"Cost":404,"Date":"4/19/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":505,"Cost":431,"Date":"5/17/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":51,"Cost":41,"Date":"5/22/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":816,"Cost":730,"Date":"6/20/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":253,"Cost":213,"Date":"7/1/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":878,"Cost":454,"Date":"7/4/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":287,"Cost":175,"Date":"7/8/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":62,"Cost":58,"Date":"7/9/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":620,"Cost":354,"Date":"7/14/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":528,"Cost":383,"Date":"7/19/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":123,"Cost":110,"Date":"8/1/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":212,"Cost":182,"Date":"8/6/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":310,"Cost":226,"Date":"8/7/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":21,"Cost":11,"Date":"8/22/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":566,"Cost":483,"Date":"8/31/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":230,"Cost":154,"Date":"9/1/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":148,"Cost":121,"Date":"9/1/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":142,"Cost":129,"Date":"9/17/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":482,"Cost":433,"Date":"9/29/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":793,"Cost":465,"Date":"11/7/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":958,"Cost":720,"Date":"11/26/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":227,"Cost":168,"Date":"11/27/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":864,"Cost":475,"Date":"12/5/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":696,"Cost":661,"Date":"12/26/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":373,"Cost":193,"Date":"12/31/2020"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":103,"Cost":57,"Date":"1/20/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":874,"Cost":755,"Date":"2/2/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":999,"Cost":832,"Date":"2/8/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":304,"Cost":154,"Date":"2/27/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":685,"Cost":418,"Date":"3/1/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":855,"Cost":641,"Date":"3/1/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":764,"Cost":391,"Date":"3/19/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":252,"Cost":231,"Date":"3/28/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":882,"Cost":745,"Date":"5/21/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":624,"Cost":338,"Date":"7/21/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":479,"Cost":306,"Date":"8/5/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":554,"Cost":320,"Date":"8/12/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":715,"Cost":554,"Date":"8/21/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":241,"Cost":223,"Date":"8/23/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":207,"Cost":194,"Date":"9/3/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":488,"Cost":337,"Date":"9/5/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":559,"Cost":452,"Date":"10/6/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":804,"Cost":562,"Date":"10/19/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":190,"Cost":157,"Date":"11/15/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":826,"Cost":598,"Date":"12/8/2021"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":451,"Cost":272,"Date":"1/8/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":878,"Cost":803,"Date":"1/14/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":926,"Cost":798,"Date":"1/19/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":760,"Cost":507,"Date":"1/28/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":508,"Cost":312,"Date":"1/31/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":950,"Cost":563,"Date":"3/27/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":362,"Cost":248,"Date":"4/20/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":207,"Cost":183,"Date":"4/24/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":388,"Cost":322,"Date":"4/28/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":876,"Cost":770,"Date":"5/15/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":20,"Cost":17,"Date":"5/16/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":578,"Cost":525,"Date":"5/18/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":91,"Cost":62,"Date":"6/2/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":760,"Cost":713,"Date":"6/3/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":166,"Cost":127,"Date":"6/5/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":752,"Cost":616,"Date":"6/7/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":141,"Cost":105,"Date":"6/14/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":32,"Cost":25,"Date":"6/20/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":357,"Cost":314,"Date":"6/24/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":920,"Cost":866,"Date":"7/4/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":126,"Cost":82,"Date":"7/9/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":403,"Cost":254,"Date":"7/12/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":792,"Cost":553,"Date":"8/14/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":722,"Cost":574,"Date":"8/16/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":349,"Cost":258,"Date":"8/23/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":968,"Cost":855,"Date":"9/2/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":639,"Cost":542,"Date":"9/3/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":537,"Cost":444,"Date":"9/16/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":564,"Cost":461,"Date":"10/4/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":828,"Cost":519,"Date":"11/1/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":461,"Cost":310,"Date":"11/2/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":336,"Cost":169,"Date":"12/17/2022"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":858,"Cost":515,"Date":"2/10/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":226,"Cost":187,"Date":"2/28/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":53,"Cost":46,"Date":"3/4/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":961,"Cost":580,"Date":"3/9/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":619,"Cost":506,"Date":"3/9/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":514,"Cost":402,"Date":"3/11/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":52,"Cost":32,"Date":"3/17/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":706,"Cost":632,"Date":"3/17/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":18,"Cost":9,"Date":"3/23/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":699,"Cost":431,"Date":"4/1/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":642,"Cost":450,"Date":"5/7/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":197,"Cost":161,"Date":"5/10/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":734,"Cost":597,"Date":"5/20/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":161,"Cost":114,"Date":"6/2/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":349,"Cost":325,"Date":"6/11/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":397,"Cost":215,"Date":"6/16/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":353,"Cost":192,"Date":"6/16/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":68,"Cost":56,"Date":"7/10/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":853,"Cost":559,"Date":"7/11/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":770,"Cost":493,"Date":"8/28/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":933,"Cost":885,"Date":"8/29/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":619,"Cost":415,"Date":"8/31/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":48,"Cost":31,"Date":"9/8/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":762,"Cost":431,"Date":"9/13/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":544,"Cost":336,"Date":"9/14/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":812,"Cost":644,"Date":"9/19/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":160,"Cost":90,"Date":"9/25/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":106,"Cost":91,"Date":"10/4/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":720,"Cost":461,"Date":"10/10/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":226,"Cost":122,"Date":"10/17/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":44,"Cost":32,"Date":"10/28/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":372,"Cost":243,"Date":"10/30/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":351,"Cost":270,"Date":"11/1/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":771,"Cost":552,"Date":"11/15/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":736,"Cost":416,"Date":"11/25/2023"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":496,"Cost":333,"Date":"1/10/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":770,"Cost":485,"Date":"1/14/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":316,"Cost":189,"Date":"1/20/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":90,"Cost":50,"Date":"2/8/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":814,"Cost":740,"Date":"2/25/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":687,"Cost":498,"Date":"3/7/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":6,"Cost":4,"Date":"3/14/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":282,"Cost":228,"Date":"3/27/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":379,"Cost":329,"Date":"4/5/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":302,"Cost":215,"Date":"4/14/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":32,"Cost":29,"Date":"5/3/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":251,"Cost":139,"Date":"5/9/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":870,"Cost":456,"Date":"5/15/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":470,"Cost":395,"Date":"5/25/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":860,"Cost":527,"Date":"5/26/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":701,"Cost":387,"Date":"5/31/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":240,"Cost":129,"Date":"7/27/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":314,"Cost":220,"Date":"9/17/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":434,"Cost":395,"Date":"10/6/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":749,"Cost":473,"Date":"10/8/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":766,"Cost":554,"Date":"10/26/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":777,"Cost":693,"Date":"11/16/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":212,"Cost":145,"Date":"11/18/2024"},{"Store":"Centro Meadow Mews, Launceston","Brand":"Jeans","Country":"Australia","Sale":827,"Cost":631,"Date":"12/1/2024"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":899,"Cost":739,"Date":"2/9/2018"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":721,"Cost":647,"Date":"2/11/2018"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":967,"Cost":590,"Date":"3/10/2018"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":329,"Cost":282,"Date":"3/16/2018"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":682,"Cost":597,"Date":"3/18/2018"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":174,"Cost":133,"Date":"3/20/2018"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":69,"Cost":47,"Date":"3/26/2018"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":365,"Cost":338,"Date":"6/2/2018"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":836,"Cost":428,"Date":"6/10/2018"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":171,"Cost":151,"Date":"6/16/2018"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":271,"Cost":243,"Date":"6/25/2018"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":706,"Cost":453,"Date":"7/19/2018"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":937,"Cost":561,"Date":"7/21/2018"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":884,"Cost":610,"Date":"7/25/2018"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":683,"Cost":434,"Date":"8/4/2018"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":256,"Cost":194,"Date":"9/2/2018"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":268,"Cost":214,"Date":"9/4/2018"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":306,"Cost":251,"Date":"9/19/2018"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":335,"Cost":285,"Date":"9/29/2018"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":378,"Cost":233,"Date":"10/2/2018"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":220,"Cost":206,"Date":"10/15/2018"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":615,"Cost":368,"Date":"10/30/2018"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":10,"Cost":5,"Date":"11/9/2018"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":174,"Cost":154,"Date":"11/23/2018"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":541,"Cost":454,"Date":"11/30/2018"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":274,"Cost":178,"Date":"12/8/2018"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":734,"Cost":448,"Date":"12/11/2018"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":458,"Cost":390,"Date":"1/15/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":243,"Cost":196,"Date":"1/24/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":316,"Cost":222,"Date":"2/3/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":4,"Cost":3,"Date":"2/4/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":428,"Cost":315,"Date":"3/9/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":225,"Cost":174,"Date":"3/12/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":363,"Cost":333,"Date":"4/19/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":696,"Cost":634,"Date":"5/3/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":951,"Cost":592,"Date":"5/4/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":529,"Cost":353,"Date":"6/8/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":409,"Cost":257,"Date":"6/26/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":607,"Cost":552,"Date":"7/4/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":940,"Cost":893,"Date":"7/13/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":853,"Cost":675,"Date":"8/8/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":594,"Cost":555,"Date":"8/26/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":627,"Cost":371,"Date":"9/2/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":983,"Cost":812,"Date":"9/29/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":76,"Cost":53,"Date":"10/12/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":476,"Cost":423,"Date":"11/2/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":82,"Cost":46,"Date":"11/4/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":445,"Cost":379,"Date":"11/7/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":676,"Cost":425,"Date":"12/1/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":260,"Cost":229,"Date":"12/4/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":828,"Cost":653,"Date":"12/7/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":620,"Cost":383,"Date":"12/18/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":341,"Cost":256,"Date":"12/20/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":713,"Cost":538,"Date":"12/20/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":446,"Cost":299,"Date":"12/21/2019"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":678,"Cost":446,"Date":"1/9/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":964,"Cost":537,"Date":"2/5/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":832,"Cost":596,"Date":"2/16/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":27,"Cost":25,"Date":"2/16/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":888,"Cost":577,"Date":"2/18/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":182,"Cost":160,"Date":"2/22/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":299,"Cost":262,"Date":"2/25/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":348,"Cost":195,"Date":"3/8/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":315,"Cost":181,"Date":"4/2/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":829,"Cost":495,"Date":"4/3/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":123,"Cost":103,"Date":"4/9/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":411,"Cost":341,"Date":"4/10/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":771,"Cost":699,"Date":"4/19/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":407,"Cost":337,"Date":"5/17/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":817,"Cost":482,"Date":"5/22/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":560,"Cost":519,"Date":"6/20/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":361,"Cost":290,"Date":"7/1/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":478,"Cost":386,"Date":"7/4/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":762,"Cost":554,"Date":"7/8/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":344,"Cost":251,"Date":"7/9/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":829,"Cost":590,"Date":"7/14/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":134,"Cost":90,"Date":"7/19/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":737,"Cost":648,"Date":"8/1/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":625,"Cost":548,"Date":"8/6/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":919,"Cost":718,"Date":"8/7/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":386,"Cost":209,"Date":"8/22/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":173,"Cost":105,"Date":"8/31/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":874,"Cost":736,"Date":"9/1/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":932,"Cost":694,"Date":"9/1/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":334,"Cost":285,"Date":"9/17/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":253,"Cost":142,"Date":"9/29/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":193,"Cost":147,"Date":"11/7/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":777,"Cost":595,"Date":"11/26/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":360,"Cost":322,"Date":"11/27/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":635,"Cost":525,"Date":"12/5/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":109,"Cost":99,"Date":"12/26/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":357,"Cost":204,"Date":"12/31/2020"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":555,"Cost":375,"Date":"1/20/2021"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":116,"Cost":68,"Date":"2/2/2021"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":443,"Cost":407,"Date":"2/8/2021"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":451,"Cost":239,"Date":"2/27/2021"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":908,"Cost":799,"Date":"3/1/2021"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":982,"Cost":519,"Date":"3/1/2021"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":693,"Cost":625,"Date":"3/19/2021"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":529,"Cost":439,"Date":"3/28/2021"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":678,"Cost":556,"Date":"5/21/2021"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":772,"Cost":702,"Date":"7/21/2021"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":680,"Cost":435,"Date":"8/5/2021"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":469,"Cost":404,"Date":"8/12/2021"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":216,"Cost":145,"Date":"8/21/2021"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":413,"Cost":392,"Date":"8/23/2021"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":622,"Cost":479,"Date":"9/3/2021"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":792,"Cost":729,"Date":"9/5/2021"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":305,"Cost":177,"Date":"10/6/2021"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":98,"Cost":73,"Date":"10/19/2021"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":532,"Cost":401,"Date":"11/15/2021"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":551,"Cost":477,"Date":"12/8/2021"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":662,"Cost":443,"Date":"1/8/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":522,"Cost":279,"Date":"1/14/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":14,"Cost":7,"Date":"1/19/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":82,"Cost":54,"Date":"1/28/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":429,"Cost":317,"Date":"1/31/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":955,"Cost":883,"Date":"3/27/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":772,"Cost":495,"Date":"4/20/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":377,"Cost":195,"Date":"4/24/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":627,"Cost":316,"Date":"4/28/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":421,"Cost":319,"Date":"5/15/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":196,"Cost":150,"Date":"5/16/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":837,"Cost":495,"Date":"5/18/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":404,"Cost":252,"Date":"6/2/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":936,"Cost":613,"Date":"6/3/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":657,"Cost":562,"Date":"6/5/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":605,"Cost":459,"Date":"6/7/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":59,"Cost":34,"Date":"6/14/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":172,"Cost":102,"Date":"6/20/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":673,"Cost":357,"Date":"6/24/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":804,"Cost":430,"Date":"7/4/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":705,"Cost":508,"Date":"7/9/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":706,"Cost":395,"Date":"7/12/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":929,"Cost":561,"Date":"8/14/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":294,"Cost":205,"Date":"8/16/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":26,"Cost":15,"Date":"8/23/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":874,"Cost":526,"Date":"9/2/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":208,"Cost":117,"Date":"9/3/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":713,"Cost":369,"Date":"9/16/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":398,"Cost":259,"Date":"10/4/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":807,"Cost":459,"Date":"11/1/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":722,"Cost":546,"Date":"11/2/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":878,"Cost":689,"Date":"12/17/2022"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":343,"Cost":241,"Date":"2/10/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":768,"Cost":606,"Date":"2/28/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":910,"Cost":707,"Date":"3/4/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":937,"Cost":607,"Date":"3/9/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":860,"Cost":610,"Date":"3/9/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":665,"Cost":429,"Date":"3/11/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":731,"Cost":401,"Date":"3/17/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":856,"Cost":511,"Date":"3/17/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":30,"Cost":15,"Date":"3/23/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":517,"Cost":422,"Date":"4/1/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":851,"Cost":734,"Date":"5/7/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":941,"Cost":579,"Date":"5/10/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":885,"Cost":738,"Date":"5/20/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":785,"Cost":658,"Date":"6/2/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":623,"Cost":377,"Date":"6/11/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":37,"Cost":30,"Date":"6/16/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":523,"Cost":280,"Date":"6/16/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":95,"Cost":48,"Date":"7/10/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":725,"Cost":611,"Date":"7/11/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":62,"Cost":55,"Date":"8/28/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":648,"Cost":418,"Date":"8/29/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":336,"Cost":254,"Date":"8/31/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":727,"Cost":445,"Date":"9/8/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":118,"Cost":66,"Date":"9/13/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":462,"Cost":425,"Date":"9/14/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":161,"Cost":104,"Date":"9/19/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":729,"Cost":446,"Date":"9/25/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":117,"Cost":73,"Date":"10/4/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":615,"Cost":509,"Date":"10/10/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":212,"Cost":127,"Date":"10/17/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":615,"Cost":412,"Date":"10/28/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":26,"Cost":20,"Date":"10/30/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":617,"Cost":474,"Date":"11/1/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":12,"Cost":11,"Date":"11/15/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":670,"Cost":572,"Date":"11/25/2023"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":540,"Cost":440,"Date":"1/10/2024"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":950,"Cost":891,"Date":"1/14/2024"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":347,"Cost":308,"Date":"1/20/2024"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":118,"Cost":93,"Date":"2/8/2024"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":132,"Cost":117,"Date":"2/25/2024"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":954,"Cost":511,"Date":"3/7/2024"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":252,"Cost":238,"Date":"3/14/2024"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":301,"Cost":177,"Date":"3/27/2024"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":658,"Cost":383,"Date":"4/5/2024"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":444,"Cost":410,"Date":"4/14/2024"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":647,"Cost":493,"Date":"5/3/2024"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":745,"Cost":463,"Date":"5/9/2024"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":494,"Cost":392,"Date":"5/15/2024"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":473,"Cost":307,"Date":"5/25/2024"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":861,"Cost":448,"Date":"5/26/2024"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":111,"Cost":73,"Date":"5/31/2024"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":642,"Cost":462,"Date":"7/27/2024"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":210,"Cost":188,"Date":"9/17/2024"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":816,"Cost":522,"Date":"10/6/2024"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":27,"Cost":26,"Date":"10/8/2024"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":221,"Cost":149,"Date":"10/26/2024"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":253,"Cost":236,"Date":"11/16/2024"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":50,"Cost":40,"Date":"11/18/2024"},{"Store":"CentrO, Oberhausen","Brand":"HM","Country":"Germany","Sale":140,"Cost":132,"Date":"12/1/2024"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":739,"Cost":372,"Date":"2/9/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":151,"Cost":131,"Date":"2/11/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":512,"Cost":484,"Date":"3/10/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":451,"Cost":233,"Date":"3/16/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":868,"Cost":694,"Date":"3/18/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":222,"Cost":146,"Date":"3/20/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":540,"Cost":292,"Date":"3/26/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":662,"Cost":571,"Date":"6/2/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":712,"Cost":431,"Date":"6/10/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":121,"Cost":110,"Date":"6/16/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":920,"Cost":619,"Date":"6/25/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":475,"Cost":317,"Date":"7/19/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":181,"Cost":100,"Date":"7/21/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":33,"Cost":27,"Date":"7/25/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":123,"Cost":106,"Date":"8/4/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":935,"Cost":541,"Date":"9/2/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":516,"Cost":362,"Date":"9/4/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":11,"Cost":8,"Date":"9/19/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":422,"Cost":256,"Date":"9/29/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":609,"Cost":547,"Date":"10/2/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":599,"Cost":401,"Date":"10/15/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":23,"Cost":12,"Date":"10/30/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":890,"Cost":634,"Date":"11/9/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":513,"Cost":335,"Date":"11/23/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":521,"Cost":435,"Date":"11/30/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":195,"Cost":178,"Date":"12/8/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":800,"Cost":615,"Date":"12/11/2018"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":4,"Cost":2,"Date":"1/15/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":386,"Cost":289,"Date":"1/24/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":259,"Cost":162,"Date":"2/3/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":404,"Cost":236,"Date":"2/4/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":283,"Cost":262,"Date":"3/9/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":599,"Cost":311,"Date":"3/12/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":213,"Cost":153,"Date":"4/19/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":607,"Cost":434,"Date":"5/3/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":975,"Cost":489,"Date":"5/4/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":942,"Cost":876,"Date":"6/8/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":183,"Cost":161,"Date":"6/26/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":41,"Cost":33,"Date":"7/4/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":907,"Cost":845,"Date":"7/13/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":531,"Cost":267,"Date":"8/8/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":553,"Cost":510,"Date":"8/26/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":16,"Cost":9,"Date":"9/2/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":480,"Cost":242,"Date":"9/29/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":323,"Cost":193,"Date":"10/12/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":440,"Cost":413,"Date":"11/2/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":414,"Cost":269,"Date":"11/4/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":280,"Cost":247,"Date":"11/7/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":936,"Cost":596,"Date":"12/1/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":295,"Cost":156,"Date":"12/4/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":973,"Cost":560,"Date":"12/7/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":389,"Cost":251,"Date":"12/18/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":868,"Cost":561,"Date":"12/20/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":682,"Cost":497,"Date":"12/20/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":979,"Cost":898,"Date":"12/21/2019"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":78,"Cost":57,"Date":"1/9/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":170,"Cost":134,"Date":"2/5/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":342,"Cost":248,"Date":"2/16/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":224,"Cost":169,"Date":"2/16/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":194,"Cost":115,"Date":"2/18/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":549,"Cost":298,"Date":"2/22/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":874,"Cost":690,"Date":"2/25/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":58,"Cost":38,"Date":"3/8/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":756,"Cost":581,"Date":"4/2/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":126,"Cost":95,"Date":"4/3/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":847,"Cost":637,"Date":"4/9/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":50,"Cost":40,"Date":"4/10/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":349,"Cost":188,"Date":"4/19/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":682,"Cost":394,"Date":"5/17/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":862,"Cost":592,"Date":"5/22/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":748,"Cost":535,"Date":"6/20/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":658,"Cost":348,"Date":"7/1/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":885,"Cost":475,"Date":"7/4/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":326,"Cost":215,"Date":"7/8/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":539,"Cost":509,"Date":"7/9/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":485,"Cost":392,"Date":"7/14/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":423,"Cost":218,"Date":"7/19/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":794,"Cost":669,"Date":"8/1/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":507,"Cost":403,"Date":"8/6/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":141,"Cost":78,"Date":"8/7/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":327,"Cost":207,"Date":"8/22/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":708,"Cost":553,"Date":"8/31/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":395,"Cost":343,"Date":"9/1/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":567,"Cost":338,"Date":"9/1/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":814,"Cost":762,"Date":"9/17/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":935,"Cost":502,"Date":"9/29/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":9,"Cost":9,"Date":"11/7/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":72,"Cost":61,"Date":"11/26/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":434,"Cost":413,"Date":"11/27/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":66,"Cost":63,"Date":"12/5/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":782,"Cost":643,"Date":"12/26/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":817,"Cost":466,"Date":"12/31/2020"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":839,"Cost":487,"Date":"1/20/2021"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":914,"Cost":501,"Date":"2/2/2021"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":538,"Cost":385,"Date":"2/8/2021"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":137,"Cost":127,"Date":"2/27/2021"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":519,"Cost":301,"Date":"3/1/2021"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":577,"Cost":522,"Date":"3/1/2021"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":855,"Cost":651,"Date":"3/19/2021"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":410,"Cost":363,"Date":"3/28/2021"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":105,"Cost":53,"Date":"5/21/2021"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":21,"Cost":15,"Date":"7/21/2021"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":532,"Cost":387,"Date":"8/5/2021"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":114,"Cost":97,"Date":"8/12/2021"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":792,"Cost":418,"Date":"8/21/2021"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":986,"Cost":728,"Date":"8/23/2021"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":102,"Cost":77,"Date":"9/3/2021"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":471,"Cost":322,"Date":"9/5/2021"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":15,"Cost":9,"Date":"10/6/2021"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":342,"Cost":222,"Date":"10/19/2021"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":196,"Cost":180,"Date":"11/15/2021"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":580,"Cost":498,"Date":"12/8/2021"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":593,"Cost":333,"Date":"1/8/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":566,"Cost":289,"Date":"1/14/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":439,"Cost":404,"Date":"1/19/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":631,"Cost":462,"Date":"1/28/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":989,"Cost":886,"Date":"1/31/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":423,"Cost":289,"Date":"3/27/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":277,"Cost":212,"Date":"4/20/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":38,"Cost":27,"Date":"4/24/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":215,"Cost":146,"Date":"4/28/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":554,"Cost":393,"Date":"5/15/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":616,"Cost":403,"Date":"5/16/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":63,"Cost":45,"Date":"5/18/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":882,"Cost":449,"Date":"6/2/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":241,"Cost":186,"Date":"6/3/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":458,"Cost":243,"Date":"6/5/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":762,"Cost":434,"Date":"6/7/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":282,"Cost":239,"Date":"6/14/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":163,"Cost":85,"Date":"6/20/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":83,"Cost":44,"Date":"6/24/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":226,"Cost":127,"Date":"7/4/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":437,"Cost":325,"Date":"7/9/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":494,"Cost":372,"Date":"7/12/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":843,"Cost":724,"Date":"8/14/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":720,"Cost":398,"Date":"8/16/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":156,"Cost":89,"Date":"8/23/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":979,"Cost":827,"Date":"9/2/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":859,"Cost":698,"Date":"9/3/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":417,"Cost":236,"Date":"9/16/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":162,"Cost":109,"Date":"10/4/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":326,"Cost":250,"Date":"11/1/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":792,"Cost":542,"Date":"11/2/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":907,"Cost":715,"Date":"12/17/2022"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":686,"Cost":572,"Date":"2/10/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":417,"Cost":313,"Date":"2/28/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":449,"Cost":313,"Date":"3/4/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":831,"Cost":419,"Date":"3/9/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":649,"Cost":417,"Date":"3/9/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":533,"Cost":443,"Date":"3/11/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":155,"Cost":115,"Date":"3/17/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":103,"Cost":76,"Date":"3/17/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":139,"Cost":109,"Date":"3/23/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":813,"Cost":493,"Date":"4/1/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":403,"Cost":373,"Date":"5/7/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":606,"Cost":355,"Date":"5/10/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":245,"Cost":141,"Date":"5/20/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":238,"Cost":124,"Date":"6/2/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":757,"Cost":535,"Date":"6/11/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":681,"Cost":384,"Date":"6/16/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":704,"Cost":533,"Date":"6/16/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":56,"Cost":44,"Date":"7/10/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":339,"Cost":224,"Date":"7/11/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":746,"Cost":678,"Date":"8/28/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":740,"Cost":532,"Date":"8/29/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":864,"Cost":637,"Date":"8/31/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":306,"Cost":198,"Date":"9/8/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":952,"Cost":813,"Date":"9/13/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":188,"Cost":142,"Date":"9/14/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":800,"Cost":706,"Date":"9/19/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":749,"Cost":690,"Date":"9/25/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":564,"Cost":448,"Date":"10/4/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":238,"Cost":163,"Date":"10/10/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":836,"Cost":429,"Date":"10/17/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":298,"Cost":219,"Date":"10/28/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":232,"Cost":120,"Date":"10/30/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":953,"Cost":581,"Date":"11/1/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":359,"Cost":309,"Date":"11/15/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":290,"Cost":261,"Date":"11/25/2023"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":927,"Cost":510,"Date":"1/10/2024"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":705,"Cost":627,"Date":"1/14/2024"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":773,"Cost":649,"Date":"1/20/2024"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":1,"Cost":0,"Date":"2/8/2024"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":940,"Cost":682,"Date":"2/25/2024"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":541,"Cost":291,"Date":"3/7/2024"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":730,"Cost":467,"Date":"3/14/2024"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":571,"Cost":350,"Date":"3/27/2024"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":15,"Cost":13,"Date":"4/5/2024"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":392,"Cost":223,"Date":"4/14/2024"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":661,"Cost":595,"Date":"5/3/2024"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":304,"Cost":169,"Date":"5/9/2024"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":145,"Cost":78,"Date":"5/15/2024"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":904,"Cost":677,"Date":"5/25/2024"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":605,"Cost":333,"Date":"5/26/2024"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":388,"Cost":239,"Date":"5/31/2024"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":630,"Cost":340,"Date":"7/27/2024"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":365,"Cost":292,"Date":"9/17/2024"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":109,"Cost":82,"Date":"10/6/2024"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":533,"Cost":273,"Date":"10/8/2024"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":112,"Cost":103,"Date":"10/26/2024"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":523,"Cost":428,"Date":"11/16/2024"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":506,"Cost":273,"Date":"11/18/2024"},{"Store":"CentrO, Oberhausen","Brand":"Sellpy","Country":"Germany","Sale":802,"Cost":411,"Date":"12/1/2024"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":396,"Cost":277,"Date":"2/9/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":346,"Cost":236,"Date":"2/11/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":856,"Cost":572,"Date":"3/10/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":520,"Cost":402,"Date":"3/16/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":993,"Cost":733,"Date":"3/18/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":550,"Cost":353,"Date":"3/20/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":885,"Cost":738,"Date":"3/26/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":989,"Cost":667,"Date":"6/2/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":795,"Cost":531,"Date":"6/10/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":652,"Cost":502,"Date":"6/16/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":166,"Cost":131,"Date":"6/25/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":126,"Cost":114,"Date":"7/19/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":342,"Cost":246,"Date":"7/21/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":140,"Cost":128,"Date":"7/25/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":120,"Cost":78,"Date":"8/4/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":429,"Cost":349,"Date":"9/2/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":901,"Cost":719,"Date":"9/4/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":280,"Cost":210,"Date":"9/19/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":803,"Cost":735,"Date":"9/29/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":879,"Cost":508,"Date":"10/2/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":54,"Cost":48,"Date":"10/15/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":933,"Cost":622,"Date":"10/30/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":676,"Cost":484,"Date":"11/9/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":360,"Cost":208,"Date":"11/23/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":235,"Cost":180,"Date":"11/30/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":754,"Cost":470,"Date":"12/8/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":600,"Cost":522,"Date":"12/11/2018"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":334,"Cost":245,"Date":"1/15/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":16,"Cost":14,"Date":"1/24/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":564,"Cost":364,"Date":"2/3/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":331,"Cost":257,"Date":"2/4/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":354,"Cost":181,"Date":"3/9/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":928,"Cost":707,"Date":"3/12/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":903,"Cost":458,"Date":"4/19/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":749,"Cost":513,"Date":"5/3/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":858,"Cost":485,"Date":"5/4/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":244,"Cost":178,"Date":"6/8/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":807,"Cost":609,"Date":"6/26/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":154,"Cost":113,"Date":"7/4/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":808,"Cost":553,"Date":"7/13/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":297,"Cost":212,"Date":"8/8/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":805,"Cost":735,"Date":"8/26/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":554,"Cost":462,"Date":"9/2/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":657,"Cost":600,"Date":"9/29/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":583,"Cost":529,"Date":"10/12/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":144,"Cost":118,"Date":"11/2/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":582,"Cost":317,"Date":"11/4/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":61,"Cost":36,"Date":"11/7/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":864,"Cost":789,"Date":"12/1/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":554,"Cost":513,"Date":"12/4/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":548,"Cost":426,"Date":"12/7/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":517,"Cost":379,"Date":"12/18/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":93,"Cost":62,"Date":"12/20/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":36,"Cost":34,"Date":"12/20/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":766,"Cost":535,"Date":"12/21/2019"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":448,"Cost":358,"Date":"1/9/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":806,"Cost":463,"Date":"2/5/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":1000,"Cost":803,"Date":"2/16/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":35,"Cost":18,"Date":"2/16/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":358,"Cost":223,"Date":"2/18/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":842,"Cost":587,"Date":"2/22/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":918,"Cost":871,"Date":"2/25/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":675,"Cost":607,"Date":"3/8/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":699,"Cost":637,"Date":"4/2/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":288,"Cost":240,"Date":"4/3/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":802,"Cost":616,"Date":"4/9/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":763,"Cost":568,"Date":"4/10/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":319,"Cost":251,"Date":"4/19/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":789,"Cost":635,"Date":"5/17/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":417,"Cost":230,"Date":"5/22/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":418,"Cost":266,"Date":"6/20/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":951,"Cost":880,"Date":"7/1/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":333,"Cost":297,"Date":"7/4/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":639,"Cost":416,"Date":"7/8/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":391,"Cost":297,"Date":"7/9/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":820,"Cost":417,"Date":"7/14/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":772,"Cost":720,"Date":"7/19/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":801,"Cost":584,"Date":"8/1/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":679,"Cost":487,"Date":"8/6/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":338,"Cost":304,"Date":"8/7/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":2,"Cost":2,"Date":"8/22/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":254,"Cost":204,"Date":"8/31/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":198,"Cost":109,"Date":"9/1/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":68,"Cost":35,"Date":"9/1/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":280,"Cost":208,"Date":"9/17/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":387,"Cost":358,"Date":"9/29/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":718,"Cost":579,"Date":"11/7/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":775,"Cost":530,"Date":"11/26/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":71,"Cost":42,"Date":"11/27/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":581,"Cost":358,"Date":"12/5/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":25,"Cost":19,"Date":"12/26/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":531,"Cost":313,"Date":"12/31/2020"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":788,"Cost":737,"Date":"1/20/2021"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":7,"Cost":5,"Date":"2/2/2021"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":89,"Cost":83,"Date":"2/8/2021"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":492,"Cost":352,"Date":"2/27/2021"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":173,"Cost":150,"Date":"3/1/2021"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":285,"Cost":143,"Date":"3/1/2021"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":927,"Cost":732,"Date":"3/19/2021"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":610,"Cost":385,"Date":"3/28/2021"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":861,"Cost":715,"Date":"5/21/2021"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":554,"Cost":336,"Date":"7/21/2021"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":255,"Cost":197,"Date":"8/5/2021"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":416,"Cost":357,"Date":"8/12/2021"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":557,"Cost":506,"Date":"8/21/2021"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":5,"Cost":4,"Date":"8/23/2021"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":40,"Cost":38,"Date":"9/3/2021"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":626,"Cost":557,"Date":"9/5/2021"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":189,"Cost":118,"Date":"10/6/2021"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":885,"Cost":508,"Date":"10/19/2021"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":416,"Cost":366,"Date":"11/15/2021"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":103,"Cost":82,"Date":"12/8/2021"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":925,"Cost":703,"Date":"1/8/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":89,"Cost":69,"Date":"1/14/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":766,"Cost":442,"Date":"1/19/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":859,"Cost":670,"Date":"1/28/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":370,"Cost":294,"Date":"1/31/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":34,"Cost":32,"Date":"3/27/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":290,"Cost":261,"Date":"4/20/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":233,"Cost":168,"Date":"4/24/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":793,"Cost":730,"Date":"4/28/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":70,"Cost":62,"Date":"5/15/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":637,"Cost":578,"Date":"5/16/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":861,"Cost":443,"Date":"5/18/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":992,"Cost":928,"Date":"6/2/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":970,"Cost":706,"Date":"6/3/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":399,"Cost":202,"Date":"6/5/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":54,"Cost":41,"Date":"6/7/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":684,"Cost":589,"Date":"6/14/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":583,"Cost":401,"Date":"6/20/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":235,"Cost":165,"Date":"6/24/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":643,"Cost":396,"Date":"7/4/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":202,"Cost":169,"Date":"7/9/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":374,"Cost":332,"Date":"7/12/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":420,"Cost":308,"Date":"8/14/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":437,"Cost":246,"Date":"8/16/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":660,"Cost":593,"Date":"8/23/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":504,"Cost":399,"Date":"9/2/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":823,"Cost":465,"Date":"9/3/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":554,"Cost":342,"Date":"9/16/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":827,"Cost":786,"Date":"10/4/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":688,"Cost":636,"Date":"11/1/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":711,"Cost":407,"Date":"11/2/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":619,"Cost":479,"Date":"12/17/2022"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":833,"Cost":719,"Date":"2/10/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":835,"Cost":433,"Date":"2/28/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":646,"Cost":478,"Date":"3/4/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":902,"Cost":821,"Date":"3/9/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":676,"Cost":405,"Date":"3/9/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":867,"Cost":818,"Date":"3/11/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":40,"Cost":24,"Date":"3/17/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":824,"Cost":508,"Date":"3/17/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":196,"Cost":165,"Date":"3/23/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":179,"Cost":133,"Date":"4/1/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":141,"Cost":104,"Date":"5/7/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":843,"Cost":447,"Date":"5/10/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":803,"Cost":672,"Date":"5/20/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":402,"Cost":326,"Date":"6/2/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":401,"Cost":259,"Date":"6/11/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":516,"Cost":446,"Date":"6/16/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":270,"Cost":217,"Date":"6/16/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":211,"Cost":198,"Date":"7/10/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":835,"Cost":770,"Date":"7/11/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":124,"Cost":115,"Date":"8/28/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":821,"Cost":768,"Date":"8/29/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":757,"Cost":578,"Date":"8/31/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":400,"Cost":303,"Date":"9/8/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":676,"Cost":399,"Date":"9/13/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":29,"Cost":17,"Date":"9/14/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":678,"Cost":420,"Date":"9/19/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":54,"Cost":27,"Date":"9/25/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":871,"Cost":704,"Date":"10/4/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":202,"Cost":155,"Date":"10/10/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":859,"Cost":694,"Date":"10/17/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":135,"Cost":86,"Date":"10/28/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":908,"Cost":847,"Date":"10/30/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":422,"Cost":260,"Date":"11/1/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":803,"Cost":688,"Date":"11/15/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":477,"Cost":275,"Date":"11/25/2023"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":206,"Cost":144,"Date":"1/10/2024"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":500,"Cost":391,"Date":"1/14/2024"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":593,"Cost":381,"Date":"1/20/2024"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":455,"Cost":271,"Date":"2/8/2024"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":534,"Cost":315,"Date":"2/25/2024"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":245,"Cost":230,"Date":"3/7/2024"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":185,"Cost":157,"Date":"3/14/2024"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":155,"Cost":107,"Date":"3/27/2024"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":407,"Cost":221,"Date":"4/5/2024"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":396,"Cost":351,"Date":"4/14/2024"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":961,"Cost":558,"Date":"5/3/2024"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":911,"Cost":729,"Date":"5/9/2024"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":496,"Cost":291,"Date":"5/15/2024"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":423,"Cost":286,"Date":"5/25/2024"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":336,"Cost":274,"Date":"5/26/2024"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":277,"Cost":248,"Date":"5/31/2024"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":865,"Cost":758,"Date":"7/27/2024"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":285,"Cost":166,"Date":"9/17/2024"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":885,"Cost":606,"Date":"10/6/2024"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":491,"Cost":462,"Date":"10/8/2024"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":505,"Cost":468,"Date":"10/26/2024"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":869,"Cost":803,"Date":"11/16/2024"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":458,"Cost":242,"Date":"11/18/2024"},{"Store":"CentrO, Oberhausen","Brand":"Nova","Country":"Germany","Sale":260,"Cost":175,"Date":"12/1/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":458,"Cost":395,"Date":"2/9/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":611,"Cost":355,"Date":"2/11/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":225,"Cost":161,"Date":"3/10/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":151,"Cost":103,"Date":"3/16/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":611,"Cost":360,"Date":"3/18/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":379,"Cost":217,"Date":"3/20/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":729,"Cost":421,"Date":"3/26/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":634,"Cost":400,"Date":"6/2/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":35,"Cost":19,"Date":"6/10/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":859,"Cost":810,"Date":"6/16/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":941,"Cost":845,"Date":"6/25/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":652,"Cost":575,"Date":"7/19/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":19,"Cost":18,"Date":"7/21/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":685,"Cost":481,"Date":"7/25/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":294,"Cost":275,"Date":"8/4/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":111,"Cost":57,"Date":"9/2/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":526,"Cost":417,"Date":"9/4/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":346,"Cost":288,"Date":"9/19/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":73,"Cost":50,"Date":"9/29/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":509,"Cost":424,"Date":"10/2/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":30,"Cost":16,"Date":"10/15/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":20,"Cost":13,"Date":"10/30/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":466,"Cost":345,"Date":"11/9/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":111,"Cost":67,"Date":"11/23/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":258,"Cost":190,"Date":"11/30/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":149,"Cost":83,"Date":"12/8/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":612,"Cost":492,"Date":"12/11/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":838,"Cost":483,"Date":"1/15/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":672,"Cost":361,"Date":"1/24/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":825,"Cost":679,"Date":"2/3/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":542,"Cost":328,"Date":"2/4/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":280,"Cost":155,"Date":"3/9/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":761,"Cost":614,"Date":"3/12/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":522,"Cost":446,"Date":"4/19/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":213,"Cost":159,"Date":"5/3/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":573,"Cost":523,"Date":"5/4/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":218,"Cost":147,"Date":"6/8/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":464,"Cost":337,"Date":"6/26/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":747,"Cost":569,"Date":"7/4/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":381,"Cost":193,"Date":"7/13/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":795,"Cost":538,"Date":"8/8/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":896,"Cost":659,"Date":"8/26/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":580,"Cost":539,"Date":"9/2/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":171,"Cost":112,"Date":"9/29/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":619,"Cost":398,"Date":"10/12/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":204,"Cost":177,"Date":"11/2/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":891,"Cost":670,"Date":"11/4/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":979,"Cost":676,"Date":"11/7/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":886,"Cost":532,"Date":"12/1/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":94,"Cost":54,"Date":"12/4/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":63,"Cost":31,"Date":"12/7/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":741,"Cost":660,"Date":"12/18/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":639,"Cost":400,"Date":"12/20/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":569,"Cost":427,"Date":"12/20/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":450,"Cost":268,"Date":"12/21/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":208,"Cost":193,"Date":"1/9/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":507,"Cost":271,"Date":"2/5/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":855,"Cost":621,"Date":"2/16/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":591,"Cost":366,"Date":"2/16/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":964,"Cost":507,"Date":"2/18/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":252,"Cost":162,"Date":"2/22/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":569,"Cost":299,"Date":"2/25/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":808,"Cost":639,"Date":"3/8/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":880,"Cost":831,"Date":"4/2/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":232,"Cost":181,"Date":"4/3/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":289,"Cost":232,"Date":"4/9/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":455,"Cost":281,"Date":"4/10/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":925,"Cost":851,"Date":"4/19/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":294,"Cost":230,"Date":"5/17/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":435,"Cost":229,"Date":"5/22/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":418,"Cost":227,"Date":"6/20/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":652,"Cost":583,"Date":"7/1/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":523,"Cost":366,"Date":"7/4/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":332,"Cost":277,"Date":"7/8/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":597,"Cost":464,"Date":"7/9/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":560,"Cost":284,"Date":"7/14/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":62,"Cost":56,"Date":"7/19/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":357,"Cost":233,"Date":"8/1/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":928,"Cost":689,"Date":"8/6/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":897,"Cost":764,"Date":"8/7/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":234,"Cost":148,"Date":"8/22/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":240,"Cost":182,"Date":"8/31/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":881,"Cost":666,"Date":"9/1/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":253,"Cost":229,"Date":"9/1/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":548,"Cost":312,"Date":"9/17/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":997,"Cost":639,"Date":"9/29/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":613,"Cost":454,"Date":"11/7/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":279,"Cost":181,"Date":"11/26/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":471,"Cost":435,"Date":"11/27/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":842,"Cost":492,"Date":"12/5/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":421,"Cost":256,"Date":"12/26/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":34,"Cost":29,"Date":"12/31/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":175,"Cost":111,"Date":"1/20/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":595,"Cost":344,"Date":"2/2/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":344,"Cost":312,"Date":"2/8/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":787,"Cost":621,"Date":"2/27/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":921,"Cost":724,"Date":"3/1/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":731,"Cost":480,"Date":"3/1/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":660,"Cost":595,"Date":"3/19/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":65,"Cost":55,"Date":"3/28/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":56,"Cost":51,"Date":"5/21/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":216,"Cost":135,"Date":"7/21/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":877,"Cost":621,"Date":"8/5/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":925,"Cost":660,"Date":"8/12/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":703,"Cost":453,"Date":"8/21/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":119,"Cost":112,"Date":"8/23/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":467,"Cost":326,"Date":"9/3/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":49,"Cost":42,"Date":"9/5/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":824,"Cost":658,"Date":"10/6/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":823,"Cost":631,"Date":"10/19/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":485,"Cost":423,"Date":"11/15/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":661,"Cost":491,"Date":"12/8/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":762,"Cost":596,"Date":"1/8/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":551,"Cost":382,"Date":"1/14/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":29,"Cost":28,"Date":"1/19/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":716,"Cost":586,"Date":"1/28/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":405,"Cost":342,"Date":"1/31/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":567,"Cost":321,"Date":"3/27/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":433,"Cost":281,"Date":"4/20/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":915,"Cost":832,"Date":"4/24/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":140,"Cost":86,"Date":"4/28/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":757,"Cost":474,"Date":"5/15/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":282,"Cost":261,"Date":"5/16/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":759,"Cost":453,"Date":"5/18/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":929,"Cost":845,"Date":"6/2/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":599,"Cost":359,"Date":"6/3/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":712,"Cost":576,"Date":"6/5/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":811,"Cost":765,"Date":"6/7/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":724,"Cost":389,"Date":"6/14/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":747,"Cost":494,"Date":"6/20/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":987,"Cost":726,"Date":"6/24/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":553,"Cost":404,"Date":"7/4/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":712,"Cost":453,"Date":"7/9/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":610,"Cost":508,"Date":"7/12/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":387,"Cost":232,"Date":"8/14/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":826,"Cost":773,"Date":"8/16/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":255,"Cost":205,"Date":"8/23/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":106,"Cost":94,"Date":"9/2/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":247,"Cost":152,"Date":"9/3/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":268,"Cost":247,"Date":"9/16/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":583,"Cost":533,"Date":"10/4/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":634,"Cost":351,"Date":"11/1/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":493,"Cost":272,"Date":"11/2/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":663,"Cost":481,"Date":"12/17/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":768,"Cost":487,"Date":"2/10/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":227,"Cost":207,"Date":"2/28/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":195,"Cost":144,"Date":"3/4/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":652,"Cost":364,"Date":"3/9/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":447,"Cost":243,"Date":"3/9/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":334,"Cost":310,"Date":"3/11/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":425,"Cost":371,"Date":"3/17/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":778,"Cost":463,"Date":"3/17/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":516,"Cost":454,"Date":"3/23/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":196,"Cost":113,"Date":"4/1/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":945,"Cost":609,"Date":"5/7/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":394,"Cost":308,"Date":"5/10/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":317,"Cost":286,"Date":"5/20/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":223,"Cost":130,"Date":"6/2/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":881,"Cost":785,"Date":"6/11/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":532,"Cost":297,"Date":"6/16/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":450,"Cost":377,"Date":"6/16/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":990,"Cost":704,"Date":"7/10/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":339,"Cost":208,"Date":"7/11/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":170,"Cost":126,"Date":"8/28/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":829,"Cost":617,"Date":"8/29/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":647,"Cost":342,"Date":"8/31/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":566,"Cost":431,"Date":"9/8/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":678,"Cost":503,"Date":"9/13/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":480,"Cost":275,"Date":"9/14/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":485,"Cost":381,"Date":"9/19/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":877,"Cost":684,"Date":"9/25/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":220,"Cost":120,"Date":"10/4/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":661,"Cost":541,"Date":"10/10/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":640,"Cost":335,"Date":"10/17/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":24,"Cost":17,"Date":"10/28/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":60,"Cost":42,"Date":"10/30/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":398,"Cost":235,"Date":"11/1/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":260,"Cost":203,"Date":"11/15/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":512,"Cost":456,"Date":"11/25/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":138,"Cost":94,"Date":"1/10/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":320,"Cost":196,"Date":"1/14/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":331,"Cost":238,"Date":"1/20/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":988,"Cost":534,"Date":"2/8/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":485,"Cost":446,"Date":"2/25/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":951,"Cost":539,"Date":"3/7/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":785,"Cost":719,"Date":"3/14/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":215,"Cost":183,"Date":"3/27/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":849,"Cost":654,"Date":"4/5/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":657,"Cost":382,"Date":"4/14/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":840,"Cost":562,"Date":"5/3/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":663,"Cost":610,"Date":"5/9/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":6,"Cost":6,"Date":"5/15/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":139,"Cost":106,"Date":"5/25/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":606,"Cost":460,"Date":"5/26/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":91,"Cost":52,"Date":"5/31/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":313,"Cost":162,"Date":"7/27/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":219,"Cost":180,"Date":"9/17/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":390,"Cost":362,"Date":"10/6/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":610,"Cost":374,"Date":"10/8/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":379,"Cost":302,"Date":"10/26/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":68,"Cost":54,"Date":"11/16/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":678,"Cost":583,"Date":"11/18/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"HM","Country":"Germany","Sale":76,"Cost":60,"Date":"12/1/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":157,"Cost":135,"Date":"2/9/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":581,"Cost":361,"Date":"2/11/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":924,"Cost":849,"Date":"3/10/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":269,"Cost":150,"Date":"3/16/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":481,"Cost":451,"Date":"3/18/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":287,"Cost":186,"Date":"3/20/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":629,"Cost":418,"Date":"3/26/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":922,"Cost":539,"Date":"6/2/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":177,"Cost":153,"Date":"6/10/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":392,"Cost":345,"Date":"6/16/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":131,"Cost":71,"Date":"6/25/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":450,"Cost":337,"Date":"7/19/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":774,"Cost":673,"Date":"7/21/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":144,"Cost":81,"Date":"7/25/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":206,"Cost":194,"Date":"8/4/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":808,"Cost":518,"Date":"9/2/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":679,"Cost":551,"Date":"9/4/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":832,"Cost":478,"Date":"9/19/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":692,"Cost":639,"Date":"9/29/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":325,"Cost":179,"Date":"10/2/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":999,"Cost":721,"Date":"10/15/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":35,"Cost":28,"Date":"10/30/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":859,"Cost":505,"Date":"11/9/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":720,"Cost":677,"Date":"11/23/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":635,"Cost":448,"Date":"11/30/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":352,"Cost":310,"Date":"12/8/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":111,"Cost":60,"Date":"12/11/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":100,"Cost":51,"Date":"1/15/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":6,"Cost":4,"Date":"1/24/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":682,"Cost":581,"Date":"2/3/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":340,"Cost":292,"Date":"2/4/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":151,"Cost":129,"Date":"3/9/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":411,"Cost":365,"Date":"3/12/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":654,"Cost":503,"Date":"4/19/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":684,"Cost":650,"Date":"5/3/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":40,"Cost":20,"Date":"5/4/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":694,"Cost":587,"Date":"6/8/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":611,"Cost":327,"Date":"6/26/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":474,"Cost":359,"Date":"7/4/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":986,"Cost":790,"Date":"7/13/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":4,"Cost":2,"Date":"8/8/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":654,"Cost":586,"Date":"8/26/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":887,"Cost":666,"Date":"9/2/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":665,"Cost":588,"Date":"9/29/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":467,"Cost":444,"Date":"10/12/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":728,"Cost":587,"Date":"11/2/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":783,"Cost":454,"Date":"11/4/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":839,"Cost":765,"Date":"11/7/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":756,"Cost":597,"Date":"12/1/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":757,"Cost":601,"Date":"12/4/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":950,"Cost":809,"Date":"12/7/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":298,"Cost":281,"Date":"12/18/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":272,"Cost":176,"Date":"12/20/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":834,"Cost":633,"Date":"12/20/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":210,"Cost":172,"Date":"12/21/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":458,"Cost":421,"Date":"1/9/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":173,"Cost":161,"Date":"2/5/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":344,"Cost":179,"Date":"2/16/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":700,"Cost":500,"Date":"2/16/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":278,"Cost":143,"Date":"2/18/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":320,"Cost":233,"Date":"2/22/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":55,"Cost":52,"Date":"2/25/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":685,"Cost":496,"Date":"3/8/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":310,"Cost":241,"Date":"4/2/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":743,"Cost":538,"Date":"4/3/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":684,"Cost":429,"Date":"4/9/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":244,"Cost":225,"Date":"4/10/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":175,"Cost":113,"Date":"4/19/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":41,"Cost":38,"Date":"5/17/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":720,"Cost":656,"Date":"5/22/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":896,"Cost":684,"Date":"6/20/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":595,"Cost":370,"Date":"7/1/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":450,"Cost":299,"Date":"7/4/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":175,"Cost":91,"Date":"7/8/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":162,"Cost":128,"Date":"7/9/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":418,"Cost":301,"Date":"7/14/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":415,"Cost":296,"Date":"7/19/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":277,"Cost":197,"Date":"8/1/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":815,"Cost":410,"Date":"8/6/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":277,"Cost":190,"Date":"8/7/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":473,"Cost":360,"Date":"8/22/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":264,"Cost":176,"Date":"8/31/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":993,"Cost":922,"Date":"9/1/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":771,"Cost":563,"Date":"9/1/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":157,"Cost":131,"Date":"9/17/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":709,"Cost":435,"Date":"9/29/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":555,"Cost":330,"Date":"11/7/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":958,"Cost":807,"Date":"11/26/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":509,"Cost":316,"Date":"11/27/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":639,"Cost":561,"Date":"12/5/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":592,"Cost":320,"Date":"12/26/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":114,"Cost":104,"Date":"12/31/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":989,"Cost":580,"Date":"1/20/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":102,"Cost":69,"Date":"2/2/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":826,"Cost":420,"Date":"2/8/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":231,"Cost":188,"Date":"2/27/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":765,"Cost":501,"Date":"3/1/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":430,"Cost":266,"Date":"3/1/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":975,"Cost":727,"Date":"3/19/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":354,"Cost":310,"Date":"3/28/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":412,"Cost":206,"Date":"5/21/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":683,"Cost":478,"Date":"7/21/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":135,"Cost":88,"Date":"8/5/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":121,"Cost":65,"Date":"8/12/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":701,"Cost":547,"Date":"8/21/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":687,"Cost":357,"Date":"8/23/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":629,"Cost":594,"Date":"9/3/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":362,"Cost":220,"Date":"9/5/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":273,"Cost":187,"Date":"10/6/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":672,"Cost":517,"Date":"10/19/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":737,"Cost":463,"Date":"11/15/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":234,"Cost":213,"Date":"12/8/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":615,"Cost":327,"Date":"1/8/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":755,"Cost":616,"Date":"1/14/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":549,"Cost":492,"Date":"1/19/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":591,"Cost":446,"Date":"1/28/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":180,"Cost":101,"Date":"1/31/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":476,"Cost":388,"Date":"3/27/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":948,"Cost":789,"Date":"4/20/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":274,"Cost":201,"Date":"4/24/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":910,"Cost":779,"Date":"4/28/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":421,"Cost":267,"Date":"5/15/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":62,"Cost":59,"Date":"5/16/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":950,"Cost":849,"Date":"5/18/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":754,"Cost":633,"Date":"6/2/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":139,"Cost":82,"Date":"6/3/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":642,"Cost":335,"Date":"6/5/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":343,"Cost":288,"Date":"6/7/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":300,"Cost":195,"Date":"6/14/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":1,"Cost":1,"Date":"6/20/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":510,"Cost":334,"Date":"6/24/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":715,"Cost":429,"Date":"7/4/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":609,"Cost":386,"Date":"7/9/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":769,"Cost":509,"Date":"7/12/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":429,"Cost":368,"Date":"8/14/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":212,"Cost":180,"Date":"8/16/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":909,"Cost":713,"Date":"8/23/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":254,"Cost":151,"Date":"9/2/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":975,"Cost":875,"Date":"9/3/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":413,"Cost":344,"Date":"9/16/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":45,"Cost":33,"Date":"10/4/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":129,"Cost":84,"Date":"11/1/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":302,"Cost":202,"Date":"11/2/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":708,"Cost":602,"Date":"12/17/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":407,"Cost":331,"Date":"2/10/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":74,"Cost":38,"Date":"2/28/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":929,"Cost":546,"Date":"3/4/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":797,"Cost":502,"Date":"3/9/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":64,"Cost":61,"Date":"3/9/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":581,"Cost":505,"Date":"3/11/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":903,"Cost":583,"Date":"3/17/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":44,"Cost":37,"Date":"3/17/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":862,"Cost":754,"Date":"3/23/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":225,"Cost":127,"Date":"4/1/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":935,"Cost":499,"Date":"5/7/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":332,"Cost":232,"Date":"5/10/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":235,"Cost":135,"Date":"5/20/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":659,"Cost":362,"Date":"6/2/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":601,"Cost":545,"Date":"6/11/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":336,"Cost":263,"Date":"6/16/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":656,"Cost":491,"Date":"6/16/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":721,"Cost":579,"Date":"7/10/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":401,"Cost":379,"Date":"7/11/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":860,"Cost":599,"Date":"8/28/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":614,"Cost":486,"Date":"8/29/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":673,"Cost":625,"Date":"8/31/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":47,"Cost":44,"Date":"9/8/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":583,"Cost":492,"Date":"9/13/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":341,"Cost":284,"Date":"9/14/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":628,"Cost":315,"Date":"9/19/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":296,"Cost":216,"Date":"9/25/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":438,"Cost":237,"Date":"10/4/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":338,"Cost":284,"Date":"10/10/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":126,"Cost":101,"Date":"10/17/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":534,"Cost":306,"Date":"10/28/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":376,"Cost":213,"Date":"10/30/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":660,"Cost":478,"Date":"11/1/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":515,"Cost":455,"Date":"11/15/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":133,"Cost":97,"Date":"11/25/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":170,"Cost":138,"Date":"1/10/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":846,"Cost":561,"Date":"1/14/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":202,"Cost":187,"Date":"1/20/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":870,"Cost":700,"Date":"2/8/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":576,"Cost":488,"Date":"2/25/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":723,"Cost":548,"Date":"3/7/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":45,"Cost":39,"Date":"3/14/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":666,"Cost":543,"Date":"3/27/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":55,"Cost":47,"Date":"4/5/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":613,"Cost":493,"Date":"4/14/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":420,"Cost":375,"Date":"5/3/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":561,"Cost":527,"Date":"5/9/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":831,"Cost":541,"Date":"5/15/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":908,"Cost":667,"Date":"5/25/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":900,"Cost":675,"Date":"5/26/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":486,"Cost":281,"Date":"5/31/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":491,"Cost":320,"Date":"7/27/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":34,"Cost":22,"Date":"9/17/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":925,"Cost":574,"Date":"10/6/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":334,"Cost":257,"Date":"10/8/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":329,"Cost":172,"Date":"10/26/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":755,"Cost":631,"Date":"11/16/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":309,"Cost":281,"Date":"11/18/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"COS","Country":"Germany","Sale":277,"Cost":199,"Date":"12/1/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":895,"Cost":830,"Date":"2/9/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":328,"Cost":220,"Date":"2/11/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":176,"Cost":126,"Date":"3/10/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":843,"Cost":506,"Date":"3/16/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":926,"Cost":737,"Date":"3/18/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":932,"Cost":695,"Date":"3/20/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":556,"Cost":370,"Date":"3/26/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":238,"Cost":223,"Date":"6/2/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":161,"Cost":103,"Date":"6/10/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":357,"Cost":301,"Date":"6/16/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":120,"Cost":106,"Date":"6/25/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":856,"Cost":729,"Date":"7/19/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":519,"Cost":418,"Date":"7/21/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":243,"Cost":152,"Date":"7/25/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":155,"Cost":82,"Date":"8/4/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":576,"Cost":460,"Date":"9/2/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":921,"Cost":500,"Date":"9/4/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":801,"Cost":477,"Date":"9/19/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":615,"Cost":409,"Date":"9/29/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":820,"Cost":607,"Date":"10/2/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":7,"Cost":5,"Date":"10/15/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":481,"Cost":281,"Date":"10/30/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":861,"Cost":636,"Date":"11/9/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":745,"Cost":591,"Date":"11/23/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":646,"Cost":507,"Date":"11/30/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":82,"Cost":54,"Date":"12/8/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":24,"Cost":16,"Date":"12/11/2018"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":801,"Cost":618,"Date":"1/15/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":606,"Cost":445,"Date":"1/24/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":836,"Cost":735,"Date":"2/3/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":404,"Cost":279,"Date":"2/4/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":613,"Cost":482,"Date":"3/9/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":64,"Cost":58,"Date":"3/12/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":244,"Cost":199,"Date":"4/19/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":69,"Cost":38,"Date":"5/3/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":860,"Cost":539,"Date":"5/4/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":385,"Cost":244,"Date":"6/8/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":820,"Cost":447,"Date":"6/26/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":703,"Cost":458,"Date":"7/4/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":751,"Cost":590,"Date":"7/13/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":360,"Cost":201,"Date":"8/8/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":963,"Cost":583,"Date":"8/26/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":465,"Cost":394,"Date":"9/2/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":473,"Cost":304,"Date":"9/29/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":209,"Cost":164,"Date":"10/12/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":712,"Cost":429,"Date":"11/2/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":951,"Cost":867,"Date":"11/4/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":488,"Cost":353,"Date":"11/7/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":203,"Cost":143,"Date":"12/1/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":506,"Cost":418,"Date":"12/4/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":483,"Cost":272,"Date":"12/7/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":891,"Cost":521,"Date":"12/18/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":465,"Cost":374,"Date":"12/20/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":87,"Cost":63,"Date":"12/20/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":837,"Cost":591,"Date":"12/21/2019"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":98,"Cost":73,"Date":"1/9/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":372,"Cost":265,"Date":"2/5/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":377,"Cost":355,"Date":"2/16/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":918,"Cost":615,"Date":"2/16/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":43,"Cost":23,"Date":"2/18/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":345,"Cost":197,"Date":"2/22/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":882,"Cost":662,"Date":"2/25/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":39,"Cost":32,"Date":"3/8/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":84,"Cost":45,"Date":"4/2/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":606,"Cost":560,"Date":"4/3/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":510,"Cost":446,"Date":"4/9/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":370,"Cost":287,"Date":"4/10/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":629,"Cost":481,"Date":"4/19/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":497,"Cost":307,"Date":"5/17/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":94,"Cost":61,"Date":"5/22/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":678,"Cost":458,"Date":"6/20/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":424,"Cost":403,"Date":"7/1/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":538,"Cost":425,"Date":"7/4/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":149,"Cost":136,"Date":"7/8/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":985,"Cost":604,"Date":"7/9/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":660,"Cost":544,"Date":"7/14/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":930,"Cost":825,"Date":"7/19/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":990,"Cost":625,"Date":"8/1/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":871,"Cost":812,"Date":"8/6/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":404,"Cost":251,"Date":"8/7/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":109,"Cost":61,"Date":"8/22/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":829,"Cost":610,"Date":"8/31/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":409,"Cost":300,"Date":"9/1/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":707,"Cost":525,"Date":"9/1/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":133,"Cost":116,"Date":"9/17/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":642,"Cost":490,"Date":"9/29/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":511,"Cost":375,"Date":"11/7/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":207,"Cost":166,"Date":"11/26/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":955,"Cost":516,"Date":"11/27/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":998,"Cost":748,"Date":"12/5/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":468,"Cost":294,"Date":"12/26/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":26,"Cost":19,"Date":"12/31/2020"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":659,"Cost":338,"Date":"1/20/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":190,"Cost":157,"Date":"2/2/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":456,"Cost":286,"Date":"2/8/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":556,"Cost":299,"Date":"2/27/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":496,"Cost":413,"Date":"3/1/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":891,"Cost":633,"Date":"3/1/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":837,"Cost":649,"Date":"3/19/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":853,"Cost":784,"Date":"3/28/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":515,"Cost":369,"Date":"5/21/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":195,"Cost":97,"Date":"7/21/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":874,"Cost":601,"Date":"8/5/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":164,"Cost":125,"Date":"8/12/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":434,"Cost":326,"Date":"8/21/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":135,"Cost":103,"Date":"8/23/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":274,"Cost":148,"Date":"9/3/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":760,"Cost":641,"Date":"9/5/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":389,"Cost":255,"Date":"10/6/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":564,"Cost":348,"Date":"10/19/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":908,"Cost":483,"Date":"11/15/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":35,"Cost":24,"Date":"12/8/2021"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":895,"Cost":540,"Date":"1/8/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":238,"Cost":222,"Date":"1/14/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":81,"Cost":59,"Date":"1/19/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":318,"Cost":179,"Date":"1/28/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":364,"Cost":203,"Date":"1/31/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":42,"Cost":28,"Date":"3/27/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":50,"Cost":44,"Date":"4/20/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":538,"Cost":511,"Date":"4/24/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":685,"Cost":649,"Date":"4/28/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":876,"Cost":662,"Date":"5/15/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":553,"Cost":510,"Date":"5/16/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":872,"Cost":460,"Date":"5/18/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":536,"Cost":294,"Date":"6/2/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":891,"Cost":463,"Date":"6/3/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":485,"Cost":369,"Date":"6/5/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":729,"Cost":430,"Date":"6/7/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":504,"Cost":352,"Date":"6/14/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":55,"Cost":32,"Date":"6/20/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":673,"Cost":374,"Date":"6/24/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":932,"Cost":559,"Date":"7/4/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":626,"Cost":403,"Date":"7/9/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":442,"Cost":300,"Date":"7/12/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":835,"Cost":534,"Date":"8/14/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":328,"Cost":234,"Date":"8/16/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":864,"Cost":505,"Date":"8/23/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":124,"Cost":84,"Date":"9/2/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":738,"Cost":567,"Date":"9/3/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":972,"Cost":857,"Date":"9/16/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":454,"Cost":332,"Date":"10/4/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":242,"Cost":156,"Date":"11/1/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":273,"Cost":193,"Date":"11/2/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":236,"Cost":124,"Date":"12/17/2022"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":110,"Cost":103,"Date":"2/10/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":724,"Cost":389,"Date":"2/28/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":208,"Cost":182,"Date":"3/4/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":576,"Cost":362,"Date":"3/9/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":786,"Cost":659,"Date":"3/9/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":11,"Cost":6,"Date":"3/11/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":961,"Cost":718,"Date":"3/17/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":260,"Cost":244,"Date":"3/17/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":356,"Cost":304,"Date":"3/23/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":15,"Cost":11,"Date":"4/1/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":201,"Cost":105,"Date":"5/7/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":139,"Cost":90,"Date":"5/10/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":269,"Cost":139,"Date":"5/20/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":586,"Cost":306,"Date":"6/2/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":513,"Cost":418,"Date":"6/11/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":803,"Cost":700,"Date":"6/16/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":726,"Cost":502,"Date":"6/16/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":433,"Cost":349,"Date":"7/10/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":214,"Cost":145,"Date":"7/11/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":187,"Cost":105,"Date":"8/28/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":231,"Cost":210,"Date":"8/29/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":498,"Cost":431,"Date":"8/31/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":463,"Cost":251,"Date":"9/8/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":144,"Cost":100,"Date":"9/13/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":522,"Cost":446,"Date":"9/14/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":276,"Cost":148,"Date":"9/19/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":483,"Cost":454,"Date":"9/25/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":689,"Cost":627,"Date":"10/4/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":852,"Cost":653,"Date":"10/10/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":198,"Cost":161,"Date":"10/17/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":496,"Cost":289,"Date":"10/28/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":353,"Cost":269,"Date":"10/30/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":517,"Cost":491,"Date":"11/1/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":997,"Cost":617,"Date":"11/15/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":449,"Cost":262,"Date":"11/25/2023"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":677,"Cost":496,"Date":"1/10/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":672,"Cost":628,"Date":"1/14/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":916,"Cost":720,"Date":"1/20/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":638,"Cost":415,"Date":"2/8/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":784,"Cost":736,"Date":"2/25/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":430,"Cost":377,"Date":"3/7/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":59,"Cost":36,"Date":"3/14/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":126,"Cost":65,"Date":"3/27/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":210,"Cost":154,"Date":"4/5/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":282,"Cost":172,"Date":"4/14/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":313,"Cost":297,"Date":"5/3/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":746,"Cost":399,"Date":"5/9/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":432,"Cost":265,"Date":"5/15/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":717,"Cost":471,"Date":"5/25/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":354,"Cost":215,"Date":"5/26/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":592,"Cost":484,"Date":"5/31/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":234,"Cost":202,"Date":"7/27/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":94,"Cost":75,"Date":"9/17/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":907,"Cost":747,"Date":"10/6/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":456,"Cost":373,"Date":"10/8/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":497,"Cost":289,"Date":"10/26/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":828,"Cost":477,"Date":"11/16/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":828,"Cost":647,"Date":"11/18/2024"},{"Store":"Mall of Ku'damm, Berlin","Brand":"ARKET","Country":"Germany","Sale":895,"Cost":540,"Date":"12/1/2024"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":224,"Cost":155,"Date":"2/9/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":691,"Cost":586,"Date":"2/11/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":237,"Cost":121,"Date":"3/10/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":181,"Cost":100,"Date":"3/16/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":679,"Cost":572,"Date":"3/18/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":841,"Cost":438,"Date":"3/20/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":911,"Cost":698,"Date":"3/26/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":121,"Cost":98,"Date":"6/2/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":973,"Cost":742,"Date":"6/10/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":981,"Cost":742,"Date":"6/16/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":718,"Cost":408,"Date":"6/25/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":834,"Cost":670,"Date":"7/19/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":420,"Cost":290,"Date":"7/21/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":928,"Cost":692,"Date":"7/25/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":439,"Cost":357,"Date":"8/4/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":315,"Cost":247,"Date":"9/2/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":108,"Cost":64,"Date":"9/4/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":486,"Cost":353,"Date":"9/19/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":69,"Cost":61,"Date":"9/29/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":690,"Cost":454,"Date":"10/2/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":30,"Cost":28,"Date":"10/15/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":777,"Cost":405,"Date":"10/30/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":666,"Cost":586,"Date":"11/9/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":92,"Cost":62,"Date":"11/23/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":292,"Cost":277,"Date":"11/30/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":243,"Cost":140,"Date":"12/8/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":679,"Cost":369,"Date":"12/11/2018"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":693,"Cost":438,"Date":"1/15/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":793,"Cost":532,"Date":"1/24/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":638,"Cost":428,"Date":"2/3/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":104,"Cost":74,"Date":"2/4/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":48,"Cost":30,"Date":"3/9/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":406,"Cost":339,"Date":"3/12/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":750,"Cost":654,"Date":"4/19/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":740,"Cost":437,"Date":"5/3/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":521,"Cost":427,"Date":"5/4/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":272,"Cost":207,"Date":"6/8/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":435,"Cost":345,"Date":"6/26/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":249,"Cost":225,"Date":"7/4/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":256,"Cost":239,"Date":"7/13/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":929,"Cost":882,"Date":"8/8/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":30,"Cost":23,"Date":"8/26/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":969,"Cost":734,"Date":"9/2/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":473,"Cost":278,"Date":"9/29/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":332,"Cost":235,"Date":"10/12/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":594,"Cost":489,"Date":"11/2/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":905,"Cost":463,"Date":"11/4/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":228,"Cost":200,"Date":"11/7/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":151,"Cost":79,"Date":"12/1/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":385,"Cost":256,"Date":"12/4/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":277,"Cost":178,"Date":"12/7/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":487,"Cost":352,"Date":"12/18/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":435,"Cost":232,"Date":"12/20/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":834,"Cost":757,"Date":"12/20/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":729,"Cost":460,"Date":"12/21/2019"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":374,"Cost":189,"Date":"1/9/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":651,"Cost":603,"Date":"2/5/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":701,"Cost":394,"Date":"2/16/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":561,"Cost":331,"Date":"2/16/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":463,"Cost":416,"Date":"2/18/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":363,"Cost":274,"Date":"2/22/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":128,"Cost":108,"Date":"2/25/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":182,"Cost":143,"Date":"3/8/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":446,"Cost":346,"Date":"4/2/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":888,"Cost":767,"Date":"4/3/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":869,"Cost":494,"Date":"4/9/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":23,"Cost":19,"Date":"4/10/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":245,"Cost":199,"Date":"4/19/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":798,"Cost":513,"Date":"5/17/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":361,"Cost":339,"Date":"5/22/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":217,"Cost":162,"Date":"6/20/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":76,"Cost":47,"Date":"7/1/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":706,"Cost":485,"Date":"7/4/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":258,"Cost":178,"Date":"7/8/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":99,"Cost":92,"Date":"7/9/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":966,"Cost":625,"Date":"7/14/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":785,"Cost":452,"Date":"7/19/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":758,"Cost":490,"Date":"8/1/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":531,"Cost":301,"Date":"8/6/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":708,"Cost":666,"Date":"8/7/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":5,"Cost":3,"Date":"8/22/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":509,"Cost":318,"Date":"8/31/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":98,"Cost":90,"Date":"9/1/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":302,"Cost":277,"Date":"9/1/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":526,"Cost":379,"Date":"9/17/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":865,"Cost":735,"Date":"9/29/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":15,"Cost":8,"Date":"11/7/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":940,"Cost":490,"Date":"11/26/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":927,"Cost":494,"Date":"11/27/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":377,"Cost":312,"Date":"12/5/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":398,"Cost":272,"Date":"12/26/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":104,"Cost":58,"Date":"12/31/2020"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":651,"Cost":387,"Date":"1/20/2021"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":530,"Cost":362,"Date":"2/2/2021"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":776,"Cost":425,"Date":"2/8/2021"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":539,"Cost":500,"Date":"2/27/2021"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":261,"Cost":219,"Date":"3/1/2021"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":529,"Cost":316,"Date":"3/1/2021"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":297,"Cost":252,"Date":"3/19/2021"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":134,"Cost":120,"Date":"3/28/2021"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":799,"Cost":517,"Date":"5/21/2021"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":823,"Cost":709,"Date":"7/21/2021"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":574,"Cost":500,"Date":"8/5/2021"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":249,"Cost":130,"Date":"8/12/2021"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":30,"Cost":17,"Date":"8/21/2021"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":13,"Cost":8,"Date":"8/23/2021"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":511,"Cost":440,"Date":"9/3/2021"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":172,"Cost":124,"Date":"9/5/2021"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":899,"Cost":580,"Date":"10/6/2021"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":895,"Cost":460,"Date":"10/19/2021"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":199,"Cost":117,"Date":"11/15/2021"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":871,"Cost":794,"Date":"12/8/2021"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":590,"Cost":322,"Date":"1/8/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":959,"Cost":597,"Date":"1/14/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":780,"Cost":554,"Date":"1/19/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":489,"Cost":287,"Date":"1/28/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":790,"Cost":573,"Date":"1/31/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":854,"Cost":585,"Date":"3/27/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":1000,"Cost":843,"Date":"4/20/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":698,"Cost":357,"Date":"4/24/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":227,"Cost":152,"Date":"4/28/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":720,"Cost":663,"Date":"5/15/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":299,"Cost":183,"Date":"5/16/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":355,"Cost":226,"Date":"5/18/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":79,"Cost":46,"Date":"6/2/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":626,"Cost":345,"Date":"6/3/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":165,"Cost":147,"Date":"6/5/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":75,"Cost":68,"Date":"6/7/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":196,"Cost":162,"Date":"6/14/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":767,"Cost":417,"Date":"6/20/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":23,"Cost":17,"Date":"6/24/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":913,"Cost":671,"Date":"7/4/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":170,"Cost":112,"Date":"7/9/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":177,"Cost":166,"Date":"7/12/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":207,"Cost":148,"Date":"8/14/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":89,"Cost":54,"Date":"8/16/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":742,"Cost":554,"Date":"8/23/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":427,"Cost":272,"Date":"9/2/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":188,"Cost":110,"Date":"9/3/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":365,"Cost":319,"Date":"9/16/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":732,"Cost":682,"Date":"10/4/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":98,"Cost":61,"Date":"11/1/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":282,"Cost":230,"Date":"11/2/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":382,"Cost":331,"Date":"12/17/2022"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":90,"Cost":85,"Date":"2/10/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":159,"Cost":116,"Date":"2/28/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":747,"Cost":457,"Date":"3/4/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":717,"Cost":540,"Date":"3/9/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":44,"Cost":39,"Date":"3/9/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":58,"Cost":36,"Date":"3/11/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":659,"Cost":503,"Date":"3/17/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":348,"Cost":309,"Date":"3/17/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":99,"Cost":72,"Date":"3/23/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":752,"Cost":504,"Date":"4/1/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":708,"Cost":582,"Date":"5/7/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":261,"Cost":155,"Date":"5/10/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":391,"Cost":368,"Date":"5/20/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":544,"Cost":463,"Date":"6/2/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":176,"Cost":129,"Date":"6/11/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":703,"Cost":594,"Date":"6/16/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":703,"Cost":631,"Date":"6/16/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":471,"Cost":442,"Date":"7/10/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":728,"Cost":680,"Date":"7/11/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":701,"Cost":379,"Date":"8/28/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":667,"Cost":341,"Date":"8/29/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":26,"Cost":25,"Date":"8/31/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":751,"Cost":419,"Date":"9/8/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":833,"Cost":691,"Date":"9/13/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":844,"Cost":504,"Date":"9/14/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":980,"Cost":686,"Date":"9/19/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":274,"Cost":231,"Date":"9/25/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":777,"Cost":468,"Date":"10/4/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":765,"Cost":588,"Date":"10/10/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":165,"Cost":83,"Date":"10/17/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":756,"Cost":627,"Date":"10/28/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":819,"Cost":502,"Date":"10/30/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":514,"Cost":482,"Date":"11/1/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":447,"Cost":399,"Date":"11/15/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":436,"Cost":234,"Date":"11/25/2023"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":885,"Cost":649,"Date":"1/10/2024"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":802,"Cost":762,"Date":"1/14/2024"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":977,"Cost":832,"Date":"1/20/2024"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":238,"Cost":180,"Date":"2/8/2024"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":75,"Cost":70,"Date":"2/25/2024"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":469,"Cost":394,"Date":"3/7/2024"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":17,"Cost":10,"Date":"3/14/2024"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":838,"Cost":569,"Date":"3/27/2024"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":963,"Cost":661,"Date":"4/5/2024"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":547,"Cost":374,"Date":"4/14/2024"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":491,"Cost":415,"Date":"5/3/2024"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":864,"Cost":632,"Date":"5/9/2024"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":395,"Cost":300,"Date":"5/15/2024"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":556,"Cost":489,"Date":"5/25/2024"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":432,"Cost":319,"Date":"5/26/2024"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":565,"Cost":487,"Date":"5/31/2024"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":300,"Cost":251,"Date":"7/27/2024"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":995,"Cost":785,"Date":"9/17/2024"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":859,"Cost":624,"Date":"10/6/2024"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":761,"Cost":461,"Date":"10/8/2024"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":167,"Cost":127,"Date":"10/26/2024"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":261,"Cost":212,"Date":"11/16/2024"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":594,"Cost":371,"Date":"11/18/2024"},{"Store":"Alexa, Berlin","Brand":"HM Home","Country":"Germany","Sale":680,"Cost":539,"Date":"12/1/2024"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":697,"Cost":599,"Date":"2/9/2018"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":178,"Cost":153,"Date":"2/11/2018"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":581,"Cost":407,"Date":"3/10/2018"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":450,"Cost":346,"Date":"3/16/2018"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":977,"Cost":542,"Date":"3/18/2018"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":939,"Cost":836,"Date":"3/20/2018"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":570,"Cost":417,"Date":"3/26/2018"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":896,"Cost":635,"Date":"6/2/2018"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":407,"Cost":361,"Date":"6/10/2018"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":947,"Cost":551,"Date":"6/16/2018"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":303,"Cost":179,"Date":"6/25/2018"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":137,"Cost":100,"Date":"7/19/2018"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":178,"Cost":94,"Date":"7/21/2018"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":774,"Cost":697,"Date":"7/25/2018"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":770,"Cost":525,"Date":"8/4/2018"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":758,"Cost":453,"Date":"9/2/2018"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":696,"Cost":373,"Date":"9/4/2018"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":543,"Cost":299,"Date":"9/19/2018"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":837,"Cost":732,"Date":"9/29/2018"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":839,"Cost":562,"Date":"10/2/2018"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":635,"Cost":518,"Date":"10/15/2018"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":194,"Cost":169,"Date":"10/30/2018"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":77,"Cost":56,"Date":"11/9/2018"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":6,"Cost":4,"Date":"11/23/2018"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":734,"Cost":594,"Date":"11/30/2018"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":771,"Cost":667,"Date":"12/8/2018"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":642,"Cost":471,"Date":"12/11/2018"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":379,"Cost":259,"Date":"1/15/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":885,"Cost":643,"Date":"1/24/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":1000,"Cost":879,"Date":"2/3/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":112,"Cost":69,"Date":"2/4/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":198,"Cost":186,"Date":"3/9/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":54,"Cost":34,"Date":"3/12/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":525,"Cost":276,"Date":"4/19/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":925,"Cost":725,"Date":"5/3/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":160,"Cost":127,"Date":"5/4/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":732,"Cost":536,"Date":"6/8/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":507,"Cost":453,"Date":"6/26/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":138,"Cost":99,"Date":"7/4/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":638,"Cost":500,"Date":"7/13/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":202,"Cost":153,"Date":"8/8/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":264,"Cost":175,"Date":"8/26/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":943,"Cost":793,"Date":"9/2/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":635,"Cost":482,"Date":"9/29/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":775,"Cost":715,"Date":"10/12/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":967,"Cost":503,"Date":"11/2/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":441,"Cost":339,"Date":"11/4/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":78,"Cost":61,"Date":"11/7/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":559,"Cost":479,"Date":"12/1/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":28,"Cost":18,"Date":"12/4/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":788,"Cost":671,"Date":"12/7/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":850,"Cost":647,"Date":"12/18/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":91,"Cost":73,"Date":"12/20/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":955,"Cost":684,"Date":"12/20/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":514,"Cost":415,"Date":"12/21/2019"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":423,"Cost":339,"Date":"1/9/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":624,"Cost":460,"Date":"2/5/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":261,"Cost":134,"Date":"2/16/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":505,"Cost":446,"Date":"2/16/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":995,"Cost":605,"Date":"2/18/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":53,"Cost":49,"Date":"2/22/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":999,"Cost":725,"Date":"2/25/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":179,"Cost":120,"Date":"3/8/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":778,"Cost":540,"Date":"4/2/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":216,"Cost":186,"Date":"4/3/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":358,"Cost":278,"Date":"4/9/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":745,"Cost":395,"Date":"4/10/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":625,"Cost":527,"Date":"4/19/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":223,"Cost":122,"Date":"5/17/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":813,"Cost":414,"Date":"5/22/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":657,"Cost":501,"Date":"6/20/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":229,"Cost":157,"Date":"7/1/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":494,"Cost":315,"Date":"7/4/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":712,"Cost":558,"Date":"7/8/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":973,"Cost":846,"Date":"7/9/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":408,"Cost":249,"Date":"7/14/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":972,"Cost":545,"Date":"7/19/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":522,"Cost":455,"Date":"8/1/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":106,"Cost":63,"Date":"8/6/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":285,"Cost":182,"Date":"8/7/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":363,"Cost":292,"Date":"8/22/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":456,"Cost":348,"Date":"8/31/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":733,"Cost":641,"Date":"9/1/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":855,"Cost":533,"Date":"9/1/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":195,"Cost":127,"Date":"9/17/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":799,"Cost":744,"Date":"9/29/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":816,"Cost":728,"Date":"11/7/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":170,"Cost":145,"Date":"11/26/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":123,"Cost":68,"Date":"11/27/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":920,"Cost":783,"Date":"12/5/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":839,"Cost":504,"Date":"12/26/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":225,"Cost":208,"Date":"12/31/2020"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":566,"Cost":325,"Date":"1/20/2021"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":578,"Cost":498,"Date":"2/2/2021"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":806,"Cost":742,"Date":"2/8/2021"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":811,"Cost":541,"Date":"2/27/2021"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":721,"Cost":543,"Date":"3/1/2021"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":914,"Cost":640,"Date":"3/1/2021"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":499,"Cost":474,"Date":"3/19/2021"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":614,"Cost":453,"Date":"3/28/2021"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":57,"Cost":34,"Date":"5/21/2021"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":178,"Cost":156,"Date":"7/21/2021"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":432,"Cost":256,"Date":"8/5/2021"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":887,"Cost":829,"Date":"8/12/2021"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":548,"Cost":304,"Date":"8/21/2021"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":975,"Cost":772,"Date":"8/23/2021"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":108,"Cost":94,"Date":"9/3/2021"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":186,"Cost":154,"Date":"9/5/2021"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":972,"Cost":621,"Date":"10/6/2021"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":992,"Cost":871,"Date":"10/19/2021"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":569,"Cost":471,"Date":"11/15/2021"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":401,"Cost":259,"Date":"12/8/2021"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":37,"Cost":26,"Date":"1/8/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":793,"Cost":562,"Date":"1/14/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":157,"Cost":100,"Date":"1/19/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":984,"Cost":668,"Date":"1/28/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":455,"Cost":410,"Date":"1/31/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":510,"Cost":294,"Date":"3/27/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":768,"Cost":434,"Date":"4/20/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":445,"Cost":354,"Date":"4/24/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":890,"Cost":481,"Date":"4/28/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":60,"Cost":48,"Date":"5/15/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":184,"Cost":127,"Date":"5/16/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":640,"Cost":544,"Date":"5/18/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":597,"Cost":370,"Date":"6/2/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":701,"Cost":661,"Date":"6/3/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":158,"Cost":131,"Date":"6/5/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":130,"Cost":119,"Date":"6/7/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":386,"Cost":326,"Date":"6/14/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":450,"Cost":302,"Date":"6/20/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":985,"Cost":564,"Date":"6/24/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":217,"Cost":155,"Date":"7/4/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":893,"Cost":490,"Date":"7/9/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":567,"Cost":408,"Date":"7/12/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":510,"Cost":338,"Date":"8/14/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":991,"Cost":693,"Date":"8/16/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":744,"Cost":500,"Date":"8/23/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":953,"Cost":876,"Date":"9/2/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":74,"Cost":46,"Date":"9/3/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":826,"Cost":623,"Date":"9/16/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":646,"Cost":369,"Date":"10/4/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":502,"Cost":337,"Date":"11/1/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":163,"Cost":142,"Date":"11/2/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":471,"Cost":240,"Date":"12/17/2022"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":680,"Cost":412,"Date":"2/10/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":334,"Cost":203,"Date":"2/28/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":218,"Cost":193,"Date":"3/4/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":548,"Cost":335,"Date":"3/9/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":616,"Cost":404,"Date":"3/9/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":505,"Cost":328,"Date":"3/11/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":67,"Cost":62,"Date":"3/17/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":100,"Cost":68,"Date":"3/17/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":929,"Cost":831,"Date":"3/23/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":55,"Cost":42,"Date":"4/1/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":661,"Cost":468,"Date":"5/7/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":128,"Cost":111,"Date":"5/10/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":185,"Cost":137,"Date":"5/20/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":998,"Cost":514,"Date":"6/2/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":151,"Cost":115,"Date":"6/11/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":495,"Cost":401,"Date":"6/16/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":573,"Cost":352,"Date":"6/16/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":595,"Cost":516,"Date":"7/10/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":772,"Cost":686,"Date":"7/11/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":72,"Cost":51,"Date":"8/28/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":503,"Cost":266,"Date":"8/29/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":482,"Cost":403,"Date":"8/31/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":247,"Cost":209,"Date":"9/8/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":22,"Cost":15,"Date":"9/13/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":301,"Cost":151,"Date":"9/14/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":443,"Cost":418,"Date":"9/19/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":9,"Cost":8,"Date":"9/25/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":364,"Cost":297,"Date":"10/4/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":619,"Cost":479,"Date":"10/10/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":387,"Cost":313,"Date":"10/17/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":246,"Cost":199,"Date":"10/28/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":660,"Cost":366,"Date":"10/30/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":225,"Cost":143,"Date":"11/1/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":333,"Cost":232,"Date":"11/15/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":20,"Cost":12,"Date":"11/25/2023"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":205,"Cost":192,"Date":"1/10/2024"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":14,"Cost":13,"Date":"1/14/2024"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":991,"Cost":539,"Date":"1/20/2024"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":410,"Cost":268,"Date":"2/8/2024"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":933,"Cost":845,"Date":"2/25/2024"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":639,"Cost":600,"Date":"3/7/2024"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":886,"Cost":568,"Date":"3/14/2024"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":579,"Cost":334,"Date":"3/27/2024"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":59,"Cost":37,"Date":"4/5/2024"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":605,"Cost":316,"Date":"4/14/2024"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":408,"Cost":364,"Date":"5/3/2024"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":163,"Cost":103,"Date":"5/9/2024"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":222,"Cost":126,"Date":"5/15/2024"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":763,"Cost":567,"Date":"5/25/2024"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":297,"Cost":149,"Date":"5/26/2024"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":674,"Cost":639,"Date":"5/31/2024"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":828,"Cost":678,"Date":"7/27/2024"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":353,"Cost":307,"Date":"9/17/2024"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":460,"Cost":266,"Date":"10/6/2024"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":428,"Cost":356,"Date":"10/8/2024"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":530,"Cost":275,"Date":"10/26/2024"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":507,"Cost":378,"Date":"11/16/2024"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":986,"Cost":865,"Date":"11/18/2024"},{"Store":"Alexa, Berlin","Brand":"HM","Country":"Germany","Sale":316,"Cost":293,"Date":"12/1/2024"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":254,"Cost":214,"Date":"2/9/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":801,"Cost":501,"Date":"2/11/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":138,"Cost":72,"Date":"3/10/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":963,"Cost":894,"Date":"3/16/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":844,"Cost":613,"Date":"3/18/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":832,"Cost":753,"Date":"3/20/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":900,"Cost":707,"Date":"3/26/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":66,"Cost":51,"Date":"6/2/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":420,"Cost":243,"Date":"6/10/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":452,"Cost":399,"Date":"6/16/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":448,"Cost":281,"Date":"6/25/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":338,"Cost":234,"Date":"7/19/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":380,"Cost":231,"Date":"7/21/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":890,"Cost":514,"Date":"7/25/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":956,"Cost":724,"Date":"8/4/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":887,"Cost":819,"Date":"9/2/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":343,"Cost":212,"Date":"9/4/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":428,"Cost":316,"Date":"9/19/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":393,"Cost":278,"Date":"9/29/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":841,"Cost":784,"Date":"10/2/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":11,"Cost":7,"Date":"10/15/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":263,"Cost":133,"Date":"10/30/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":795,"Cost":650,"Date":"11/9/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":372,"Cost":290,"Date":"11/23/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":270,"Cost":232,"Date":"11/30/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":996,"Cost":879,"Date":"12/8/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":161,"Cost":153,"Date":"12/11/2018"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":1000,"Cost":811,"Date":"1/15/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":747,"Cost":390,"Date":"1/24/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":514,"Cost":466,"Date":"2/3/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":858,"Cost":640,"Date":"2/4/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":962,"Cost":875,"Date":"3/9/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":265,"Cost":191,"Date":"3/12/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":398,"Cost":351,"Date":"4/19/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":175,"Cost":155,"Date":"5/3/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":564,"Cost":424,"Date":"5/4/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":856,"Cost":572,"Date":"6/8/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":773,"Cost":581,"Date":"6/26/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":889,"Cost":635,"Date":"7/4/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":758,"Cost":635,"Date":"7/13/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":926,"Cost":758,"Date":"8/8/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":34,"Cost":25,"Date":"8/26/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":537,"Cost":306,"Date":"9/2/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":916,"Cost":599,"Date":"9/29/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":522,"Cost":485,"Date":"10/12/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":330,"Cost":165,"Date":"11/2/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":330,"Cost":177,"Date":"11/4/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":401,"Cost":329,"Date":"11/7/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":530,"Cost":289,"Date":"12/1/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":178,"Cost":146,"Date":"12/4/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":398,"Cost":215,"Date":"12/7/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":376,"Cost":221,"Date":"12/18/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":986,"Cost":864,"Date":"12/20/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":815,"Cost":692,"Date":"12/20/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":53,"Cost":48,"Date":"12/21/2019"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":820,"Cost":646,"Date":"1/9/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":978,"Cost":694,"Date":"2/5/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":79,"Cost":45,"Date":"2/16/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":871,"Cost":545,"Date":"2/16/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":293,"Cost":271,"Date":"2/18/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":724,"Cost":631,"Date":"2/22/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":76,"Cost":41,"Date":"2/25/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":175,"Cost":128,"Date":"3/8/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":303,"Cost":212,"Date":"4/2/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":481,"Cost":255,"Date":"4/3/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":367,"Cost":338,"Date":"4/9/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":596,"Cost":563,"Date":"4/10/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":829,"Cost":521,"Date":"4/19/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":771,"Cost":624,"Date":"5/17/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":789,"Cost":528,"Date":"5/22/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":735,"Cost":554,"Date":"6/20/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":956,"Cost":503,"Date":"7/1/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":178,"Cost":140,"Date":"7/4/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":215,"Cost":128,"Date":"7/8/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":27,"Cost":17,"Date":"7/9/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":13,"Cost":7,"Date":"7/14/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":563,"Cost":484,"Date":"7/19/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":814,"Cost":599,"Date":"8/1/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":892,"Cost":491,"Date":"8/6/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":47,"Cost":32,"Date":"8/7/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":806,"Cost":486,"Date":"8/22/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":957,"Cost":909,"Date":"8/31/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":515,"Cost":261,"Date":"9/1/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":382,"Cost":239,"Date":"9/1/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":673,"Cost":390,"Date":"9/17/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":863,"Cost":802,"Date":"9/29/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":191,"Cost":100,"Date":"11/7/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":805,"Cost":402,"Date":"11/26/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":934,"Cost":849,"Date":"11/27/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":978,"Cost":558,"Date":"12/5/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":809,"Cost":511,"Date":"12/26/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":439,"Cost":365,"Date":"12/31/2020"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":997,"Cost":847,"Date":"1/20/2021"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":691,"Cost":439,"Date":"2/2/2021"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":297,"Cost":263,"Date":"2/8/2021"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":76,"Cost":39,"Date":"2/27/2021"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":927,"Cost":478,"Date":"3/1/2021"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":503,"Cost":333,"Date":"3/1/2021"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":617,"Cost":329,"Date":"3/19/2021"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":858,"Cost":697,"Date":"3/28/2021"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":887,"Cost":741,"Date":"5/21/2021"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":6,"Cost":6,"Date":"7/21/2021"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":464,"Cost":259,"Date":"8/5/2021"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":542,"Cost":297,"Date":"8/12/2021"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":841,"Cost":694,"Date":"8/21/2021"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":732,"Cost":372,"Date":"8/23/2021"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":95,"Cost":49,"Date":"9/3/2021"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":178,"Cost":121,"Date":"9/5/2021"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":412,"Cost":284,"Date":"10/6/2021"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":961,"Cost":641,"Date":"10/19/2021"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":507,"Cost":445,"Date":"11/15/2021"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":88,"Cost":81,"Date":"12/8/2021"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":656,"Cost":345,"Date":"1/8/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":603,"Cost":336,"Date":"1/14/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":945,"Cost":557,"Date":"1/19/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":908,"Cost":789,"Date":"1/28/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":934,"Cost":527,"Date":"1/31/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":294,"Cost":266,"Date":"3/27/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":389,"Cost":258,"Date":"4/20/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":958,"Cost":489,"Date":"4/24/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":423,"Cost":260,"Date":"4/28/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":787,"Cost":613,"Date":"5/15/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":443,"Cost":417,"Date":"5/16/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":586,"Cost":348,"Date":"5/18/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":665,"Cost":371,"Date":"6/2/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":477,"Cost":444,"Date":"6/3/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":897,"Cost":683,"Date":"6/5/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":211,"Cost":163,"Date":"6/7/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":591,"Cost":513,"Date":"6/14/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":161,"Cost":143,"Date":"6/20/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":415,"Cost":308,"Date":"6/24/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":228,"Cost":165,"Date":"7/4/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":807,"Cost":512,"Date":"7/9/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":281,"Cost":267,"Date":"7/12/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":138,"Cost":106,"Date":"8/14/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":516,"Cost":484,"Date":"8/16/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":733,"Cost":544,"Date":"8/23/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":630,"Cost":356,"Date":"9/2/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":565,"Cost":463,"Date":"9/3/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":761,"Cost":592,"Date":"9/16/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":852,"Cost":431,"Date":"10/4/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":518,"Cost":378,"Date":"11/1/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":612,"Cost":579,"Date":"11/2/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":789,"Cost":468,"Date":"12/17/2022"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":193,"Cost":181,"Date":"2/10/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":914,"Cost":806,"Date":"2/28/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":598,"Cost":406,"Date":"3/4/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":699,"Cost":389,"Date":"3/9/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":895,"Cost":455,"Date":"3/9/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":165,"Cost":120,"Date":"3/11/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":913,"Cost":713,"Date":"3/17/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":398,"Cost":245,"Date":"3/17/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":813,"Cost":491,"Date":"3/23/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":423,"Cost":365,"Date":"4/1/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":576,"Cost":381,"Date":"5/7/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":864,"Cost":478,"Date":"5/10/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":600,"Cost":509,"Date":"5/20/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":625,"Cost":532,"Date":"6/2/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":791,"Cost":480,"Date":"6/11/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":738,"Cost":480,"Date":"6/16/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":45,"Cost":31,"Date":"6/16/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":23,"Cost":16,"Date":"7/10/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":776,"Cost":580,"Date":"7/11/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":934,"Cost":566,"Date":"8/28/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":784,"Cost":484,"Date":"8/29/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":317,"Cost":234,"Date":"8/31/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":335,"Cost":191,"Date":"9/8/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":332,"Cost":258,"Date":"9/13/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":856,"Cost":813,"Date":"9/14/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":572,"Cost":504,"Date":"9/19/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":332,"Cost":298,"Date":"9/25/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":960,"Cost":829,"Date":"10/4/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":821,"Cost":488,"Date":"10/10/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":297,"Cost":246,"Date":"10/17/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":584,"Cost":526,"Date":"10/28/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":547,"Cost":283,"Date":"10/30/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":30,"Cost":27,"Date":"11/1/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":984,"Cost":877,"Date":"11/15/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":838,"Cost":626,"Date":"11/25/2023"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":255,"Cost":156,"Date":"1/10/2024"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":966,"Cost":877,"Date":"1/14/2024"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":197,"Cost":144,"Date":"1/20/2024"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":732,"Cost":671,"Date":"2/8/2024"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":162,"Cost":114,"Date":"2/25/2024"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":266,"Cost":228,"Date":"3/7/2024"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":242,"Cost":138,"Date":"3/14/2024"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":809,"Cost":608,"Date":"3/27/2024"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":215,"Cost":173,"Date":"4/5/2024"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":652,"Cost":341,"Date":"4/14/2024"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":802,"Cost":754,"Date":"5/3/2024"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":805,"Cost":697,"Date":"5/9/2024"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":673,"Cost":596,"Date":"5/15/2024"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":597,"Cost":435,"Date":"5/25/2024"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":571,"Cost":377,"Date":"5/26/2024"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":420,"Cost":296,"Date":"5/31/2024"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":412,"Cost":274,"Date":"7/27/2024"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":796,"Cost":440,"Date":"9/17/2024"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":486,"Cost":402,"Date":"10/6/2024"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":364,"Cost":209,"Date":"10/8/2024"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":4,"Cost":4,"Date":"10/26/2024"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":988,"Cost":933,"Date":"11/16/2024"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":261,"Cost":134,"Date":"11/18/2024"},{"Store":"Alexa, Berlin","Brand":"Jeans","Country":"Germany","Sale":696,"Cost":385,"Date":"12/1/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":344,"Cost":259,"Date":"2/9/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":386,"Cost":245,"Date":"2/11/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":632,"Cost":489,"Date":"3/10/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":787,"Cost":561,"Date":"3/16/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":160,"Cost":104,"Date":"3/18/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":174,"Cost":121,"Date":"3/20/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":825,"Cost":775,"Date":"3/26/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":596,"Cost":414,"Date":"6/2/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":402,"Cost":305,"Date":"6/10/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":212,"Cost":195,"Date":"6/16/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":571,"Cost":358,"Date":"6/25/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":535,"Cost":319,"Date":"7/19/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":372,"Cost":226,"Date":"7/21/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":944,"Cost":482,"Date":"7/25/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":377,"Cost":305,"Date":"8/4/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":828,"Cost":434,"Date":"9/2/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":945,"Cost":626,"Date":"9/4/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":734,"Cost":422,"Date":"9/19/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":517,"Cost":485,"Date":"9/29/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":285,"Cost":243,"Date":"10/2/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":610,"Cost":434,"Date":"10/15/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":460,"Cost":415,"Date":"10/30/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":701,"Cost":628,"Date":"11/9/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":287,"Cost":228,"Date":"11/23/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":971,"Cost":730,"Date":"11/30/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":834,"Cost":452,"Date":"12/8/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":340,"Cost":276,"Date":"12/11/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":134,"Cost":106,"Date":"1/15/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":108,"Cost":97,"Date":"1/24/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":147,"Cost":132,"Date":"2/3/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":591,"Cost":331,"Date":"2/4/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":932,"Cost":796,"Date":"3/9/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":151,"Cost":86,"Date":"3/12/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":404,"Cost":302,"Date":"4/19/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":487,"Cost":398,"Date":"5/3/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":401,"Cost":316,"Date":"5/4/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":389,"Cost":298,"Date":"6/8/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":49,"Cost":47,"Date":"6/26/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":518,"Cost":462,"Date":"7/4/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":289,"Cost":243,"Date":"7/13/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":204,"Cost":122,"Date":"8/8/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":300,"Cost":248,"Date":"8/26/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":245,"Cost":177,"Date":"9/2/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":377,"Cost":358,"Date":"9/29/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":520,"Cost":298,"Date":"10/12/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":73,"Cost":42,"Date":"11/2/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":308,"Cost":161,"Date":"11/4/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":253,"Cost":130,"Date":"11/7/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":740,"Cost":456,"Date":"12/1/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":432,"Cost":271,"Date":"12/4/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":527,"Cost":464,"Date":"12/7/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":398,"Cost":359,"Date":"12/18/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":934,"Cost":768,"Date":"12/20/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":764,"Cost":404,"Date":"12/20/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":721,"Cost":478,"Date":"12/21/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":378,"Cost":209,"Date":"1/9/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":806,"Cost":656,"Date":"2/5/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":430,"Cost":281,"Date":"2/16/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":374,"Cost":209,"Date":"2/16/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":118,"Cost":96,"Date":"2/18/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":17,"Cost":9,"Date":"2/22/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":20,"Cost":14,"Date":"2/25/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":19,"Cost":15,"Date":"3/8/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":621,"Cost":325,"Date":"4/2/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":313,"Cost":270,"Date":"4/3/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":971,"Cost":620,"Date":"4/9/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":322,"Cost":284,"Date":"4/10/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":654,"Cost":528,"Date":"4/19/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":502,"Cost":275,"Date":"5/17/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":752,"Cost":397,"Date":"5/22/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":428,"Cost":302,"Date":"6/20/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":257,"Cost":189,"Date":"7/1/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":298,"Cost":151,"Date":"7/4/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":843,"Cost":515,"Date":"7/8/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":116,"Cost":73,"Date":"7/9/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":130,"Cost":97,"Date":"7/14/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":211,"Cost":167,"Date":"7/19/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":32,"Cost":19,"Date":"8/1/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":859,"Cost":813,"Date":"8/6/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":223,"Cost":166,"Date":"8/7/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":627,"Cost":468,"Date":"8/22/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":890,"Cost":504,"Date":"8/31/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":834,"Cost":514,"Date":"9/1/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":401,"Cost":218,"Date":"9/1/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":94,"Cost":85,"Date":"9/17/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":716,"Cost":436,"Date":"9/29/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":909,"Cost":671,"Date":"11/7/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":430,"Cost":403,"Date":"11/26/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":558,"Cost":300,"Date":"11/27/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":443,"Cost":401,"Date":"12/5/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":126,"Cost":116,"Date":"12/26/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":537,"Cost":493,"Date":"12/31/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":590,"Cost":343,"Date":"1/20/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":512,"Cost":391,"Date":"2/2/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":670,"Cost":615,"Date":"2/8/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":788,"Cost":433,"Date":"2/27/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":924,"Cost":841,"Date":"3/1/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":250,"Cost":176,"Date":"3/1/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":111,"Cost":65,"Date":"3/19/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":957,"Cost":700,"Date":"3/28/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":204,"Cost":172,"Date":"5/21/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":426,"Cost":286,"Date":"7/21/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":464,"Cost":408,"Date":"8/5/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":228,"Cost":120,"Date":"8/12/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":418,"Cost":215,"Date":"8/21/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":45,"Cost":25,"Date":"8/23/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":979,"Cost":832,"Date":"9/3/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":166,"Cost":148,"Date":"9/5/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":754,"Cost":498,"Date":"10/6/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":843,"Cost":591,"Date":"10/19/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":102,"Cost":90,"Date":"11/15/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":594,"Cost":419,"Date":"12/8/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":329,"Cost":308,"Date":"1/8/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":528,"Cost":378,"Date":"1/14/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":511,"Cost":322,"Date":"1/19/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":932,"Cost":814,"Date":"1/28/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":164,"Cost":120,"Date":"1/31/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":196,"Cost":125,"Date":"3/27/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":970,"Cost":498,"Date":"4/20/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":806,"Cost":448,"Date":"4/24/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":586,"Cost":499,"Date":"4/28/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":524,"Cost":495,"Date":"5/15/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":9,"Cost":4,"Date":"5/16/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":505,"Cost":289,"Date":"5/18/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":5,"Cost":3,"Date":"6/2/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":484,"Cost":270,"Date":"6/3/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":519,"Cost":317,"Date":"6/5/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":107,"Cost":96,"Date":"6/7/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":244,"Cost":202,"Date":"6/14/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":230,"Cost":219,"Date":"6/20/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":970,"Cost":735,"Date":"6/24/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":153,"Cost":111,"Date":"7/4/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":484,"Cost":338,"Date":"7/9/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":456,"Cost":412,"Date":"7/12/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":939,"Cost":740,"Date":"8/14/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":794,"Cost":478,"Date":"8/16/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":341,"Cost":227,"Date":"8/23/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":658,"Cost":516,"Date":"9/2/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":919,"Cost":839,"Date":"9/3/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":104,"Cost":90,"Date":"9/16/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":143,"Cost":97,"Date":"10/4/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":175,"Cost":147,"Date":"11/1/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":717,"Cost":565,"Date":"11/2/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":207,"Cost":136,"Date":"12/17/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":121,"Cost":66,"Date":"2/10/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":653,"Cost":587,"Date":"2/28/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":316,"Cost":207,"Date":"3/4/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":784,"Cost":697,"Date":"3/9/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":437,"Cost":265,"Date":"3/9/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":409,"Cost":250,"Date":"3/11/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":520,"Cost":293,"Date":"3/17/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":280,"Cost":254,"Date":"3/17/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":572,"Cost":328,"Date":"3/23/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":805,"Cost":623,"Date":"4/1/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":504,"Cost":354,"Date":"5/7/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":614,"Cost":506,"Date":"5/10/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":311,"Cost":185,"Date":"5/20/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":53,"Cost":26,"Date":"6/2/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":121,"Cost":62,"Date":"6/11/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":325,"Cost":200,"Date":"6/16/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":970,"Cost":792,"Date":"6/16/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":551,"Cost":499,"Date":"7/10/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":729,"Cost":465,"Date":"7/11/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":8,"Cost":6,"Date":"8/28/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":727,"Cost":393,"Date":"8/29/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":309,"Cost":174,"Date":"8/31/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":283,"Cost":252,"Date":"9/8/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":189,"Cost":156,"Date":"9/13/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":278,"Cost":155,"Date":"9/14/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":489,"Cost":268,"Date":"9/19/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":254,"Cost":164,"Date":"9/25/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":245,"Cost":142,"Date":"10/4/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":633,"Cost":522,"Date":"10/10/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":394,"Cost":367,"Date":"10/17/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":241,"Cost":121,"Date":"10/28/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":908,"Cost":792,"Date":"10/30/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":655,"Cost":573,"Date":"11/1/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":430,"Cost":255,"Date":"11/15/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":124,"Cost":80,"Date":"11/25/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":153,"Cost":108,"Date":"1/10/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":644,"Cost":546,"Date":"1/14/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":928,"Cost":777,"Date":"1/20/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":700,"Cost":380,"Date":"2/8/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":558,"Cost":458,"Date":"2/25/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":456,"Cost":314,"Date":"3/7/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":434,"Cost":368,"Date":"3/14/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":447,"Cost":303,"Date":"3/27/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":111,"Cost":58,"Date":"4/5/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":382,"Cost":327,"Date":"4/14/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":61,"Cost":38,"Date":"5/3/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":343,"Cost":244,"Date":"5/9/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":875,"Cost":695,"Date":"5/15/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":687,"Cost":427,"Date":"5/25/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":461,"Cost":363,"Date":"5/26/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":457,"Cost":242,"Date":"5/31/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":912,"Cost":510,"Date":"7/27/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":237,"Cost":192,"Date":"9/17/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":920,"Cost":692,"Date":"10/6/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":924,"Cost":609,"Date":"10/8/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":579,"Cost":382,"Date":"10/26/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":91,"Cost":46,"Date":"11/16/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":227,"Cost":190,"Date":"11/18/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Sellpy","Country":"Germany","Sale":805,"Cost":734,"Date":"12/1/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":961,"Cost":483,"Date":"2/9/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":45,"Cost":40,"Date":"2/11/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":492,"Cost":246,"Date":"3/10/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":730,"Cost":417,"Date":"3/16/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":812,"Cost":499,"Date":"3/18/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":386,"Cost":350,"Date":"3/20/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":206,"Cost":116,"Date":"3/26/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":82,"Cost":52,"Date":"6/2/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":130,"Cost":93,"Date":"6/10/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":365,"Cost":296,"Date":"6/16/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":511,"Cost":259,"Date":"6/25/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":335,"Cost":248,"Date":"7/19/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":2,"Cost":1,"Date":"7/21/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":718,"Cost":431,"Date":"7/25/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":223,"Cost":126,"Date":"8/4/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":779,"Cost":520,"Date":"9/2/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":563,"Cost":530,"Date":"9/4/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":50,"Cost":46,"Date":"9/19/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":288,"Cost":225,"Date":"9/29/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":122,"Cost":91,"Date":"10/2/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":720,"Cost":499,"Date":"10/15/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":519,"Cost":474,"Date":"10/30/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":722,"Cost":645,"Date":"11/9/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":826,"Cost":478,"Date":"11/23/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":20,"Cost":18,"Date":"11/30/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":618,"Cost":335,"Date":"12/8/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":258,"Cost":156,"Date":"12/11/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":228,"Cost":186,"Date":"1/15/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":494,"Cost":383,"Date":"1/24/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":815,"Cost":459,"Date":"2/3/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":737,"Cost":519,"Date":"2/4/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":270,"Cost":169,"Date":"3/9/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":715,"Cost":564,"Date":"3/12/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":102,"Cost":92,"Date":"4/19/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":707,"Cost":367,"Date":"5/3/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":1000,"Cost":519,"Date":"5/4/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":556,"Cost":527,"Date":"6/8/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":580,"Cost":397,"Date":"6/26/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":998,"Cost":828,"Date":"7/4/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":503,"Cost":422,"Date":"7/13/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":787,"Cost":432,"Date":"8/8/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":683,"Cost":365,"Date":"8/26/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":689,"Cost":411,"Date":"9/2/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":511,"Cost":410,"Date":"9/29/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":286,"Cost":197,"Date":"10/12/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":801,"Cost":678,"Date":"11/2/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":794,"Cost":647,"Date":"11/4/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":437,"Cost":226,"Date":"11/7/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":406,"Cost":311,"Date":"12/1/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":291,"Cost":273,"Date":"12/4/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":709,"Cost":581,"Date":"12/7/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":587,"Cost":369,"Date":"12/18/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":897,"Cost":517,"Date":"12/20/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":408,"Cost":269,"Date":"12/20/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":200,"Cost":129,"Date":"12/21/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":806,"Cost":686,"Date":"1/9/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":443,"Cost":418,"Date":"2/5/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":419,"Cost":212,"Date":"2/16/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":375,"Cost":189,"Date":"2/16/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":121,"Cost":105,"Date":"2/18/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":971,"Cost":861,"Date":"2/22/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":490,"Cost":266,"Date":"2/25/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":300,"Cost":185,"Date":"3/8/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":705,"Cost":657,"Date":"4/2/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":168,"Cost":122,"Date":"4/3/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":599,"Cost":411,"Date":"4/9/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":887,"Cost":659,"Date":"4/10/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":282,"Cost":257,"Date":"4/19/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":857,"Cost":448,"Date":"5/17/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":297,"Cost":232,"Date":"5/22/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":393,"Cost":280,"Date":"6/20/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":589,"Cost":302,"Date":"7/1/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":921,"Cost":770,"Date":"7/4/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":21,"Cost":11,"Date":"7/8/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":468,"Cost":392,"Date":"7/9/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":386,"Cost":237,"Date":"7/14/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":29,"Cost":15,"Date":"7/19/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":624,"Cost":566,"Date":"8/1/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":612,"Cost":377,"Date":"8/6/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":696,"Cost":618,"Date":"8/7/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":745,"Cost":630,"Date":"8/22/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":629,"Cost":493,"Date":"8/31/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":116,"Cost":107,"Date":"9/1/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":24,"Cost":19,"Date":"9/1/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":162,"Cost":138,"Date":"9/17/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":912,"Cost":547,"Date":"9/29/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":191,"Cost":108,"Date":"11/7/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":553,"Cost":476,"Date":"11/26/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":703,"Cost":461,"Date":"11/27/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":271,"Cost":190,"Date":"12/5/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":111,"Cost":78,"Date":"12/26/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":849,"Cost":742,"Date":"12/31/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":768,"Cost":674,"Date":"1/20/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":132,"Cost":92,"Date":"2/2/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":604,"Cost":470,"Date":"2/8/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":804,"Cost":520,"Date":"2/27/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":464,"Cost":294,"Date":"3/1/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":170,"Cost":141,"Date":"3/1/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":107,"Cost":93,"Date":"3/19/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":42,"Cost":32,"Date":"3/28/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":852,"Cost":493,"Date":"5/21/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":871,"Cost":792,"Date":"7/21/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":695,"Cost":479,"Date":"8/5/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":824,"Cost":467,"Date":"8/12/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":429,"Cost":336,"Date":"8/21/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":893,"Cost":758,"Date":"8/23/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":201,"Cost":120,"Date":"9/3/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":810,"Cost":657,"Date":"9/5/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":145,"Cost":74,"Date":"10/6/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":778,"Cost":738,"Date":"10/19/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":256,"Cost":157,"Date":"11/15/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":959,"Cost":850,"Date":"12/8/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":474,"Cost":290,"Date":"1/8/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":898,"Cost":716,"Date":"1/14/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":444,"Cost":258,"Date":"1/19/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":292,"Cost":237,"Date":"1/28/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":817,"Cost":474,"Date":"1/31/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":405,"Cost":336,"Date":"3/27/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":64,"Cost":54,"Date":"4/20/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":833,"Cost":546,"Date":"4/24/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":976,"Cost":704,"Date":"4/28/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":4,"Cost":4,"Date":"5/15/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":813,"Cost":430,"Date":"5/16/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":771,"Cost":676,"Date":"5/18/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":449,"Cost":392,"Date":"6/2/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":582,"Cost":519,"Date":"6/3/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":679,"Cost":527,"Date":"6/5/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":186,"Cost":118,"Date":"6/7/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":629,"Cost":373,"Date":"6/14/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":963,"Cost":493,"Date":"6/20/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":809,"Cost":740,"Date":"6/24/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":997,"Cost":596,"Date":"7/4/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":760,"Cost":474,"Date":"7/9/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":71,"Cost":51,"Date":"7/12/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":957,"Cost":515,"Date":"8/14/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":397,"Cost":251,"Date":"8/16/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":809,"Cost":652,"Date":"8/23/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":314,"Cost":251,"Date":"9/2/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":856,"Cost":757,"Date":"9/3/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":222,"Cost":179,"Date":"9/16/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":362,"Cost":320,"Date":"10/4/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":602,"Cost":493,"Date":"11/1/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":922,"Cost":653,"Date":"11/2/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":807,"Cost":594,"Date":"12/17/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":698,"Cost":529,"Date":"2/10/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":871,"Cost":581,"Date":"2/28/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":40,"Cost":28,"Date":"3/4/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":379,"Cost":343,"Date":"3/9/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":341,"Cost":265,"Date":"3/9/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":523,"Cost":388,"Date":"3/11/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":542,"Cost":459,"Date":"3/17/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":979,"Cost":579,"Date":"3/17/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":942,"Cost":753,"Date":"3/23/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":709,"Cost":663,"Date":"4/1/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":617,"Cost":362,"Date":"5/7/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":579,"Cost":525,"Date":"5/10/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":931,"Cost":803,"Date":"5/20/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":545,"Cost":352,"Date":"6/2/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":367,"Cost":247,"Date":"6/11/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":358,"Cost":310,"Date":"6/16/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":320,"Cost":266,"Date":"6/16/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":13,"Cost":7,"Date":"7/10/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":496,"Cost":410,"Date":"7/11/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":302,"Cost":184,"Date":"8/28/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":863,"Cost":684,"Date":"8/29/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":97,"Cost":85,"Date":"8/31/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":321,"Cost":261,"Date":"9/8/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":963,"Cost":852,"Date":"9/13/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":357,"Cost":198,"Date":"9/14/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":621,"Cost":336,"Date":"9/19/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":607,"Cost":548,"Date":"9/25/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":331,"Cost":249,"Date":"10/4/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":502,"Cost":427,"Date":"10/10/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":181,"Cost":121,"Date":"10/17/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":198,"Cost":110,"Date":"10/28/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":125,"Cost":83,"Date":"10/30/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":294,"Cost":185,"Date":"11/1/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":741,"Cost":438,"Date":"11/15/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":381,"Cost":269,"Date":"11/25/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":528,"Cost":342,"Date":"1/10/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":416,"Cost":271,"Date":"1/14/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":322,"Cost":229,"Date":"1/20/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":64,"Cost":61,"Date":"2/8/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":461,"Cost":426,"Date":"2/25/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":694,"Cost":627,"Date":"3/7/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":464,"Cost":398,"Date":"3/14/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":183,"Cost":143,"Date":"3/27/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":143,"Cost":134,"Date":"4/5/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":834,"Cost":674,"Date":"4/14/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":433,"Cost":285,"Date":"5/3/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":668,"Cost":417,"Date":"5/9/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":45,"Cost":35,"Date":"5/15/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":463,"Cost":233,"Date":"5/25/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":804,"Cost":478,"Date":"5/26/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":702,"Cost":462,"Date":"5/31/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":92,"Cost":85,"Date":"7/27/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":770,"Cost":711,"Date":"9/17/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":839,"Cost":456,"Date":"10/6/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":407,"Cost":253,"Date":"10/8/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":139,"Cost":105,"Date":"10/26/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":668,"Cost":469,"Date":"11/16/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":31,"Cost":21,"Date":"11/18/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":752,"Cost":552,"Date":"12/1/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":842,"Cost":741,"Date":"2/9/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":176,"Cost":112,"Date":"2/11/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":346,"Cost":246,"Date":"3/10/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":270,"Cost":178,"Date":"3/16/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":407,"Cost":331,"Date":"3/18/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":146,"Cost":73,"Date":"3/20/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":545,"Cost":447,"Date":"3/26/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":476,"Cost":393,"Date":"6/2/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":64,"Cost":39,"Date":"6/10/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":445,"Cost":404,"Date":"6/16/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":848,"Cost":726,"Date":"6/25/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":209,"Cost":182,"Date":"7/19/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":878,"Cost":793,"Date":"7/21/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":1,"Cost":1,"Date":"7/25/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":51,"Cost":49,"Date":"8/4/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":739,"Cost":646,"Date":"9/2/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":924,"Cost":622,"Date":"9/4/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":13,"Cost":7,"Date":"9/19/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":345,"Cost":276,"Date":"9/29/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":290,"Cost":153,"Date":"10/2/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":772,"Cost":392,"Date":"10/15/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":16,"Cost":9,"Date":"10/30/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":517,"Cost":372,"Date":"11/9/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":734,"Cost":616,"Date":"11/23/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":71,"Cost":46,"Date":"11/30/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":277,"Cost":211,"Date":"12/8/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":344,"Cost":267,"Date":"12/11/2018"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":337,"Cost":256,"Date":"1/15/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":345,"Cost":281,"Date":"1/24/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":902,"Cost":521,"Date":"2/3/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":673,"Cost":363,"Date":"2/4/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":533,"Cost":343,"Date":"3/9/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":252,"Cost":226,"Date":"3/12/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":361,"Cost":307,"Date":"4/19/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":839,"Cost":446,"Date":"5/3/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":911,"Cost":504,"Date":"5/4/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":680,"Cost":412,"Date":"6/8/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":353,"Cost":303,"Date":"6/26/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":936,"Cost":653,"Date":"7/4/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":290,"Cost":171,"Date":"7/13/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":618,"Cost":575,"Date":"8/8/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":92,"Cost":81,"Date":"8/26/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":305,"Cost":199,"Date":"9/2/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":304,"Cost":256,"Date":"9/29/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":502,"Cost":397,"Date":"10/12/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":393,"Cost":350,"Date":"11/2/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":692,"Cost":389,"Date":"11/4/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":109,"Cost":69,"Date":"11/7/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":961,"Cost":810,"Date":"12/1/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":598,"Cost":322,"Date":"12/4/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":265,"Cost":181,"Date":"12/7/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":696,"Cost":489,"Date":"12/18/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":279,"Cost":225,"Date":"12/20/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":557,"Cost":355,"Date":"12/20/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":848,"Cost":511,"Date":"12/21/2019"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":903,"Cost":536,"Date":"1/9/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":368,"Cost":276,"Date":"2/5/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":230,"Cost":131,"Date":"2/16/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":357,"Cost":315,"Date":"2/16/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":322,"Cost":281,"Date":"2/18/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":702,"Cost":359,"Date":"2/22/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":599,"Cost":542,"Date":"2/25/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":146,"Cost":75,"Date":"3/8/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":615,"Cost":389,"Date":"4/2/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":895,"Cost":454,"Date":"4/3/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":906,"Cost":659,"Date":"4/9/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":318,"Cost":240,"Date":"4/10/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":316,"Cost":245,"Date":"4/19/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":232,"Cost":124,"Date":"5/17/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":63,"Cost":36,"Date":"5/22/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":304,"Cost":184,"Date":"6/20/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":891,"Cost":833,"Date":"7/1/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":526,"Cost":329,"Date":"7/4/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":591,"Cost":386,"Date":"7/8/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":998,"Cost":928,"Date":"7/9/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":612,"Cost":390,"Date":"7/14/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":801,"Cost":610,"Date":"7/19/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":926,"Cost":635,"Date":"8/1/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":122,"Cost":106,"Date":"8/6/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":54,"Cost":51,"Date":"8/7/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":152,"Cost":122,"Date":"8/22/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":330,"Cost":246,"Date":"8/31/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":333,"Cost":259,"Date":"9/1/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":993,"Cost":534,"Date":"9/1/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":671,"Cost":411,"Date":"9/17/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":127,"Cost":118,"Date":"9/29/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":14,"Cost":10,"Date":"11/7/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":136,"Cost":127,"Date":"11/26/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":422,"Cost":335,"Date":"11/27/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":146,"Cost":136,"Date":"12/5/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":258,"Cost":213,"Date":"12/26/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":665,"Cost":447,"Date":"12/31/2020"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":520,"Cost":280,"Date":"1/20/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":668,"Cost":417,"Date":"2/2/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":810,"Cost":410,"Date":"2/8/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":6,"Cost":3,"Date":"2/27/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":740,"Cost":604,"Date":"3/1/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":882,"Cost":797,"Date":"3/1/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":384,"Cost":271,"Date":"3/19/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":100,"Cost":84,"Date":"3/28/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":192,"Cost":160,"Date":"5/21/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":674,"Cost":543,"Date":"7/21/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":161,"Cost":142,"Date":"8/5/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":601,"Cost":525,"Date":"8/12/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":783,"Cost":432,"Date":"8/21/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":543,"Cost":464,"Date":"8/23/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":698,"Cost":593,"Date":"9/3/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":681,"Cost":532,"Date":"9/5/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":506,"Cost":293,"Date":"10/6/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":662,"Cost":478,"Date":"10/19/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":516,"Cost":451,"Date":"11/15/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":180,"Cost":170,"Date":"12/8/2021"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":535,"Cost":370,"Date":"1/8/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":663,"Cost":371,"Date":"1/14/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":400,"Cost":272,"Date":"1/19/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":282,"Cost":155,"Date":"1/28/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":888,"Cost":576,"Date":"1/31/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":845,"Cost":426,"Date":"3/27/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":336,"Cost":201,"Date":"4/20/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":23,"Cost":19,"Date":"4/24/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":197,"Cost":127,"Date":"4/28/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":498,"Cost":438,"Date":"5/15/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":639,"Cost":388,"Date":"5/16/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":332,"Cost":199,"Date":"5/18/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":510,"Cost":477,"Date":"6/2/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":358,"Cost":326,"Date":"6/3/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":792,"Cost":561,"Date":"6/5/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":38,"Cost":33,"Date":"6/7/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":397,"Cost":329,"Date":"6/14/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":161,"Cost":112,"Date":"6/20/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":246,"Cost":218,"Date":"6/24/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":96,"Cost":86,"Date":"7/4/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":871,"Cost":619,"Date":"7/9/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":731,"Cost":591,"Date":"7/12/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":470,"Cost":243,"Date":"8/14/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":686,"Cost":545,"Date":"8/16/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":519,"Cost":326,"Date":"8/23/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":581,"Cost":490,"Date":"9/2/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":113,"Cost":67,"Date":"9/3/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":236,"Cost":210,"Date":"9/16/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":860,"Cost":513,"Date":"10/4/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":64,"Cost":43,"Date":"11/1/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":257,"Cost":236,"Date":"11/2/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":283,"Cost":192,"Date":"12/17/2022"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":137,"Cost":104,"Date":"2/10/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":504,"Cost":264,"Date":"2/28/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":217,"Cost":119,"Date":"3/4/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":364,"Cost":228,"Date":"3/9/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":134,"Cost":70,"Date":"3/9/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":482,"Cost":248,"Date":"3/11/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":116,"Cost":73,"Date":"3/17/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":780,"Cost":474,"Date":"3/17/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":68,"Cost":46,"Date":"3/23/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":167,"Cost":112,"Date":"4/1/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":106,"Cost":87,"Date":"5/7/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":748,"Cost":700,"Date":"5/10/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":837,"Cost":619,"Date":"5/20/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":513,"Cost":320,"Date":"6/2/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":470,"Cost":356,"Date":"6/11/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":90,"Cost":66,"Date":"6/16/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":335,"Cost":305,"Date":"6/16/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":299,"Cost":155,"Date":"7/10/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":305,"Cost":274,"Date":"7/11/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":39,"Cost":33,"Date":"8/28/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":369,"Cost":343,"Date":"8/29/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":99,"Cost":70,"Date":"8/31/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":990,"Cost":602,"Date":"9/8/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":479,"Cost":243,"Date":"9/13/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":18,"Cost":11,"Date":"9/14/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":522,"Cost":414,"Date":"9/19/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":809,"Cost":464,"Date":"9/25/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":756,"Cost":715,"Date":"10/4/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":144,"Cost":92,"Date":"10/10/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":515,"Cost":343,"Date":"10/17/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":983,"Cost":925,"Date":"10/28/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":703,"Cost":410,"Date":"10/30/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":870,"Cost":674,"Date":"11/1/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":253,"Cost":176,"Date":"11/15/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":446,"Cost":286,"Date":"11/25/2023"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":252,"Cost":202,"Date":"1/10/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":670,"Cost":579,"Date":"1/14/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":203,"Cost":131,"Date":"1/20/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":509,"Cost":274,"Date":"2/8/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":647,"Cost":400,"Date":"2/25/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":545,"Cost":333,"Date":"3/7/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":13,"Cost":6,"Date":"3/14/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":342,"Cost":202,"Date":"3/27/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":431,"Cost":260,"Date":"4/5/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":583,"Cost":469,"Date":"4/14/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":657,"Cost":521,"Date":"5/3/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":319,"Cost":204,"Date":"5/9/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":797,"Cost":693,"Date":"5/15/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":164,"Cost":128,"Date":"5/25/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":53,"Cost":34,"Date":"5/26/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":921,"Cost":643,"Date":"5/31/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":798,"Cost":449,"Date":"7/27/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":133,"Cost":110,"Date":"9/17/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":741,"Cost":529,"Date":"10/6/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":435,"Cost":274,"Date":"10/8/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":248,"Cost":153,"Date":"10/26/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":159,"Cost":123,"Date":"11/16/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":42,"Cost":34,"Date":"11/18/2024"},{"Store":"Alstertal Einkaufszentrum, Hamburg","Brand":"Nova","Country":"Germany","Sale":886,"Cost":812,"Date":"12/1/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":145,"Cost":123,"Date":"2/9/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":692,"Cost":533,"Date":"2/11/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":391,"Cost":310,"Date":"3/10/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":529,"Cost":480,"Date":"3/16/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":212,"Cost":137,"Date":"3/18/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":940,"Cost":501,"Date":"3/20/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":998,"Cost":615,"Date":"3/26/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":266,"Cost":202,"Date":"6/2/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":697,"Cost":474,"Date":"6/10/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":926,"Cost":851,"Date":"6/16/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":710,"Cost":571,"Date":"6/25/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":250,"Cost":135,"Date":"7/19/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":50,"Cost":40,"Date":"7/21/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":435,"Cost":317,"Date":"7/25/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":254,"Cost":146,"Date":"8/4/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":198,"Cost":180,"Date":"9/2/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":114,"Cost":87,"Date":"9/4/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":829,"Cost":603,"Date":"9/19/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":845,"Cost":450,"Date":"9/29/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":796,"Cost":408,"Date":"10/2/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":476,"Cost":387,"Date":"10/15/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":681,"Cost":558,"Date":"10/30/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":531,"Cost":282,"Date":"11/9/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":222,"Cost":209,"Date":"11/23/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":499,"Cost":390,"Date":"11/30/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":308,"Cost":213,"Date":"12/8/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":287,"Cost":150,"Date":"12/11/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":154,"Cost":113,"Date":"1/15/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":753,"Cost":548,"Date":"1/24/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":701,"Cost":381,"Date":"2/3/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":482,"Cost":253,"Date":"2/4/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":254,"Cost":157,"Date":"3/9/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":192,"Cost":158,"Date":"3/12/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":100,"Cost":74,"Date":"4/19/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":795,"Cost":513,"Date":"5/3/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":355,"Cost":278,"Date":"5/4/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":898,"Cost":526,"Date":"6/8/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":720,"Cost":467,"Date":"6/26/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":451,"Cost":258,"Date":"7/4/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":294,"Cost":181,"Date":"7/13/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":856,"Cost":760,"Date":"8/8/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":729,"Cost":392,"Date":"8/26/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":540,"Cost":353,"Date":"9/2/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":667,"Cost":548,"Date":"9/29/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":314,"Cost":198,"Date":"10/12/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":349,"Cost":182,"Date":"11/2/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":290,"Cost":155,"Date":"11/4/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":98,"Cost":75,"Date":"11/7/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":170,"Cost":98,"Date":"12/1/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":131,"Cost":98,"Date":"12/4/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":774,"Cost":709,"Date":"12/7/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":1,"Cost":1,"Date":"12/18/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":64,"Cost":47,"Date":"12/20/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":69,"Cost":50,"Date":"12/20/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":868,"Cost":662,"Date":"12/21/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":419,"Cost":324,"Date":"1/9/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":662,"Cost":541,"Date":"2/5/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":241,"Cost":222,"Date":"2/16/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":151,"Cost":120,"Date":"2/16/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":86,"Cost":43,"Date":"2/18/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":522,"Cost":388,"Date":"2/22/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":436,"Cost":399,"Date":"2/25/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":101,"Cost":54,"Date":"3/8/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":407,"Cost":299,"Date":"4/2/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":951,"Cost":809,"Date":"4/3/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":917,"Cost":693,"Date":"4/9/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":805,"Cost":751,"Date":"4/10/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":574,"Cost":476,"Date":"4/19/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":390,"Cost":335,"Date":"5/17/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":871,"Cost":775,"Date":"5/22/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":395,"Cost":255,"Date":"6/20/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":145,"Cost":135,"Date":"7/1/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":302,"Cost":283,"Date":"7/4/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":764,"Cost":531,"Date":"7/8/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":882,"Cost":458,"Date":"7/9/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":500,"Cost":303,"Date":"7/14/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":450,"Cost":279,"Date":"7/19/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":194,"Cost":116,"Date":"8/1/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":631,"Cost":485,"Date":"8/6/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":105,"Cost":74,"Date":"8/7/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":971,"Cost":670,"Date":"8/22/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":324,"Cost":255,"Date":"8/31/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":95,"Cost":82,"Date":"9/1/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":812,"Cost":611,"Date":"9/1/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":47,"Cost":36,"Date":"9/17/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":802,"Cost":459,"Date":"9/29/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":947,"Cost":791,"Date":"11/7/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":944,"Cost":484,"Date":"11/26/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":162,"Cost":100,"Date":"11/27/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":248,"Cost":137,"Date":"12/5/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":721,"Cost":403,"Date":"12/26/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":604,"Cost":315,"Date":"12/31/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":935,"Cost":660,"Date":"1/20/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":596,"Cost":425,"Date":"2/2/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":612,"Cost":314,"Date":"2/8/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":76,"Cost":64,"Date":"2/27/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":945,"Cost":777,"Date":"3/1/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":7,"Cost":4,"Date":"3/1/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":358,"Cost":333,"Date":"3/19/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":216,"Cost":174,"Date":"3/28/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":673,"Cost":369,"Date":"5/21/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":721,"Cost":597,"Date":"7/21/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":700,"Cost":648,"Date":"8/5/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":792,"Cost":464,"Date":"8/12/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":536,"Cost":458,"Date":"8/21/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":435,"Cost":404,"Date":"8/23/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":282,"Cost":255,"Date":"9/3/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":367,"Cost":303,"Date":"9/5/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":495,"Cost":432,"Date":"10/6/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":164,"Cost":127,"Date":"10/19/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":819,"Cost":671,"Date":"11/15/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":97,"Cost":64,"Date":"12/8/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":672,"Cost":524,"Date":"1/8/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":25,"Cost":18,"Date":"1/14/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":239,"Cost":151,"Date":"1/19/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":269,"Cost":157,"Date":"1/28/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":510,"Cost":294,"Date":"1/31/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":593,"Cost":336,"Date":"3/27/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":581,"Cost":328,"Date":"4/20/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":346,"Cost":194,"Date":"4/24/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":877,"Cost":585,"Date":"4/28/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":56,"Cost":53,"Date":"5/15/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":790,"Cost":672,"Date":"5/16/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":541,"Cost":445,"Date":"5/18/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":626,"Cost":519,"Date":"6/2/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":334,"Cost":293,"Date":"6/3/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":452,"Cost":294,"Date":"6/5/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":641,"Cost":608,"Date":"6/7/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":201,"Cost":111,"Date":"6/14/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":797,"Cost":631,"Date":"6/20/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":325,"Cost":241,"Date":"6/24/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":942,"Cost":705,"Date":"7/4/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":629,"Cost":365,"Date":"7/9/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":222,"Cost":172,"Date":"7/12/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":592,"Cost":561,"Date":"8/14/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":495,"Cost":421,"Date":"8/16/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":812,"Cost":424,"Date":"8/23/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":729,"Cost":621,"Date":"9/2/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":941,"Cost":489,"Date":"9/3/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":195,"Cost":158,"Date":"9/16/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":142,"Cost":77,"Date":"10/4/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":79,"Cost":52,"Date":"11/1/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":702,"Cost":442,"Date":"11/2/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":803,"Cost":763,"Date":"12/17/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":756,"Cost":552,"Date":"2/10/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":400,"Cost":216,"Date":"2/28/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":159,"Cost":144,"Date":"3/4/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":302,"Cost":203,"Date":"3/9/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":424,"Cost":314,"Date":"3/9/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":15,"Cost":9,"Date":"3/11/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":779,"Cost":510,"Date":"3/17/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":851,"Cost":492,"Date":"3/17/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":634,"Cost":378,"Date":"3/23/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":745,"Cost":400,"Date":"4/1/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":917,"Cost":623,"Date":"5/7/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":152,"Cost":119,"Date":"5/10/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":39,"Cost":29,"Date":"5/20/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":67,"Cost":59,"Date":"6/2/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":747,"Cost":548,"Date":"6/11/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":886,"Cost":560,"Date":"6/16/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":829,"Cost":577,"Date":"6/16/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":399,"Cost":325,"Date":"7/10/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":889,"Cost":569,"Date":"7/11/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":622,"Cost":396,"Date":"8/28/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":57,"Cost":46,"Date":"8/29/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":987,"Cost":790,"Date":"8/31/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":842,"Cost":599,"Date":"9/8/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":302,"Cost":223,"Date":"9/13/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":374,"Cost":345,"Date":"9/14/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":298,"Cost":161,"Date":"9/19/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":934,"Cost":835,"Date":"9/25/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":636,"Cost":541,"Date":"10/4/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":702,"Cost":420,"Date":"10/10/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":32,"Cost":27,"Date":"10/17/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":59,"Cost":31,"Date":"10/28/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":375,"Cost":281,"Date":"10/30/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":572,"Cost":363,"Date":"11/1/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":793,"Cost":484,"Date":"11/15/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":217,"Cost":203,"Date":"11/25/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":287,"Cost":196,"Date":"1/10/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":981,"Cost":624,"Date":"1/14/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":668,"Cost":453,"Date":"1/20/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":528,"Cost":337,"Date":"2/8/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":826,"Cost":737,"Date":"2/25/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":517,"Cost":420,"Date":"3/7/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":420,"Cost":306,"Date":"3/14/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":604,"Cost":545,"Date":"3/27/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":338,"Cost":223,"Date":"4/5/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":680,"Cost":363,"Date":"4/14/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":330,"Cost":261,"Date":"5/3/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":409,"Cost":271,"Date":"5/9/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":50,"Cost":44,"Date":"5/15/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":129,"Cost":77,"Date":"5/25/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":624,"Cost":492,"Date":"5/26/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":949,"Cost":681,"Date":"5/31/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":806,"Cost":719,"Date":"7/27/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":144,"Cost":108,"Date":"9/17/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":341,"Cost":222,"Date":"10/6/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":384,"Cost":255,"Date":"10/8/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":322,"Cost":207,"Date":"10/26/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":14,"Cost":11,"Date":"11/16/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":83,"Cost":57,"Date":"11/18/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM Home","Country":"Germany","Sale":248,"Cost":134,"Date":"12/1/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":852,"Cost":716,"Date":"2/9/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":25,"Cost":24,"Date":"2/11/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":38,"Cost":30,"Date":"3/10/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":622,"Cost":357,"Date":"3/16/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":543,"Cost":331,"Date":"3/18/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":652,"Cost":436,"Date":"3/20/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":966,"Cost":836,"Date":"3/26/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":205,"Cost":109,"Date":"6/2/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":274,"Cost":238,"Date":"6/10/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":622,"Cost":405,"Date":"6/16/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":657,"Cost":616,"Date":"6/25/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":910,"Cost":485,"Date":"7/19/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":103,"Cost":58,"Date":"7/21/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":870,"Cost":538,"Date":"7/25/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":954,"Cost":581,"Date":"8/4/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":867,"Cost":822,"Date":"9/2/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":67,"Cost":57,"Date":"9/4/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":423,"Cost":356,"Date":"9/19/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":361,"Cost":223,"Date":"9/29/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":570,"Cost":355,"Date":"10/2/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":660,"Cost":592,"Date":"10/15/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":311,"Cost":162,"Date":"10/30/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":768,"Cost":459,"Date":"11/9/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":36,"Cost":21,"Date":"11/23/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":755,"Cost":388,"Date":"11/30/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":64,"Cost":54,"Date":"12/8/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":159,"Cost":138,"Date":"12/11/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":783,"Cost":495,"Date":"1/15/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":729,"Cost":404,"Date":"1/24/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":342,"Cost":268,"Date":"2/3/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":302,"Cost":245,"Date":"2/4/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":140,"Cost":75,"Date":"3/9/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":128,"Cost":111,"Date":"3/12/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":761,"Cost":654,"Date":"4/19/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":196,"Cost":133,"Date":"5/3/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":856,"Cost":699,"Date":"5/4/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":329,"Cost":167,"Date":"6/8/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":683,"Cost":625,"Date":"6/26/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":600,"Cost":417,"Date":"7/4/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":482,"Cost":322,"Date":"7/13/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":547,"Cost":428,"Date":"8/8/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":955,"Cost":766,"Date":"8/26/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":997,"Cost":627,"Date":"9/2/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":368,"Cost":316,"Date":"9/29/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":899,"Cost":788,"Date":"10/12/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":103,"Cost":88,"Date":"11/2/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":661,"Cost":501,"Date":"11/4/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":864,"Cost":566,"Date":"11/7/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":349,"Cost":281,"Date":"12/1/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":341,"Cost":212,"Date":"12/4/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":220,"Cost":126,"Date":"12/7/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":908,"Cost":595,"Date":"12/18/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":536,"Cost":316,"Date":"12/20/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":6,"Cost":6,"Date":"12/20/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":211,"Cost":198,"Date":"12/21/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":592,"Cost":533,"Date":"1/9/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":683,"Cost":549,"Date":"2/5/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":292,"Cost":176,"Date":"2/16/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":775,"Cost":699,"Date":"2/16/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":63,"Cost":37,"Date":"2/18/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":127,"Cost":108,"Date":"2/22/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":962,"Cost":740,"Date":"2/25/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":507,"Cost":273,"Date":"3/8/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":314,"Cost":223,"Date":"4/2/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":911,"Cost":477,"Date":"4/3/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":308,"Cost":251,"Date":"4/9/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":264,"Cost":154,"Date":"4/10/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":186,"Cost":146,"Date":"4/19/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":31,"Cost":28,"Date":"5/17/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":848,"Cost":566,"Date":"5/22/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":254,"Cost":234,"Date":"6/20/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":217,"Cost":123,"Date":"7/1/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":910,"Cost":678,"Date":"7/4/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":207,"Cost":158,"Date":"7/8/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":175,"Cost":92,"Date":"7/9/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":346,"Cost":320,"Date":"7/14/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":267,"Cost":150,"Date":"7/19/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":189,"Cost":150,"Date":"8/1/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":907,"Cost":855,"Date":"8/6/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":152,"Cost":101,"Date":"8/7/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":926,"Cost":810,"Date":"8/22/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":978,"Cost":812,"Date":"8/31/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":644,"Cost":420,"Date":"9/1/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":687,"Cost":487,"Date":"9/1/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":691,"Cost":495,"Date":"9/17/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":538,"Cost":412,"Date":"9/29/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":649,"Cost":516,"Date":"11/7/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":843,"Cost":640,"Date":"11/26/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":663,"Cost":432,"Date":"11/27/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":865,"Cost":462,"Date":"12/5/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":58,"Cost":43,"Date":"12/26/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":67,"Cost":56,"Date":"12/31/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":735,"Cost":573,"Date":"1/20/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":864,"Cost":797,"Date":"2/2/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":51,"Cost":37,"Date":"2/8/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":768,"Cost":420,"Date":"2/27/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":682,"Cost":499,"Date":"3/1/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":233,"Cost":133,"Date":"3/1/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":440,"Cost":303,"Date":"3/19/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":268,"Cost":137,"Date":"3/28/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":297,"Cost":153,"Date":"5/21/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":928,"Cost":829,"Date":"7/21/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":763,"Cost":410,"Date":"8/5/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":22,"Cost":19,"Date":"8/12/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":752,"Cost":523,"Date":"8/21/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":885,"Cost":637,"Date":"8/23/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":191,"Cost":136,"Date":"9/3/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":591,"Cost":387,"Date":"9/5/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":141,"Cost":96,"Date":"10/6/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":965,"Cost":492,"Date":"10/19/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":995,"Cost":688,"Date":"11/15/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":345,"Cost":244,"Date":"12/8/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":328,"Cost":230,"Date":"1/8/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":348,"Cost":320,"Date":"1/14/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":62,"Cost":45,"Date":"1/19/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":389,"Cost":287,"Date":"1/28/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":512,"Cost":439,"Date":"1/31/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":39,"Cost":25,"Date":"3/27/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":291,"Cost":270,"Date":"4/20/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":277,"Cost":156,"Date":"4/24/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":515,"Cost":314,"Date":"4/28/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":149,"Cost":135,"Date":"5/15/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":129,"Cost":78,"Date":"5/16/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":262,"Cost":186,"Date":"5/18/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":584,"Cost":300,"Date":"6/2/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":368,"Cost":323,"Date":"6/3/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":586,"Cost":555,"Date":"6/5/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":170,"Cost":149,"Date":"6/7/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":832,"Cost":450,"Date":"6/14/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":909,"Cost":554,"Date":"6/20/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":282,"Cost":191,"Date":"6/24/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":289,"Cost":220,"Date":"7/4/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":937,"Cost":488,"Date":"7/9/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":984,"Cost":835,"Date":"7/12/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":338,"Cost":283,"Date":"8/14/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":687,"Cost":367,"Date":"8/16/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":394,"Cost":256,"Date":"8/23/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":458,"Cost":264,"Date":"9/2/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":759,"Cost":631,"Date":"9/3/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":965,"Cost":785,"Date":"9/16/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":921,"Cost":532,"Date":"10/4/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":642,"Cost":465,"Date":"11/1/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":302,"Cost":248,"Date":"11/2/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":223,"Cost":189,"Date":"12/17/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":639,"Cost":451,"Date":"2/10/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":777,"Cost":483,"Date":"2/28/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":833,"Cost":501,"Date":"3/4/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":313,"Cost":262,"Date":"3/9/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":361,"Cost":202,"Date":"3/9/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":83,"Cost":75,"Date":"3/11/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":995,"Cost":920,"Date":"3/17/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":667,"Cost":529,"Date":"3/17/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":766,"Cost":685,"Date":"3/23/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":364,"Cost":289,"Date":"4/1/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":467,"Cost":308,"Date":"5/7/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":949,"Cost":491,"Date":"5/10/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":741,"Cost":610,"Date":"5/20/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":988,"Cost":712,"Date":"6/2/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":388,"Cost":354,"Date":"6/11/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":453,"Cost":304,"Date":"6/16/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":864,"Cost":482,"Date":"6/16/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":480,"Cost":332,"Date":"7/10/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":823,"Cost":667,"Date":"7/11/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":925,"Cost":533,"Date":"8/28/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":823,"Cost":472,"Date":"8/29/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":372,"Cost":216,"Date":"8/31/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":479,"Cost":413,"Date":"9/8/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":268,"Cost":147,"Date":"9/13/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":205,"Cost":144,"Date":"9/14/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":809,"Cost":653,"Date":"9/19/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":288,"Cost":226,"Date":"9/25/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":994,"Cost":875,"Date":"10/4/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":285,"Cost":151,"Date":"10/10/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":456,"Cost":291,"Date":"10/17/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":565,"Cost":401,"Date":"10/28/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":864,"Cost":637,"Date":"10/30/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":702,"Cost":354,"Date":"11/1/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":227,"Cost":129,"Date":"11/15/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":466,"Cost":353,"Date":"11/25/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":739,"Cost":483,"Date":"1/10/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":264,"Cost":190,"Date":"1/14/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":268,"Cost":201,"Date":"1/20/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":579,"Cost":489,"Date":"2/8/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":490,"Cost":288,"Date":"2/25/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":254,"Cost":143,"Date":"3/7/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":917,"Cost":721,"Date":"3/14/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":41,"Cost":23,"Date":"3/27/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":531,"Cost":338,"Date":"4/5/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":279,"Cost":224,"Date":"4/14/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":337,"Cost":237,"Date":"5/3/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":14,"Cost":9,"Date":"5/9/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":481,"Cost":344,"Date":"5/15/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":576,"Cost":304,"Date":"5/25/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":222,"Cost":170,"Date":"5/26/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":961,"Cost":577,"Date":"5/31/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":975,"Cost":847,"Date":"7/27/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":488,"Cost":372,"Date":"9/17/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":643,"Cost":363,"Date":"10/6/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":308,"Cost":179,"Date":"10/8/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":848,"Cost":655,"Date":"10/26/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":616,"Cost":525,"Date":"11/16/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":730,"Cost":594,"Date":"11/18/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"HM","Country":"Germany","Sale":748,"Cost":487,"Date":"12/1/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":75,"Cost":66,"Date":"2/9/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":147,"Cost":105,"Date":"2/11/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":158,"Cost":147,"Date":"3/10/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":829,"Cost":529,"Date":"3/16/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":139,"Cost":115,"Date":"3/18/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":524,"Cost":435,"Date":"3/20/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":127,"Cost":98,"Date":"3/26/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":705,"Cost":529,"Date":"6/2/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":532,"Cost":427,"Date":"6/10/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":35,"Cost":32,"Date":"6/16/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":397,"Cost":307,"Date":"6/25/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":312,"Cost":227,"Date":"7/19/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":643,"Cost":497,"Date":"7/21/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":415,"Cost":265,"Date":"7/25/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":25,"Cost":17,"Date":"8/4/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":473,"Cost":314,"Date":"9/2/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":472,"Cost":287,"Date":"9/4/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":49,"Cost":25,"Date":"9/19/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":276,"Cost":209,"Date":"9/29/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":597,"Cost":308,"Date":"10/2/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":73,"Cost":52,"Date":"10/15/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":841,"Cost":711,"Date":"10/30/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":666,"Cost":529,"Date":"11/9/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":335,"Cost":171,"Date":"11/23/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":458,"Cost":376,"Date":"11/30/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":854,"Cost":454,"Date":"12/8/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":452,"Cost":384,"Date":"12/11/2018"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":783,"Cost":520,"Date":"1/15/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":166,"Cost":121,"Date":"1/24/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":195,"Cost":110,"Date":"2/3/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":244,"Cost":230,"Date":"2/4/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":188,"Cost":151,"Date":"3/9/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":501,"Cost":350,"Date":"3/12/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":786,"Cost":540,"Date":"4/19/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":454,"Cost":366,"Date":"5/3/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":803,"Cost":639,"Date":"5/4/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":554,"Cost":279,"Date":"6/8/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":138,"Cost":83,"Date":"6/26/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":756,"Cost":481,"Date":"7/4/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":990,"Cost":586,"Date":"7/13/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":533,"Cost":459,"Date":"8/8/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":110,"Cost":71,"Date":"8/26/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":90,"Cost":46,"Date":"9/2/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":872,"Cost":569,"Date":"9/29/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":929,"Cost":520,"Date":"10/12/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":949,"Cost":825,"Date":"11/2/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":805,"Cost":456,"Date":"11/4/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":928,"Cost":478,"Date":"11/7/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":574,"Cost":384,"Date":"12/1/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":711,"Cost":597,"Date":"12/4/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":273,"Cost":192,"Date":"12/7/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":310,"Cost":287,"Date":"12/18/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":591,"Cost":398,"Date":"12/20/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":363,"Cost":273,"Date":"12/20/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":316,"Cost":182,"Date":"12/21/2019"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":281,"Cost":168,"Date":"1/9/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":581,"Cost":489,"Date":"2/5/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":113,"Cost":58,"Date":"2/16/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":990,"Cost":701,"Date":"2/16/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":810,"Cost":520,"Date":"2/18/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":262,"Cost":148,"Date":"2/22/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":869,"Cost":740,"Date":"2/25/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":423,"Cost":368,"Date":"3/8/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":729,"Cost":484,"Date":"4/2/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":411,"Cost":223,"Date":"4/3/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":612,"Cost":496,"Date":"4/9/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":987,"Cost":773,"Date":"4/10/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":8,"Cost":5,"Date":"4/19/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":474,"Cost":418,"Date":"5/17/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":571,"Cost":413,"Date":"5/22/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":914,"Cost":813,"Date":"6/20/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":454,"Cost":422,"Date":"7/1/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":809,"Cost":563,"Date":"7/4/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":697,"Cost":446,"Date":"7/8/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":887,"Cost":514,"Date":"7/9/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":338,"Cost":203,"Date":"7/14/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":364,"Cost":308,"Date":"7/19/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":554,"Cost":425,"Date":"8/1/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":553,"Cost":516,"Date":"8/6/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":866,"Cost":744,"Date":"8/7/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":148,"Cost":115,"Date":"8/22/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":688,"Cost":475,"Date":"8/31/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":442,"Cost":362,"Date":"9/1/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":564,"Cost":493,"Date":"9/1/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":709,"Cost":530,"Date":"9/17/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":897,"Cost":533,"Date":"9/29/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":99,"Cost":76,"Date":"11/7/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":548,"Cost":384,"Date":"11/26/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":959,"Cost":504,"Date":"11/27/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":563,"Cost":514,"Date":"12/5/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":864,"Cost":451,"Date":"12/26/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":853,"Cost":756,"Date":"12/31/2020"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":318,"Cost":250,"Date":"1/20/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":679,"Cost":353,"Date":"2/2/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":389,"Cost":250,"Date":"2/8/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":694,"Cost":478,"Date":"2/27/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":139,"Cost":92,"Date":"3/1/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":75,"Cost":43,"Date":"3/1/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":631,"Cost":420,"Date":"3/19/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":52,"Cost":27,"Date":"3/28/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":846,"Cost":791,"Date":"5/21/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":103,"Cost":80,"Date":"7/21/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":613,"Cost":435,"Date":"8/5/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":25,"Cost":13,"Date":"8/12/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":215,"Cost":135,"Date":"8/21/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":713,"Cost":531,"Date":"8/23/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":945,"Cost":768,"Date":"9/3/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":744,"Cost":378,"Date":"9/5/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":225,"Cost":182,"Date":"10/6/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":687,"Cost":457,"Date":"10/19/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":17,"Cost":15,"Date":"11/15/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":221,"Cost":168,"Date":"12/8/2021"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":576,"Cost":299,"Date":"1/8/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":918,"Cost":828,"Date":"1/14/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":93,"Cost":80,"Date":"1/19/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":518,"Cost":460,"Date":"1/28/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":865,"Cost":490,"Date":"1/31/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":845,"Cost":803,"Date":"3/27/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":516,"Cost":353,"Date":"4/20/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":127,"Cost":103,"Date":"4/24/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":715,"Cost":435,"Date":"4/28/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":858,"Cost":465,"Date":"5/15/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":496,"Cost":310,"Date":"5/16/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":216,"Cost":199,"Date":"5/18/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":201,"Cost":117,"Date":"6/2/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":918,"Cost":568,"Date":"6/3/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":387,"Cost":223,"Date":"6/5/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":951,"Cost":777,"Date":"6/7/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":966,"Cost":872,"Date":"6/14/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":225,"Cost":199,"Date":"6/20/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":666,"Cost":549,"Date":"6/24/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":313,"Cost":232,"Date":"7/4/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":83,"Cost":54,"Date":"7/9/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":509,"Cost":314,"Date":"7/12/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":596,"Cost":517,"Date":"8/14/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":530,"Cost":412,"Date":"8/16/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":51,"Cost":42,"Date":"8/23/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":760,"Cost":684,"Date":"9/2/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":315,"Cost":266,"Date":"9/3/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":266,"Cost":167,"Date":"9/16/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":802,"Cost":634,"Date":"10/4/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":709,"Cost":513,"Date":"11/1/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":647,"Cost":411,"Date":"11/2/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":766,"Cost":708,"Date":"12/17/2022"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":30,"Cost":19,"Date":"2/10/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":988,"Cost":629,"Date":"2/28/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":579,"Cost":481,"Date":"3/4/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":239,"Cost":140,"Date":"3/9/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":603,"Cost":537,"Date":"3/9/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":49,"Cost":46,"Date":"3/11/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":16,"Cost":10,"Date":"3/17/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":671,"Cost":360,"Date":"3/17/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":338,"Cost":255,"Date":"3/23/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":919,"Cost":723,"Date":"4/1/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":647,"Cost":483,"Date":"5/7/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":225,"Cost":212,"Date":"5/10/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":381,"Cost":348,"Date":"5/20/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":709,"Cost":377,"Date":"6/2/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":433,"Cost":266,"Date":"6/11/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":980,"Cost":855,"Date":"6/16/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":169,"Cost":100,"Date":"6/16/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":223,"Cost":112,"Date":"7/10/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":567,"Cost":535,"Date":"7/11/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":958,"Cost":876,"Date":"8/28/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":442,"Cost":317,"Date":"8/29/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":782,"Cost":545,"Date":"8/31/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":120,"Cost":109,"Date":"9/8/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":669,"Cost":601,"Date":"9/13/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":493,"Cost":373,"Date":"9/14/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":653,"Cost":421,"Date":"9/19/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":354,"Cost":211,"Date":"9/25/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":973,"Cost":504,"Date":"10/4/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":315,"Cost":273,"Date":"10/10/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":864,"Cost":444,"Date":"10/17/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":757,"Cost":568,"Date":"10/28/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":571,"Cost":378,"Date":"10/30/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":550,"Cost":371,"Date":"11/1/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":925,"Cost":541,"Date":"11/15/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":910,"Cost":742,"Date":"11/25/2023"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":391,"Cost":314,"Date":"1/10/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":487,"Cost":371,"Date":"1/14/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":84,"Cost":49,"Date":"1/20/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":91,"Cost":63,"Date":"2/8/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":943,"Cost":701,"Date":"2/25/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":148,"Cost":89,"Date":"3/7/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":896,"Cost":698,"Date":"3/14/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":726,"Cost":475,"Date":"3/27/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":307,"Cost":164,"Date":"4/5/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":839,"Cost":601,"Date":"4/14/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":952,"Cost":828,"Date":"5/3/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":351,"Cost":177,"Date":"5/9/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":692,"Cost":531,"Date":"5/15/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":25,"Cost":21,"Date":"5/25/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":351,"Cost":285,"Date":"5/26/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":559,"Cost":432,"Date":"5/31/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":55,"Cost":31,"Date":"7/27/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":344,"Cost":223,"Date":"9/17/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":691,"Cost":628,"Date":"10/6/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":751,"Cost":629,"Date":"10/8/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":139,"Cost":79,"Date":"10/26/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":155,"Cost":128,"Date":"11/16/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":424,"Cost":218,"Date":"11/18/2024"},{"Store":"Zweibrücken Fashion Outlet","Brand":"Sellpy","Country":"Germany","Sale":859,"Cost":652,"Date":"12/1/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":972,"Cost":685,"Date":"2/9/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":455,"Cost":430,"Date":"2/11/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":271,"Cost":149,"Date":"3/10/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":53,"Cost":28,"Date":"3/16/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":915,"Cost":740,"Date":"3/18/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":656,"Cost":449,"Date":"3/20/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":728,"Cost":397,"Date":"3/26/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":183,"Cost":161,"Date":"6/2/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":336,"Cost":247,"Date":"6/10/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":552,"Cost":320,"Date":"6/16/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":194,"Cost":118,"Date":"6/25/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":118,"Cost":78,"Date":"7/19/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":848,"Cost":569,"Date":"7/21/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":242,"Cost":228,"Date":"7/25/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":60,"Cost":49,"Date":"8/4/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":865,"Cost":623,"Date":"9/2/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":498,"Cost":367,"Date":"9/4/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":697,"Cost":651,"Date":"9/19/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":406,"Cost":207,"Date":"9/29/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":296,"Cost":181,"Date":"10/2/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":756,"Cost":423,"Date":"10/15/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":957,"Cost":764,"Date":"10/30/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":778,"Cost":575,"Date":"11/9/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":651,"Cost":558,"Date":"11/23/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":399,"Cost":374,"Date":"11/30/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":465,"Cost":296,"Date":"12/8/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":98,"Cost":66,"Date":"12/11/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":908,"Cost":625,"Date":"1/15/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":885,"Cost":462,"Date":"1/24/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":676,"Cost":530,"Date":"2/3/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":919,"Cost":482,"Date":"2/4/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":688,"Cost":539,"Date":"3/9/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":415,"Cost":316,"Date":"3/12/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":931,"Cost":582,"Date":"4/19/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":238,"Cost":136,"Date":"5/3/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":469,"Cost":345,"Date":"5/4/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":682,"Cost":529,"Date":"6/8/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":183,"Cost":152,"Date":"6/26/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":260,"Cost":152,"Date":"7/4/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":245,"Cost":180,"Date":"7/13/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":580,"Cost":359,"Date":"8/8/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":741,"Cost":477,"Date":"8/26/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":862,"Cost":691,"Date":"9/2/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":788,"Cost":430,"Date":"9/29/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":580,"Cost":353,"Date":"10/12/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":413,"Cost":304,"Date":"11/2/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":869,"Cost":750,"Date":"11/4/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":23,"Cost":18,"Date":"11/7/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":952,"Cost":511,"Date":"12/1/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":768,"Cost":617,"Date":"12/4/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":658,"Cost":516,"Date":"12/7/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":643,"Cost":423,"Date":"12/18/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":796,"Cost":643,"Date":"12/20/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":894,"Cost":529,"Date":"12/20/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":668,"Cost":460,"Date":"12/21/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":131,"Cost":118,"Date":"1/9/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":415,"Cost":315,"Date":"2/5/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":954,"Cost":866,"Date":"2/16/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":862,"Cost":755,"Date":"2/16/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":973,"Cost":573,"Date":"2/18/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":862,"Cost":708,"Date":"2/22/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":402,"Cost":242,"Date":"2/25/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":858,"Cost":570,"Date":"3/8/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":265,"Cost":174,"Date":"4/2/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":405,"Cost":382,"Date":"4/3/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":859,"Cost":785,"Date":"4/9/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":145,"Cost":102,"Date":"4/10/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":730,"Cost":444,"Date":"4/19/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":750,"Cost":473,"Date":"5/17/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":985,"Cost":637,"Date":"5/22/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":271,"Cost":200,"Date":"6/20/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":237,"Cost":206,"Date":"7/1/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":175,"Cost":136,"Date":"7/4/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":494,"Cost":358,"Date":"7/8/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":806,"Cost":545,"Date":"7/9/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":426,"Cost":314,"Date":"7/14/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":452,"Cost":377,"Date":"7/19/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":606,"Cost":321,"Date":"8/1/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":135,"Cost":77,"Date":"8/6/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":9,"Cost":7,"Date":"8/7/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":958,"Cost":771,"Date":"8/22/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":706,"Cost":369,"Date":"8/31/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":235,"Cost":183,"Date":"9/1/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":982,"Cost":912,"Date":"9/1/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":827,"Cost":427,"Date":"9/17/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":37,"Cost":23,"Date":"9/29/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":575,"Cost":313,"Date":"11/7/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":740,"Cost":643,"Date":"11/26/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":294,"Cost":175,"Date":"11/27/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":301,"Cost":155,"Date":"12/5/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":211,"Cost":140,"Date":"12/26/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":855,"Cost":774,"Date":"12/31/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":612,"Cost":481,"Date":"1/20/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":81,"Cost":67,"Date":"2/2/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":415,"Cost":386,"Date":"2/8/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":818,"Cost":650,"Date":"2/27/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":358,"Cost":328,"Date":"3/1/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":810,"Cost":727,"Date":"3/1/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":832,"Cost":516,"Date":"3/19/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":952,"Cost":852,"Date":"3/28/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":776,"Cost":569,"Date":"5/21/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":958,"Cost":674,"Date":"7/21/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":714,"Cost":407,"Date":"8/5/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":950,"Cost":712,"Date":"8/12/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":204,"Cost":123,"Date":"8/21/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":283,"Cost":258,"Date":"8/23/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":629,"Cost":577,"Date":"9/3/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":608,"Cost":400,"Date":"9/5/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":440,"Cost":379,"Date":"10/6/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":116,"Cost":100,"Date":"10/19/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":23,"Cost":18,"Date":"11/15/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":186,"Cost":111,"Date":"12/8/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":460,"Cost":353,"Date":"1/8/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":722,"Cost":589,"Date":"1/14/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":937,"Cost":519,"Date":"1/19/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":202,"Cost":165,"Date":"1/28/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":222,"Cost":125,"Date":"1/31/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":799,"Cost":628,"Date":"3/27/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":818,"Cost":525,"Date":"4/20/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":127,"Cost":94,"Date":"4/24/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":939,"Cost":624,"Date":"4/28/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":175,"Cost":134,"Date":"5/15/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":964,"Cost":800,"Date":"5/16/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":251,"Cost":225,"Date":"5/18/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":552,"Cost":511,"Date":"6/2/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":689,"Cost":554,"Date":"6/3/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":142,"Cost":115,"Date":"6/5/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":445,"Cost":351,"Date":"6/7/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":581,"Cost":309,"Date":"6/14/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":656,"Cost":555,"Date":"6/20/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":679,"Cost":438,"Date":"6/24/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":437,"Cost":282,"Date":"7/4/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":746,"Cost":593,"Date":"7/9/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":227,"Cost":114,"Date":"7/12/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":942,"Cost":785,"Date":"8/14/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":813,"Cost":423,"Date":"8/16/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":998,"Cost":529,"Date":"8/23/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":74,"Cost":52,"Date":"9/2/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":272,"Cost":166,"Date":"9/3/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":807,"Cost":710,"Date":"9/16/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":515,"Cost":315,"Date":"10/4/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":503,"Cost":463,"Date":"11/1/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":488,"Cost":320,"Date":"11/2/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":867,"Cost":736,"Date":"12/17/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":188,"Cost":108,"Date":"2/10/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":350,"Cost":231,"Date":"2/28/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":788,"Cost":733,"Date":"3/4/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":862,"Cost":671,"Date":"3/9/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":665,"Cost":589,"Date":"3/9/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":879,"Cost":609,"Date":"3/11/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":648,"Cost":328,"Date":"3/17/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":490,"Cost":338,"Date":"3/17/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":947,"Cost":737,"Date":"3/23/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":290,"Cost":164,"Date":"4/1/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":230,"Cost":187,"Date":"5/7/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":995,"Cost":616,"Date":"5/10/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":589,"Cost":407,"Date":"5/20/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":726,"Cost":462,"Date":"6/2/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":934,"Cost":688,"Date":"6/11/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":589,"Cost":506,"Date":"6/16/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":392,"Cost":306,"Date":"6/16/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":958,"Cost":521,"Date":"7/10/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":419,"Cost":365,"Date":"7/11/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":565,"Cost":316,"Date":"8/28/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":109,"Cost":96,"Date":"8/29/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":188,"Cost":146,"Date":"8/31/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":196,"Cost":100,"Date":"9/8/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":509,"Cost":472,"Date":"9/13/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":766,"Cost":479,"Date":"9/14/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":280,"Cost":199,"Date":"9/19/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":884,"Cost":648,"Date":"9/25/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":847,"Cost":610,"Date":"10/4/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":819,"Cost":420,"Date":"10/10/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":56,"Cost":30,"Date":"10/17/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":447,"Cost":289,"Date":"10/28/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":132,"Cost":79,"Date":"10/30/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":435,"Cost":247,"Date":"11/1/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":294,"Cost":228,"Date":"11/15/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":484,"Cost":413,"Date":"11/25/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":259,"Cost":225,"Date":"1/10/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":468,"Cost":275,"Date":"1/14/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":578,"Cost":487,"Date":"1/20/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":207,"Cost":113,"Date":"2/8/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":767,"Cost":556,"Date":"2/25/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":557,"Cost":340,"Date":"3/7/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":833,"Cost":573,"Date":"3/14/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":28,"Cost":17,"Date":"3/27/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":934,"Cost":836,"Date":"4/5/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":204,"Cost":169,"Date":"4/14/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":346,"Cost":317,"Date":"5/3/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":653,"Cost":566,"Date":"5/9/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":684,"Cost":569,"Date":"5/15/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":453,"Cost":356,"Date":"5/25/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":714,"Cost":483,"Date":"5/26/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":439,"Cost":265,"Date":"5/31/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":326,"Cost":174,"Date":"7/27/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":678,"Cost":397,"Date":"9/17/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":273,"Cost":195,"Date":"10/6/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":248,"Cost":156,"Date":"10/8/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":255,"Cost":147,"Date":"10/26/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":784,"Cost":626,"Date":"11/16/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":350,"Cost":196,"Date":"11/18/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM","Country":"Germany","Sale":112,"Cost":93,"Date":"12/1/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":693,"Cost":449,"Date":"2/9/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":178,"Cost":136,"Date":"2/11/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":661,"Cost":401,"Date":"3/10/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":332,"Cost":270,"Date":"3/16/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":289,"Cost":251,"Date":"3/18/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":793,"Cost":554,"Date":"3/20/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":233,"Cost":178,"Date":"3/26/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":520,"Cost":413,"Date":"6/2/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":474,"Cost":346,"Date":"6/10/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":372,"Cost":301,"Date":"6/16/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":704,"Cost":495,"Date":"6/25/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":24,"Cost":16,"Date":"7/19/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":184,"Cost":144,"Date":"7/21/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":323,"Cost":265,"Date":"7/25/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":397,"Cost":317,"Date":"8/4/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":882,"Cost":738,"Date":"9/2/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":938,"Cost":634,"Date":"9/4/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":511,"Cost":331,"Date":"9/19/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":483,"Cost":385,"Date":"9/29/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":24,"Cost":16,"Date":"10/2/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":347,"Cost":244,"Date":"10/15/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":605,"Cost":474,"Date":"10/30/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":771,"Cost":668,"Date":"11/9/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":720,"Cost":546,"Date":"11/23/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":118,"Cost":65,"Date":"11/30/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":598,"Cost":560,"Date":"12/8/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":615,"Cost":418,"Date":"12/11/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":450,"Cost":249,"Date":"1/15/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":266,"Cost":203,"Date":"1/24/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":65,"Cost":37,"Date":"2/3/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":184,"Cost":122,"Date":"2/4/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":900,"Cost":684,"Date":"3/9/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":178,"Cost":91,"Date":"3/12/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":684,"Cost":353,"Date":"4/19/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":315,"Cost":209,"Date":"5/3/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":696,"Cost":400,"Date":"5/4/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":661,"Cost":353,"Date":"6/8/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":868,"Cost":757,"Date":"6/26/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":989,"Cost":583,"Date":"7/4/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":677,"Cost":416,"Date":"7/13/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":448,"Cost":343,"Date":"8/8/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":469,"Cost":415,"Date":"8/26/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":323,"Cost":276,"Date":"9/2/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":912,"Cost":602,"Date":"9/29/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":413,"Cost":276,"Date":"10/12/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":575,"Cost":505,"Date":"11/2/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":599,"Cost":336,"Date":"11/4/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":773,"Cost":433,"Date":"11/7/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":421,"Cost":266,"Date":"12/1/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":533,"Cost":358,"Date":"12/4/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":819,"Cost":713,"Date":"12/7/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":62,"Cost":41,"Date":"12/18/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":320,"Cost":199,"Date":"12/20/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":520,"Cost":398,"Date":"12/20/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":681,"Cost":460,"Date":"12/21/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":778,"Cost":443,"Date":"1/9/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":908,"Cost":525,"Date":"2/5/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":765,"Cost":703,"Date":"2/16/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":915,"Cost":706,"Date":"2/16/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":722,"Cost":575,"Date":"2/18/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":769,"Cost":613,"Date":"2/22/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":852,"Cost":645,"Date":"2/25/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":728,"Cost":642,"Date":"3/8/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":58,"Cost":42,"Date":"4/2/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":912,"Cost":729,"Date":"4/3/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":645,"Cost":406,"Date":"4/9/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":863,"Cost":721,"Date":"4/10/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":347,"Cost":199,"Date":"4/19/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":740,"Cost":637,"Date":"5/17/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":987,"Cost":826,"Date":"5/22/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":250,"Cost":149,"Date":"6/20/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":441,"Cost":358,"Date":"7/1/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":230,"Cost":121,"Date":"7/4/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":7,"Cost":3,"Date":"7/8/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":460,"Cost":306,"Date":"7/9/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":400,"Cost":367,"Date":"7/14/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":189,"Cost":99,"Date":"7/19/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":603,"Cost":463,"Date":"8/1/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":989,"Cost":766,"Date":"8/6/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":665,"Cost":469,"Date":"8/7/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":928,"Cost":677,"Date":"8/22/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":719,"Cost":607,"Date":"8/31/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":2,"Cost":2,"Date":"9/1/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":764,"Cost":409,"Date":"9/1/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":283,"Cost":195,"Date":"9/17/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":366,"Cost":267,"Date":"9/29/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":725,"Cost":435,"Date":"11/7/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":269,"Cost":137,"Date":"11/26/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":324,"Cost":217,"Date":"11/27/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":588,"Cost":376,"Date":"12/5/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":151,"Cost":119,"Date":"12/26/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":909,"Cost":798,"Date":"12/31/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":389,"Cost":349,"Date":"1/20/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":798,"Cost":562,"Date":"2/2/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":96,"Cost":89,"Date":"2/8/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":317,"Cost":270,"Date":"2/27/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":145,"Cost":107,"Date":"3/1/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":756,"Cost":423,"Date":"3/1/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":489,"Cost":356,"Date":"3/19/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":607,"Cost":321,"Date":"3/28/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":565,"Cost":518,"Date":"5/21/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":865,"Cost":757,"Date":"7/21/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":786,"Cost":660,"Date":"8/5/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":531,"Cost":420,"Date":"8/12/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":488,"Cost":255,"Date":"8/21/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":196,"Cost":142,"Date":"8/23/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":803,"Cost":503,"Date":"9/3/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":846,"Cost":692,"Date":"9/5/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":564,"Cost":388,"Date":"10/6/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":326,"Cost":168,"Date":"10/19/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":987,"Cost":936,"Date":"11/15/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":878,"Cost":571,"Date":"12/8/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":596,"Cost":439,"Date":"1/8/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":333,"Cost":309,"Date":"1/14/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":611,"Cost":482,"Date":"1/19/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":24,"Cost":21,"Date":"1/28/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":974,"Cost":639,"Date":"1/31/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":793,"Cost":501,"Date":"3/27/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":236,"Cost":122,"Date":"4/20/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":926,"Cost":794,"Date":"4/24/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":82,"Cost":51,"Date":"4/28/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":935,"Cost":776,"Date":"5/15/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":404,"Cost":346,"Date":"5/16/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":999,"Cost":623,"Date":"5/18/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":775,"Cost":735,"Date":"6/2/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":467,"Cost":247,"Date":"6/3/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":471,"Cost":379,"Date":"6/5/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":90,"Cost":58,"Date":"6/7/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":324,"Cost":248,"Date":"6/14/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":641,"Cost":371,"Date":"6/20/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":441,"Cost":263,"Date":"6/24/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":117,"Cost":92,"Date":"7/4/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":235,"Cost":217,"Date":"7/9/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":967,"Cost":853,"Date":"7/12/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":479,"Cost":253,"Date":"8/14/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":276,"Cost":244,"Date":"8/16/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":614,"Cost":505,"Date":"8/23/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":293,"Cost":231,"Date":"9/2/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":301,"Cost":240,"Date":"9/3/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":527,"Cost":302,"Date":"9/16/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":339,"Cost":211,"Date":"10/4/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":812,"Cost":457,"Date":"11/1/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":212,"Cost":129,"Date":"11/2/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":919,"Cost":528,"Date":"12/17/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":140,"Cost":78,"Date":"2/10/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":179,"Cost":102,"Date":"2/28/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":164,"Cost":119,"Date":"3/4/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":369,"Cost":251,"Date":"3/9/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":134,"Cost":98,"Date":"3/9/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":393,"Cost":242,"Date":"3/11/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":605,"Cost":523,"Date":"3/17/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":757,"Cost":403,"Date":"3/17/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":888,"Cost":781,"Date":"3/23/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":707,"Cost":628,"Date":"4/1/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":544,"Cost":422,"Date":"5/7/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":249,"Cost":145,"Date":"5/10/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":762,"Cost":402,"Date":"5/20/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":887,"Cost":452,"Date":"6/2/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":700,"Cost":431,"Date":"6/11/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":105,"Cost":82,"Date":"6/16/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":635,"Cost":591,"Date":"6/16/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":385,"Cost":332,"Date":"7/10/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":234,"Cost":148,"Date":"7/11/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":749,"Cost":454,"Date":"8/28/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":478,"Cost":263,"Date":"8/29/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":602,"Cost":359,"Date":"8/31/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":727,"Cost":619,"Date":"9/8/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":210,"Cost":124,"Date":"9/13/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":914,"Cost":639,"Date":"9/14/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":927,"Cost":863,"Date":"9/19/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":914,"Cost":548,"Date":"9/25/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":714,"Cost":668,"Date":"10/4/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":710,"Cost":471,"Date":"10/10/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":827,"Cost":630,"Date":"10/17/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":124,"Cost":113,"Date":"10/28/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":355,"Cost":229,"Date":"10/30/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":233,"Cost":197,"Date":"11/1/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":17,"Cost":9,"Date":"11/15/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":710,"Cost":463,"Date":"11/25/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":899,"Cost":823,"Date":"1/10/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":839,"Cost":572,"Date":"1/14/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":980,"Cost":704,"Date":"1/20/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":275,"Cost":161,"Date":"2/8/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":477,"Cost":372,"Date":"2/25/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":508,"Cost":437,"Date":"3/7/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":937,"Cost":492,"Date":"3/14/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":311,"Cost":284,"Date":"3/27/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":643,"Cost":370,"Date":"4/5/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":750,"Cost":378,"Date":"4/14/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":809,"Cost":449,"Date":"5/3/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":202,"Cost":111,"Date":"5/9/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":125,"Cost":83,"Date":"5/15/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":491,"Cost":272,"Date":"5/25/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":165,"Cost":114,"Date":"5/26/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":467,"Cost":266,"Date":"5/31/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":319,"Cost":228,"Date":"7/27/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":225,"Cost":195,"Date":"9/17/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":915,"Cost":706,"Date":"10/6/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":825,"Cost":532,"Date":"10/8/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":786,"Cost":692,"Date":"10/26/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":824,"Cost":457,"Date":"11/16/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":656,"Cost":332,"Date":"11/18/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"Nova","Country":"Germany","Sale":654,"Cost":450,"Date":"12/1/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":638,"Cost":396,"Date":"2/9/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":670,"Cost":501,"Date":"2/11/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":610,"Cost":469,"Date":"3/10/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":319,"Cost":216,"Date":"3/16/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":876,"Cost":606,"Date":"3/18/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":902,"Cost":835,"Date":"3/20/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":707,"Cost":465,"Date":"3/26/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":91,"Cost":67,"Date":"6/2/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":417,"Cost":264,"Date":"6/10/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":118,"Cost":79,"Date":"6/16/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":861,"Cost":535,"Date":"6/25/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":253,"Cost":202,"Date":"7/19/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":999,"Cost":654,"Date":"7/21/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":140,"Cost":86,"Date":"7/25/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":576,"Cost":420,"Date":"8/4/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":133,"Cost":124,"Date":"9/2/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":76,"Cost":38,"Date":"9/4/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":384,"Cost":236,"Date":"9/19/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":73,"Cost":42,"Date":"9/29/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":873,"Cost":770,"Date":"10/2/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":212,"Cost":161,"Date":"10/15/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":32,"Cost":19,"Date":"10/30/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":343,"Cost":320,"Date":"11/9/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":506,"Cost":448,"Date":"11/23/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":644,"Cost":431,"Date":"11/30/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":950,"Cost":497,"Date":"12/8/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":698,"Cost":422,"Date":"12/11/2018"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":973,"Cost":818,"Date":"1/15/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":329,"Cost":278,"Date":"1/24/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":171,"Cost":89,"Date":"2/3/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":438,"Cost":355,"Date":"2/4/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":597,"Cost":379,"Date":"3/9/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":876,"Cost":511,"Date":"3/12/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":347,"Cost":316,"Date":"4/19/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":621,"Cost":488,"Date":"5/3/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":584,"Cost":339,"Date":"5/4/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":248,"Cost":199,"Date":"6/8/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":154,"Cost":97,"Date":"6/26/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":295,"Cost":266,"Date":"7/4/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":874,"Cost":777,"Date":"7/13/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":975,"Cost":814,"Date":"8/8/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":701,"Cost":659,"Date":"8/26/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":574,"Cost":346,"Date":"9/2/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":10,"Cost":6,"Date":"9/29/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":866,"Cost":690,"Date":"10/12/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":659,"Cost":395,"Date":"11/2/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":912,"Cost":484,"Date":"11/4/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":404,"Cost":372,"Date":"11/7/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":173,"Cost":112,"Date":"12/1/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":71,"Cost":54,"Date":"12/4/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":404,"Cost":234,"Date":"12/7/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":72,"Cost":68,"Date":"12/18/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":254,"Cost":202,"Date":"12/20/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":460,"Cost":427,"Date":"12/20/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":349,"Cost":301,"Date":"12/21/2019"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":239,"Cost":178,"Date":"1/9/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":491,"Cost":411,"Date":"2/5/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":722,"Cost":496,"Date":"2/16/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":168,"Cost":102,"Date":"2/16/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":205,"Cost":103,"Date":"2/18/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":271,"Cost":219,"Date":"2/22/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":41,"Cost":33,"Date":"2/25/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":925,"Cost":765,"Date":"3/8/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":118,"Cost":110,"Date":"4/2/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":938,"Cost":636,"Date":"4/3/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":434,"Cost":230,"Date":"4/9/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":147,"Cost":81,"Date":"4/10/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":805,"Cost":623,"Date":"4/19/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":964,"Cost":493,"Date":"5/17/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":872,"Cost":446,"Date":"5/22/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":377,"Cost":340,"Date":"6/20/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":646,"Cost":542,"Date":"7/1/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":112,"Cost":86,"Date":"7/4/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":53,"Cost":30,"Date":"7/8/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":406,"Cost":299,"Date":"7/9/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":223,"Cost":131,"Date":"7/14/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":841,"Cost":527,"Date":"7/19/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":637,"Cost":449,"Date":"8/1/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":935,"Cost":655,"Date":"8/6/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":930,"Cost":519,"Date":"8/7/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":157,"Cost":135,"Date":"8/22/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":833,"Cost":604,"Date":"8/31/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":624,"Cost":546,"Date":"9/1/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":44,"Cost":38,"Date":"9/1/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":449,"Cost":411,"Date":"9/17/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":599,"Cost":508,"Date":"9/29/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":60,"Cost":46,"Date":"11/7/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":173,"Cost":117,"Date":"11/26/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":314,"Cost":221,"Date":"11/27/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":729,"Cost":593,"Date":"12/5/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":2,"Cost":2,"Date":"12/26/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":673,"Cost":392,"Date":"12/31/2020"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":20,"Cost":15,"Date":"1/20/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":352,"Cost":214,"Date":"2/2/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":851,"Cost":492,"Date":"2/8/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":16,"Cost":10,"Date":"2/27/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":190,"Cost":148,"Date":"3/1/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":794,"Cost":589,"Date":"3/1/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":938,"Cost":786,"Date":"3/19/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":202,"Cost":125,"Date":"3/28/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":142,"Cost":114,"Date":"5/21/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":26,"Cost":22,"Date":"7/21/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":773,"Cost":476,"Date":"8/5/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":490,"Cost":397,"Date":"8/12/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":422,"Cost":349,"Date":"8/21/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":806,"Cost":651,"Date":"8/23/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":696,"Cost":636,"Date":"9/3/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":525,"Cost":375,"Date":"9/5/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":548,"Cost":462,"Date":"10/6/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":257,"Cost":158,"Date":"10/19/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":674,"Cost":458,"Date":"11/15/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":953,"Cost":519,"Date":"12/8/2021"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":136,"Cost":126,"Date":"1/8/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":894,"Cost":605,"Date":"1/14/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":930,"Cost":466,"Date":"1/19/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":451,"Cost":353,"Date":"1/28/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":353,"Cost":323,"Date":"1/31/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":372,"Cost":222,"Date":"3/27/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":822,"Cost":613,"Date":"4/20/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":891,"Cost":676,"Date":"4/24/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":715,"Cost":464,"Date":"4/28/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":711,"Cost":659,"Date":"5/15/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":138,"Cost":109,"Date":"5/16/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":786,"Cost":664,"Date":"5/18/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":75,"Cost":45,"Date":"6/2/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":506,"Cost":395,"Date":"6/3/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":340,"Cost":296,"Date":"6/5/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":932,"Cost":520,"Date":"6/7/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":651,"Cost":336,"Date":"6/14/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":528,"Cost":473,"Date":"6/20/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":461,"Cost":251,"Date":"6/24/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":420,"Cost":385,"Date":"7/4/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":130,"Cost":92,"Date":"7/9/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":795,"Cost":506,"Date":"7/12/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":85,"Cost":64,"Date":"8/14/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":214,"Cost":107,"Date":"8/16/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":900,"Cost":736,"Date":"8/23/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":898,"Cost":835,"Date":"9/2/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":116,"Cost":82,"Date":"9/3/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":771,"Cost":684,"Date":"9/16/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":411,"Cost":211,"Date":"10/4/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":964,"Cost":750,"Date":"11/1/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":603,"Cost":378,"Date":"11/2/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":692,"Cost":496,"Date":"12/17/2022"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":518,"Cost":266,"Date":"2/10/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":890,"Cost":807,"Date":"2/28/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":473,"Cost":273,"Date":"3/4/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":650,"Cost":486,"Date":"3/9/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":734,"Cost":543,"Date":"3/9/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":271,"Cost":140,"Date":"3/11/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":768,"Cost":700,"Date":"3/17/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":537,"Cost":388,"Date":"3/17/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":270,"Cost":162,"Date":"3/23/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":926,"Cost":540,"Date":"4/1/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":556,"Cost":394,"Date":"5/7/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":443,"Cost":279,"Date":"5/10/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":612,"Cost":479,"Date":"5/20/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":831,"Cost":610,"Date":"6/2/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":173,"Cost":117,"Date":"6/11/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":417,"Cost":327,"Date":"6/16/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":644,"Cost":575,"Date":"6/16/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":391,"Cost":301,"Date":"7/10/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":949,"Cost":481,"Date":"7/11/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":581,"Cost":528,"Date":"8/28/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":938,"Cost":754,"Date":"8/29/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":802,"Cost":686,"Date":"8/31/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":615,"Cost":390,"Date":"9/8/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":921,"Cost":687,"Date":"9/13/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":895,"Cost":596,"Date":"9/14/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":633,"Cost":466,"Date":"9/19/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":705,"Cost":488,"Date":"9/25/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":278,"Cost":217,"Date":"10/4/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":639,"Cost":373,"Date":"10/10/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":618,"Cost":567,"Date":"10/17/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":863,"Cost":615,"Date":"10/28/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":808,"Cost":410,"Date":"10/30/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":701,"Cost":624,"Date":"11/1/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":984,"Cost":514,"Date":"11/15/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":469,"Cost":445,"Date":"11/25/2023"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":443,"Cost":335,"Date":"1/10/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":809,"Cost":480,"Date":"1/14/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":610,"Cost":345,"Date":"1/20/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":264,"Cost":222,"Date":"2/8/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":456,"Cost":432,"Date":"2/25/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":737,"Cost":693,"Date":"3/7/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":371,"Cost":290,"Date":"3/14/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":633,"Cost":481,"Date":"3/27/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":721,"Cost":583,"Date":"4/5/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":119,"Cost":78,"Date":"4/14/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":572,"Cost":456,"Date":"5/3/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":411,"Cost":351,"Date":"5/9/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":209,"Cost":131,"Date":"5/15/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":766,"Cost":461,"Date":"5/25/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":269,"Cost":248,"Date":"5/26/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":440,"Cost":364,"Date":"5/31/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":684,"Cost":406,"Date":"7/27/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":622,"Cost":366,"Date":"9/17/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":20,"Cost":10,"Date":"10/6/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":23,"Cost":16,"Date":"10/8/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":67,"Cost":38,"Date":"10/26/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":557,"Cost":362,"Date":"11/16/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":715,"Cost":429,"Date":"11/18/2024"},{"Store":"Altmarkt-Galerie, Dresden","Brand":"HM Home","Country":"Germany","Sale":616,"Cost":508,"Date":"12/1/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":847,"Cost":746,"Date":"2/9/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":341,"Cost":180,"Date":"2/11/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":255,"Cost":174,"Date":"3/10/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":417,"Cost":332,"Date":"3/16/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":640,"Cost":552,"Date":"3/18/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":208,"Cost":125,"Date":"3/20/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":946,"Cost":863,"Date":"3/26/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":86,"Cost":57,"Date":"6/2/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":280,"Cost":146,"Date":"6/10/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":919,"Cost":732,"Date":"6/16/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":289,"Cost":178,"Date":"6/25/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":302,"Cost":196,"Date":"7/19/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":606,"Cost":416,"Date":"7/21/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":772,"Cost":525,"Date":"7/25/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":205,"Cost":123,"Date":"8/4/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":817,"Cost":459,"Date":"9/2/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":556,"Cost":441,"Date":"9/4/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":249,"Cost":213,"Date":"9/19/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":684,"Cost":595,"Date":"9/29/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":940,"Cost":536,"Date":"10/2/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":325,"Cost":195,"Date":"10/15/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":730,"Cost":670,"Date":"10/30/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":766,"Cost":541,"Date":"11/9/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":414,"Cost":243,"Date":"11/23/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":167,"Cost":129,"Date":"11/30/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":220,"Cost":144,"Date":"12/8/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":160,"Cost":104,"Date":"12/11/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":513,"Cost":402,"Date":"1/15/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":999,"Cost":696,"Date":"1/24/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":192,"Cost":158,"Date":"2/3/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":762,"Cost":448,"Date":"2/4/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":570,"Cost":357,"Date":"3/9/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":606,"Cost":390,"Date":"3/12/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":352,"Cost":274,"Date":"4/19/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":221,"Cost":127,"Date":"5/3/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":997,"Cost":882,"Date":"5/4/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":192,"Cost":141,"Date":"6/8/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":817,"Cost":566,"Date":"6/26/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":342,"Cost":271,"Date":"7/4/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":914,"Cost":671,"Date":"7/13/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":611,"Cost":402,"Date":"8/8/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":667,"Cost":528,"Date":"8/26/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":265,"Cost":154,"Date":"9/2/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":606,"Cost":421,"Date":"9/29/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":689,"Cost":419,"Date":"10/12/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":886,"Cost":643,"Date":"11/2/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":130,"Cost":97,"Date":"11/4/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":506,"Cost":338,"Date":"11/7/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":374,"Cost":344,"Date":"12/1/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":9,"Cost":5,"Date":"12/4/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":412,"Cost":362,"Date":"12/7/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":754,"Cost":590,"Date":"12/18/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":608,"Cost":515,"Date":"12/20/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":323,"Cost":265,"Date":"12/20/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":415,"Cost":335,"Date":"12/21/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":107,"Cost":57,"Date":"1/9/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":120,"Cost":103,"Date":"2/5/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":88,"Cost":64,"Date":"2/16/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":557,"Cost":324,"Date":"2/16/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":85,"Cost":67,"Date":"2/18/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":839,"Cost":790,"Date":"2/22/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":247,"Cost":180,"Date":"2/25/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":735,"Cost":541,"Date":"3/8/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":367,"Cost":329,"Date":"4/2/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":191,"Cost":121,"Date":"4/3/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":897,"Cost":810,"Date":"4/9/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":7,"Cost":4,"Date":"4/10/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":208,"Cost":170,"Date":"4/19/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":26,"Cost":14,"Date":"5/17/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":528,"Cost":329,"Date":"5/22/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":316,"Cost":226,"Date":"6/20/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":967,"Cost":623,"Date":"7/1/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":395,"Cost":280,"Date":"7/4/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":19,"Cost":14,"Date":"7/8/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":705,"Cost":353,"Date":"7/9/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":581,"Cost":516,"Date":"7/14/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":78,"Cost":56,"Date":"7/19/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":784,"Cost":706,"Date":"8/1/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":897,"Cost":691,"Date":"8/6/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":930,"Cost":787,"Date":"8/7/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":309,"Cost":203,"Date":"8/22/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":170,"Cost":111,"Date":"8/31/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":78,"Cost":48,"Date":"9/1/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":48,"Cost":35,"Date":"9/1/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":422,"Cost":267,"Date":"9/17/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":723,"Cost":436,"Date":"9/29/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":759,"Cost":475,"Date":"11/7/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":286,"Cost":176,"Date":"11/26/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":671,"Cost":628,"Date":"11/27/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":314,"Cost":279,"Date":"12/5/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":695,"Cost":465,"Date":"12/26/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":584,"Cost":374,"Date":"12/31/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":484,"Cost":394,"Date":"1/20/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":38,"Cost":27,"Date":"2/2/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":442,"Cost":331,"Date":"2/8/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":39,"Cost":30,"Date":"2/27/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":476,"Cost":452,"Date":"3/1/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":872,"Cost":512,"Date":"3/1/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":853,"Cost":773,"Date":"3/19/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":764,"Cost":694,"Date":"3/28/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":182,"Cost":157,"Date":"5/21/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":21,"Cost":15,"Date":"7/21/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":61,"Cost":32,"Date":"8/5/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":983,"Cost":641,"Date":"8/12/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":859,"Cost":530,"Date":"8/21/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":182,"Cost":129,"Date":"8/23/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":84,"Cost":74,"Date":"9/3/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":928,"Cost":855,"Date":"9/5/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":700,"Cost":556,"Date":"10/6/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":212,"Cost":107,"Date":"10/19/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":15,"Cost":11,"Date":"11/15/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":247,"Cost":202,"Date":"12/8/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":762,"Cost":523,"Date":"1/8/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":252,"Cost":162,"Date":"1/14/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":658,"Cost":421,"Date":"1/19/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":472,"Cost":240,"Date":"1/28/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":524,"Cost":277,"Date":"1/31/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":423,"Cost":252,"Date":"3/27/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":458,"Cost":246,"Date":"4/20/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":58,"Cost":44,"Date":"4/24/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":752,"Cost":671,"Date":"4/28/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":959,"Cost":860,"Date":"5/15/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":374,"Cost":301,"Date":"5/16/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":722,"Cost":396,"Date":"5/18/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":169,"Cost":116,"Date":"6/2/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":509,"Cost":346,"Date":"6/3/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":420,"Cost":364,"Date":"6/5/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":52,"Cost":38,"Date":"6/7/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":761,"Cost":696,"Date":"6/14/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":805,"Cost":540,"Date":"6/20/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":463,"Cost":431,"Date":"6/24/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":334,"Cost":262,"Date":"7/4/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":351,"Cost":261,"Date":"7/9/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":653,"Cost":619,"Date":"7/12/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":764,"Cost":435,"Date":"8/14/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":239,"Cost":201,"Date":"8/16/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":49,"Cost":42,"Date":"8/23/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":724,"Cost":394,"Date":"9/2/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":217,"Cost":199,"Date":"9/3/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":344,"Cost":294,"Date":"9/16/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":659,"Cost":417,"Date":"10/4/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":761,"Cost":607,"Date":"11/1/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":313,"Cost":261,"Date":"11/2/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":81,"Cost":48,"Date":"12/17/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":931,"Cost":553,"Date":"2/10/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":370,"Cost":281,"Date":"2/28/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":390,"Cost":304,"Date":"3/4/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":120,"Cost":80,"Date":"3/9/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":277,"Cost":183,"Date":"3/9/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":848,"Cost":541,"Date":"3/11/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":970,"Cost":833,"Date":"3/17/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":942,"Cost":497,"Date":"3/17/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":36,"Cost":18,"Date":"3/23/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":309,"Cost":203,"Date":"4/1/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":595,"Cost":535,"Date":"5/7/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":889,"Cost":550,"Date":"5/10/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":617,"Cost":421,"Date":"5/20/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":856,"Cost":504,"Date":"6/2/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":175,"Cost":126,"Date":"6/11/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":358,"Cost":284,"Date":"6/16/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":738,"Cost":644,"Date":"6/16/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":872,"Cost":714,"Date":"7/10/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":851,"Cost":444,"Date":"7/11/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":697,"Cost":616,"Date":"8/28/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":688,"Cost":521,"Date":"8/29/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":850,"Cost":569,"Date":"8/31/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":993,"Cost":516,"Date":"9/8/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":456,"Cost":250,"Date":"9/13/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":948,"Cost":628,"Date":"9/14/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":218,"Cost":138,"Date":"9/19/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":446,"Cost":414,"Date":"9/25/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":268,"Cost":200,"Date":"10/4/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":741,"Cost":426,"Date":"10/10/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":961,"Cost":534,"Date":"10/17/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":327,"Cost":187,"Date":"10/28/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":444,"Cost":419,"Date":"10/30/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":820,"Cost":430,"Date":"11/1/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":314,"Cost":290,"Date":"11/15/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":811,"Cost":517,"Date":"11/25/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":317,"Cost":260,"Date":"1/10/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":81,"Cost":68,"Date":"1/14/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":624,"Cost":398,"Date":"1/20/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":111,"Cost":76,"Date":"2/8/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":587,"Cost":312,"Date":"2/25/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":168,"Cost":128,"Date":"3/7/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":207,"Cost":130,"Date":"3/14/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":58,"Cost":42,"Date":"3/27/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":221,"Cost":195,"Date":"4/5/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":5,"Cost":2,"Date":"4/14/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":316,"Cost":244,"Date":"5/3/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":99,"Cost":76,"Date":"5/9/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":45,"Cost":42,"Date":"5/15/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":697,"Cost":576,"Date":"5/25/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":3,"Cost":3,"Date":"5/26/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":249,"Cost":222,"Date":"5/31/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":15,"Cost":12,"Date":"7/27/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":336,"Cost":311,"Date":"9/17/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":726,"Cost":570,"Date":"10/6/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":93,"Cost":58,"Date":"10/8/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":450,"Cost":248,"Date":"10/26/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":633,"Cost":472,"Date":"11/16/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":134,"Cost":87,"Date":"11/18/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":150,"Cost":109,"Date":"12/1/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":729,"Cost":502,"Date":"2/9/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":682,"Cost":421,"Date":"2/11/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":437,"Cost":331,"Date":"3/10/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":180,"Cost":125,"Date":"3/16/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":485,"Cost":275,"Date":"3/18/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":305,"Cost":178,"Date":"3/20/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":464,"Cost":238,"Date":"3/26/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":369,"Cost":257,"Date":"6/2/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":474,"Cost":450,"Date":"6/10/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":485,"Cost":369,"Date":"6/16/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":644,"Cost":474,"Date":"6/25/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":700,"Cost":554,"Date":"7/19/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":633,"Cost":470,"Date":"7/21/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":464,"Cost":433,"Date":"7/25/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":223,"Cost":160,"Date":"8/4/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":352,"Cost":307,"Date":"9/2/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":592,"Cost":412,"Date":"9/4/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":462,"Cost":410,"Date":"9/19/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":756,"Cost":562,"Date":"9/29/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":733,"Cost":527,"Date":"10/2/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":122,"Cost":80,"Date":"10/15/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":809,"Cost":514,"Date":"10/30/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":690,"Cost":462,"Date":"11/9/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":497,"Cost":447,"Date":"11/23/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":267,"Cost":224,"Date":"11/30/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":305,"Cost":215,"Date":"12/8/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":299,"Cost":223,"Date":"12/11/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":599,"Cost":311,"Date":"1/15/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":928,"Cost":569,"Date":"1/24/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":569,"Cost":350,"Date":"2/3/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":632,"Cost":373,"Date":"2/4/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":24,"Cost":22,"Date":"3/9/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":564,"Cost":452,"Date":"3/12/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":945,"Cost":692,"Date":"4/19/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":779,"Cost":651,"Date":"5/3/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":580,"Cost":452,"Date":"5/4/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":875,"Cost":802,"Date":"6/8/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":255,"Cost":202,"Date":"6/26/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":904,"Cost":747,"Date":"7/4/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":581,"Cost":445,"Date":"7/13/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":124,"Cost":93,"Date":"8/8/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":454,"Cost":368,"Date":"8/26/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":727,"Cost":440,"Date":"9/2/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":470,"Cost":312,"Date":"9/29/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":228,"Cost":135,"Date":"10/12/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":572,"Cost":393,"Date":"11/2/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":551,"Cost":284,"Date":"11/4/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":714,"Cost":432,"Date":"11/7/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":53,"Cost":29,"Date":"12/1/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":813,"Cost":678,"Date":"12/4/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":246,"Cost":166,"Date":"12/7/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":710,"Cost":660,"Date":"12/18/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":639,"Cost":366,"Date":"12/20/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":409,"Cost":372,"Date":"12/20/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":760,"Cost":504,"Date":"12/21/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":913,"Cost":709,"Date":"1/9/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":392,"Cost":217,"Date":"2/5/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":499,"Cost":435,"Date":"2/16/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":536,"Cost":303,"Date":"2/16/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":933,"Cost":840,"Date":"2/18/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":877,"Cost":572,"Date":"2/22/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":354,"Cost":285,"Date":"2/25/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":195,"Cost":162,"Date":"3/8/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":292,"Cost":160,"Date":"4/2/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":844,"Cost":538,"Date":"4/3/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":561,"Cost":396,"Date":"4/9/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":477,"Cost":431,"Date":"4/10/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":606,"Cost":504,"Date":"4/19/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":801,"Cost":712,"Date":"5/17/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":192,"Cost":108,"Date":"5/22/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":638,"Cost":474,"Date":"6/20/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":658,"Cost":423,"Date":"7/1/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":526,"Cost":436,"Date":"7/4/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":560,"Cost":504,"Date":"7/8/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":716,"Cost":545,"Date":"7/9/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":926,"Cost":696,"Date":"7/14/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":758,"Cost":537,"Date":"7/19/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":649,"Cost":344,"Date":"8/1/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":194,"Cost":126,"Date":"8/6/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":425,"Cost":335,"Date":"8/7/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":50,"Cost":33,"Date":"8/22/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":303,"Cost":212,"Date":"8/31/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":670,"Cost":614,"Date":"9/1/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":799,"Cost":726,"Date":"9/1/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":492,"Cost":340,"Date":"9/17/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":881,"Cost":632,"Date":"9/29/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":744,"Cost":659,"Date":"11/7/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":491,"Cost":252,"Date":"11/26/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":177,"Cost":103,"Date":"11/27/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":490,"Cost":313,"Date":"12/5/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":880,"Cost":676,"Date":"12/26/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":936,"Cost":759,"Date":"12/31/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":793,"Cost":738,"Date":"1/20/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":579,"Cost":448,"Date":"2/2/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":638,"Cost":461,"Date":"2/8/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":831,"Cost":534,"Date":"2/27/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":130,"Cost":92,"Date":"3/1/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":332,"Cost":207,"Date":"3/1/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":442,"Cost":353,"Date":"3/19/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":13,"Cost":12,"Date":"3/28/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":854,"Cost":538,"Date":"5/21/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":286,"Cost":148,"Date":"7/21/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":497,"Cost":468,"Date":"8/5/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":54,"Cost":40,"Date":"8/12/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":596,"Cost":399,"Date":"8/21/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":351,"Cost":281,"Date":"8/23/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":510,"Cost":352,"Date":"9/3/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":382,"Cost":278,"Date":"9/5/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":222,"Cost":159,"Date":"10/6/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":222,"Cost":140,"Date":"10/19/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":143,"Cost":99,"Date":"11/15/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":684,"Cost":362,"Date":"12/8/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":750,"Cost":688,"Date":"1/8/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":334,"Cost":304,"Date":"1/14/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":975,"Cost":788,"Date":"1/19/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":811,"Cost":548,"Date":"1/28/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":416,"Cost":328,"Date":"1/31/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":482,"Cost":273,"Date":"3/27/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":628,"Cost":330,"Date":"4/20/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":428,"Cost":274,"Date":"4/24/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":635,"Cost":454,"Date":"4/28/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":79,"Cost":56,"Date":"5/15/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":212,"Cost":190,"Date":"5/16/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":307,"Cost":177,"Date":"5/18/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":120,"Cost":104,"Date":"6/2/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":796,"Cost":600,"Date":"6/3/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":408,"Cost":344,"Date":"6/5/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":320,"Cost":262,"Date":"6/7/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":3,"Cost":2,"Date":"6/14/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":377,"Cost":320,"Date":"6/20/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":580,"Cost":389,"Date":"6/24/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":926,"Cost":861,"Date":"7/4/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":290,"Cost":215,"Date":"7/9/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":790,"Cost":740,"Date":"7/12/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":830,"Cost":474,"Date":"8/14/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":610,"Cost":346,"Date":"8/16/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":321,"Cost":175,"Date":"8/23/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":370,"Cost":320,"Date":"9/2/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":938,"Cost":537,"Date":"9/3/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":528,"Cost":361,"Date":"9/16/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":798,"Cost":413,"Date":"10/4/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":344,"Cost":245,"Date":"11/1/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":906,"Cost":836,"Date":"11/2/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":619,"Cost":438,"Date":"12/17/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":658,"Cost":585,"Date":"2/10/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":521,"Cost":279,"Date":"2/28/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":886,"Cost":785,"Date":"3/4/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":965,"Cost":749,"Date":"3/9/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":402,"Cost":218,"Date":"3/9/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":734,"Cost":498,"Date":"3/11/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":894,"Cost":639,"Date":"3/17/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":484,"Cost":317,"Date":"3/17/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":905,"Cost":751,"Date":"3/23/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":708,"Cost":393,"Date":"4/1/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":842,"Cost":694,"Date":"5/7/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":18,"Cost":10,"Date":"5/10/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":197,"Cost":105,"Date":"5/20/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":777,"Cost":618,"Date":"6/2/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":430,"Cost":304,"Date":"6/11/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":472,"Cost":402,"Date":"6/16/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":500,"Cost":403,"Date":"6/16/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":576,"Cost":435,"Date":"7/10/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":901,"Cost":840,"Date":"7/11/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":173,"Cost":110,"Date":"8/28/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":823,"Cost":460,"Date":"8/29/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":683,"Cost":568,"Date":"8/31/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":284,"Cost":203,"Date":"9/8/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":682,"Cost":481,"Date":"9/13/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":110,"Cost":101,"Date":"9/14/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":971,"Cost":623,"Date":"9/19/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":937,"Cost":532,"Date":"9/25/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":833,"Cost":449,"Date":"10/4/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":916,"Cost":692,"Date":"10/10/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":74,"Cost":39,"Date":"10/17/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":935,"Cost":689,"Date":"10/28/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":721,"Cost":509,"Date":"10/30/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":671,"Cost":413,"Date":"11/1/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":64,"Cost":42,"Date":"11/15/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":985,"Cost":569,"Date":"11/25/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":895,"Cost":613,"Date":"1/10/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":961,"Cost":867,"Date":"1/14/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":207,"Cost":185,"Date":"1/20/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":19,"Cost":18,"Date":"2/8/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":268,"Cost":234,"Date":"2/25/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":98,"Cost":89,"Date":"3/7/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":350,"Cost":195,"Date":"3/14/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":963,"Cost":856,"Date":"3/27/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":594,"Cost":404,"Date":"4/5/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":948,"Cost":750,"Date":"4/14/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":679,"Cost":595,"Date":"5/3/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":326,"Cost":305,"Date":"5/9/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":874,"Cost":555,"Date":"5/15/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":368,"Cost":326,"Date":"5/25/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":163,"Cost":96,"Date":"5/26/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":555,"Cost":306,"Date":"5/31/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":50,"Cost":48,"Date":"7/27/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":3,"Cost":2,"Date":"9/17/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":707,"Cost":440,"Date":"10/6/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":44,"Cost":38,"Date":"10/8/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":585,"Cost":435,"Date":"10/26/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":199,"Cost":124,"Date":"11/16/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":643,"Cost":525,"Date":"11/18/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"HM","Country":"Germany","Sale":927,"Cost":524,"Date":"12/1/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":86,"Cost":69,"Date":"2/9/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":792,"Cost":561,"Date":"2/11/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":528,"Cost":429,"Date":"3/10/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":618,"Cost":358,"Date":"3/16/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":73,"Cost":42,"Date":"3/18/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":563,"Cost":423,"Date":"3/20/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":418,"Cost":277,"Date":"3/26/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":252,"Cost":154,"Date":"6/2/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":762,"Cost":693,"Date":"6/10/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":979,"Cost":776,"Date":"6/16/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":177,"Cost":163,"Date":"6/25/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":318,"Cost":216,"Date":"7/19/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":769,"Cost":471,"Date":"7/21/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":804,"Cost":504,"Date":"7/25/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":128,"Cost":71,"Date":"8/4/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":144,"Cost":135,"Date":"9/2/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":794,"Cost":742,"Date":"9/4/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":673,"Cost":563,"Date":"9/19/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":703,"Cost":436,"Date":"9/29/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":12,"Cost":12,"Date":"10/2/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":869,"Cost":806,"Date":"10/15/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":685,"Cost":637,"Date":"10/30/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":164,"Cost":83,"Date":"11/9/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":12,"Cost":6,"Date":"11/23/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":923,"Cost":607,"Date":"11/30/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":370,"Cost":319,"Date":"12/8/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":517,"Cost":465,"Date":"12/11/2018"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":424,"Cost":289,"Date":"1/15/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":527,"Cost":427,"Date":"1/24/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":403,"Cost":381,"Date":"2/3/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":345,"Cost":320,"Date":"2/4/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":44,"Cost":42,"Date":"3/9/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":808,"Cost":591,"Date":"3/12/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":502,"Cost":392,"Date":"4/19/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":293,"Cost":182,"Date":"5/3/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":199,"Cost":141,"Date":"5/4/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":879,"Cost":763,"Date":"6/8/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":515,"Cost":298,"Date":"6/26/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":27,"Cost":17,"Date":"7/4/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":382,"Cost":286,"Date":"7/13/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":212,"Cost":158,"Date":"8/8/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":969,"Cost":554,"Date":"8/26/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":910,"Cost":692,"Date":"9/2/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":295,"Cost":228,"Date":"9/29/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":473,"Cost":420,"Date":"10/12/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":811,"Cost":691,"Date":"11/2/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":825,"Cost":637,"Date":"11/4/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":323,"Cost":240,"Date":"11/7/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":164,"Cost":146,"Date":"12/1/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":156,"Cost":130,"Date":"12/4/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":630,"Cost":598,"Date":"12/7/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":47,"Cost":34,"Date":"12/18/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":679,"Cost":382,"Date":"12/20/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":484,"Cost":307,"Date":"12/20/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":322,"Cost":165,"Date":"12/21/2019"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":427,"Cost":328,"Date":"1/9/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":48,"Cost":37,"Date":"2/5/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":789,"Cost":720,"Date":"2/16/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":433,"Cost":411,"Date":"2/16/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":86,"Cost":58,"Date":"2/18/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":350,"Cost":254,"Date":"2/22/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":419,"Cost":363,"Date":"2/25/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":565,"Cost":449,"Date":"3/8/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":680,"Cost":444,"Date":"4/2/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":920,"Cost":645,"Date":"4/3/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":751,"Cost":654,"Date":"4/9/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":389,"Cost":326,"Date":"4/10/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":162,"Cost":108,"Date":"4/19/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":700,"Cost":407,"Date":"5/17/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":192,"Cost":168,"Date":"5/22/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":113,"Cost":80,"Date":"6/20/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":989,"Cost":619,"Date":"7/1/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":249,"Cost":182,"Date":"7/4/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":979,"Cost":690,"Date":"7/8/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":643,"Cost":325,"Date":"7/9/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":59,"Cost":34,"Date":"7/14/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":906,"Cost":660,"Date":"7/19/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":803,"Cost":577,"Date":"8/1/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":424,"Cost":346,"Date":"8/6/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":320,"Cost":288,"Date":"8/7/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":243,"Cost":209,"Date":"8/22/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":788,"Cost":626,"Date":"8/31/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":781,"Cost":726,"Date":"9/1/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":313,"Cost":283,"Date":"9/1/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":868,"Cost":706,"Date":"9/17/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":85,"Cost":63,"Date":"9/29/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":787,"Cost":491,"Date":"11/7/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":384,"Cost":211,"Date":"11/26/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":365,"Cost":230,"Date":"11/27/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":156,"Cost":123,"Date":"12/5/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":716,"Cost":373,"Date":"12/26/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":565,"Cost":452,"Date":"12/31/2020"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":372,"Cost":269,"Date":"1/20/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":694,"Cost":365,"Date":"2/2/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":664,"Cost":630,"Date":"2/8/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":485,"Cost":416,"Date":"2/27/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":917,"Cost":463,"Date":"3/1/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":929,"Cost":550,"Date":"3/1/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":751,"Cost":494,"Date":"3/19/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":165,"Cost":146,"Date":"3/28/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":701,"Cost":516,"Date":"5/21/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":32,"Cost":24,"Date":"7/21/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":901,"Cost":649,"Date":"8/5/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":887,"Cost":740,"Date":"8/12/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":133,"Cost":74,"Date":"8/21/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":361,"Cost":298,"Date":"8/23/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":647,"Cost":466,"Date":"9/3/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":619,"Cost":474,"Date":"9/5/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":427,"Cost":273,"Date":"10/6/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":369,"Cost":346,"Date":"10/19/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":71,"Cost":51,"Date":"11/15/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":406,"Cost":317,"Date":"12/8/2021"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":380,"Cost":306,"Date":"1/8/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":234,"Cost":125,"Date":"1/14/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":658,"Cost":415,"Date":"1/19/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":175,"Cost":157,"Date":"1/28/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":246,"Cost":174,"Date":"1/31/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":285,"Cost":224,"Date":"3/27/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":783,"Cost":620,"Date":"4/20/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":583,"Cost":320,"Date":"4/24/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":358,"Cost":339,"Date":"4/28/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":155,"Cost":103,"Date":"5/15/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":969,"Cost":536,"Date":"5/16/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":165,"Cost":115,"Date":"5/18/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":16,"Cost":14,"Date":"6/2/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":953,"Cost":820,"Date":"6/3/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":792,"Cost":752,"Date":"6/5/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":38,"Cost":23,"Date":"6/7/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":37,"Cost":27,"Date":"6/14/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":215,"Cost":204,"Date":"6/20/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":473,"Cost":320,"Date":"6/24/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":50,"Cost":38,"Date":"7/4/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":40,"Cost":33,"Date":"7/9/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":468,"Cost":239,"Date":"7/12/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":122,"Cost":86,"Date":"8/14/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":526,"Cost":283,"Date":"8/16/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":475,"Cost":289,"Date":"8/23/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":366,"Cost":196,"Date":"9/2/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":527,"Cost":422,"Date":"9/3/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":611,"Cost":335,"Date":"9/16/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":860,"Cost":704,"Date":"10/4/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":152,"Cost":92,"Date":"11/1/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":741,"Cost":638,"Date":"11/2/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":282,"Cost":143,"Date":"12/17/2022"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":811,"Cost":730,"Date":"2/10/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":44,"Cost":37,"Date":"2/28/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":881,"Cost":687,"Date":"3/4/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":190,"Cost":171,"Date":"3/9/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":784,"Cost":734,"Date":"3/9/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":614,"Cost":528,"Date":"3/11/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":921,"Cost":686,"Date":"3/17/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":979,"Cost":742,"Date":"3/17/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":353,"Cost":310,"Date":"3/23/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":872,"Cost":747,"Date":"4/1/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":745,"Cost":560,"Date":"5/7/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":839,"Cost":699,"Date":"5/10/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":565,"Cost":502,"Date":"5/20/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":59,"Cost":38,"Date":"6/2/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":949,"Cost":633,"Date":"6/11/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":664,"Cost":395,"Date":"6/16/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":299,"Cost":159,"Date":"6/16/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":93,"Cost":53,"Date":"7/10/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":680,"Cost":418,"Date":"7/11/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":269,"Cost":171,"Date":"8/28/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":773,"Cost":397,"Date":"8/29/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":749,"Cost":399,"Date":"8/31/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":155,"Cost":108,"Date":"9/8/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":483,"Cost":278,"Date":"9/13/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":143,"Cost":114,"Date":"9/14/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":286,"Cost":160,"Date":"9/19/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":209,"Cost":199,"Date":"9/25/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":808,"Cost":485,"Date":"10/4/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":838,"Cost":730,"Date":"10/10/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":1,"Cost":0,"Date":"10/17/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":312,"Cost":216,"Date":"10/28/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":120,"Cost":107,"Date":"10/30/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":798,"Cost":665,"Date":"11/1/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":361,"Cost":247,"Date":"11/15/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":259,"Cost":169,"Date":"11/25/2023"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":681,"Cost":388,"Date":"1/10/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":6,"Cost":4,"Date":"1/14/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":953,"Cost":785,"Date":"1/20/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":848,"Cost":740,"Date":"2/8/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":329,"Cost":312,"Date":"2/25/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":4,"Cost":3,"Date":"3/7/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":687,"Cost":590,"Date":"3/14/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":808,"Cost":449,"Date":"3/27/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":410,"Cost":273,"Date":"4/5/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":537,"Cost":498,"Date":"4/14/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":756,"Cost":693,"Date":"5/3/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":789,"Cost":637,"Date":"5/9/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":804,"Cost":507,"Date":"5/15/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":140,"Cost":76,"Date":"5/25/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":593,"Cost":421,"Date":"5/26/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":153,"Cost":85,"Date":"5/31/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":899,"Cost":482,"Date":"7/27/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":936,"Cost":760,"Date":"9/17/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":202,"Cost":108,"Date":"10/6/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":819,"Cost":651,"Date":"10/8/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":364,"Cost":326,"Date":"10/26/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":309,"Cost":285,"Date":"11/16/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":689,"Cost":354,"Date":"11/18/2024"},{"Store":"Rotmain-Center, Bayreuth","Brand":"COS","Country":"Germany","Sale":629,"Cost":356,"Date":"12/1/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":165,"Cost":132,"Date":"2/9/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":606,"Cost":364,"Date":"2/11/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":633,"Cost":475,"Date":"3/10/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":760,"Cost":463,"Date":"3/16/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":664,"Cost":445,"Date":"3/18/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":507,"Cost":264,"Date":"3/20/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":492,"Cost":461,"Date":"3/26/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":202,"Cost":182,"Date":"6/2/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":768,"Cost":499,"Date":"6/10/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":538,"Cost":294,"Date":"6/16/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":790,"Cost":486,"Date":"6/25/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":973,"Cost":487,"Date":"7/19/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":892,"Cost":600,"Date":"7/21/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":722,"Cost":377,"Date":"7/25/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":983,"Cost":827,"Date":"8/4/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":185,"Cost":115,"Date":"9/2/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":211,"Cost":157,"Date":"9/4/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":767,"Cost":576,"Date":"9/19/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":5,"Cost":4,"Date":"9/29/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":143,"Cost":127,"Date":"10/2/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":829,"Cost":651,"Date":"10/15/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":956,"Cost":705,"Date":"10/30/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":399,"Cost":312,"Date":"11/9/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":100,"Cost":80,"Date":"11/23/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":887,"Cost":804,"Date":"11/30/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":978,"Cost":762,"Date":"12/8/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":28,"Cost":23,"Date":"12/11/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":226,"Cost":172,"Date":"1/15/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":553,"Cost":432,"Date":"1/24/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":569,"Cost":533,"Date":"2/3/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":17,"Cost":13,"Date":"2/4/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":767,"Cost":499,"Date":"3/9/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":734,"Cost":589,"Date":"3/12/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":477,"Cost":347,"Date":"4/19/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":15,"Cost":13,"Date":"5/3/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":135,"Cost":100,"Date":"5/4/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":512,"Cost":273,"Date":"6/8/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":874,"Cost":783,"Date":"6/26/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":358,"Cost":297,"Date":"7/4/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":199,"Cost":181,"Date":"7/13/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":333,"Cost":209,"Date":"8/8/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":769,"Cost":638,"Date":"8/26/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":96,"Cost":68,"Date":"9/2/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":477,"Cost":305,"Date":"9/29/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":935,"Cost":880,"Date":"10/12/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":69,"Cost":43,"Date":"11/2/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":443,"Cost":375,"Date":"11/4/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":554,"Cost":505,"Date":"11/7/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":172,"Cost":157,"Date":"12/1/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":686,"Cost":632,"Date":"12/4/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":175,"Cost":129,"Date":"12/7/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":481,"Cost":395,"Date":"12/18/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":702,"Cost":531,"Date":"12/20/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":752,"Cost":403,"Date":"12/20/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":505,"Cost":429,"Date":"12/21/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":650,"Cost":409,"Date":"1/9/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":660,"Cost":421,"Date":"2/5/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":773,"Cost":727,"Date":"2/16/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":287,"Cost":173,"Date":"2/16/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":429,"Cost":371,"Date":"2/18/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":819,"Cost":437,"Date":"2/22/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":782,"Cost":549,"Date":"2/25/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":670,"Cost":437,"Date":"3/8/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":821,"Cost":452,"Date":"4/2/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":719,"Cost":378,"Date":"4/3/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":508,"Cost":303,"Date":"4/9/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":664,"Cost":344,"Date":"4/10/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":343,"Cost":183,"Date":"4/19/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":594,"Cost":368,"Date":"5/17/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":910,"Cost":833,"Date":"5/22/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":185,"Cost":173,"Date":"6/20/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":983,"Cost":710,"Date":"7/1/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":218,"Cost":121,"Date":"7/4/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":57,"Cost":45,"Date":"7/8/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":665,"Cost":391,"Date":"7/9/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":181,"Cost":157,"Date":"7/14/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":311,"Cost":237,"Date":"7/19/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":274,"Cost":192,"Date":"8/1/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":995,"Cost":886,"Date":"8/6/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":487,"Cost":339,"Date":"8/7/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":863,"Cost":694,"Date":"8/22/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":448,"Cost":349,"Date":"8/31/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":443,"Cost":350,"Date":"9/1/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":949,"Cost":880,"Date":"9/1/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":282,"Cost":174,"Date":"9/17/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":262,"Cost":166,"Date":"9/29/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":202,"Cost":186,"Date":"11/7/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":522,"Cost":465,"Date":"11/26/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":536,"Cost":311,"Date":"11/27/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":250,"Cost":229,"Date":"12/5/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":154,"Cost":87,"Date":"12/26/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":477,"Cost":394,"Date":"12/31/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":243,"Cost":149,"Date":"1/20/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":485,"Cost":460,"Date":"2/2/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":71,"Cost":40,"Date":"2/8/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":843,"Cost":532,"Date":"2/27/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":40,"Cost":22,"Date":"3/1/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":512,"Cost":433,"Date":"3/1/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":214,"Cost":120,"Date":"3/19/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":625,"Cost":464,"Date":"3/28/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":620,"Cost":337,"Date":"5/21/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":140,"Cost":106,"Date":"7/21/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":326,"Cost":226,"Date":"8/5/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":127,"Cost":88,"Date":"8/12/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":326,"Cost":186,"Date":"8/21/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":534,"Cost":282,"Date":"8/23/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":430,"Cost":399,"Date":"9/3/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":528,"Cost":282,"Date":"9/5/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":989,"Cost":865,"Date":"10/6/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":890,"Cost":601,"Date":"10/19/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":49,"Cost":44,"Date":"11/15/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":865,"Cost":685,"Date":"12/8/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":925,"Cost":598,"Date":"1/8/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":775,"Cost":690,"Date":"1/14/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":708,"Cost":437,"Date":"1/19/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":646,"Cost":563,"Date":"1/28/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":933,"Cost":681,"Date":"1/31/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":872,"Cost":451,"Date":"3/27/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":46,"Cost":24,"Date":"4/20/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":20,"Cost":15,"Date":"4/24/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":385,"Cost":358,"Date":"4/28/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":554,"Cost":498,"Date":"5/15/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":571,"Cost":328,"Date":"5/16/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":854,"Cost":570,"Date":"5/18/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":703,"Cost":597,"Date":"6/2/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":679,"Cost":362,"Date":"6/3/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":433,"Cost":276,"Date":"6/5/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":694,"Cost":633,"Date":"6/7/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":213,"Cost":125,"Date":"6/14/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":126,"Cost":67,"Date":"6/20/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":764,"Cost":639,"Date":"6/24/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":873,"Cost":791,"Date":"7/4/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":605,"Cost":549,"Date":"7/9/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":643,"Cost":328,"Date":"7/12/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":726,"Cost":378,"Date":"8/14/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":782,"Cost":562,"Date":"8/16/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":296,"Cost":236,"Date":"8/23/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":99,"Cost":90,"Date":"9/2/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":446,"Cost":255,"Date":"9/3/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":470,"Cost":404,"Date":"9/16/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":599,"Cost":341,"Date":"10/4/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":473,"Cost":379,"Date":"11/1/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":865,"Cost":787,"Date":"11/2/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":296,"Cost":279,"Date":"12/17/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":342,"Cost":219,"Date":"2/10/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":476,"Cost":430,"Date":"2/28/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":172,"Cost":141,"Date":"3/4/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":328,"Cost":273,"Date":"3/9/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":624,"Cost":402,"Date":"3/9/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":171,"Cost":132,"Date":"3/11/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":196,"Cost":131,"Date":"3/17/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":349,"Cost":265,"Date":"3/17/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":855,"Cost":783,"Date":"3/23/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":992,"Cost":858,"Date":"4/1/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":153,"Cost":135,"Date":"5/7/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":356,"Cost":315,"Date":"5/10/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":968,"Cost":595,"Date":"5/20/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":937,"Cost":549,"Date":"6/2/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":582,"Cost":353,"Date":"6/11/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":755,"Cost":704,"Date":"6/16/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":846,"Cost":752,"Date":"6/16/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":191,"Cost":181,"Date":"7/10/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":697,"Cost":545,"Date":"7/11/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":342,"Cost":237,"Date":"8/28/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":34,"Cost":27,"Date":"8/29/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":316,"Cost":283,"Date":"8/31/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":947,"Cost":713,"Date":"9/8/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":929,"Cost":711,"Date":"9/13/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":892,"Cost":575,"Date":"9/14/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":281,"Cost":261,"Date":"9/19/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":378,"Cost":246,"Date":"9/25/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":634,"Cost":494,"Date":"10/4/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":736,"Cost":581,"Date":"10/10/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":15,"Cost":13,"Date":"10/17/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":633,"Cost":493,"Date":"10/28/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":106,"Cost":64,"Date":"10/30/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":274,"Cost":192,"Date":"11/1/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":605,"Cost":475,"Date":"11/15/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":932,"Cost":619,"Date":"11/25/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":517,"Cost":472,"Date":"1/10/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":380,"Cost":190,"Date":"1/14/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":285,"Cost":221,"Date":"1/20/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":63,"Cost":42,"Date":"2/8/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":685,"Cost":589,"Date":"2/25/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":38,"Cost":36,"Date":"3/7/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":197,"Cost":168,"Date":"3/14/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":262,"Cost":161,"Date":"3/27/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":111,"Cost":81,"Date":"4/5/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":547,"Cost":375,"Date":"4/14/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":739,"Cost":390,"Date":"5/3/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":909,"Cost":474,"Date":"5/9/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":776,"Cost":632,"Date":"5/15/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":429,"Cost":388,"Date":"5/25/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":253,"Cost":146,"Date":"5/26/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":669,"Cost":523,"Date":"5/31/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":670,"Cost":426,"Date":"7/27/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":105,"Cost":66,"Date":"9/17/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":477,"Cost":291,"Date":"10/6/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":887,"Cost":821,"Date":"10/8/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":820,"Cost":661,"Date":"10/26/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":229,"Cost":166,"Date":"11/16/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":186,"Cost":122,"Date":"11/18/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"ARKET","Country":"Germany","Sale":717,"Cost":643,"Date":"12/1/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":993,"Cost":565,"Date":"2/9/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":641,"Cost":506,"Date":"2/11/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":336,"Cost":294,"Date":"3/10/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":654,"Cost":478,"Date":"3/16/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":387,"Cost":349,"Date":"3/18/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":622,"Cost":567,"Date":"3/20/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":725,"Cost":426,"Date":"3/26/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":969,"Cost":712,"Date":"6/2/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":985,"Cost":523,"Date":"6/10/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":427,"Cost":402,"Date":"6/16/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":58,"Cost":38,"Date":"6/25/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":709,"Cost":379,"Date":"7/19/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":342,"Cost":211,"Date":"7/21/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":240,"Cost":163,"Date":"7/25/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":150,"Cost":84,"Date":"8/4/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":3,"Cost":3,"Date":"9/2/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":827,"Cost":428,"Date":"9/4/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":233,"Cost":126,"Date":"9/19/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":761,"Cost":646,"Date":"9/29/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":754,"Cost":549,"Date":"10/2/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":933,"Cost":691,"Date":"10/15/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":729,"Cost":544,"Date":"10/30/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":497,"Cost":335,"Date":"11/9/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":430,"Cost":384,"Date":"11/23/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":908,"Cost":472,"Date":"11/30/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":97,"Cost":62,"Date":"12/8/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":808,"Cost":543,"Date":"12/11/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":313,"Cost":238,"Date":"1/15/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":948,"Cost":757,"Date":"1/24/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":303,"Cost":286,"Date":"2/3/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":679,"Cost":480,"Date":"2/4/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":461,"Cost":279,"Date":"3/9/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":162,"Cost":105,"Date":"3/12/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":575,"Cost":418,"Date":"4/19/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":325,"Cost":293,"Date":"5/3/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":104,"Cost":75,"Date":"5/4/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":302,"Cost":188,"Date":"6/8/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":813,"Cost":429,"Date":"6/26/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":353,"Cost":216,"Date":"7/4/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":210,"Cost":161,"Date":"7/13/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":136,"Cost":84,"Date":"8/8/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":704,"Cost":425,"Date":"8/26/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":803,"Cost":454,"Date":"9/2/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":160,"Cost":85,"Date":"9/29/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":397,"Cost":287,"Date":"10/12/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":874,"Cost":480,"Date":"11/2/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":734,"Cost":369,"Date":"11/4/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":918,"Cost":578,"Date":"11/7/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":303,"Cost":192,"Date":"12/1/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":88,"Cost":77,"Date":"12/4/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":528,"Cost":339,"Date":"12/7/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":679,"Cost":643,"Date":"12/18/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":473,"Cost":376,"Date":"12/20/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":422,"Cost":365,"Date":"12/20/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":135,"Cost":80,"Date":"12/21/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":619,"Cost":462,"Date":"1/9/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":81,"Cost":71,"Date":"2/5/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":800,"Cost":464,"Date":"2/16/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":49,"Cost":39,"Date":"2/16/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":757,"Cost":439,"Date":"2/18/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":168,"Cost":123,"Date":"2/22/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":469,"Cost":303,"Date":"2/25/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":713,"Cost":376,"Date":"3/8/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":453,"Cost":265,"Date":"4/2/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":967,"Cost":809,"Date":"4/3/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":643,"Cost":440,"Date":"4/9/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":581,"Cost":371,"Date":"4/10/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":898,"Cost":699,"Date":"4/19/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":35,"Cost":23,"Date":"5/17/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":904,"Cost":835,"Date":"5/22/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":41,"Cost":33,"Date":"6/20/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":599,"Cost":445,"Date":"7/1/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":563,"Cost":323,"Date":"7/4/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":997,"Cost":554,"Date":"7/8/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":226,"Cost":192,"Date":"7/9/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":383,"Cost":192,"Date":"7/14/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":498,"Cost":282,"Date":"7/19/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":725,"Cost":368,"Date":"8/1/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":714,"Cost":587,"Date":"8/6/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":950,"Cost":588,"Date":"8/7/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":169,"Cost":141,"Date":"8/22/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":787,"Cost":555,"Date":"8/31/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":144,"Cost":72,"Date":"9/1/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":746,"Cost":645,"Date":"9/1/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":510,"Cost":375,"Date":"9/17/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":549,"Cost":320,"Date":"9/29/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":295,"Cost":255,"Date":"11/7/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":303,"Cost":170,"Date":"11/26/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":482,"Cost":347,"Date":"11/27/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":900,"Cost":727,"Date":"12/5/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":421,"Cost":243,"Date":"12/26/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":597,"Cost":335,"Date":"12/31/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":500,"Cost":434,"Date":"1/20/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":172,"Cost":144,"Date":"2/2/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":124,"Cost":114,"Date":"2/8/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":439,"Cost":399,"Date":"2/27/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":931,"Cost":739,"Date":"3/1/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":956,"Cost":879,"Date":"3/1/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":897,"Cost":770,"Date":"3/19/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":309,"Cost":280,"Date":"3/28/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":456,"Cost":264,"Date":"5/21/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":711,"Cost":386,"Date":"7/21/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":571,"Cost":312,"Date":"8/5/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":410,"Cost":367,"Date":"8/12/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":515,"Cost":453,"Date":"8/21/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":724,"Cost":585,"Date":"8/23/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":934,"Cost":614,"Date":"9/3/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":161,"Cost":110,"Date":"9/5/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":288,"Cost":201,"Date":"10/6/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":752,"Cost":558,"Date":"10/19/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":581,"Cost":326,"Date":"11/15/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":465,"Cost":399,"Date":"12/8/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":485,"Cost":406,"Date":"1/8/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":148,"Cost":97,"Date":"1/14/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":265,"Cost":193,"Date":"1/19/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":835,"Cost":779,"Date":"1/28/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":973,"Cost":696,"Date":"1/31/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":981,"Cost":569,"Date":"3/27/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":216,"Cost":153,"Date":"4/20/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":325,"Cost":297,"Date":"4/24/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":172,"Cost":131,"Date":"4/28/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":773,"Cost":574,"Date":"5/15/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":341,"Cost":254,"Date":"5/16/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":662,"Cost":611,"Date":"5/18/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":434,"Cost":277,"Date":"6/2/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":852,"Cost":552,"Date":"6/3/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":186,"Cost":105,"Date":"6/5/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":311,"Cost":282,"Date":"6/7/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":77,"Cost":56,"Date":"6/14/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":596,"Cost":519,"Date":"6/20/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":515,"Cost":399,"Date":"6/24/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":147,"Cost":102,"Date":"7/4/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":51,"Cost":30,"Date":"7/9/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":732,"Cost":443,"Date":"7/12/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":917,"Cost":775,"Date":"8/14/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":856,"Cost":430,"Date":"8/16/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":497,"Cost":311,"Date":"8/23/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":681,"Cost":584,"Date":"9/2/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":943,"Cost":807,"Date":"9/3/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":562,"Cost":368,"Date":"9/16/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":239,"Cost":215,"Date":"10/4/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":182,"Cost":104,"Date":"11/1/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":306,"Cost":246,"Date":"11/2/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":699,"Cost":642,"Date":"12/17/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":660,"Cost":576,"Date":"2/10/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":6,"Cost":3,"Date":"2/28/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":270,"Cost":237,"Date":"3/4/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":627,"Cost":330,"Date":"3/9/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":266,"Cost":252,"Date":"3/9/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":182,"Cost":153,"Date":"3/11/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":752,"Cost":620,"Date":"3/17/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":146,"Cost":79,"Date":"3/17/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":511,"Cost":427,"Date":"3/23/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":936,"Cost":513,"Date":"4/1/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":1000,"Cost":802,"Date":"5/7/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":345,"Cost":195,"Date":"5/10/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":707,"Cost":536,"Date":"5/20/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":361,"Cost":205,"Date":"6/2/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":601,"Cost":564,"Date":"6/11/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":442,"Cost":339,"Date":"6/16/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":293,"Cost":179,"Date":"6/16/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":532,"Cost":483,"Date":"7/10/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":944,"Cost":521,"Date":"7/11/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":958,"Cost":720,"Date":"8/28/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":17,"Cost":14,"Date":"8/29/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":831,"Cost":510,"Date":"8/31/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":232,"Cost":165,"Date":"9/8/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":753,"Cost":709,"Date":"9/13/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":939,"Cost":548,"Date":"9/14/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":278,"Cost":187,"Date":"9/19/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":647,"Cost":446,"Date":"9/25/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":686,"Cost":603,"Date":"10/4/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":725,"Cost":659,"Date":"10/10/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":210,"Cost":196,"Date":"10/17/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":243,"Cost":128,"Date":"10/28/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":350,"Cost":304,"Date":"10/30/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":46,"Cost":34,"Date":"11/1/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":731,"Cost":669,"Date":"11/15/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":198,"Cost":176,"Date":"11/25/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":962,"Cost":723,"Date":"1/10/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":665,"Cost":351,"Date":"1/14/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":177,"Cost":126,"Date":"1/20/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":991,"Cost":920,"Date":"2/8/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":989,"Cost":594,"Date":"2/25/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":455,"Cost":326,"Date":"3/7/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":323,"Cost":180,"Date":"3/14/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":971,"Cost":635,"Date":"3/27/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":962,"Cost":538,"Date":"4/5/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":222,"Cost":150,"Date":"4/14/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":204,"Cost":110,"Date":"5/3/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":99,"Cost":92,"Date":"5/9/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":63,"Cost":54,"Date":"5/15/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":260,"Cost":138,"Date":"5/25/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":800,"Cost":659,"Date":"5/26/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":38,"Cost":33,"Date":"5/31/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":487,"Cost":289,"Date":"7/27/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":716,"Cost":498,"Date":"9/17/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":586,"Cost":315,"Date":"10/6/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":213,"Cost":140,"Date":"10/8/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":949,"Cost":712,"Date":"10/26/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":576,"Cost":453,"Date":"11/16/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":105,"Cost":88,"Date":"11/18/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"HM Home","Country":"Germany","Sale":64,"Cost":42,"Date":"12/1/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":438,"Cost":390,"Date":"2/9/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":735,"Cost":539,"Date":"2/11/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":645,"Cost":520,"Date":"3/10/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":784,"Cost":397,"Date":"3/16/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":864,"Cost":433,"Date":"3/18/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":721,"Cost":662,"Date":"3/20/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":362,"Cost":287,"Date":"3/26/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":229,"Cost":187,"Date":"6/2/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":265,"Cost":166,"Date":"6/10/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":524,"Cost":461,"Date":"6/16/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":185,"Cost":159,"Date":"6/25/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":567,"Cost":344,"Date":"7/19/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":785,"Cost":578,"Date":"7/21/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":938,"Cost":809,"Date":"7/25/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":153,"Cost":121,"Date":"8/4/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":431,"Cost":279,"Date":"9/2/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":843,"Cost":780,"Date":"9/4/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":763,"Cost":507,"Date":"9/19/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":780,"Cost":501,"Date":"9/29/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":859,"Cost":445,"Date":"10/2/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":376,"Cost":273,"Date":"10/15/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":747,"Cost":390,"Date":"10/30/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":239,"Cost":163,"Date":"11/9/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":458,"Cost":341,"Date":"11/23/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":646,"Cost":327,"Date":"11/30/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":673,"Cost":451,"Date":"12/8/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":696,"Cost":453,"Date":"12/11/2018"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":347,"Cost":247,"Date":"1/15/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":895,"Cost":525,"Date":"1/24/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":675,"Cost":362,"Date":"2/3/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":261,"Cost":232,"Date":"2/4/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":670,"Cost":352,"Date":"3/9/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":868,"Cost":788,"Date":"3/12/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":930,"Cost":882,"Date":"4/19/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":408,"Cost":290,"Date":"5/3/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":460,"Cost":264,"Date":"5/4/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":372,"Cost":321,"Date":"6/8/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":163,"Cost":138,"Date":"6/26/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":725,"Cost":532,"Date":"7/4/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":256,"Cost":149,"Date":"7/13/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":288,"Cost":193,"Date":"8/8/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":172,"Cost":120,"Date":"8/26/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":481,"Cost":403,"Date":"9/2/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":328,"Cost":288,"Date":"9/29/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":966,"Cost":593,"Date":"10/12/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":396,"Cost":344,"Date":"11/2/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":736,"Cost":543,"Date":"11/4/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":31,"Cost":19,"Date":"11/7/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":691,"Cost":535,"Date":"12/1/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":821,"Cost":733,"Date":"12/4/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":55,"Cost":45,"Date":"12/7/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":630,"Cost":432,"Date":"12/18/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":377,"Cost":325,"Date":"12/20/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":850,"Cost":684,"Date":"12/20/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":60,"Cost":47,"Date":"12/21/2019"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":463,"Cost":332,"Date":"1/9/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":817,"Cost":690,"Date":"2/5/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":718,"Cost":497,"Date":"2/16/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":698,"Cost":549,"Date":"2/16/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":884,"Cost":478,"Date":"2/18/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":178,"Cost":148,"Date":"2/22/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":974,"Cost":829,"Date":"2/25/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":71,"Cost":54,"Date":"3/8/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":434,"Cost":327,"Date":"4/2/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":864,"Cost":715,"Date":"4/3/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":390,"Cost":342,"Date":"4/9/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":353,"Cost":301,"Date":"4/10/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":866,"Cost":564,"Date":"4/19/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":468,"Cost":374,"Date":"5/17/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":568,"Cost":320,"Date":"5/22/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":216,"Cost":162,"Date":"6/20/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":494,"Cost":403,"Date":"7/1/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":682,"Cost":608,"Date":"7/4/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":662,"Cost":622,"Date":"7/8/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":822,"Cost":482,"Date":"7/9/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":245,"Cost":172,"Date":"7/14/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":234,"Cost":127,"Date":"7/19/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":433,"Cost":338,"Date":"8/1/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":961,"Cost":634,"Date":"8/6/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":610,"Cost":362,"Date":"8/7/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":462,"Cost":274,"Date":"8/22/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":582,"Cost":425,"Date":"8/31/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":326,"Cost":188,"Date":"9/1/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":987,"Cost":933,"Date":"9/1/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":863,"Cost":748,"Date":"9/17/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":342,"Cost":301,"Date":"9/29/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":132,"Cost":121,"Date":"11/7/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":311,"Cost":203,"Date":"11/26/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":625,"Cost":456,"Date":"11/27/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":136,"Cost":89,"Date":"12/5/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":106,"Cost":99,"Date":"12/26/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":486,"Cost":438,"Date":"12/31/2020"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":505,"Cost":411,"Date":"1/20/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":31,"Cost":24,"Date":"2/2/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":23,"Cost":12,"Date":"2/8/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":272,"Cost":172,"Date":"2/27/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":13,"Cost":9,"Date":"3/1/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":147,"Cost":83,"Date":"3/1/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":486,"Cost":449,"Date":"3/19/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":35,"Cost":31,"Date":"3/28/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":618,"Cost":563,"Date":"5/21/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":82,"Cost":75,"Date":"7/21/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":247,"Cost":141,"Date":"8/5/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":490,"Cost":370,"Date":"8/12/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":161,"Cost":80,"Date":"8/21/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":934,"Cost":717,"Date":"8/23/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":230,"Cost":191,"Date":"9/3/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":399,"Cost":328,"Date":"9/5/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":98,"Cost":93,"Date":"10/6/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":36,"Cost":18,"Date":"10/19/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":505,"Cost":337,"Date":"11/15/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":251,"Cost":196,"Date":"12/8/2021"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":469,"Cost":347,"Date":"1/8/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":825,"Cost":617,"Date":"1/14/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":270,"Cost":202,"Date":"1/19/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":140,"Cost":126,"Date":"1/28/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":645,"Cost":601,"Date":"1/31/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":139,"Cost":85,"Date":"3/27/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":82,"Cost":41,"Date":"4/20/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":273,"Cost":167,"Date":"4/24/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":337,"Cost":188,"Date":"4/28/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":390,"Cost":280,"Date":"5/15/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":262,"Cost":218,"Date":"5/16/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":309,"Cost":189,"Date":"5/18/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":951,"Cost":531,"Date":"6/2/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":194,"Cost":153,"Date":"6/3/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":656,"Cost":420,"Date":"6/5/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":981,"Cost":904,"Date":"6/7/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":369,"Cost":261,"Date":"6/14/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":821,"Cost":622,"Date":"6/20/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":631,"Cost":419,"Date":"6/24/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":739,"Cost":602,"Date":"7/4/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":964,"Cost":501,"Date":"7/9/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":506,"Cost":361,"Date":"7/12/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":775,"Cost":522,"Date":"8/14/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":397,"Cost":310,"Date":"8/16/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":59,"Cost":51,"Date":"8/23/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":154,"Cost":115,"Date":"9/2/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":893,"Cost":748,"Date":"9/3/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":278,"Cost":182,"Date":"9/16/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":74,"Cost":40,"Date":"10/4/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":432,"Cost":282,"Date":"11/1/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":863,"Cost":438,"Date":"11/2/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":261,"Cost":132,"Date":"12/17/2022"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":754,"Cost":412,"Date":"2/10/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":170,"Cost":116,"Date":"2/28/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":715,"Cost":456,"Date":"3/4/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":403,"Cost":260,"Date":"3/9/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":131,"Cost":108,"Date":"3/9/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":222,"Cost":119,"Date":"3/11/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":844,"Cost":488,"Date":"3/17/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":679,"Cost":601,"Date":"3/17/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":242,"Cost":190,"Date":"3/23/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":776,"Cost":550,"Date":"4/1/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":872,"Cost":534,"Date":"5/7/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":986,"Cost":929,"Date":"5/10/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":889,"Cost":492,"Date":"5/20/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":866,"Cost":523,"Date":"6/2/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":882,"Cost":559,"Date":"6/11/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":891,"Cost":550,"Date":"6/16/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":928,"Cost":817,"Date":"6/16/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":385,"Cost":300,"Date":"7/10/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":866,"Cost":589,"Date":"7/11/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":67,"Cost":60,"Date":"8/28/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":224,"Cost":212,"Date":"8/29/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":596,"Cost":497,"Date":"8/31/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":724,"Cost":497,"Date":"9/8/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":884,"Cost":641,"Date":"9/13/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":976,"Cost":673,"Date":"9/14/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":528,"Cost":322,"Date":"9/19/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":317,"Cost":161,"Date":"9/25/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":830,"Cost":434,"Date":"10/4/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":873,"Cost":641,"Date":"10/10/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":857,"Cost":457,"Date":"10/17/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":682,"Cost":634,"Date":"10/28/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":682,"Cost":477,"Date":"10/30/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":571,"Cost":320,"Date":"11/1/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":442,"Cost":369,"Date":"11/15/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":197,"Cost":148,"Date":"11/25/2023"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":669,"Cost":490,"Date":"1/10/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":5,"Cost":3,"Date":"1/14/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":399,"Cost":291,"Date":"1/20/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":866,"Cost":610,"Date":"2/8/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":5,"Cost":4,"Date":"2/25/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":930,"Cost":656,"Date":"3/7/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":17,"Cost":16,"Date":"3/14/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":987,"Cost":626,"Date":"3/27/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":900,"Cost":799,"Date":"4/5/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":699,"Cost":404,"Date":"4/14/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":819,"Cost":709,"Date":"5/3/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":180,"Cost":165,"Date":"5/9/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":687,"Cost":421,"Date":"5/15/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":150,"Cost":75,"Date":"5/25/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":442,"Cost":236,"Date":"5/26/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":480,"Cost":451,"Date":"5/31/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":618,"Cost":333,"Date":"7/27/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":469,"Cost":344,"Date":"9/17/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":992,"Cost":917,"Date":"10/6/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":72,"Cost":37,"Date":"10/8/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":357,"Cost":310,"Date":"10/26/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":107,"Cost":83,"Date":"11/16/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":622,"Cost":396,"Date":"11/18/2024"},{"Store":"Schloss Arkaden, Heidenheim","Brand":"Nova","Country":"Germany","Sale":467,"Cost":334,"Date":"12/1/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":384,"Cost":199,"Date":"2/9/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":119,"Cost":110,"Date":"2/11/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":971,"Cost":529,"Date":"3/10/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":368,"Cost":326,"Date":"3/16/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":823,"Cost":591,"Date":"3/18/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":620,"Cost":574,"Date":"3/20/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":507,"Cost":474,"Date":"3/26/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":986,"Cost":718,"Date":"6/2/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":985,"Cost":866,"Date":"6/10/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":800,"Cost":661,"Date":"6/16/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":807,"Cost":679,"Date":"6/25/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":591,"Cost":342,"Date":"7/19/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":475,"Cost":423,"Date":"7/21/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":729,"Cost":367,"Date":"7/25/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":516,"Cost":293,"Date":"8/4/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":123,"Cost":96,"Date":"9/2/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":28,"Cost":22,"Date":"9/4/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":662,"Cost":382,"Date":"9/19/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":396,"Cost":341,"Date":"9/29/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":684,"Cost":427,"Date":"10/2/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":871,"Cost":546,"Date":"10/15/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":659,"Cost":527,"Date":"10/30/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":448,"Cost":324,"Date":"11/9/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":924,"Cost":707,"Date":"11/23/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":910,"Cost":705,"Date":"11/30/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":861,"Cost":560,"Date":"12/8/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":831,"Cost":774,"Date":"12/11/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":244,"Cost":211,"Date":"1/15/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":661,"Cost":558,"Date":"1/24/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":202,"Cost":155,"Date":"2/3/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":451,"Cost":375,"Date":"2/4/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":968,"Cost":848,"Date":"3/9/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":605,"Cost":483,"Date":"3/12/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":682,"Cost":479,"Date":"4/19/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":68,"Cost":37,"Date":"5/3/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":692,"Cost":387,"Date":"5/4/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":617,"Cost":394,"Date":"6/8/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":334,"Cost":246,"Date":"6/26/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":541,"Cost":335,"Date":"7/4/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":123,"Cost":75,"Date":"7/13/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":673,"Cost":383,"Date":"8/8/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":993,"Cost":729,"Date":"8/26/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":772,"Cost":688,"Date":"9/2/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":874,"Cost":547,"Date":"9/29/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":142,"Cost":76,"Date":"10/12/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":931,"Cost":532,"Date":"11/2/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":900,"Cost":654,"Date":"11/4/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":63,"Cost":53,"Date":"11/7/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":239,"Cost":132,"Date":"12/1/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":925,"Cost":566,"Date":"12/4/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":63,"Cost":53,"Date":"12/7/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":22,"Cost":19,"Date":"12/18/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":734,"Cost":550,"Date":"12/20/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":731,"Cost":498,"Date":"12/20/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":913,"Cost":793,"Date":"12/21/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":848,"Cost":476,"Date":"1/9/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":927,"Cost":844,"Date":"2/5/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":806,"Cost":669,"Date":"2/16/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":195,"Cost":123,"Date":"2/16/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":212,"Cost":108,"Date":"2/18/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":257,"Cost":132,"Date":"2/22/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":483,"Cost":335,"Date":"2/25/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":523,"Cost":450,"Date":"3/8/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":200,"Cost":143,"Date":"4/2/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":429,"Cost":221,"Date":"4/3/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":713,"Cost":582,"Date":"4/9/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":994,"Cost":782,"Date":"4/10/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":753,"Cost":643,"Date":"4/19/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":996,"Cost":831,"Date":"5/17/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":759,"Cost":536,"Date":"5/22/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":782,"Cost":678,"Date":"6/20/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":575,"Cost":388,"Date":"7/1/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":754,"Cost":389,"Date":"7/4/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":846,"Cost":655,"Date":"7/8/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":239,"Cost":159,"Date":"7/9/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":93,"Cost":87,"Date":"7/14/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":947,"Cost":500,"Date":"7/19/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":985,"Cost":630,"Date":"8/1/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":50,"Cost":47,"Date":"8/6/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":460,"Cost":256,"Date":"8/7/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":296,"Cost":270,"Date":"8/22/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":190,"Cost":131,"Date":"8/31/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":778,"Cost":524,"Date":"9/1/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":799,"Cost":450,"Date":"9/1/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":117,"Cost":68,"Date":"9/17/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":949,"Cost":834,"Date":"9/29/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":363,"Cost":308,"Date":"11/7/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":750,"Cost":428,"Date":"11/26/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":963,"Cost":776,"Date":"11/27/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":293,"Cost":234,"Date":"12/5/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":728,"Cost":440,"Date":"12/26/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":489,"Cost":290,"Date":"12/31/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":520,"Cost":477,"Date":"1/20/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":303,"Cost":170,"Date":"2/2/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":895,"Cost":489,"Date":"2/8/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":588,"Cost":331,"Date":"2/27/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":917,"Cost":519,"Date":"3/1/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":544,"Cost":361,"Date":"3/1/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":995,"Cost":912,"Date":"3/19/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":824,"Cost":638,"Date":"3/28/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":151,"Cost":118,"Date":"5/21/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":401,"Cost":254,"Date":"7/21/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":79,"Cost":61,"Date":"8/5/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":233,"Cost":169,"Date":"8/12/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":542,"Cost":514,"Date":"8/21/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":671,"Cost":407,"Date":"8/23/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":101,"Cost":93,"Date":"9/3/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":865,"Cost":554,"Date":"9/5/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":611,"Cost":374,"Date":"10/6/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":394,"Cost":334,"Date":"10/19/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":874,"Cost":722,"Date":"11/15/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":265,"Cost":149,"Date":"12/8/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":741,"Cost":486,"Date":"1/8/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":668,"Cost":461,"Date":"1/14/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":696,"Cost":444,"Date":"1/19/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":149,"Cost":80,"Date":"1/28/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":425,"Cost":364,"Date":"1/31/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":24,"Cost":21,"Date":"3/27/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":521,"Cost":368,"Date":"4/20/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":588,"Cost":370,"Date":"4/24/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":343,"Cost":213,"Date":"4/28/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":386,"Cost":276,"Date":"5/15/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":506,"Cost":432,"Date":"5/16/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":786,"Cost":440,"Date":"5/18/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":451,"Cost":325,"Date":"6/2/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":978,"Cost":698,"Date":"6/3/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":48,"Cost":41,"Date":"6/5/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":289,"Cost":255,"Date":"6/7/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":353,"Cost":238,"Date":"6/14/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":727,"Cost":571,"Date":"6/20/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":574,"Cost":353,"Date":"6/24/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":696,"Cost":468,"Date":"7/4/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":148,"Cost":83,"Date":"7/9/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":516,"Cost":465,"Date":"7/12/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":193,"Cost":180,"Date":"8/14/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":985,"Cost":577,"Date":"8/16/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":492,"Cost":375,"Date":"8/23/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":577,"Cost":500,"Date":"9/2/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":942,"Cost":859,"Date":"9/3/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":459,"Cost":375,"Date":"9/16/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":604,"Cost":568,"Date":"10/4/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":558,"Cost":369,"Date":"11/1/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":610,"Cost":527,"Date":"11/2/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":367,"Cost":210,"Date":"12/17/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":715,"Cost":663,"Date":"2/10/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":652,"Cost":418,"Date":"2/28/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":117,"Cost":108,"Date":"3/4/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":236,"Cost":185,"Date":"3/9/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":918,"Cost":659,"Date":"3/9/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":235,"Cost":219,"Date":"3/11/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":284,"Cost":162,"Date":"3/17/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":142,"Cost":106,"Date":"3/17/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":676,"Cost":500,"Date":"3/23/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":328,"Cost":191,"Date":"4/1/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":640,"Cost":570,"Date":"5/7/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":372,"Cost":284,"Date":"5/10/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":926,"Cost":624,"Date":"5/20/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":9,"Cost":7,"Date":"6/2/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":70,"Cost":61,"Date":"6/11/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":111,"Cost":102,"Date":"6/16/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":107,"Cost":87,"Date":"6/16/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":602,"Cost":507,"Date":"7/10/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":427,"Cost":329,"Date":"7/11/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":797,"Cost":644,"Date":"8/28/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":242,"Cost":134,"Date":"8/29/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":741,"Cost":496,"Date":"8/31/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":18,"Cost":17,"Date":"9/8/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":662,"Cost":454,"Date":"9/13/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":421,"Cost":356,"Date":"9/14/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":550,"Cost":368,"Date":"9/19/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":139,"Cost":77,"Date":"9/25/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":651,"Cost":494,"Date":"10/4/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":649,"Cost":579,"Date":"10/10/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":990,"Cost":507,"Date":"10/17/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":47,"Cost":26,"Date":"10/28/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":128,"Cost":67,"Date":"10/30/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":969,"Cost":733,"Date":"11/1/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":81,"Cost":66,"Date":"11/15/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":232,"Cost":125,"Date":"11/25/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":765,"Cost":626,"Date":"1/10/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":500,"Cost":295,"Date":"1/14/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":692,"Cost":489,"Date":"1/20/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":266,"Cost":159,"Date":"2/8/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":385,"Cost":226,"Date":"2/25/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":400,"Cost":314,"Date":"3/7/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":852,"Cost":721,"Date":"3/14/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":40,"Cost":27,"Date":"3/27/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":649,"Cost":503,"Date":"4/5/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":759,"Cost":609,"Date":"4/14/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":25,"Cost":18,"Date":"5/3/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":978,"Cost":526,"Date":"5/9/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":532,"Cost":284,"Date":"5/15/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":443,"Cost":334,"Date":"5/25/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":848,"Cost":752,"Date":"5/26/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":835,"Cost":540,"Date":"5/31/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":81,"Cost":62,"Date":"7/27/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":235,"Cost":149,"Date":"9/17/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":214,"Cost":157,"Date":"10/6/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":731,"Cost":370,"Date":"10/8/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":526,"Cost":492,"Date":"10/26/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":804,"Cost":462,"Date":"11/16/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":373,"Cost":348,"Date":"11/18/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":989,"Cost":613,"Date":"12/1/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":619,"Cost":522,"Date":"2/9/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":442,"Cost":265,"Date":"2/11/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":700,"Cost":582,"Date":"3/10/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":638,"Cost":594,"Date":"3/16/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":17,"Cost":13,"Date":"3/18/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":388,"Cost":279,"Date":"3/20/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":823,"Cost":703,"Date":"3/26/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":896,"Cost":516,"Date":"6/2/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":398,"Cost":243,"Date":"6/10/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":483,"Cost":313,"Date":"6/16/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":91,"Cost":66,"Date":"6/25/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":540,"Cost":361,"Date":"7/19/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":473,"Cost":277,"Date":"7/21/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":539,"Cost":286,"Date":"7/25/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":436,"Cost":326,"Date":"8/4/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":626,"Cost":317,"Date":"9/2/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":173,"Cost":120,"Date":"9/4/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":337,"Cost":204,"Date":"9/19/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":556,"Cost":494,"Date":"9/29/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":756,"Cost":586,"Date":"10/2/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":181,"Cost":110,"Date":"10/15/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":679,"Cost":542,"Date":"10/30/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":309,"Cost":253,"Date":"11/9/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":797,"Cost":675,"Date":"11/23/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":706,"Cost":409,"Date":"11/30/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":633,"Cost":565,"Date":"12/8/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":821,"Cost":453,"Date":"12/11/2018"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":529,"Cost":426,"Date":"1/15/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":795,"Cost":466,"Date":"1/24/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":664,"Cost":452,"Date":"2/3/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":60,"Cost":30,"Date":"2/4/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":820,"Cost":631,"Date":"3/9/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":2,"Cost":2,"Date":"3/12/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":822,"Cost":547,"Date":"4/19/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":520,"Cost":486,"Date":"5/3/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":31,"Cost":19,"Date":"5/4/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":619,"Cost":314,"Date":"6/8/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":947,"Cost":697,"Date":"6/26/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":764,"Cost":665,"Date":"7/4/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":999,"Cost":901,"Date":"7/13/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":152,"Cost":122,"Date":"8/8/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":156,"Cost":121,"Date":"8/26/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":219,"Cost":183,"Date":"9/2/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":129,"Cost":119,"Date":"9/29/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":647,"Cost":607,"Date":"10/12/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":832,"Cost":422,"Date":"11/2/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":483,"Cost":344,"Date":"11/4/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":515,"Cost":287,"Date":"11/7/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":40,"Cost":21,"Date":"12/1/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":432,"Cost":238,"Date":"12/4/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":715,"Cost":396,"Date":"12/7/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":895,"Cost":702,"Date":"12/18/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":744,"Cost":553,"Date":"12/20/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":343,"Cost":232,"Date":"12/20/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":817,"Cost":718,"Date":"12/21/2019"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":295,"Cost":239,"Date":"1/9/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":839,"Cost":728,"Date":"2/5/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":611,"Cost":497,"Date":"2/16/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":291,"Cost":236,"Date":"2/16/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":8,"Cost":8,"Date":"2/18/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":297,"Cost":235,"Date":"2/22/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":921,"Cost":638,"Date":"2/25/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":528,"Cost":301,"Date":"3/8/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":14,"Cost":10,"Date":"4/2/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":956,"Cost":850,"Date":"4/3/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":95,"Cost":91,"Date":"4/9/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":98,"Cost":51,"Date":"4/10/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":887,"Cost":728,"Date":"4/19/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":668,"Cost":431,"Date":"5/17/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":78,"Cost":57,"Date":"5/22/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":536,"Cost":276,"Date":"6/20/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":513,"Cost":339,"Date":"7/1/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":219,"Cost":173,"Date":"7/4/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":159,"Cost":87,"Date":"7/8/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":674,"Cost":628,"Date":"7/9/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":875,"Cost":639,"Date":"7/14/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":553,"Cost":316,"Date":"7/19/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":933,"Cost":569,"Date":"8/1/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":865,"Cost":808,"Date":"8/6/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":417,"Cost":363,"Date":"8/7/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":991,"Cost":786,"Date":"8/22/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":351,"Cost":316,"Date":"8/31/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":960,"Cost":772,"Date":"9/1/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":672,"Cost":616,"Date":"9/1/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":726,"Cost":506,"Date":"9/17/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":105,"Cost":69,"Date":"9/29/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":356,"Cost":308,"Date":"11/7/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":476,"Cost":288,"Date":"11/26/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":37,"Cost":22,"Date":"11/27/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":168,"Cost":154,"Date":"12/5/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":239,"Cost":132,"Date":"12/26/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":289,"Cost":233,"Date":"12/31/2020"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":528,"Cost":359,"Date":"1/20/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":990,"Cost":508,"Date":"2/2/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":905,"Cost":456,"Date":"2/8/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":328,"Cost":216,"Date":"2/27/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":815,"Cost":582,"Date":"3/1/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":488,"Cost":255,"Date":"3/1/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":29,"Cost":17,"Date":"3/19/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":990,"Cost":886,"Date":"3/28/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":740,"Cost":601,"Date":"5/21/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":471,"Cost":386,"Date":"7/21/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":941,"Cost":578,"Date":"8/5/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":447,"Cost":411,"Date":"8/12/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":201,"Cost":164,"Date":"8/21/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":31,"Cost":25,"Date":"8/23/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":887,"Cost":793,"Date":"9/3/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":937,"Cost":848,"Date":"9/5/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":859,"Cost":810,"Date":"10/6/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":983,"Cost":859,"Date":"10/19/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":748,"Cost":501,"Date":"11/15/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":568,"Cost":359,"Date":"12/8/2021"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":717,"Cost":594,"Date":"1/8/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":984,"Cost":753,"Date":"1/14/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":723,"Cost":619,"Date":"1/19/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":86,"Cost":80,"Date":"1/28/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":66,"Cost":58,"Date":"1/31/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":799,"Cost":711,"Date":"3/27/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":959,"Cost":535,"Date":"4/20/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":976,"Cost":516,"Date":"4/24/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":593,"Cost":346,"Date":"4/28/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":205,"Cost":177,"Date":"5/15/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":136,"Cost":82,"Date":"5/16/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":73,"Cost":54,"Date":"5/18/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":289,"Cost":201,"Date":"6/2/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":537,"Cost":330,"Date":"6/3/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":133,"Cost":74,"Date":"6/5/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":871,"Cost":698,"Date":"6/7/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":531,"Cost":284,"Date":"6/14/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":358,"Cost":233,"Date":"6/20/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":922,"Cost":698,"Date":"6/24/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":912,"Cost":699,"Date":"7/4/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":550,"Cost":469,"Date":"7/9/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":142,"Cost":106,"Date":"7/12/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":103,"Cost":64,"Date":"8/14/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":521,"Cost":287,"Date":"8/16/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":727,"Cost":639,"Date":"8/23/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":353,"Cost":325,"Date":"9/2/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":285,"Cost":143,"Date":"9/3/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":939,"Cost":608,"Date":"9/16/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":282,"Cost":203,"Date":"10/4/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":593,"Cost":341,"Date":"11/1/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":368,"Cost":216,"Date":"11/2/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":565,"Cost":474,"Date":"12/17/2022"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":867,"Cost":642,"Date":"2/10/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":450,"Cost":313,"Date":"2/28/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":29,"Cost":21,"Date":"3/4/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":914,"Cost":705,"Date":"3/9/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":597,"Cost":514,"Date":"3/9/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":383,"Cost":272,"Date":"3/11/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":69,"Cost":49,"Date":"3/17/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":498,"Cost":472,"Date":"3/17/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":586,"Cost":387,"Date":"3/23/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":451,"Cost":311,"Date":"4/1/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":296,"Cost":166,"Date":"5/7/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":140,"Cost":87,"Date":"5/10/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":328,"Cost":238,"Date":"5/20/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":807,"Cost":746,"Date":"6/2/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":82,"Cost":64,"Date":"6/11/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":310,"Cost":245,"Date":"6/16/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":668,"Cost":357,"Date":"6/16/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":856,"Cost":499,"Date":"7/10/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":503,"Cost":282,"Date":"7/11/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":319,"Cost":238,"Date":"8/28/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":380,"Cost":349,"Date":"8/29/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":373,"Cost":200,"Date":"8/31/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":974,"Cost":493,"Date":"9/8/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":641,"Cost":602,"Date":"9/13/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":120,"Cost":97,"Date":"9/14/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":19,"Cost":12,"Date":"9/19/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":743,"Cost":428,"Date":"9/25/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":30,"Cost":15,"Date":"10/4/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":939,"Cost":633,"Date":"10/10/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":139,"Cost":116,"Date":"10/17/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":845,"Cost":799,"Date":"10/28/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":677,"Cost":575,"Date":"10/30/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":448,"Cost":318,"Date":"11/1/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":282,"Cost":169,"Date":"11/15/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":129,"Cost":85,"Date":"11/25/2023"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":821,"Cost":557,"Date":"1/10/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":500,"Cost":417,"Date":"1/14/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":605,"Cost":318,"Date":"1/20/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":295,"Cost":180,"Date":"2/8/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":928,"Cost":695,"Date":"2/25/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":352,"Cost":315,"Date":"3/7/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":215,"Cost":111,"Date":"3/14/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":448,"Cost":304,"Date":"3/27/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":218,"Cost":200,"Date":"4/5/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":993,"Cost":597,"Date":"4/14/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":657,"Cost":616,"Date":"5/3/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":909,"Cost":841,"Date":"5/9/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":851,"Cost":663,"Date":"5/15/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":800,"Cost":723,"Date":"5/25/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":918,"Cost":764,"Date":"5/26/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":415,"Cost":300,"Date":"5/31/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":273,"Cost":226,"Date":"7/27/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":747,"Cost":448,"Date":"9/17/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":804,"Cost":622,"Date":"10/6/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":616,"Cost":472,"Date":"10/8/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":768,"Cost":580,"Date":"10/26/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":475,"Cost":369,"Date":"11/16/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":254,"Cost":171,"Date":"11/18/2024"},{"Store":"WestArkaden, Freiburg","Brand":"COS","Country":"Germany","Sale":449,"Cost":280,"Date":"12/1/2024"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":286,"Cost":271,"Date":"2/9/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":664,"Cost":411,"Date":"2/11/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":897,"Cost":774,"Date":"3/10/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":687,"Cost":585,"Date":"3/16/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":567,"Cost":306,"Date":"3/18/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":106,"Cost":92,"Date":"3/20/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":650,"Cost":596,"Date":"3/26/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":508,"Cost":384,"Date":"6/2/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":741,"Cost":697,"Date":"6/10/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":994,"Cost":803,"Date":"6/16/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":727,"Cost":470,"Date":"6/25/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":769,"Cost":421,"Date":"7/19/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":853,"Cost":468,"Date":"7/21/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":450,"Cost":241,"Date":"7/25/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":710,"Cost":542,"Date":"8/4/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":229,"Cost":204,"Date":"9/2/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":128,"Cost":96,"Date":"9/4/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":826,"Cost":658,"Date":"9/19/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":205,"Cost":192,"Date":"9/29/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":408,"Cost":316,"Date":"10/2/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":447,"Cost":280,"Date":"10/15/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":275,"Cost":198,"Date":"10/30/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":35,"Cost":32,"Date":"11/9/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":63,"Cost":35,"Date":"11/23/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":395,"Cost":329,"Date":"11/30/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":477,"Cost":242,"Date":"12/8/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":94,"Cost":67,"Date":"12/11/2018"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":661,"Cost":598,"Date":"1/15/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":651,"Cost":525,"Date":"1/24/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":649,"Cost":402,"Date":"2/3/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":650,"Cost":409,"Date":"2/4/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":475,"Cost":404,"Date":"3/9/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":965,"Cost":791,"Date":"3/12/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":445,"Cost":378,"Date":"4/19/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":595,"Cost":376,"Date":"5/3/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":309,"Cost":228,"Date":"5/4/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":549,"Cost":292,"Date":"6/8/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":860,"Cost":515,"Date":"6/26/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":643,"Cost":471,"Date":"7/4/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":666,"Cost":584,"Date":"7/13/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":12,"Cost":9,"Date":"8/8/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":675,"Cost":542,"Date":"8/26/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":361,"Cost":289,"Date":"9/2/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":101,"Cost":84,"Date":"9/29/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":846,"Cost":536,"Date":"10/12/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":635,"Cost":481,"Date":"11/2/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":999,"Cost":591,"Date":"11/4/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":741,"Cost":477,"Date":"11/7/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":382,"Cost":303,"Date":"12/1/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":464,"Cost":246,"Date":"12/4/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":861,"Cost":499,"Date":"12/7/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":901,"Cost":509,"Date":"12/18/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":249,"Cost":221,"Date":"12/20/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":64,"Cost":58,"Date":"12/20/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":336,"Cost":303,"Date":"12/21/2019"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":309,"Cost":234,"Date":"1/9/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":954,"Cost":678,"Date":"2/5/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":676,"Cost":570,"Date":"2/16/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":608,"Cost":359,"Date":"2/16/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":763,"Cost":526,"Date":"2/18/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":883,"Cost":485,"Date":"2/22/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":943,"Cost":604,"Date":"2/25/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":370,"Cost":294,"Date":"3/8/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":696,"Cost":415,"Date":"4/2/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":310,"Cost":242,"Date":"4/3/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":279,"Cost":193,"Date":"4/9/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":951,"Cost":687,"Date":"4/10/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":807,"Cost":593,"Date":"4/19/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":671,"Cost":408,"Date":"5/17/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":345,"Cost":313,"Date":"5/22/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":739,"Cost":447,"Date":"6/20/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":10,"Cost":6,"Date":"7/1/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":284,"Cost":241,"Date":"7/4/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":106,"Cost":66,"Date":"7/8/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":104,"Cost":93,"Date":"7/9/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":774,"Cost":470,"Date":"7/14/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":882,"Cost":498,"Date":"7/19/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":639,"Cost":602,"Date":"8/1/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":921,"Cost":829,"Date":"8/6/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":435,"Cost":411,"Date":"8/7/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":650,"Cost":433,"Date":"8/22/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":493,"Cost":322,"Date":"8/31/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":1000,"Cost":546,"Date":"9/1/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":599,"Cost":308,"Date":"9/1/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":591,"Cost":305,"Date":"9/17/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":958,"Cost":732,"Date":"9/29/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":875,"Cost":750,"Date":"11/7/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":401,"Cost":348,"Date":"11/26/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":683,"Cost":391,"Date":"11/27/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":442,"Cost":367,"Date":"12/5/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":113,"Cost":104,"Date":"12/26/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":850,"Cost":469,"Date":"12/31/2020"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":782,"Cost":450,"Date":"1/20/2021"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":740,"Cost":652,"Date":"2/2/2021"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":769,"Cost":546,"Date":"2/8/2021"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":668,"Cost":596,"Date":"2/27/2021"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":756,"Cost":460,"Date":"3/1/2021"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":878,"Cost":442,"Date":"3/1/2021"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":742,"Cost":694,"Date":"3/19/2021"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":208,"Cost":165,"Date":"3/28/2021"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":670,"Cost":354,"Date":"5/21/2021"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":527,"Cost":397,"Date":"7/21/2021"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":632,"Cost":399,"Date":"8/5/2021"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":854,"Cost":699,"Date":"8/12/2021"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":833,"Cost":725,"Date":"8/21/2021"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":306,"Cost":203,"Date":"8/23/2021"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":409,"Cost":261,"Date":"9/3/2021"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":964,"Cost":772,"Date":"9/5/2021"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":414,"Cost":207,"Date":"10/6/2021"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":411,"Cost":353,"Date":"10/19/2021"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":414,"Cost":324,"Date":"11/15/2021"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":752,"Cost":431,"Date":"12/8/2021"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":504,"Cost":321,"Date":"1/8/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":962,"Cost":523,"Date":"1/14/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":836,"Cost":580,"Date":"1/19/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":232,"Cost":211,"Date":"1/28/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":865,"Cost":723,"Date":"1/31/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":895,"Cost":631,"Date":"3/27/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":85,"Cost":59,"Date":"4/20/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":675,"Cost":423,"Date":"4/24/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":972,"Cost":545,"Date":"4/28/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":731,"Cost":589,"Date":"5/15/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":946,"Cost":790,"Date":"5/16/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":792,"Cost":537,"Date":"5/18/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":501,"Cost":417,"Date":"6/2/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":77,"Cost":55,"Date":"6/3/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":12,"Cost":10,"Date":"6/5/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":212,"Cost":110,"Date":"6/7/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":37,"Cost":18,"Date":"6/14/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":516,"Cost":429,"Date":"6/20/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":247,"Cost":235,"Date":"6/24/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":173,"Cost":156,"Date":"7/4/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":973,"Cost":738,"Date":"7/9/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":403,"Cost":289,"Date":"7/12/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":795,"Cost":503,"Date":"8/14/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":151,"Cost":84,"Date":"8/16/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":150,"Cost":95,"Date":"8/23/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":332,"Cost":188,"Date":"9/2/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":482,"Cost":273,"Date":"9/3/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":530,"Cost":473,"Date":"9/16/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":654,"Cost":390,"Date":"10/4/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":182,"Cost":101,"Date":"11/1/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":246,"Cost":183,"Date":"11/2/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":257,"Cost":241,"Date":"12/17/2022"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":813,"Cost":639,"Date":"2/10/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":161,"Cost":114,"Date":"2/28/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":688,"Cost":483,"Date":"3/4/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":474,"Cost":336,"Date":"3/9/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":627,"Cost":366,"Date":"3/9/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":976,"Cost":751,"Date":"3/11/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":535,"Cost":422,"Date":"3/17/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":454,"Cost":274,"Date":"3/17/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":696,"Cost":349,"Date":"3/23/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":67,"Cost":39,"Date":"4/1/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":925,"Cost":771,"Date":"5/7/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":788,"Cost":600,"Date":"5/10/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":303,"Cost":234,"Date":"5/20/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":431,"Cost":269,"Date":"6/2/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":477,"Cost":450,"Date":"6/11/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":734,"Cost":494,"Date":"6/16/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":352,"Cost":219,"Date":"6/16/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":476,"Cost":350,"Date":"7/10/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":365,"Cost":227,"Date":"7/11/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":175,"Cost":159,"Date":"8/28/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":294,"Cost":258,"Date":"8/29/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":74,"Cost":49,"Date":"8/31/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":473,"Cost":405,"Date":"9/8/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":400,"Cost":222,"Date":"9/13/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":648,"Cost":452,"Date":"9/14/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":795,"Cost":518,"Date":"9/19/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":803,"Cost":712,"Date":"9/25/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":177,"Cost":164,"Date":"10/4/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":266,"Cost":213,"Date":"10/10/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":883,"Cost":828,"Date":"10/17/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":738,"Cost":386,"Date":"10/28/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":508,"Cost":349,"Date":"10/30/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":133,"Cost":84,"Date":"11/1/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":197,"Cost":133,"Date":"11/15/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":428,"Cost":299,"Date":"11/25/2023"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":939,"Cost":767,"Date":"1/10/2024"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":163,"Cost":154,"Date":"1/14/2024"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":551,"Cost":351,"Date":"1/20/2024"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":888,"Cost":471,"Date":"2/8/2024"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":631,"Cost":463,"Date":"2/25/2024"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":10,"Cost":8,"Date":"3/7/2024"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":615,"Cost":537,"Date":"3/14/2024"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":814,"Cost":717,"Date":"3/27/2024"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":929,"Cost":638,"Date":"4/5/2024"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":835,"Cost":579,"Date":"4/14/2024"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":322,"Cost":172,"Date":"5/3/2024"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":759,"Cost":440,"Date":"5/9/2024"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":61,"Cost":45,"Date":"5/15/2024"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":299,"Cost":254,"Date":"5/25/2024"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":909,"Cost":669,"Date":"5/26/2024"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":646,"Cost":428,"Date":"5/31/2024"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":666,"Cost":349,"Date":"7/27/2024"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":49,"Cost":38,"Date":"9/17/2024"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":299,"Cost":180,"Date":"10/6/2024"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":937,"Cost":869,"Date":"10/8/2024"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":263,"Cost":176,"Date":"10/26/2024"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":985,"Cost":817,"Date":"11/16/2024"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":441,"Cost":314,"Date":"11/18/2024"},{"Store":"WestArkaden, Freiburg","Brand":"Sellpy","Country":"Germany","Sale":560,"Cost":302,"Date":"12/1/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":30,"Cost":19,"Date":"2/9/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":175,"Cost":134,"Date":"2/11/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":295,"Cost":194,"Date":"3/10/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":123,"Cost":83,"Date":"3/16/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":430,"Cost":234,"Date":"3/18/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":142,"Cost":126,"Date":"3/20/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":8,"Cost":4,"Date":"3/26/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":24,"Cost":13,"Date":"6/2/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":666,"Cost":569,"Date":"6/10/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":368,"Cost":349,"Date":"6/16/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":406,"Cost":316,"Date":"6/25/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":916,"Cost":597,"Date":"7/19/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":562,"Cost":486,"Date":"7/21/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":514,"Cost":366,"Date":"7/25/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":367,"Cost":258,"Date":"8/4/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":19,"Cost":11,"Date":"9/2/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":301,"Cost":201,"Date":"9/4/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":650,"Cost":428,"Date":"9/19/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":982,"Cost":932,"Date":"9/29/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":374,"Cost":326,"Date":"10/2/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":829,"Cost":784,"Date":"10/15/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":717,"Cost":443,"Date":"10/30/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":454,"Cost":422,"Date":"11/9/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":821,"Cost":668,"Date":"11/23/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":634,"Cost":365,"Date":"11/30/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":496,"Cost":464,"Date":"12/8/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":321,"Cost":209,"Date":"12/11/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":945,"Cost":489,"Date":"1/15/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":193,"Cost":151,"Date":"1/24/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":522,"Cost":448,"Date":"2/3/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":666,"Cost":346,"Date":"2/4/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":763,"Cost":569,"Date":"3/9/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":706,"Cost":555,"Date":"3/12/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":156,"Cost":83,"Date":"4/19/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":49,"Cost":31,"Date":"5/3/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":428,"Cost":251,"Date":"5/4/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":614,"Cost":337,"Date":"6/8/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":596,"Cost":497,"Date":"6/26/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":553,"Cost":387,"Date":"7/4/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":833,"Cost":698,"Date":"7/13/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":186,"Cost":134,"Date":"8/8/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":615,"Cost":407,"Date":"8/26/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":777,"Cost":603,"Date":"9/2/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":485,"Cost":354,"Date":"9/29/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":12,"Cost":10,"Date":"10/12/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":258,"Cost":183,"Date":"11/2/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":275,"Cost":229,"Date":"11/4/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":856,"Cost":467,"Date":"11/7/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":671,"Cost":609,"Date":"12/1/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":703,"Cost":514,"Date":"12/4/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":816,"Cost":431,"Date":"12/7/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":780,"Cost":636,"Date":"12/18/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":136,"Cost":109,"Date":"12/20/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":592,"Cost":460,"Date":"12/20/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":948,"Cost":585,"Date":"12/21/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":364,"Cost":207,"Date":"1/9/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":958,"Cost":621,"Date":"2/5/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":134,"Cost":86,"Date":"2/16/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":834,"Cost":524,"Date":"2/16/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":599,"Cost":445,"Date":"2/18/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":20,"Cost":19,"Date":"2/22/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":477,"Cost":449,"Date":"2/25/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":876,"Cost":651,"Date":"3/8/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":690,"Cost":383,"Date":"4/2/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":30,"Cost":18,"Date":"4/3/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":421,"Cost":250,"Date":"4/9/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":398,"Cost":319,"Date":"4/10/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":426,"Cost":315,"Date":"4/19/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":187,"Cost":95,"Date":"5/17/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":127,"Cost":65,"Date":"5/22/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":702,"Cost":542,"Date":"6/20/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":130,"Cost":70,"Date":"7/1/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":935,"Cost":650,"Date":"7/4/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":140,"Cost":125,"Date":"7/8/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":236,"Cost":161,"Date":"7/9/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":152,"Cost":115,"Date":"7/14/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":334,"Cost":174,"Date":"7/19/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":982,"Cost":746,"Date":"8/1/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":779,"Cost":633,"Date":"8/6/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":851,"Cost":713,"Date":"8/7/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":151,"Cost":83,"Date":"8/22/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":235,"Cost":199,"Date":"8/31/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":584,"Cost":324,"Date":"9/1/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":123,"Cost":71,"Date":"9/1/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":821,"Cost":419,"Date":"9/17/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":139,"Cost":105,"Date":"9/29/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":669,"Cost":587,"Date":"11/7/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":611,"Cost":542,"Date":"11/26/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":565,"Cost":283,"Date":"11/27/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":343,"Cost":306,"Date":"12/5/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":616,"Cost":324,"Date":"12/26/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":494,"Cost":456,"Date":"12/31/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":857,"Cost":647,"Date":"1/20/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":345,"Cost":175,"Date":"2/2/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":296,"Cost":249,"Date":"2/8/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":452,"Cost":303,"Date":"2/27/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":626,"Cost":567,"Date":"3/1/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":158,"Cost":84,"Date":"3/1/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":941,"Cost":884,"Date":"3/19/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":776,"Cost":657,"Date":"3/28/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":926,"Cost":869,"Date":"5/21/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":372,"Cost":261,"Date":"7/21/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":437,"Cost":303,"Date":"8/5/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":557,"Cost":392,"Date":"8/12/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":860,"Cost":574,"Date":"8/21/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":383,"Cost":325,"Date":"8/23/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":604,"Cost":557,"Date":"9/3/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":281,"Cost":165,"Date":"9/5/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":371,"Cost":264,"Date":"10/6/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":607,"Cost":482,"Date":"10/19/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":542,"Cost":443,"Date":"11/15/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":392,"Cost":372,"Date":"12/8/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":63,"Cost":56,"Date":"1/8/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":319,"Cost":168,"Date":"1/14/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":603,"Cost":519,"Date":"1/19/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":572,"Cost":465,"Date":"1/28/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":502,"Cost":369,"Date":"1/31/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":419,"Cost":224,"Date":"3/27/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":653,"Cost":555,"Date":"4/20/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":956,"Cost":805,"Date":"4/24/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":782,"Cost":526,"Date":"4/28/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":434,"Cost":335,"Date":"5/15/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":479,"Cost":269,"Date":"5/16/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":311,"Cost":208,"Date":"5/18/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":746,"Cost":512,"Date":"6/2/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":745,"Cost":671,"Date":"6/3/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":495,"Cost":336,"Date":"6/5/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":862,"Cost":656,"Date":"6/7/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":939,"Cost":688,"Date":"6/14/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":367,"Cost":282,"Date":"6/20/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":82,"Cost":43,"Date":"6/24/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":821,"Cost":549,"Date":"7/4/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":437,"Cost":319,"Date":"7/9/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":460,"Cost":382,"Date":"7/12/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":535,"Cost":313,"Date":"8/14/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":224,"Cost":144,"Date":"8/16/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":111,"Cost":105,"Date":"8/23/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":986,"Cost":934,"Date":"9/2/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":664,"Cost":458,"Date":"9/3/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":17,"Cost":16,"Date":"9/16/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":537,"Cost":396,"Date":"10/4/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":357,"Cost":202,"Date":"11/1/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":490,"Cost":355,"Date":"11/2/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":352,"Cost":236,"Date":"12/17/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":772,"Cost":483,"Date":"2/10/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":383,"Cost":336,"Date":"2/28/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":89,"Cost":53,"Date":"3/4/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":942,"Cost":624,"Date":"3/9/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":166,"Cost":99,"Date":"3/9/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":750,"Cost":395,"Date":"3/11/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":694,"Cost":388,"Date":"3/17/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":973,"Cost":825,"Date":"3/17/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":620,"Cost":505,"Date":"3/23/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":662,"Cost":395,"Date":"4/1/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":852,"Cost":618,"Date":"5/7/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":371,"Cost":270,"Date":"5/10/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":45,"Cost":32,"Date":"5/20/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":158,"Cost":130,"Date":"6/2/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":196,"Cost":106,"Date":"6/11/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":504,"Cost":380,"Date":"6/16/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":620,"Cost":430,"Date":"6/16/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":696,"Cost":468,"Date":"7/10/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":656,"Cost":353,"Date":"7/11/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":866,"Cost":772,"Date":"8/28/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":828,"Cost":729,"Date":"8/29/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":402,"Cost":207,"Date":"8/31/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":843,"Cost":738,"Date":"9/8/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":83,"Cost":52,"Date":"9/13/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":73,"Cost":55,"Date":"9/14/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":492,"Cost":381,"Date":"9/19/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":840,"Cost":575,"Date":"9/25/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":572,"Cost":325,"Date":"10/4/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":717,"Cost":526,"Date":"10/10/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":667,"Cost":509,"Date":"10/17/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":548,"Cost":498,"Date":"10/28/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":992,"Cost":873,"Date":"10/30/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":118,"Cost":104,"Date":"11/1/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":952,"Cost":782,"Date":"11/15/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":580,"Cost":526,"Date":"11/25/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":266,"Cost":221,"Date":"1/10/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":510,"Cost":354,"Date":"1/14/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":853,"Cost":784,"Date":"1/20/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":463,"Cost":387,"Date":"2/8/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":40,"Cost":29,"Date":"2/25/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":748,"Cost":512,"Date":"3/7/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":973,"Cost":740,"Date":"3/14/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":228,"Cost":159,"Date":"3/27/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":20,"Cost":16,"Date":"4/5/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":808,"Cost":407,"Date":"4/14/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":888,"Cost":744,"Date":"5/3/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":991,"Cost":644,"Date":"5/9/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":141,"Cost":116,"Date":"5/15/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":60,"Cost":56,"Date":"5/25/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":978,"Cost":492,"Date":"5/26/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":475,"Cost":394,"Date":"5/31/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":394,"Cost":227,"Date":"7/27/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":881,"Cost":646,"Date":"9/17/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":404,"Cost":300,"Date":"10/6/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":992,"Cost":864,"Date":"10/8/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":123,"Cost":71,"Date":"10/26/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":160,"Cost":107,"Date":"11/16/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":629,"Cost":594,"Date":"11/18/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":998,"Cost":526,"Date":"12/1/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":395,"Cost":360,"Date":"2/9/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":821,"Cost":512,"Date":"2/11/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":838,"Cost":628,"Date":"3/10/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":210,"Cost":161,"Date":"3/16/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":120,"Cost":95,"Date":"3/18/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":14,"Cost":7,"Date":"3/20/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":413,"Cost":251,"Date":"3/26/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":108,"Cost":88,"Date":"6/2/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":85,"Cost":71,"Date":"6/10/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":113,"Cost":60,"Date":"6/16/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":287,"Cost":246,"Date":"6/25/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":360,"Cost":306,"Date":"7/19/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":533,"Cost":446,"Date":"7/21/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":250,"Cost":153,"Date":"7/25/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":144,"Cost":124,"Date":"8/4/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":747,"Cost":568,"Date":"9/2/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":180,"Cost":107,"Date":"9/4/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":174,"Cost":115,"Date":"9/19/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":259,"Cost":180,"Date":"9/29/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":675,"Cost":384,"Date":"10/2/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":518,"Cost":390,"Date":"10/15/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":49,"Cost":35,"Date":"10/30/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":344,"Cost":219,"Date":"11/9/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":509,"Cost":366,"Date":"11/23/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":735,"Cost":435,"Date":"11/30/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":435,"Cost":218,"Date":"12/8/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":991,"Cost":916,"Date":"12/11/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":326,"Cost":214,"Date":"1/15/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":804,"Cost":754,"Date":"1/24/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":417,"Cost":301,"Date":"2/3/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":590,"Cost":317,"Date":"2/4/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":354,"Cost":307,"Date":"3/9/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":909,"Cost":679,"Date":"3/12/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":769,"Cost":555,"Date":"4/19/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":800,"Cost":626,"Date":"5/3/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":945,"Cost":816,"Date":"5/4/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":610,"Cost":468,"Date":"6/8/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":820,"Cost":415,"Date":"6/26/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":477,"Cost":431,"Date":"7/4/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":809,"Cost":495,"Date":"7/13/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":84,"Cost":80,"Date":"8/8/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":197,"Cost":147,"Date":"8/26/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":128,"Cost":78,"Date":"9/2/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":725,"Cost":413,"Date":"9/29/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":56,"Cost":50,"Date":"10/12/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":169,"Cost":98,"Date":"11/2/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":119,"Cost":70,"Date":"11/4/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":780,"Cost":737,"Date":"11/7/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":226,"Cost":124,"Date":"12/1/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":479,"Cost":417,"Date":"12/4/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":992,"Cost":835,"Date":"12/7/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":608,"Cost":485,"Date":"12/18/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":650,"Cost":572,"Date":"12/20/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":504,"Cost":310,"Date":"12/20/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":841,"Cost":630,"Date":"12/21/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":878,"Cost":449,"Date":"1/9/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":595,"Cost":470,"Date":"2/5/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":295,"Cost":275,"Date":"2/16/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":213,"Cost":198,"Date":"2/16/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":737,"Cost":455,"Date":"2/18/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":513,"Cost":313,"Date":"2/22/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":101,"Cost":50,"Date":"2/25/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":646,"Cost":578,"Date":"3/8/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":679,"Cost":565,"Date":"4/2/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":590,"Cost":541,"Date":"4/3/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":409,"Cost":382,"Date":"4/9/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":826,"Cost":781,"Date":"4/10/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":355,"Cost":216,"Date":"4/19/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":26,"Cost":19,"Date":"5/17/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":901,"Cost":452,"Date":"5/22/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":100,"Cost":62,"Date":"6/20/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":445,"Cost":316,"Date":"7/1/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":835,"Cost":574,"Date":"7/4/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":418,"Cost":290,"Date":"7/8/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":45,"Cost":36,"Date":"7/9/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":829,"Cost":496,"Date":"7/14/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":966,"Cost":563,"Date":"7/19/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":332,"Cost":301,"Date":"8/1/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":963,"Cost":653,"Date":"8/6/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":725,"Cost":490,"Date":"8/7/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":89,"Cost":81,"Date":"8/22/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":50,"Cost":44,"Date":"8/31/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":246,"Cost":126,"Date":"9/1/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":956,"Cost":537,"Date":"9/1/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":824,"Cost":583,"Date":"9/17/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":419,"Cost":235,"Date":"9/29/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":328,"Cost":184,"Date":"11/7/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":864,"Cost":486,"Date":"11/26/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":28,"Cost":19,"Date":"11/27/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":639,"Cost":600,"Date":"12/5/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":161,"Cost":134,"Date":"12/26/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":531,"Cost":463,"Date":"12/31/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":658,"Cost":537,"Date":"1/20/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":705,"Cost":405,"Date":"2/2/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":506,"Cost":436,"Date":"2/8/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":662,"Cost":603,"Date":"2/27/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":774,"Cost":442,"Date":"3/1/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":520,"Cost":333,"Date":"3/1/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":34,"Cost":30,"Date":"3/19/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":338,"Cost":173,"Date":"3/28/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":500,"Cost":388,"Date":"5/21/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":291,"Cost":254,"Date":"7/21/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":788,"Cost":566,"Date":"8/5/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":548,"Cost":452,"Date":"8/12/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":667,"Cost":527,"Date":"8/21/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":235,"Cost":215,"Date":"8/23/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":147,"Cost":113,"Date":"9/3/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":409,"Cost":364,"Date":"9/5/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":969,"Cost":921,"Date":"10/6/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":141,"Cost":109,"Date":"10/19/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":16,"Cost":8,"Date":"11/15/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":406,"Cost":257,"Date":"12/8/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":252,"Cost":137,"Date":"1/8/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":640,"Cost":580,"Date":"1/14/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":35,"Cost":19,"Date":"1/19/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":909,"Cost":721,"Date":"1/28/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":38,"Cost":30,"Date":"1/31/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":80,"Cost":75,"Date":"3/27/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":513,"Cost":418,"Date":"4/20/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":154,"Cost":121,"Date":"4/24/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":75,"Cost":42,"Date":"4/28/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":219,"Cost":197,"Date":"5/15/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":325,"Cost":252,"Date":"5/16/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":223,"Cost":136,"Date":"5/18/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":105,"Cost":68,"Date":"6/2/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":360,"Cost":188,"Date":"6/3/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":551,"Cost":353,"Date":"6/5/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":373,"Cost":258,"Date":"6/7/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":58,"Cost":50,"Date":"6/14/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":714,"Cost":553,"Date":"6/20/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":96,"Cost":58,"Date":"6/24/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":850,"Cost":755,"Date":"7/4/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":139,"Cost":121,"Date":"7/9/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":923,"Cost":797,"Date":"7/12/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":999,"Cost":600,"Date":"8/14/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":338,"Cost":276,"Date":"8/16/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":818,"Cost":547,"Date":"8/23/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":757,"Cost":598,"Date":"9/2/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":25,"Cost":19,"Date":"9/3/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":582,"Cost":326,"Date":"9/16/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":845,"Cost":754,"Date":"10/4/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":923,"Cost":784,"Date":"11/1/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":686,"Cost":412,"Date":"11/2/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":934,"Cost":673,"Date":"12/17/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":512,"Cost":329,"Date":"2/10/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":294,"Cost":155,"Date":"2/28/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":282,"Cost":259,"Date":"3/4/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":974,"Cost":780,"Date":"3/9/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":796,"Cost":656,"Date":"3/9/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":677,"Cost":556,"Date":"3/11/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":818,"Cost":694,"Date":"3/17/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":580,"Cost":469,"Date":"3/17/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":324,"Cost":276,"Date":"3/23/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":930,"Cost":853,"Date":"4/1/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":495,"Cost":373,"Date":"5/7/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":32,"Cost":20,"Date":"5/10/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":463,"Cost":272,"Date":"5/20/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":376,"Cost":291,"Date":"6/2/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":878,"Cost":530,"Date":"6/11/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":775,"Cost":413,"Date":"6/16/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":523,"Cost":436,"Date":"6/16/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":691,"Cost":527,"Date":"7/10/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":687,"Cost":591,"Date":"7/11/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":759,"Cost":493,"Date":"8/28/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":935,"Cost":793,"Date":"8/29/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":950,"Cost":785,"Date":"8/31/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":48,"Cost":43,"Date":"9/8/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":399,"Cost":351,"Date":"9/13/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":724,"Cost":592,"Date":"9/14/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":464,"Cost":367,"Date":"9/19/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":718,"Cost":389,"Date":"9/25/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":524,"Cost":341,"Date":"10/4/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":854,"Cost":719,"Date":"10/10/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":100,"Cost":78,"Date":"10/17/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":326,"Cost":180,"Date":"10/28/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":162,"Cost":152,"Date":"10/30/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":275,"Cost":167,"Date":"11/1/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":871,"Cost":772,"Date":"11/15/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":813,"Cost":714,"Date":"11/25/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":615,"Cost":510,"Date":"1/10/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":272,"Cost":215,"Date":"1/14/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":968,"Cost":544,"Date":"1/20/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":74,"Cost":54,"Date":"2/8/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":25,"Cost":21,"Date":"2/25/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":783,"Cost":584,"Date":"3/7/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":7,"Cost":5,"Date":"3/14/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":947,"Cost":564,"Date":"3/27/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":247,"Cost":150,"Date":"4/5/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":956,"Cost":812,"Date":"4/14/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":688,"Cost":446,"Date":"5/3/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":299,"Cost":162,"Date":"5/9/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":399,"Cost":205,"Date":"5/15/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":469,"Cost":429,"Date":"5/25/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":80,"Cost":45,"Date":"5/26/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":134,"Cost":88,"Date":"5/31/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":13,"Cost":13,"Date":"7/27/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":657,"Cost":375,"Date":"9/17/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":492,"Cost":262,"Date":"10/6/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":58,"Cost":30,"Date":"10/8/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":584,"Cost":510,"Date":"10/26/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":378,"Cost":328,"Date":"11/16/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":127,"Cost":65,"Date":"11/18/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"HM","Country":"Germany","Sale":184,"Cost":102,"Date":"12/1/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":887,"Cost":837,"Date":"2/9/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":902,"Cost":727,"Date":"2/11/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":688,"Cost":590,"Date":"3/10/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":602,"Cost":348,"Date":"3/16/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":596,"Cost":347,"Date":"3/18/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":905,"Cost":846,"Date":"3/20/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":744,"Cost":644,"Date":"3/26/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":971,"Cost":505,"Date":"6/2/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":363,"Cost":220,"Date":"6/10/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":744,"Cost":610,"Date":"6/16/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":410,"Cost":350,"Date":"6/25/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":492,"Cost":464,"Date":"7/19/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":214,"Cost":158,"Date":"7/21/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":70,"Cost":66,"Date":"7/25/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":855,"Cost":697,"Date":"8/4/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":271,"Cost":171,"Date":"9/2/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":696,"Cost":448,"Date":"9/4/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":408,"Cost":366,"Date":"9/19/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":393,"Cost":252,"Date":"9/29/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":98,"Cost":80,"Date":"10/2/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":364,"Cost":245,"Date":"10/15/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":771,"Cost":540,"Date":"10/30/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":571,"Cost":399,"Date":"11/9/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":949,"Cost":660,"Date":"11/23/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":970,"Cost":659,"Date":"11/30/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":827,"Cost":764,"Date":"12/8/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":73,"Cost":69,"Date":"12/11/2018"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":534,"Cost":285,"Date":"1/15/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":977,"Cost":569,"Date":"1/24/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":316,"Cost":256,"Date":"2/3/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":536,"Cost":327,"Date":"2/4/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":270,"Cost":209,"Date":"3/9/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":970,"Cost":642,"Date":"3/12/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":927,"Cost":590,"Date":"4/19/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":54,"Cost":46,"Date":"5/3/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":119,"Cost":65,"Date":"5/4/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":252,"Cost":159,"Date":"6/8/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":331,"Cost":303,"Date":"6/26/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":104,"Cost":54,"Date":"7/4/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":330,"Cost":239,"Date":"7/13/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":809,"Cost":750,"Date":"8/8/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":104,"Cost":66,"Date":"8/26/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":507,"Cost":262,"Date":"9/2/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":816,"Cost":469,"Date":"9/29/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":826,"Cost":688,"Date":"10/12/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":773,"Cost":439,"Date":"11/2/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":701,"Cost":415,"Date":"11/4/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":426,"Cost":225,"Date":"11/7/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":865,"Cost":783,"Date":"12/1/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":813,"Cost":770,"Date":"12/4/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":449,"Cost":365,"Date":"12/7/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":2,"Cost":2,"Date":"12/18/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":961,"Cost":640,"Date":"12/20/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":913,"Cost":674,"Date":"12/20/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":139,"Cost":76,"Date":"12/21/2019"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":690,"Cost":561,"Date":"1/9/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":74,"Cost":68,"Date":"2/5/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":194,"Cost":139,"Date":"2/16/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":51,"Cost":49,"Date":"2/16/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":747,"Cost":426,"Date":"2/18/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":115,"Cost":72,"Date":"2/22/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":939,"Cost":610,"Date":"2/25/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":687,"Cost":566,"Date":"3/8/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":895,"Cost":530,"Date":"4/2/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":918,"Cost":686,"Date":"4/3/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":496,"Cost":344,"Date":"4/9/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":872,"Cost":509,"Date":"4/10/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":652,"Cost":418,"Date":"4/19/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":516,"Cost":304,"Date":"5/17/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":722,"Cost":578,"Date":"5/22/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":575,"Cost":416,"Date":"6/20/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":9,"Cost":8,"Date":"7/1/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":284,"Cost":174,"Date":"7/4/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":981,"Cost":770,"Date":"7/8/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":625,"Cost":472,"Date":"7/9/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":774,"Cost":621,"Date":"7/14/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":125,"Cost":107,"Date":"7/19/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":442,"Cost":260,"Date":"8/1/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":852,"Cost":686,"Date":"8/6/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":843,"Cost":622,"Date":"8/7/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":181,"Cost":95,"Date":"8/22/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":148,"Cost":139,"Date":"8/31/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":139,"Cost":85,"Date":"9/1/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":442,"Cost":350,"Date":"9/1/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":406,"Cost":376,"Date":"9/17/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":576,"Cost":371,"Date":"9/29/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":361,"Cost":212,"Date":"11/7/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":304,"Cost":153,"Date":"11/26/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":121,"Cost":108,"Date":"11/27/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":958,"Cost":658,"Date":"12/5/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":299,"Cost":188,"Date":"12/26/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":935,"Cost":724,"Date":"12/31/2020"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":58,"Cost":36,"Date":"1/20/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":720,"Cost":638,"Date":"2/2/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":38,"Cost":26,"Date":"2/8/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":41,"Cost":22,"Date":"2/27/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":968,"Cost":843,"Date":"3/1/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":546,"Cost":472,"Date":"3/1/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":350,"Cost":178,"Date":"3/19/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":457,"Cost":258,"Date":"3/28/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":392,"Cost":294,"Date":"5/21/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":785,"Cost":724,"Date":"7/21/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":948,"Cost":709,"Date":"8/5/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":927,"Cost":613,"Date":"8/12/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":613,"Cost":379,"Date":"8/21/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":672,"Cost":345,"Date":"8/23/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":51,"Cost":33,"Date":"9/3/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":798,"Cost":578,"Date":"9/5/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":895,"Cost":691,"Date":"10/6/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":614,"Cost":370,"Date":"10/19/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":609,"Cost":475,"Date":"11/15/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":48,"Cost":29,"Date":"12/8/2021"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":783,"Cost":731,"Date":"1/8/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":312,"Cost":252,"Date":"1/14/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":42,"Cost":28,"Date":"1/19/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":856,"Cost":456,"Date":"1/28/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":230,"Cost":186,"Date":"1/31/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":742,"Cost":689,"Date":"3/27/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":208,"Cost":126,"Date":"4/20/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":829,"Cost":764,"Date":"4/24/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":654,"Cost":586,"Date":"4/28/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":615,"Cost":371,"Date":"5/15/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":351,"Cost":244,"Date":"5/16/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":497,"Cost":468,"Date":"5/18/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":399,"Cost":285,"Date":"6/2/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":844,"Cost":605,"Date":"6/3/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":3,"Cost":3,"Date":"6/5/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":168,"Cost":116,"Date":"6/7/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":442,"Cost":309,"Date":"6/14/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":910,"Cost":553,"Date":"6/20/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":189,"Cost":160,"Date":"6/24/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":399,"Cost":289,"Date":"7/4/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":519,"Cost":386,"Date":"7/9/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":38,"Cost":36,"Date":"7/12/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":867,"Cost":483,"Date":"8/14/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":661,"Cost":377,"Date":"8/16/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":179,"Cost":97,"Date":"8/23/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":236,"Cost":175,"Date":"9/2/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":277,"Cost":174,"Date":"9/3/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":198,"Cost":175,"Date":"9/16/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":326,"Cost":283,"Date":"10/4/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":794,"Cost":431,"Date":"11/1/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":71,"Cost":56,"Date":"11/2/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":666,"Cost":359,"Date":"12/17/2022"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":324,"Cost":274,"Date":"2/10/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":698,"Cost":535,"Date":"2/28/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":61,"Cost":40,"Date":"3/4/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":837,"Cost":564,"Date":"3/9/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":250,"Cost":147,"Date":"3/9/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":11,"Cost":10,"Date":"3/11/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":525,"Cost":423,"Date":"3/17/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":250,"Cost":221,"Date":"3/17/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":561,"Cost":307,"Date":"3/23/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":189,"Cost":98,"Date":"4/1/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":689,"Cost":509,"Date":"5/7/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":948,"Cost":625,"Date":"5/10/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":125,"Cost":70,"Date":"5/20/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":237,"Cost":166,"Date":"6/2/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":909,"Cost":684,"Date":"6/11/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":763,"Cost":392,"Date":"6/16/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":733,"Cost":391,"Date":"6/16/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":336,"Cost":248,"Date":"7/10/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":717,"Cost":576,"Date":"7/11/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":356,"Cost":207,"Date":"8/28/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":834,"Cost":733,"Date":"8/29/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":931,"Cost":544,"Date":"8/31/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":85,"Cost":77,"Date":"9/8/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":831,"Cost":749,"Date":"9/13/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":650,"Cost":354,"Date":"9/14/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":300,"Cost":259,"Date":"9/19/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":734,"Cost":442,"Date":"9/25/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":231,"Cost":142,"Date":"10/4/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":647,"Cost":417,"Date":"10/10/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":439,"Cost":299,"Date":"10/17/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":185,"Cost":122,"Date":"10/28/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":292,"Cost":173,"Date":"10/30/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":10,"Cost":9,"Date":"11/1/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":836,"Cost":761,"Date":"11/15/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":514,"Cost":396,"Date":"11/25/2023"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":922,"Cost":820,"Date":"1/10/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":758,"Cost":623,"Date":"1/14/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":728,"Cost":479,"Date":"1/20/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":69,"Cost":35,"Date":"2/8/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":400,"Cost":206,"Date":"2/25/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":247,"Cost":134,"Date":"3/7/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":665,"Cost":334,"Date":"3/14/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":653,"Cost":400,"Date":"3/27/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":426,"Cost":217,"Date":"4/5/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":318,"Cost":194,"Date":"4/14/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":499,"Cost":303,"Date":"5/3/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":339,"Cost":247,"Date":"5/9/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":258,"Cost":172,"Date":"5/15/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":261,"Cost":239,"Date":"5/25/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":766,"Cost":408,"Date":"5/26/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":551,"Cost":445,"Date":"5/31/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":164,"Cost":105,"Date":"7/27/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":412,"Cost":237,"Date":"9/17/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":260,"Cost":206,"Date":"10/6/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":48,"Cost":38,"Date":"10/8/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":39,"Cost":32,"Date":"10/26/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":729,"Cost":501,"Date":"11/16/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":811,"Cost":582,"Date":"11/18/2024"},{"Store":"Kaisergalerie, Hamburg","Brand":"ARKET","Country":"Germany","Sale":601,"Cost":506,"Date":"12/1/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":296,"Cost":240,"Date":"2/9/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":395,"Cost":231,"Date":"2/11/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":658,"Cost":459,"Date":"3/10/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":430,"Cost":270,"Date":"3/16/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":803,"Cost":583,"Date":"3/18/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":606,"Cost":384,"Date":"3/20/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":91,"Cost":86,"Date":"3/26/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":422,"Cost":240,"Date":"6/2/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":320,"Cost":223,"Date":"6/10/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":286,"Cost":224,"Date":"6/16/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":853,"Cost":432,"Date":"6/25/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":522,"Cost":412,"Date":"7/19/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":458,"Cost":361,"Date":"7/21/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":95,"Cost":84,"Date":"7/25/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":735,"Cost":376,"Date":"8/4/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":202,"Cost":188,"Date":"9/2/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":214,"Cost":171,"Date":"9/4/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":582,"Cost":387,"Date":"9/19/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":768,"Cost":614,"Date":"9/29/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":144,"Cost":120,"Date":"10/2/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":927,"Cost":511,"Date":"10/15/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":42,"Cost":34,"Date":"10/30/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":31,"Cost":29,"Date":"11/9/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":658,"Cost":444,"Date":"11/23/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":967,"Cost":594,"Date":"11/30/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":464,"Cost":295,"Date":"12/8/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":778,"Cost":594,"Date":"12/11/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":234,"Cost":118,"Date":"1/15/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":921,"Cost":493,"Date":"1/24/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":107,"Cost":91,"Date":"2/3/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":196,"Cost":131,"Date":"2/4/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":913,"Cost":618,"Date":"3/9/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":624,"Cost":591,"Date":"3/12/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":849,"Cost":580,"Date":"4/19/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":834,"Cost":600,"Date":"5/3/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":912,"Cost":491,"Date":"5/4/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":869,"Cost":642,"Date":"6/8/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":541,"Cost":465,"Date":"6/26/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":515,"Cost":329,"Date":"7/4/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":283,"Cost":259,"Date":"7/13/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":207,"Cost":176,"Date":"8/8/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":688,"Cost":416,"Date":"8/26/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":271,"Cost":194,"Date":"9/2/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":578,"Cost":290,"Date":"9/29/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":640,"Cost":396,"Date":"10/12/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":850,"Cost":579,"Date":"11/2/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":905,"Cost":837,"Date":"11/4/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":542,"Cost":395,"Date":"11/7/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":120,"Cost":89,"Date":"12/1/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":388,"Cost":353,"Date":"12/4/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":678,"Cost":384,"Date":"12/7/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":310,"Cost":245,"Date":"12/18/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":825,"Cost":753,"Date":"12/20/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":887,"Cost":571,"Date":"12/20/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":15,"Cost":12,"Date":"12/21/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":997,"Cost":857,"Date":"1/9/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":998,"Cost":592,"Date":"2/5/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":703,"Cost":352,"Date":"2/16/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":993,"Cost":908,"Date":"2/16/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":531,"Cost":354,"Date":"2/18/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":977,"Cost":632,"Date":"2/22/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":748,"Cost":449,"Date":"2/25/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":676,"Cost":639,"Date":"3/8/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":395,"Cost":221,"Date":"4/2/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":271,"Cost":247,"Date":"4/3/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":875,"Cost":708,"Date":"4/9/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":819,"Cost":467,"Date":"4/10/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":554,"Cost":452,"Date":"4/19/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":784,"Cost":440,"Date":"5/17/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":47,"Cost":44,"Date":"5/22/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":594,"Cost":503,"Date":"6/20/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":11,"Cost":8,"Date":"7/1/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":436,"Cost":260,"Date":"7/4/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":980,"Cost":816,"Date":"7/8/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":394,"Cost":223,"Date":"7/9/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":96,"Cost":67,"Date":"7/14/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":484,"Cost":418,"Date":"7/19/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":77,"Cost":52,"Date":"8/1/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":612,"Cost":573,"Date":"8/6/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":962,"Cost":833,"Date":"8/7/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":870,"Cost":806,"Date":"8/22/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":974,"Cost":696,"Date":"8/31/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":446,"Cost":398,"Date":"9/1/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":710,"Cost":671,"Date":"9/1/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":422,"Cost":359,"Date":"9/17/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":884,"Cost":755,"Date":"9/29/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":57,"Cost":30,"Date":"11/7/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":250,"Cost":220,"Date":"11/26/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":68,"Cost":49,"Date":"11/27/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":758,"Cost":508,"Date":"12/5/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":255,"Cost":167,"Date":"12/26/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":456,"Cost":375,"Date":"12/31/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":42,"Cost":36,"Date":"1/20/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":889,"Cost":684,"Date":"2/2/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":309,"Cost":213,"Date":"2/8/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":461,"Cost":339,"Date":"2/27/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":449,"Cost":409,"Date":"3/1/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":537,"Cost":335,"Date":"3/1/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":445,"Cost":263,"Date":"3/19/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":218,"Cost":126,"Date":"3/28/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":814,"Cost":503,"Date":"5/21/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":350,"Cost":320,"Date":"7/21/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":941,"Cost":711,"Date":"8/5/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":88,"Cost":49,"Date":"8/12/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":412,"Cost":219,"Date":"8/21/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":265,"Cost":159,"Date":"8/23/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":655,"Cost":376,"Date":"9/3/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":520,"Cost":286,"Date":"9/5/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":210,"Cost":146,"Date":"10/6/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":972,"Cost":766,"Date":"10/19/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":819,"Cost":422,"Date":"11/15/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":720,"Cost":499,"Date":"12/8/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":239,"Cost":147,"Date":"1/8/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":991,"Cost":872,"Date":"1/14/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":876,"Cost":604,"Date":"1/19/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":321,"Cost":282,"Date":"1/28/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":702,"Cost":430,"Date":"1/31/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":544,"Cost":396,"Date":"3/27/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":729,"Cost":513,"Date":"4/20/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":79,"Cost":69,"Date":"4/24/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":894,"Cost":467,"Date":"4/28/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":903,"Cost":565,"Date":"5/15/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":8,"Cost":6,"Date":"5/16/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":522,"Cost":447,"Date":"5/18/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":686,"Cost":488,"Date":"6/2/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":717,"Cost":448,"Date":"6/3/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":231,"Cost":128,"Date":"6/5/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":618,"Cost":356,"Date":"6/7/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":142,"Cost":99,"Date":"6/14/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":813,"Cost":684,"Date":"6/20/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":794,"Cost":671,"Date":"6/24/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":524,"Cost":275,"Date":"7/4/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":141,"Cost":106,"Date":"7/9/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":60,"Cost":33,"Date":"7/12/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":840,"Cost":665,"Date":"8/14/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":362,"Cost":274,"Date":"8/16/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":411,"Cost":359,"Date":"8/23/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":393,"Cost":301,"Date":"9/2/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":133,"Cost":77,"Date":"9/3/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":75,"Cost":49,"Date":"9/16/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":498,"Cost":308,"Date":"10/4/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":729,"Cost":632,"Date":"11/1/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":472,"Cost":372,"Date":"11/2/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":133,"Cost":84,"Date":"12/17/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":23,"Cost":13,"Date":"2/10/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":364,"Cost":282,"Date":"2/28/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":314,"Cost":236,"Date":"3/4/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":582,"Cost":450,"Date":"3/9/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":71,"Cost":54,"Date":"3/9/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":702,"Cost":572,"Date":"3/11/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":196,"Cost":145,"Date":"3/17/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":691,"Cost":526,"Date":"3/17/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":915,"Cost":812,"Date":"3/23/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":162,"Cost":111,"Date":"4/1/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":785,"Cost":597,"Date":"5/7/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":916,"Cost":752,"Date":"5/10/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":16,"Cost":11,"Date":"5/20/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":155,"Cost":144,"Date":"6/2/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":29,"Cost":22,"Date":"6/11/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":337,"Cost":259,"Date":"6/16/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":754,"Cost":567,"Date":"6/16/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":727,"Cost":461,"Date":"7/10/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":593,"Cost":346,"Date":"7/11/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":965,"Cost":741,"Date":"8/28/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":813,"Cost":706,"Date":"8/29/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":280,"Cost":239,"Date":"8/31/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":486,"Cost":377,"Date":"9/8/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":343,"Cost":205,"Date":"9/13/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":705,"Cost":451,"Date":"9/14/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":360,"Cost":200,"Date":"9/19/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":844,"Cost":522,"Date":"9/25/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":158,"Cost":100,"Date":"10/4/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":531,"Cost":418,"Date":"10/10/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":311,"Cost":230,"Date":"10/17/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":591,"Cost":464,"Date":"10/28/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":801,"Cost":488,"Date":"10/30/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":673,"Cost":425,"Date":"11/1/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":790,"Cost":408,"Date":"11/15/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":393,"Cost":223,"Date":"11/25/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":190,"Cost":128,"Date":"1/10/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":252,"Cost":224,"Date":"1/14/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":883,"Cost":693,"Date":"1/20/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":879,"Cost":459,"Date":"2/8/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":636,"Cost":476,"Date":"2/25/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":705,"Cost":401,"Date":"3/7/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":869,"Cost":471,"Date":"3/14/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":953,"Cost":791,"Date":"3/27/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":696,"Cost":508,"Date":"4/5/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":128,"Cost":118,"Date":"4/14/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":70,"Cost":41,"Date":"5/3/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":315,"Cost":270,"Date":"5/9/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":544,"Cost":427,"Date":"5/15/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":220,"Cost":181,"Date":"5/25/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":261,"Cost":154,"Date":"5/26/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":988,"Cost":724,"Date":"5/31/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":798,"Cost":684,"Date":"7/27/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":638,"Cost":520,"Date":"9/17/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":908,"Cost":660,"Date":"10/6/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":382,"Cost":211,"Date":"10/8/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":299,"Cost":256,"Date":"10/26/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":908,"Cost":454,"Date":"11/16/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":680,"Cost":613,"Date":"11/18/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"ARKET","Country":"Germany","Sale":169,"Cost":102,"Date":"12/1/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":139,"Cost":124,"Date":"2/9/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":685,"Cost":618,"Date":"2/11/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":361,"Cost":258,"Date":"3/10/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":708,"Cost":410,"Date":"3/16/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":730,"Cost":490,"Date":"3/18/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":391,"Cost":324,"Date":"3/20/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":133,"Cost":88,"Date":"3/26/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":902,"Cost":672,"Date":"6/2/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":881,"Cost":586,"Date":"6/10/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":509,"Cost":295,"Date":"6/16/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":677,"Cost":534,"Date":"6/25/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":823,"Cost":539,"Date":"7/19/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":555,"Cost":345,"Date":"7/21/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":333,"Cost":173,"Date":"7/25/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":84,"Cost":52,"Date":"8/4/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":327,"Cost":284,"Date":"9/2/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":986,"Cost":712,"Date":"9/4/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":662,"Cost":353,"Date":"9/19/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":388,"Cost":305,"Date":"9/29/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":786,"Cost":655,"Date":"10/2/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":320,"Cost":212,"Date":"10/15/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":498,"Cost":424,"Date":"10/30/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":565,"Cost":331,"Date":"11/9/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":593,"Cost":448,"Date":"11/23/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":404,"Cost":229,"Date":"11/30/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":938,"Cost":833,"Date":"12/8/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":249,"Cost":236,"Date":"12/11/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":120,"Cost":69,"Date":"1/15/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":446,"Cost":305,"Date":"1/24/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":40,"Cost":38,"Date":"2/3/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":474,"Cost":442,"Date":"2/4/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":286,"Cost":248,"Date":"3/9/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":822,"Cost":444,"Date":"3/12/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":504,"Cost":296,"Date":"4/19/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":133,"Cost":71,"Date":"5/3/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":983,"Cost":927,"Date":"5/4/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":887,"Cost":722,"Date":"6/8/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":809,"Cost":669,"Date":"6/26/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":737,"Cost":384,"Date":"7/4/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":57,"Cost":47,"Date":"7/13/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":951,"Cost":869,"Date":"8/8/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":903,"Cost":808,"Date":"8/26/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":915,"Cost":830,"Date":"9/2/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":198,"Cost":110,"Date":"9/29/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":565,"Cost":432,"Date":"10/12/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":39,"Cost":37,"Date":"11/2/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":406,"Cost":341,"Date":"11/4/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":190,"Cost":133,"Date":"11/7/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":559,"Cost":435,"Date":"12/1/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":356,"Cost":305,"Date":"12/4/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":149,"Cost":123,"Date":"12/7/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":841,"Cost":795,"Date":"12/18/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":53,"Cost":33,"Date":"12/20/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":677,"Cost":569,"Date":"12/20/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":689,"Cost":634,"Date":"12/21/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":68,"Cost":43,"Date":"1/9/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":537,"Cost":285,"Date":"2/5/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":552,"Cost":443,"Date":"2/16/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":854,"Cost":714,"Date":"2/16/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":587,"Cost":554,"Date":"2/18/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":338,"Cost":191,"Date":"2/22/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":351,"Cost":202,"Date":"2/25/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":797,"Cost":502,"Date":"3/8/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":745,"Cost":613,"Date":"4/2/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":181,"Cost":126,"Date":"4/3/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":23,"Cost":19,"Date":"4/9/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":341,"Cost":235,"Date":"4/10/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":730,"Cost":571,"Date":"4/19/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":311,"Cost":201,"Date":"5/17/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":955,"Cost":905,"Date":"5/22/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":281,"Cost":156,"Date":"6/20/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":825,"Cost":575,"Date":"7/1/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":46,"Cost":25,"Date":"7/4/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":759,"Cost":431,"Date":"7/8/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":194,"Cost":123,"Date":"7/9/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":685,"Cost":364,"Date":"7/14/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":245,"Cost":159,"Date":"7/19/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":421,"Cost":231,"Date":"8/1/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":478,"Cost":268,"Date":"8/6/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":854,"Cost":770,"Date":"8/7/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":449,"Cost":400,"Date":"8/22/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":817,"Cost":468,"Date":"8/31/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":797,"Cost":524,"Date":"9/1/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":802,"Cost":474,"Date":"9/1/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":791,"Cost":747,"Date":"9/17/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":392,"Cost":229,"Date":"9/29/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":724,"Cost":644,"Date":"11/7/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":656,"Cost":607,"Date":"11/26/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":634,"Cost":338,"Date":"11/27/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":174,"Cost":158,"Date":"12/5/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":232,"Cost":162,"Date":"12/26/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":293,"Cost":187,"Date":"12/31/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":341,"Cost":247,"Date":"1/20/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":685,"Cost":553,"Date":"2/2/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":16,"Cost":9,"Date":"2/8/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":13,"Cost":11,"Date":"2/27/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":15,"Cost":11,"Date":"3/1/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":865,"Cost":738,"Date":"3/1/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":299,"Cost":194,"Date":"3/19/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":795,"Cost":603,"Date":"3/28/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":371,"Cost":237,"Date":"5/21/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":937,"Cost":749,"Date":"7/21/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":816,"Cost":622,"Date":"8/5/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":575,"Cost":518,"Date":"8/12/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":917,"Cost":654,"Date":"8/21/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":690,"Cost":625,"Date":"8/23/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":595,"Cost":469,"Date":"9/3/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":153,"Cost":77,"Date":"9/5/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":73,"Cost":68,"Date":"10/6/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":761,"Cost":416,"Date":"10/19/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":570,"Cost":426,"Date":"11/15/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":315,"Cost":194,"Date":"12/8/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":71,"Cost":52,"Date":"1/8/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":899,"Cost":580,"Date":"1/14/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":814,"Cost":438,"Date":"1/19/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":787,"Cost":517,"Date":"1/28/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":317,"Cost":161,"Date":"1/31/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":51,"Cost":46,"Date":"3/27/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":134,"Cost":85,"Date":"4/20/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":734,"Cost":548,"Date":"4/24/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":596,"Cost":424,"Date":"4/28/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":304,"Cost":265,"Date":"5/15/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":874,"Cost":559,"Date":"5/16/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":508,"Cost":393,"Date":"5/18/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":128,"Cost":86,"Date":"6/2/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":364,"Cost":294,"Date":"6/3/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":666,"Cost":622,"Date":"6/5/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":159,"Cost":84,"Date":"6/7/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":985,"Cost":514,"Date":"6/14/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":536,"Cost":478,"Date":"6/20/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":642,"Cost":554,"Date":"6/24/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":107,"Cost":59,"Date":"7/4/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":757,"Cost":589,"Date":"7/9/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":726,"Cost":665,"Date":"7/12/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":150,"Cost":93,"Date":"8/14/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":390,"Cost":267,"Date":"8/16/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":100,"Cost":67,"Date":"8/23/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":837,"Cost":553,"Date":"9/2/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":66,"Cost":39,"Date":"9/3/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":121,"Cost":75,"Date":"9/16/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":895,"Cost":467,"Date":"10/4/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":343,"Cost":182,"Date":"11/1/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":356,"Cost":277,"Date":"11/2/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":183,"Cost":163,"Date":"12/17/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":787,"Cost":445,"Date":"2/10/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":388,"Cost":227,"Date":"2/28/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":483,"Cost":353,"Date":"3/4/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":356,"Cost":181,"Date":"3/9/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":68,"Cost":41,"Date":"3/9/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":330,"Cost":246,"Date":"3/11/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":760,"Cost":495,"Date":"3/17/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":910,"Cost":779,"Date":"3/17/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":388,"Cost":326,"Date":"3/23/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":39,"Cost":28,"Date":"4/1/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":161,"Cost":106,"Date":"5/7/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":129,"Cost":79,"Date":"5/10/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":986,"Cost":521,"Date":"5/20/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":932,"Cost":699,"Date":"6/2/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":738,"Cost":589,"Date":"6/11/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":82,"Cost":61,"Date":"6/16/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":340,"Cost":233,"Date":"6/16/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":477,"Cost":425,"Date":"7/10/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":502,"Cost":375,"Date":"7/11/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":243,"Cost":138,"Date":"8/28/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":832,"Cost":591,"Date":"8/29/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":281,"Cost":152,"Date":"8/31/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":297,"Cost":170,"Date":"9/8/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":472,"Cost":242,"Date":"9/13/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":126,"Cost":111,"Date":"9/14/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":501,"Cost":413,"Date":"9/19/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":262,"Cost":146,"Date":"9/25/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":622,"Cost":499,"Date":"10/4/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":122,"Cost":87,"Date":"10/10/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":323,"Cost":218,"Date":"10/17/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":146,"Cost":130,"Date":"10/28/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":330,"Cost":230,"Date":"10/30/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":190,"Cost":147,"Date":"11/1/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":821,"Cost":742,"Date":"11/15/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":622,"Cost":436,"Date":"11/25/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":217,"Cost":162,"Date":"1/10/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":649,"Cost":418,"Date":"1/14/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":959,"Cost":619,"Date":"1/20/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":610,"Cost":476,"Date":"2/8/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":526,"Cost":266,"Date":"2/25/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":340,"Cost":250,"Date":"3/7/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":234,"Cost":170,"Date":"3/14/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":470,"Cost":265,"Date":"3/27/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":873,"Cost":745,"Date":"4/5/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":280,"Cost":160,"Date":"4/14/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":26,"Cost":14,"Date":"5/3/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":664,"Cost":620,"Date":"5/9/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":868,"Cost":596,"Date":"5/15/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":526,"Cost":322,"Date":"5/25/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":311,"Cost":174,"Date":"5/26/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":799,"Cost":573,"Date":"5/31/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":260,"Cost":180,"Date":"7/27/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":196,"Cost":106,"Date":"9/17/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":198,"Cost":141,"Date":"10/6/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":59,"Cost":43,"Date":"10/8/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":849,"Cost":512,"Date":"10/26/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":502,"Cost":450,"Date":"11/16/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":255,"Cost":240,"Date":"11/18/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":475,"Cost":285,"Date":"12/1/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":46,"Cost":33,"Date":"2/9/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":592,"Cost":534,"Date":"2/11/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":696,"Cost":590,"Date":"3/10/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":97,"Cost":76,"Date":"3/16/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":837,"Cost":490,"Date":"3/18/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":829,"Cost":751,"Date":"3/20/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":646,"Cost":484,"Date":"3/26/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":316,"Cost":213,"Date":"6/2/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":917,"Cost":847,"Date":"6/10/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":644,"Cost":441,"Date":"6/16/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":795,"Cost":447,"Date":"6/25/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":404,"Cost":335,"Date":"7/19/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":517,"Cost":378,"Date":"7/21/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":333,"Cost":293,"Date":"7/25/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":936,"Cost":750,"Date":"8/4/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":250,"Cost":194,"Date":"9/2/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":59,"Cost":30,"Date":"9/4/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":288,"Cost":270,"Date":"9/19/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":491,"Cost":377,"Date":"9/29/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":163,"Cost":83,"Date":"10/2/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":547,"Cost":463,"Date":"10/15/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":544,"Cost":388,"Date":"10/30/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":335,"Cost":255,"Date":"11/9/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":240,"Cost":217,"Date":"11/23/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":252,"Cost":160,"Date":"11/30/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":835,"Cost":623,"Date":"12/8/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":117,"Cost":100,"Date":"12/11/2018"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":7,"Cost":4,"Date":"1/15/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":402,"Cost":360,"Date":"1/24/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":153,"Cost":98,"Date":"2/3/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":53,"Cost":29,"Date":"2/4/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":75,"Cost":60,"Date":"3/9/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":404,"Cost":246,"Date":"3/12/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":411,"Cost":338,"Date":"4/19/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":818,"Cost":631,"Date":"5/3/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":538,"Cost":502,"Date":"5/4/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":826,"Cost":777,"Date":"6/8/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":360,"Cost":275,"Date":"6/26/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":139,"Cost":106,"Date":"7/4/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":946,"Cost":763,"Date":"7/13/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":774,"Cost":643,"Date":"8/8/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":864,"Cost":710,"Date":"8/26/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":759,"Cost":646,"Date":"9/2/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":202,"Cost":122,"Date":"9/29/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":130,"Cost":121,"Date":"10/12/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":684,"Cost":575,"Date":"11/2/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":168,"Cost":123,"Date":"11/4/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":636,"Cost":384,"Date":"11/7/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":645,"Cost":460,"Date":"12/1/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":754,"Cost":675,"Date":"12/4/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":418,"Cost":227,"Date":"12/7/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":360,"Cost":206,"Date":"12/18/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":228,"Cost":173,"Date":"12/20/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":216,"Cost":173,"Date":"12/20/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":499,"Cost":350,"Date":"12/21/2019"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":243,"Cost":182,"Date":"1/9/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":841,"Cost":674,"Date":"2/5/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":582,"Cost":515,"Date":"2/16/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":918,"Cost":837,"Date":"2/16/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":620,"Cost":461,"Date":"2/18/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":609,"Cost":533,"Date":"2/22/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":65,"Cost":37,"Date":"2/25/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":382,"Cost":359,"Date":"3/8/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":851,"Cost":435,"Date":"4/2/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":743,"Cost":572,"Date":"4/3/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":234,"Cost":209,"Date":"4/9/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":886,"Cost":729,"Date":"4/10/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":541,"Cost":300,"Date":"4/19/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":522,"Cost":300,"Date":"5/17/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":745,"Cost":656,"Date":"5/22/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":273,"Cost":256,"Date":"6/20/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":217,"Cost":178,"Date":"7/1/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":728,"Cost":637,"Date":"7/4/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":532,"Cost":335,"Date":"7/8/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":55,"Cost":31,"Date":"7/9/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":86,"Cost":78,"Date":"7/14/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":405,"Cost":326,"Date":"7/19/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":833,"Cost":721,"Date":"8/1/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":341,"Cost":265,"Date":"8/6/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":919,"Cost":517,"Date":"8/7/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":539,"Cost":424,"Date":"8/22/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":561,"Cost":305,"Date":"8/31/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":788,"Cost":557,"Date":"9/1/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":103,"Cost":98,"Date":"9/1/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":755,"Cost":383,"Date":"9/17/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":350,"Cost":323,"Date":"9/29/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":839,"Cost":438,"Date":"11/7/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":488,"Cost":360,"Date":"11/26/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":497,"Cost":319,"Date":"11/27/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":550,"Cost":415,"Date":"12/5/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":994,"Cost":865,"Date":"12/26/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":736,"Cost":491,"Date":"12/31/2020"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":44,"Cost":39,"Date":"1/20/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":866,"Cost":818,"Date":"2/2/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":376,"Cost":308,"Date":"2/8/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":190,"Cost":158,"Date":"2/27/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":916,"Cost":547,"Date":"3/1/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":637,"Cost":506,"Date":"3/1/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":855,"Cost":662,"Date":"3/19/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":56,"Cost":48,"Date":"3/28/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":663,"Cost":431,"Date":"5/21/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":447,"Cost":312,"Date":"7/21/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":188,"Cost":113,"Date":"8/5/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":61,"Cost":38,"Date":"8/12/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":339,"Cost":298,"Date":"8/21/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":848,"Cost":572,"Date":"8/23/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":910,"Cost":560,"Date":"9/3/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":546,"Cost":293,"Date":"9/5/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":457,"Cost":424,"Date":"10/6/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":26,"Cost":24,"Date":"10/19/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":238,"Cost":151,"Date":"11/15/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":148,"Cost":112,"Date":"12/8/2021"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":738,"Cost":541,"Date":"1/8/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":280,"Cost":177,"Date":"1/14/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":967,"Cost":805,"Date":"1/19/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":727,"Cost":378,"Date":"1/28/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":153,"Cost":104,"Date":"1/31/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":798,"Cost":600,"Date":"3/27/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":205,"Cost":193,"Date":"4/20/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":70,"Cost":61,"Date":"4/24/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":219,"Cost":169,"Date":"4/28/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":531,"Cost":445,"Date":"5/15/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":615,"Cost":378,"Date":"5/16/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":100,"Cost":77,"Date":"5/18/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":987,"Cost":814,"Date":"6/2/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":755,"Cost":662,"Date":"6/3/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":655,"Cost":456,"Date":"6/5/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":450,"Cost":418,"Date":"6/7/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":932,"Cost":811,"Date":"6/14/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":598,"Cost":417,"Date":"6/20/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":648,"Cost":605,"Date":"6/24/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":827,"Cost":546,"Date":"7/4/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":234,"Cost":124,"Date":"7/9/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":646,"Cost":491,"Date":"7/12/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":953,"Cost":664,"Date":"8/14/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":620,"Cost":438,"Date":"8/16/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":102,"Cost":94,"Date":"8/23/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":269,"Cost":161,"Date":"9/2/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":446,"Cost":368,"Date":"9/3/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":92,"Cost":73,"Date":"9/16/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":229,"Cost":151,"Date":"10/4/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":867,"Cost":613,"Date":"11/1/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":931,"Cost":833,"Date":"11/2/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":894,"Cost":662,"Date":"12/17/2022"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":129,"Cost":99,"Date":"2/10/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":730,"Cost":370,"Date":"2/28/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":914,"Cost":531,"Date":"3/4/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":795,"Cost":425,"Date":"3/9/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":557,"Cost":463,"Date":"3/9/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":342,"Cost":224,"Date":"3/11/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":786,"Cost":440,"Date":"3/17/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":525,"Cost":408,"Date":"3/17/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":926,"Cost":627,"Date":"3/23/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":795,"Cost":534,"Date":"4/1/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":189,"Cost":147,"Date":"5/7/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":1000,"Cost":828,"Date":"5/10/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":554,"Cost":479,"Date":"5/20/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":511,"Cost":441,"Date":"6/2/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":444,"Cost":282,"Date":"6/11/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":128,"Cost":107,"Date":"6/16/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":490,"Cost":315,"Date":"6/16/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":600,"Cost":476,"Date":"7/10/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":93,"Cost":74,"Date":"7/11/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":637,"Cost":457,"Date":"8/28/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":652,"Cost":517,"Date":"8/29/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":980,"Cost":516,"Date":"8/31/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":679,"Cost":627,"Date":"9/8/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":223,"Cost":114,"Date":"9/13/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":781,"Cost":621,"Date":"9/14/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":193,"Cost":172,"Date":"9/19/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":249,"Cost":170,"Date":"9/25/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":838,"Cost":778,"Date":"10/4/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":519,"Cost":276,"Date":"10/10/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":449,"Cost":292,"Date":"10/17/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":69,"Cost":60,"Date":"10/28/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":561,"Cost":453,"Date":"10/30/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":170,"Cost":86,"Date":"11/1/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":222,"Cost":170,"Date":"11/15/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":67,"Cost":53,"Date":"11/25/2023"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":543,"Cost":416,"Date":"1/10/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":180,"Cost":162,"Date":"1/14/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":508,"Cost":353,"Date":"1/20/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":691,"Cost":646,"Date":"2/8/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":777,"Cost":421,"Date":"2/25/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":465,"Cost":345,"Date":"3/7/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":867,"Cost":434,"Date":"3/14/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":445,"Cost":320,"Date":"3/27/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":779,"Cost":506,"Date":"4/5/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":96,"Cost":77,"Date":"4/14/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":265,"Cost":167,"Date":"5/3/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":193,"Cost":100,"Date":"5/9/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":38,"Cost":26,"Date":"5/15/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":114,"Cost":108,"Date":"5/25/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":567,"Cost":385,"Date":"5/26/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":393,"Cost":234,"Date":"5/31/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":35,"Cost":33,"Date":"7/27/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":375,"Cost":343,"Date":"9/17/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":570,"Cost":517,"Date":"10/6/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":221,"Cost":163,"Date":"10/8/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":198,"Cost":183,"Date":"10/26/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":967,"Cost":871,"Date":"11/16/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":63,"Cost":44,"Date":"11/18/2024"},{"Store":"Post Galerie, Karlsruhe","Brand":"Sellpy","Country":"Germany","Sale":615,"Cost":560,"Date":"12/1/2024"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":155,"Cost":97,"Date":"2/9/2018"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":105,"Cost":54,"Date":"2/11/2018"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":372,"Cost":242,"Date":"3/10/2018"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":306,"Cost":202,"Date":"3/16/2018"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":72,"Cost":68,"Date":"3/18/2018"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":961,"Cost":716,"Date":"3/20/2018"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":831,"Cost":574,"Date":"3/26/2018"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":918,"Cost":803,"Date":"6/2/2018"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":972,"Cost":604,"Date":"6/10/2018"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":788,"Cost":534,"Date":"6/16/2018"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":185,"Cost":98,"Date":"6/25/2018"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":33,"Cost":30,"Date":"7/19/2018"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":609,"Cost":339,"Date":"7/21/2018"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":312,"Cost":198,"Date":"7/25/2018"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":66,"Cost":51,"Date":"8/4/2018"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":311,"Cost":205,"Date":"9/2/2018"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":834,"Cost":424,"Date":"9/4/2018"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":14,"Cost":10,"Date":"9/19/2018"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":263,"Cost":214,"Date":"9/29/2018"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":517,"Cost":304,"Date":"10/2/2018"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":655,"Cost":462,"Date":"10/15/2018"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":10,"Cost":8,"Date":"10/30/2018"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":489,"Cost":258,"Date":"11/9/2018"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":622,"Cost":311,"Date":"11/23/2018"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":207,"Cost":121,"Date":"11/30/2018"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":802,"Cost":438,"Date":"12/8/2018"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":835,"Cost":457,"Date":"12/11/2018"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":893,"Cost":550,"Date":"1/15/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":975,"Cost":757,"Date":"1/24/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":557,"Cost":386,"Date":"2/3/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":61,"Cost":53,"Date":"2/4/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":599,"Cost":319,"Date":"3/9/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":294,"Cost":222,"Date":"3/12/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":591,"Cost":512,"Date":"4/19/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":600,"Cost":568,"Date":"5/3/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":320,"Cost":254,"Date":"5/4/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":705,"Cost":642,"Date":"6/8/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":631,"Cost":564,"Date":"6/26/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":726,"Cost":621,"Date":"7/4/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":936,"Cost":565,"Date":"7/13/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":272,"Cost":240,"Date":"8/8/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":219,"Cost":138,"Date":"8/26/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":541,"Cost":415,"Date":"9/2/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":525,"Cost":482,"Date":"9/29/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":7,"Cost":7,"Date":"10/12/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":777,"Cost":561,"Date":"11/2/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":986,"Cost":728,"Date":"11/4/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":492,"Cost":394,"Date":"11/7/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":921,"Cost":673,"Date":"12/1/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":208,"Cost":177,"Date":"12/4/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":343,"Cost":291,"Date":"12/7/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":705,"Cost":571,"Date":"12/18/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":973,"Cost":899,"Date":"12/20/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":721,"Cost":523,"Date":"12/20/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":790,"Cost":658,"Date":"12/21/2019"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":459,"Cost":259,"Date":"1/9/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":163,"Cost":108,"Date":"2/5/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":372,"Cost":251,"Date":"2/16/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":147,"Cost":126,"Date":"2/16/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":513,"Cost":349,"Date":"2/18/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":45,"Cost":39,"Date":"2/22/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":294,"Cost":176,"Date":"2/25/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":197,"Cost":128,"Date":"3/8/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":717,"Cost":395,"Date":"4/2/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":278,"Cost":157,"Date":"4/3/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":128,"Cost":93,"Date":"4/9/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":341,"Cost":215,"Date":"4/10/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":333,"Cost":192,"Date":"4/19/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":974,"Cost":903,"Date":"5/17/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":493,"Cost":385,"Date":"5/22/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":712,"Cost":436,"Date":"6/20/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":998,"Cost":860,"Date":"7/1/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":568,"Cost":524,"Date":"7/4/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":734,"Cost":512,"Date":"7/8/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":958,"Cost":822,"Date":"7/9/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":389,"Cost":217,"Date":"7/14/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":111,"Cost":70,"Date":"7/19/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":930,"Cost":884,"Date":"8/1/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":584,"Cost":308,"Date":"8/6/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":335,"Cost":214,"Date":"8/7/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":198,"Cost":114,"Date":"8/22/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":66,"Cost":62,"Date":"8/31/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":305,"Cost":257,"Date":"9/1/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":514,"Cost":384,"Date":"9/1/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":704,"Cost":667,"Date":"9/17/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":66,"Cost":47,"Date":"9/29/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":602,"Cost":448,"Date":"11/7/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":659,"Cost":619,"Date":"11/26/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":781,"Cost":647,"Date":"11/27/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":876,"Cost":750,"Date":"12/5/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":486,"Cost":453,"Date":"12/26/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":348,"Cost":282,"Date":"12/31/2020"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":968,"Cost":592,"Date":"1/20/2021"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":900,"Cost":621,"Date":"2/2/2021"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":431,"Cost":318,"Date":"2/8/2021"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":516,"Cost":368,"Date":"2/27/2021"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":337,"Cost":174,"Date":"3/1/2021"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":252,"Cost":183,"Date":"3/1/2021"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":44,"Cost":25,"Date":"3/19/2021"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":664,"Cost":607,"Date":"3/28/2021"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":396,"Cost":245,"Date":"5/21/2021"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":804,"Cost":681,"Date":"7/21/2021"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":740,"Cost":389,"Date":"8/5/2021"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":484,"Cost":266,"Date":"8/12/2021"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":94,"Cost":85,"Date":"8/21/2021"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":198,"Cost":149,"Date":"8/23/2021"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":617,"Cost":332,"Date":"9/3/2021"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":369,"Cost":328,"Date":"9/5/2021"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":780,"Cost":737,"Date":"10/6/2021"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":698,"Cost":358,"Date":"10/19/2021"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":253,"Cost":140,"Date":"11/15/2021"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":392,"Cost":308,"Date":"12/8/2021"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":636,"Cost":416,"Date":"1/8/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":517,"Cost":458,"Date":"1/14/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":861,"Cost":494,"Date":"1/19/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":514,"Cost":385,"Date":"1/28/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":788,"Cost":510,"Date":"1/31/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":888,"Cost":480,"Date":"3/27/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":20,"Cost":18,"Date":"4/20/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":726,"Cost":496,"Date":"4/24/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":401,"Cost":210,"Date":"4/28/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":608,"Cost":497,"Date":"5/15/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":806,"Cost":736,"Date":"5/16/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":57,"Cost":41,"Date":"5/18/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":353,"Cost":255,"Date":"6/2/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":353,"Cost":218,"Date":"6/3/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":801,"Cost":539,"Date":"6/5/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":602,"Cost":446,"Date":"6/7/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":693,"Cost":435,"Date":"6/14/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":330,"Cost":181,"Date":"6/20/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":854,"Cost":808,"Date":"6/24/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":893,"Cost":567,"Date":"7/4/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":524,"Cost":439,"Date":"7/9/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":963,"Cost":764,"Date":"7/12/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":680,"Cost":497,"Date":"8/14/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":735,"Cost":661,"Date":"8/16/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":154,"Cost":88,"Date":"8/23/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":568,"Cost":461,"Date":"9/2/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":465,"Cost":286,"Date":"9/3/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":640,"Cost":503,"Date":"9/16/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":771,"Cost":595,"Date":"10/4/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":432,"Cost":394,"Date":"11/1/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":171,"Cost":160,"Date":"11/2/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":731,"Cost":694,"Date":"12/17/2022"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":149,"Cost":98,"Date":"2/10/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":735,"Cost":412,"Date":"2/28/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":410,"Cost":359,"Date":"3/4/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":919,"Cost":464,"Date":"3/9/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":757,"Cost":624,"Date":"3/9/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":56,"Cost":30,"Date":"3/11/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":155,"Cost":133,"Date":"3/17/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":411,"Cost":209,"Date":"3/17/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":746,"Cost":415,"Date":"3/23/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":262,"Cost":165,"Date":"4/1/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":1,"Cost":0,"Date":"5/7/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":914,"Cost":569,"Date":"5/10/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":909,"Cost":525,"Date":"5/20/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":669,"Cost":414,"Date":"6/2/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":947,"Cost":623,"Date":"6/11/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":932,"Cost":786,"Date":"6/16/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":47,"Cost":39,"Date":"6/16/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":249,"Cost":177,"Date":"7/10/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":159,"Cost":117,"Date":"7/11/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":594,"Cost":372,"Date":"8/28/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":46,"Cost":27,"Date":"8/29/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":778,"Cost":620,"Date":"8/31/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":460,"Cost":263,"Date":"9/8/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":999,"Cost":550,"Date":"9/13/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":715,"Cost":505,"Date":"9/14/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":546,"Cost":329,"Date":"9/19/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":362,"Cost":281,"Date":"9/25/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":205,"Cost":175,"Date":"10/4/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":502,"Cost":416,"Date":"10/10/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":325,"Cost":257,"Date":"10/17/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":814,"Cost":493,"Date":"10/28/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":290,"Cost":198,"Date":"10/30/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":934,"Cost":833,"Date":"11/1/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":429,"Cost":400,"Date":"11/15/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":79,"Cost":59,"Date":"11/25/2023"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":954,"Cost":653,"Date":"1/10/2024"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":636,"Cost":519,"Date":"1/14/2024"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":603,"Cost":536,"Date":"1/20/2024"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":244,"Cost":147,"Date":"2/8/2024"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":223,"Cost":209,"Date":"2/25/2024"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":420,"Cost":366,"Date":"3/7/2024"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":179,"Cost":107,"Date":"3/14/2024"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":864,"Cost":750,"Date":"3/27/2024"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":85,"Cost":56,"Date":"4/5/2024"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":89,"Cost":79,"Date":"4/14/2024"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":854,"Cost":556,"Date":"5/3/2024"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":162,"Cost":142,"Date":"5/9/2024"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":548,"Cost":509,"Date":"5/15/2024"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":156,"Cost":118,"Date":"5/25/2024"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":94,"Cost":86,"Date":"5/26/2024"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":114,"Cost":88,"Date":"5/31/2024"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":356,"Cost":228,"Date":"7/27/2024"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":677,"Cost":517,"Date":"9/17/2024"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":561,"Cost":284,"Date":"10/6/2024"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":799,"Cost":523,"Date":"10/8/2024"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":953,"Cost":798,"Date":"10/26/2024"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":867,"Cost":784,"Date":"11/16/2024"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":99,"Cost":69,"Date":"11/18/2024"},{"Store":"Anger 1, Erfurt","Brand":"Sellpy","Country":"Germany","Sale":582,"Cost":363,"Date":"12/1/2024"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":581,"Cost":516,"Date":"2/9/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":885,"Cost":662,"Date":"2/11/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":177,"Cost":163,"Date":"3/10/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":258,"Cost":129,"Date":"3/16/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":901,"Cost":533,"Date":"3/18/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":428,"Cost":405,"Date":"3/20/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":295,"Cost":249,"Date":"3/26/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":618,"Cost":458,"Date":"6/2/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":195,"Cost":113,"Date":"6/10/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":940,"Cost":844,"Date":"6/16/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":706,"Cost":408,"Date":"6/25/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":218,"Cost":151,"Date":"7/19/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":545,"Cost":502,"Date":"7/21/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":582,"Cost":475,"Date":"7/25/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":192,"Cost":98,"Date":"8/4/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":363,"Cost":196,"Date":"9/2/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":632,"Cost":579,"Date":"9/4/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":293,"Cost":260,"Date":"9/19/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":64,"Cost":50,"Date":"9/29/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":680,"Cost":593,"Date":"10/2/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":641,"Cost":477,"Date":"10/15/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":168,"Cost":141,"Date":"10/30/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":745,"Cost":466,"Date":"11/9/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":204,"Cost":165,"Date":"11/23/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":596,"Cost":432,"Date":"11/30/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":317,"Cost":196,"Date":"12/8/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":627,"Cost":416,"Date":"12/11/2018"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":352,"Cost":186,"Date":"1/15/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":312,"Cost":227,"Date":"1/24/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":816,"Cost":504,"Date":"2/3/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":98,"Cost":57,"Date":"2/4/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":592,"Cost":404,"Date":"3/9/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":476,"Cost":238,"Date":"3/12/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":274,"Cost":198,"Date":"4/19/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":146,"Cost":125,"Date":"5/3/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":598,"Cost":327,"Date":"5/4/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":111,"Cost":56,"Date":"6/8/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":321,"Cost":249,"Date":"6/26/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":50,"Cost":39,"Date":"7/4/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":442,"Cost":324,"Date":"7/13/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":601,"Cost":502,"Date":"8/8/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":598,"Cost":454,"Date":"8/26/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":712,"Cost":547,"Date":"9/2/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":126,"Cost":86,"Date":"9/29/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":130,"Cost":104,"Date":"10/12/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":930,"Cost":494,"Date":"11/2/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":621,"Cost":516,"Date":"11/4/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":203,"Cost":109,"Date":"11/7/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":772,"Cost":656,"Date":"12/1/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":402,"Cost":256,"Date":"12/4/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":841,"Cost":658,"Date":"12/7/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":951,"Cost":750,"Date":"12/18/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":912,"Cost":784,"Date":"12/20/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":475,"Cost":299,"Date":"12/20/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":772,"Cost":695,"Date":"12/21/2019"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":119,"Cost":99,"Date":"1/9/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":487,"Cost":406,"Date":"2/5/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":858,"Cost":752,"Date":"2/16/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":172,"Cost":126,"Date":"2/16/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":806,"Cost":623,"Date":"2/18/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":943,"Cost":540,"Date":"2/22/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":471,"Cost":375,"Date":"2/25/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":414,"Cost":316,"Date":"3/8/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":321,"Cost":192,"Date":"4/2/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":371,"Cost":317,"Date":"4/3/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":596,"Cost":340,"Date":"4/9/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":316,"Cost":295,"Date":"4/10/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":212,"Cost":159,"Date":"4/19/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":960,"Cost":630,"Date":"5/17/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":966,"Cost":797,"Date":"5/22/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":348,"Cost":317,"Date":"6/20/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":461,"Cost":281,"Date":"7/1/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":495,"Cost":305,"Date":"7/4/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":410,"Cost":359,"Date":"7/8/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":344,"Cost":276,"Date":"7/9/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":600,"Cost":364,"Date":"7/14/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":448,"Cost":252,"Date":"7/19/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":529,"Cost":458,"Date":"8/1/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":335,"Cost":293,"Date":"8/6/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":468,"Cost":421,"Date":"8/7/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":229,"Cost":171,"Date":"8/22/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":881,"Cost":585,"Date":"8/31/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":546,"Cost":427,"Date":"9/1/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":529,"Cost":451,"Date":"9/1/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":888,"Cost":830,"Date":"9/17/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":171,"Cost":111,"Date":"9/29/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":566,"Cost":419,"Date":"11/7/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":962,"Cost":883,"Date":"11/26/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":358,"Cost":300,"Date":"11/27/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":27,"Cost":17,"Date":"12/5/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":883,"Cost":728,"Date":"12/26/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":893,"Cost":468,"Date":"12/31/2020"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":82,"Cost":44,"Date":"1/20/2021"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":535,"Cost":355,"Date":"2/2/2021"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":989,"Cost":529,"Date":"2/8/2021"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":632,"Cost":536,"Date":"2/27/2021"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":570,"Cost":285,"Date":"3/1/2021"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":891,"Cost":600,"Date":"3/1/2021"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":627,"Cost":383,"Date":"3/19/2021"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":204,"Cost":154,"Date":"3/28/2021"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":555,"Cost":499,"Date":"5/21/2021"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":41,"Cost":22,"Date":"7/21/2021"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":290,"Cost":185,"Date":"8/5/2021"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":151,"Cost":121,"Date":"8/12/2021"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":675,"Cost":345,"Date":"8/21/2021"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":844,"Cost":496,"Date":"8/23/2021"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":356,"Cost":312,"Date":"9/3/2021"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":983,"Cost":879,"Date":"9/5/2021"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":320,"Cost":277,"Date":"10/6/2021"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":410,"Cost":343,"Date":"10/19/2021"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":562,"Cost":459,"Date":"11/15/2021"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":90,"Cost":62,"Date":"12/8/2021"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":652,"Cost":454,"Date":"1/8/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":903,"Cost":756,"Date":"1/14/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":805,"Cost":661,"Date":"1/19/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":206,"Cost":148,"Date":"1/28/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":340,"Cost":323,"Date":"1/31/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":327,"Cost":301,"Date":"3/27/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":374,"Cost":314,"Date":"4/20/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":277,"Cost":202,"Date":"4/24/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":120,"Cost":105,"Date":"4/28/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":418,"Cost":374,"Date":"5/15/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":274,"Cost":199,"Date":"5/16/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":857,"Cost":664,"Date":"5/18/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":204,"Cost":109,"Date":"6/2/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":868,"Cost":506,"Date":"6/3/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":51,"Cost":45,"Date":"6/5/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":459,"Cost":331,"Date":"6/7/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":729,"Cost":389,"Date":"6/14/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":986,"Cost":595,"Date":"6/20/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":384,"Cost":281,"Date":"6/24/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":282,"Cost":182,"Date":"7/4/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":612,"Cost":448,"Date":"7/9/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":137,"Cost":86,"Date":"7/12/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":954,"Cost":599,"Date":"8/14/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":710,"Cost":571,"Date":"8/16/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":212,"Cost":143,"Date":"8/23/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":596,"Cost":298,"Date":"9/2/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":906,"Cost":631,"Date":"9/3/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":451,"Cost":380,"Date":"9/16/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":107,"Cost":68,"Date":"10/4/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":751,"Cost":458,"Date":"11/1/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":523,"Cost":458,"Date":"11/2/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":305,"Cost":156,"Date":"12/17/2022"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":922,"Cost":764,"Date":"2/10/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":661,"Cost":419,"Date":"2/28/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":706,"Cost":354,"Date":"3/4/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":573,"Cost":397,"Date":"3/9/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":872,"Cost":681,"Date":"3/9/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":538,"Cost":376,"Date":"3/11/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":696,"Cost":462,"Date":"3/17/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":241,"Cost":227,"Date":"3/17/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":889,"Cost":832,"Date":"3/23/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":863,"Cost":465,"Date":"4/1/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":311,"Cost":191,"Date":"5/7/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":890,"Cost":520,"Date":"5/10/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":742,"Cost":529,"Date":"5/20/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":738,"Cost":534,"Date":"6/2/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":436,"Cost":355,"Date":"6/11/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":884,"Cost":685,"Date":"6/16/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":988,"Cost":648,"Date":"6/16/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":295,"Cost":161,"Date":"7/10/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":275,"Cost":241,"Date":"7/11/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":409,"Cost":235,"Date":"8/28/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":301,"Cost":237,"Date":"8/29/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":631,"Cost":324,"Date":"8/31/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":254,"Cost":210,"Date":"9/8/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":872,"Cost":796,"Date":"9/13/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":525,"Cost":456,"Date":"9/14/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":847,"Cost":465,"Date":"9/19/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":424,"Cost":379,"Date":"9/25/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":454,"Cost":418,"Date":"10/4/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":581,"Cost":338,"Date":"10/10/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":908,"Cost":589,"Date":"10/17/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":778,"Cost":447,"Date":"10/28/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":121,"Cost":70,"Date":"10/30/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":710,"Cost":396,"Date":"11/1/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":687,"Cost":552,"Date":"11/15/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":611,"Cost":507,"Date":"11/25/2023"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":631,"Cost":421,"Date":"1/10/2024"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":86,"Cost":60,"Date":"1/14/2024"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":420,"Cost":325,"Date":"1/20/2024"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":800,"Cost":522,"Date":"2/8/2024"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":789,"Cost":439,"Date":"2/25/2024"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":908,"Cost":534,"Date":"3/7/2024"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":448,"Cost":242,"Date":"3/14/2024"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":896,"Cost":822,"Date":"3/27/2024"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":378,"Cost":296,"Date":"4/5/2024"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":973,"Cost":631,"Date":"4/14/2024"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":312,"Cost":261,"Date":"5/3/2024"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":108,"Cost":67,"Date":"5/9/2024"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":81,"Cost":75,"Date":"5/15/2024"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":457,"Cost":413,"Date":"5/25/2024"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":594,"Cost":498,"Date":"5/26/2024"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":311,"Cost":227,"Date":"5/31/2024"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":793,"Cost":579,"Date":"7/27/2024"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":597,"Cost":481,"Date":"9/17/2024"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":801,"Cost":665,"Date":"10/6/2024"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":481,"Cost":302,"Date":"10/8/2024"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":581,"Cost":360,"Date":"10/26/2024"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":202,"Cost":104,"Date":"11/16/2024"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":209,"Cost":139,"Date":"11/18/2024"},{"Store":"Anger 1, Erfurt","Brand":"HM Home","Country":"Germany","Sale":619,"Cost":454,"Date":"12/1/2024"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":377,"Cost":250,"Date":"2/9/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":559,"Cost":397,"Date":"2/11/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":506,"Cost":411,"Date":"3/10/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":120,"Cost":106,"Date":"3/16/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":948,"Cost":510,"Date":"3/18/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":445,"Cost":422,"Date":"3/20/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":101,"Cost":82,"Date":"3/26/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":367,"Cost":343,"Date":"6/2/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":959,"Cost":590,"Date":"6/10/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":259,"Cost":140,"Date":"6/16/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":256,"Cost":210,"Date":"6/25/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":974,"Cost":593,"Date":"7/19/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":13,"Cost":8,"Date":"7/21/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":404,"Cost":253,"Date":"7/25/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":999,"Cost":856,"Date":"8/4/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":664,"Cost":502,"Date":"9/2/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":956,"Cost":619,"Date":"9/4/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":244,"Cost":177,"Date":"9/19/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":708,"Cost":671,"Date":"9/29/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":846,"Cost":541,"Date":"10/2/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":162,"Cost":131,"Date":"10/15/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":585,"Cost":388,"Date":"10/30/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":303,"Cost":182,"Date":"11/9/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":907,"Cost":733,"Date":"11/23/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":723,"Cost":498,"Date":"11/30/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":453,"Cost":421,"Date":"12/8/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":941,"Cost":722,"Date":"12/11/2018"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":147,"Cost":121,"Date":"1/15/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":502,"Cost":300,"Date":"1/24/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":63,"Cost":45,"Date":"2/3/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":302,"Cost":212,"Date":"2/4/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":102,"Cost":73,"Date":"3/9/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":762,"Cost":718,"Date":"3/12/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":119,"Cost":72,"Date":"4/19/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":524,"Cost":430,"Date":"5/3/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":74,"Cost":57,"Date":"5/4/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":885,"Cost":740,"Date":"6/8/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":575,"Cost":391,"Date":"6/26/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":949,"Cost":609,"Date":"7/4/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":614,"Cost":411,"Date":"7/13/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":762,"Cost":564,"Date":"8/8/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":420,"Cost":371,"Date":"8/26/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":629,"Cost":414,"Date":"9/2/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":943,"Cost":667,"Date":"9/29/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":323,"Cost":259,"Date":"10/12/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":783,"Cost":551,"Date":"11/2/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":805,"Cost":583,"Date":"11/4/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":30,"Cost":22,"Date":"11/7/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":319,"Cost":274,"Date":"12/1/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":468,"Cost":430,"Date":"12/4/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":846,"Cost":480,"Date":"12/7/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":456,"Cost":407,"Date":"12/18/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":58,"Cost":55,"Date":"12/20/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":298,"Cost":181,"Date":"12/20/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":147,"Cost":99,"Date":"12/21/2019"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":635,"Cost":360,"Date":"1/9/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":766,"Cost":454,"Date":"2/5/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":360,"Cost":204,"Date":"2/16/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":364,"Cost":241,"Date":"2/16/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":370,"Cost":219,"Date":"2/18/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":267,"Cost":218,"Date":"2/22/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":373,"Cost":258,"Date":"2/25/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":517,"Cost":377,"Date":"3/8/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":259,"Cost":241,"Date":"4/2/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":793,"Cost":529,"Date":"4/3/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":563,"Cost":390,"Date":"4/9/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":502,"Cost":253,"Date":"4/10/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":133,"Cost":103,"Date":"4/19/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":205,"Cost":183,"Date":"5/17/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":623,"Cost":543,"Date":"5/22/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":692,"Cost":419,"Date":"6/20/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":664,"Cost":615,"Date":"7/1/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":220,"Cost":135,"Date":"7/4/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":480,"Cost":336,"Date":"7/8/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":435,"Cost":350,"Date":"7/9/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":441,"Cost":291,"Date":"7/14/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":260,"Cost":159,"Date":"7/19/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":189,"Cost":171,"Date":"8/1/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":132,"Cost":104,"Date":"8/6/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":53,"Cost":41,"Date":"8/7/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":970,"Cost":789,"Date":"8/22/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":341,"Cost":248,"Date":"8/31/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":133,"Cost":75,"Date":"9/1/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":314,"Cost":204,"Date":"9/1/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":146,"Cost":110,"Date":"9/17/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":241,"Cost":180,"Date":"9/29/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":31,"Cost":20,"Date":"11/7/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":27,"Cost":26,"Date":"11/26/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":830,"Cost":552,"Date":"11/27/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":558,"Cost":501,"Date":"12/5/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":270,"Cost":171,"Date":"12/26/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":763,"Cost":408,"Date":"12/31/2020"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":559,"Cost":451,"Date":"1/20/2021"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":261,"Cost":218,"Date":"2/2/2021"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":639,"Cost":570,"Date":"2/8/2021"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":888,"Cost":600,"Date":"2/27/2021"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":167,"Cost":113,"Date":"3/1/2021"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":809,"Cost":428,"Date":"3/1/2021"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":872,"Cost":615,"Date":"3/19/2021"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":946,"Cost":609,"Date":"3/28/2021"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":919,"Cost":618,"Date":"5/21/2021"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":368,"Cost":200,"Date":"7/21/2021"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":241,"Cost":201,"Date":"8/5/2021"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":646,"Cost":376,"Date":"8/12/2021"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":607,"Cost":327,"Date":"8/21/2021"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":744,"Cost":451,"Date":"8/23/2021"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":774,"Cost":572,"Date":"9/3/2021"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":614,"Cost":505,"Date":"9/5/2021"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":551,"Cost":329,"Date":"10/6/2021"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":665,"Cost":533,"Date":"10/19/2021"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":924,"Cost":801,"Date":"11/15/2021"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":481,"Cost":277,"Date":"12/8/2021"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":768,"Cost":390,"Date":"1/8/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":386,"Cost":283,"Date":"1/14/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":823,"Cost":697,"Date":"1/19/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":135,"Cost":86,"Date":"1/28/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":773,"Cost":691,"Date":"1/31/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":322,"Cost":232,"Date":"3/27/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":768,"Cost":624,"Date":"4/20/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":871,"Cost":669,"Date":"4/24/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":121,"Cost":71,"Date":"4/28/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":854,"Cost":559,"Date":"5/15/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":811,"Cost":714,"Date":"5/16/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":777,"Cost":723,"Date":"5/18/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":355,"Cost":286,"Date":"6/2/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":458,"Cost":334,"Date":"6/3/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":859,"Cost":533,"Date":"6/5/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":869,"Cost":479,"Date":"6/7/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":756,"Cost":620,"Date":"6/14/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":292,"Cost":265,"Date":"6/20/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":189,"Cost":105,"Date":"6/24/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":788,"Cost":524,"Date":"7/4/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":632,"Cost":394,"Date":"7/9/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":996,"Cost":623,"Date":"7/12/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":646,"Cost":528,"Date":"8/14/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":707,"Cost":501,"Date":"8/16/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":561,"Cost":320,"Date":"8/23/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":820,"Cost":649,"Date":"9/2/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":66,"Cost":33,"Date":"9/3/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":80,"Cost":69,"Date":"9/16/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":4,"Cost":3,"Date":"10/4/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":53,"Cost":36,"Date":"11/1/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":494,"Cost":418,"Date":"11/2/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":890,"Cost":454,"Date":"12/17/2022"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":430,"Cost":344,"Date":"2/10/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":633,"Cost":454,"Date":"2/28/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":919,"Cost":676,"Date":"3/4/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":968,"Cost":675,"Date":"3/9/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":892,"Cost":538,"Date":"3/9/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":888,"Cost":527,"Date":"3/11/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":359,"Cost":246,"Date":"3/17/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":520,"Cost":340,"Date":"3/17/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":951,"Cost":650,"Date":"3/23/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":591,"Cost":532,"Date":"4/1/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":836,"Cost":542,"Date":"5/7/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":105,"Cost":55,"Date":"5/10/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":895,"Cost":605,"Date":"5/20/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":497,"Cost":343,"Date":"6/2/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":240,"Cost":122,"Date":"6/11/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":999,"Cost":946,"Date":"6/16/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":512,"Cost":414,"Date":"6/16/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":445,"Cost":223,"Date":"7/10/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":753,"Cost":453,"Date":"7/11/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":551,"Cost":334,"Date":"8/28/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":653,"Cost":610,"Date":"8/29/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":574,"Cost":418,"Date":"8/31/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":817,"Cost":430,"Date":"9/8/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":110,"Cost":91,"Date":"9/13/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":265,"Cost":156,"Date":"9/14/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":978,"Cost":610,"Date":"9/19/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":481,"Cost":244,"Date":"9/25/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":798,"Cost":558,"Date":"10/4/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":464,"Cost":256,"Date":"10/10/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":737,"Cost":438,"Date":"10/17/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":669,"Cost":436,"Date":"10/28/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":680,"Cost":611,"Date":"10/30/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":169,"Cost":141,"Date":"11/1/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":391,"Cost":301,"Date":"11/15/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":766,"Cost":590,"Date":"11/25/2023"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":281,"Cost":194,"Date":"1/10/2024"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":856,"Cost":531,"Date":"1/14/2024"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":538,"Cost":368,"Date":"1/20/2024"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":216,"Cost":123,"Date":"2/8/2024"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":328,"Cost":268,"Date":"2/25/2024"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":520,"Cost":433,"Date":"3/7/2024"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":737,"Cost":389,"Date":"3/14/2024"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":653,"Cost":614,"Date":"3/27/2024"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":197,"Cost":145,"Date":"4/5/2024"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":800,"Cost":502,"Date":"4/14/2024"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":988,"Cost":675,"Date":"5/3/2024"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":880,"Cost":494,"Date":"5/9/2024"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":665,"Cost":335,"Date":"5/15/2024"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":672,"Cost":470,"Date":"5/25/2024"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":475,"Cost":239,"Date":"5/26/2024"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":73,"Cost":66,"Date":"5/31/2024"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":639,"Cost":500,"Date":"7/27/2024"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":886,"Cost":802,"Date":"9/17/2024"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":89,"Cost":83,"Date":"10/6/2024"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":519,"Cost":401,"Date":"10/8/2024"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":637,"Cost":530,"Date":"10/26/2024"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":133,"Cost":72,"Date":"11/16/2024"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":176,"Cost":145,"Date":"11/18/2024"},{"Store":"Anger 1, Erfurt","Brand":"Jeans","Country":"Germany","Sale":419,"Cost":314,"Date":"12/1/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":273,"Cost":156,"Date":"2/9/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":782,"Cost":473,"Date":"2/11/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":272,"Cost":141,"Date":"3/10/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":158,"Cost":150,"Date":"3/16/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":824,"Cost":422,"Date":"3/18/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":108,"Cost":60,"Date":"3/20/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":520,"Cost":343,"Date":"3/26/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":247,"Cost":143,"Date":"6/2/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":35,"Cost":20,"Date":"6/10/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":612,"Cost":467,"Date":"6/16/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":529,"Cost":282,"Date":"6/25/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":186,"Cost":171,"Date":"7/19/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":463,"Cost":314,"Date":"7/21/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":286,"Cost":224,"Date":"7/25/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":910,"Cost":657,"Date":"8/4/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":798,"Cost":500,"Date":"9/2/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":306,"Cost":182,"Date":"9/4/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":298,"Cost":283,"Date":"9/19/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":853,"Cost":767,"Date":"9/29/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":154,"Cost":85,"Date":"10/2/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":169,"Cost":115,"Date":"10/15/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":270,"Cost":218,"Date":"10/30/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":618,"Cost":356,"Date":"11/9/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":818,"Cost":545,"Date":"11/23/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":427,"Cost":355,"Date":"11/30/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":23,"Cost":12,"Date":"12/8/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":617,"Cost":435,"Date":"12/11/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":661,"Cost":446,"Date":"1/15/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":721,"Cost":617,"Date":"1/24/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":131,"Cost":121,"Date":"2/3/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":840,"Cost":425,"Date":"2/4/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":808,"Cost":588,"Date":"3/9/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":505,"Cost":402,"Date":"3/12/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":397,"Cost":268,"Date":"4/19/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":804,"Cost":730,"Date":"5/3/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":483,"Cost":278,"Date":"5/4/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":406,"Cost":221,"Date":"6/8/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":115,"Cost":101,"Date":"6/26/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":579,"Cost":500,"Date":"7/4/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":597,"Cost":488,"Date":"7/13/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":951,"Cost":876,"Date":"8/8/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":692,"Cost":507,"Date":"8/26/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":659,"Cost":400,"Date":"9/2/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":636,"Cost":589,"Date":"9/29/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":258,"Cost":144,"Date":"10/12/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":355,"Cost":294,"Date":"11/2/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":262,"Cost":153,"Date":"11/4/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":734,"Cost":653,"Date":"11/7/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":362,"Cost":296,"Date":"12/1/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":345,"Cost":198,"Date":"12/4/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":235,"Cost":210,"Date":"12/7/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":261,"Cost":142,"Date":"12/18/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":634,"Cost":523,"Date":"12/20/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":935,"Cost":533,"Date":"12/20/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":773,"Cost":732,"Date":"12/21/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":106,"Cost":97,"Date":"1/9/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":158,"Cost":85,"Date":"2/5/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":505,"Cost":449,"Date":"2/16/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":706,"Cost":526,"Date":"2/16/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":3,"Cost":2,"Date":"2/18/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":498,"Cost":314,"Date":"2/22/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":240,"Cost":213,"Date":"2/25/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":772,"Cost":623,"Date":"3/8/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":568,"Cost":488,"Date":"4/2/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":300,"Cost":247,"Date":"4/3/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":778,"Cost":488,"Date":"4/9/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":159,"Cost":131,"Date":"4/10/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":812,"Cost":647,"Date":"4/19/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":316,"Cost":234,"Date":"5/17/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":27,"Cost":17,"Date":"5/22/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":156,"Cost":144,"Date":"6/20/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":985,"Cost":658,"Date":"7/1/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":620,"Cost":482,"Date":"7/4/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":417,"Cost":283,"Date":"7/8/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":431,"Cost":279,"Date":"7/9/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":30,"Cost":21,"Date":"7/14/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":87,"Cost":66,"Date":"7/19/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":125,"Cost":62,"Date":"8/1/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":794,"Cost":409,"Date":"8/6/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":739,"Cost":602,"Date":"8/7/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":667,"Cost":364,"Date":"8/22/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":636,"Cost":385,"Date":"8/31/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":808,"Cost":415,"Date":"9/1/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":689,"Cost":533,"Date":"9/1/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":268,"Cost":231,"Date":"9/17/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":58,"Cost":51,"Date":"9/29/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":81,"Cost":66,"Date":"11/7/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":186,"Cost":159,"Date":"11/26/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":215,"Cost":182,"Date":"11/27/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":741,"Cost":571,"Date":"12/5/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":799,"Cost":738,"Date":"12/26/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":481,"Cost":279,"Date":"12/31/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":456,"Cost":406,"Date":"1/20/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":891,"Cost":684,"Date":"2/2/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":543,"Cost":331,"Date":"2/8/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":676,"Cost":426,"Date":"2/27/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":102,"Cost":54,"Date":"3/1/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":896,"Cost":605,"Date":"3/1/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":848,"Cost":622,"Date":"3/19/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":317,"Cost":224,"Date":"3/28/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":741,"Cost":445,"Date":"5/21/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":108,"Cost":57,"Date":"7/21/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":436,"Cost":320,"Date":"8/5/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":905,"Cost":815,"Date":"8/12/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":900,"Cost":727,"Date":"8/21/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":669,"Cost":554,"Date":"8/23/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":578,"Cost":484,"Date":"9/3/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":582,"Cost":371,"Date":"9/5/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":939,"Cost":645,"Date":"10/6/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":706,"Cost":420,"Date":"10/19/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":950,"Cost":672,"Date":"11/15/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":387,"Cost":347,"Date":"12/8/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":661,"Cost":543,"Date":"1/8/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":380,"Cost":356,"Date":"1/14/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":614,"Cost":371,"Date":"1/19/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":618,"Cost":507,"Date":"1/28/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":35,"Cost":24,"Date":"1/31/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":268,"Cost":162,"Date":"3/27/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":455,"Cost":273,"Date":"4/20/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":76,"Cost":65,"Date":"4/24/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":182,"Cost":110,"Date":"4/28/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":830,"Cost":616,"Date":"5/15/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":758,"Cost":570,"Date":"5/16/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":524,"Cost":273,"Date":"5/18/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":556,"Cost":386,"Date":"6/2/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":289,"Cost":200,"Date":"6/3/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":79,"Cost":43,"Date":"6/5/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":80,"Cost":47,"Date":"6/7/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":650,"Cost":359,"Date":"6/14/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":679,"Cost":622,"Date":"6/20/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":263,"Cost":145,"Date":"6/24/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":638,"Cost":511,"Date":"7/4/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":680,"Cost":472,"Date":"7/9/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":78,"Cost":55,"Date":"7/12/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":156,"Cost":117,"Date":"8/14/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":959,"Cost":480,"Date":"8/16/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":606,"Cost":489,"Date":"8/23/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":178,"Cost":149,"Date":"9/2/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":470,"Cost":243,"Date":"9/3/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":718,"Cost":427,"Date":"9/16/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":284,"Cost":191,"Date":"10/4/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":757,"Cost":553,"Date":"11/1/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":574,"Cost":479,"Date":"11/2/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":616,"Cost":364,"Date":"12/17/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":373,"Cost":278,"Date":"2/10/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":118,"Cost":112,"Date":"2/28/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":495,"Cost":442,"Date":"3/4/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":435,"Cost":286,"Date":"3/9/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":944,"Cost":692,"Date":"3/9/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":101,"Cost":56,"Date":"3/11/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":454,"Cost":325,"Date":"3/17/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":504,"Cost":272,"Date":"3/17/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":559,"Cost":520,"Date":"3/23/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":707,"Cost":401,"Date":"4/1/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":258,"Cost":188,"Date":"5/7/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":731,"Cost":616,"Date":"5/10/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":588,"Cost":320,"Date":"5/20/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":16,"Cost":8,"Date":"6/2/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":47,"Cost":35,"Date":"6/11/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":410,"Cost":239,"Date":"6/16/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":397,"Cost":315,"Date":"6/16/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":783,"Cost":434,"Date":"7/10/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":170,"Cost":136,"Date":"7/11/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":222,"Cost":203,"Date":"8/28/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":431,"Cost":269,"Date":"8/29/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":121,"Cost":69,"Date":"8/31/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":463,"Cost":252,"Date":"9/8/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":96,"Cost":51,"Date":"9/13/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":80,"Cost":69,"Date":"9/14/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":950,"Cost":503,"Date":"9/19/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":286,"Cost":262,"Date":"9/25/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":610,"Cost":432,"Date":"10/4/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":373,"Cost":297,"Date":"10/10/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":516,"Cost":397,"Date":"10/17/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":445,"Cost":291,"Date":"10/28/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":98,"Cost":87,"Date":"10/30/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":397,"Cost":272,"Date":"11/1/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":142,"Cost":128,"Date":"11/15/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":996,"Cost":886,"Date":"11/25/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":11,"Cost":8,"Date":"1/10/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":895,"Cost":541,"Date":"1/14/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":972,"Cost":616,"Date":"1/20/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":58,"Cost":29,"Date":"2/8/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":831,"Cost":625,"Date":"2/25/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":769,"Cost":715,"Date":"3/7/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":568,"Cost":464,"Date":"3/14/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":253,"Cost":239,"Date":"3/27/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":866,"Cost":691,"Date":"4/5/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":36,"Cost":18,"Date":"4/14/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":193,"Cost":137,"Date":"5/3/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":317,"Cost":220,"Date":"5/9/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":314,"Cost":240,"Date":"5/15/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":16,"Cost":10,"Date":"5/25/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":81,"Cost":64,"Date":"5/26/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":961,"Cost":567,"Date":"5/31/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":754,"Cost":515,"Date":"7/27/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":524,"Cost":378,"Date":"9/17/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":182,"Cost":134,"Date":"10/6/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":545,"Cost":402,"Date":"10/8/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":919,"Cost":464,"Date":"10/26/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":922,"Cost":724,"Date":"11/16/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":871,"Cost":802,"Date":"11/18/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM Home","Country":"Germany","Sale":768,"Cost":490,"Date":"12/1/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":385,"Cost":263,"Date":"2/9/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":409,"Cost":260,"Date":"2/11/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":486,"Cost":257,"Date":"3/10/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":195,"Cost":98,"Date":"3/16/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":96,"Cost":49,"Date":"3/18/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":528,"Cost":369,"Date":"3/20/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":523,"Cost":273,"Date":"3/26/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":165,"Cost":87,"Date":"6/2/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":647,"Cost":447,"Date":"6/10/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":833,"Cost":585,"Date":"6/16/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":160,"Cost":126,"Date":"6/25/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":767,"Cost":508,"Date":"7/19/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":994,"Cost":704,"Date":"7/21/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":638,"Cost":484,"Date":"7/25/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":482,"Cost":328,"Date":"8/4/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":855,"Cost":705,"Date":"9/2/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":59,"Cost":29,"Date":"9/4/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":754,"Cost":594,"Date":"9/19/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":546,"Cost":456,"Date":"9/29/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":65,"Cost":48,"Date":"10/2/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":40,"Cost":29,"Date":"10/15/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":924,"Cost":487,"Date":"10/30/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":953,"Cost":608,"Date":"11/9/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":702,"Cost":450,"Date":"11/23/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":188,"Cost":169,"Date":"11/30/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":868,"Cost":458,"Date":"12/8/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":84,"Cost":69,"Date":"12/11/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":144,"Cost":126,"Date":"1/15/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":845,"Cost":585,"Date":"1/24/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":563,"Cost":505,"Date":"2/3/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":465,"Cost":254,"Date":"2/4/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":134,"Cost":108,"Date":"3/9/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":285,"Cost":236,"Date":"3/12/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":781,"Cost":489,"Date":"4/19/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":820,"Cost":449,"Date":"5/3/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":576,"Cost":470,"Date":"5/4/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":116,"Cost":74,"Date":"6/8/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":331,"Cost":277,"Date":"6/26/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":900,"Cost":673,"Date":"7/4/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":242,"Cost":140,"Date":"7/13/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":919,"Cost":805,"Date":"8/8/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":211,"Cost":147,"Date":"8/26/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":371,"Cost":237,"Date":"9/2/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":972,"Cost":613,"Date":"9/29/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":7,"Cost":5,"Date":"10/12/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":280,"Cost":237,"Date":"11/2/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":996,"Cost":619,"Date":"11/4/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":779,"Cost":563,"Date":"11/7/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":720,"Cost":614,"Date":"12/1/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":399,"Cost":225,"Date":"12/4/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":485,"Cost":430,"Date":"12/7/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":167,"Cost":86,"Date":"12/18/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":16,"Cost":13,"Date":"12/20/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":285,"Cost":271,"Date":"12/20/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":955,"Cost":676,"Date":"12/21/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":937,"Cost":880,"Date":"1/9/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":349,"Cost":266,"Date":"2/5/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":123,"Cost":111,"Date":"2/16/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":23,"Cost":14,"Date":"2/16/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":335,"Cost":284,"Date":"2/18/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":657,"Cost":362,"Date":"2/22/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":518,"Cost":396,"Date":"2/25/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":563,"Cost":479,"Date":"3/8/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":252,"Cost":146,"Date":"4/2/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":998,"Cost":904,"Date":"4/3/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":970,"Cost":708,"Date":"4/9/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":866,"Cost":742,"Date":"4/10/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":568,"Cost":320,"Date":"4/19/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":461,"Cost":272,"Date":"5/17/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":465,"Cost":437,"Date":"5/22/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":119,"Cost":67,"Date":"6/20/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":361,"Cost":307,"Date":"7/1/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":185,"Cost":106,"Date":"7/4/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":827,"Cost":642,"Date":"7/8/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":497,"Cost":432,"Date":"7/9/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":359,"Cost":196,"Date":"7/14/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":928,"Cost":558,"Date":"7/19/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":253,"Cost":207,"Date":"8/1/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":526,"Cost":471,"Date":"8/6/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":239,"Cost":223,"Date":"8/7/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":56,"Cost":45,"Date":"8/22/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":76,"Cost":48,"Date":"8/31/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":554,"Cost":437,"Date":"9/1/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":230,"Cost":138,"Date":"9/1/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":775,"Cost":512,"Date":"9/17/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":756,"Cost":540,"Date":"9/29/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":825,"Cost":541,"Date":"11/7/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":762,"Cost":657,"Date":"11/26/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":913,"Cost":483,"Date":"11/27/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":256,"Cost":166,"Date":"12/5/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":765,"Cost":662,"Date":"12/26/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":662,"Cost":460,"Date":"12/31/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":259,"Cost":130,"Date":"1/20/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":476,"Cost":332,"Date":"2/2/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":991,"Cost":932,"Date":"2/8/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":276,"Cost":182,"Date":"2/27/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":957,"Cost":529,"Date":"3/1/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":734,"Cost":383,"Date":"3/1/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":508,"Cost":331,"Date":"3/19/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":196,"Cost":156,"Date":"3/28/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":933,"Cost":837,"Date":"5/21/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":733,"Cost":448,"Date":"7/21/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":792,"Cost":650,"Date":"8/5/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":752,"Cost":593,"Date":"8/12/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":810,"Cost":681,"Date":"8/21/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":986,"Cost":589,"Date":"8/23/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":216,"Cost":174,"Date":"9/3/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":515,"Cost":422,"Date":"9/5/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":206,"Cost":121,"Date":"10/6/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":5,"Cost":3,"Date":"10/19/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":2,"Cost":1,"Date":"11/15/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":62,"Cost":52,"Date":"12/8/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":680,"Cost":379,"Date":"1/8/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":843,"Cost":557,"Date":"1/14/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":468,"Cost":269,"Date":"1/19/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":641,"Cost":509,"Date":"1/28/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":573,"Cost":507,"Date":"1/31/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":517,"Cost":306,"Date":"3/27/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":91,"Cost":86,"Date":"4/20/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":70,"Cost":41,"Date":"4/24/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":512,"Cost":443,"Date":"4/28/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":153,"Cost":85,"Date":"5/15/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":640,"Cost":499,"Date":"5/16/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":344,"Cost":239,"Date":"5/18/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":722,"Cost":425,"Date":"6/2/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":657,"Cost":484,"Date":"6/3/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":199,"Cost":136,"Date":"6/5/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":502,"Cost":286,"Date":"6/7/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":930,"Cost":567,"Date":"6/14/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":2,"Cost":2,"Date":"6/20/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":556,"Cost":506,"Date":"6/24/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":505,"Cost":266,"Date":"7/4/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":639,"Cost":557,"Date":"7/9/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":868,"Cost":540,"Date":"7/12/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":747,"Cost":688,"Date":"8/14/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":105,"Cost":70,"Date":"8/16/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":896,"Cost":605,"Date":"8/23/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":105,"Cost":74,"Date":"9/2/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":722,"Cost":374,"Date":"9/3/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":942,"Cost":726,"Date":"9/16/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":423,"Cost":297,"Date":"10/4/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":920,"Cost":727,"Date":"11/1/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":159,"Cost":101,"Date":"11/2/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":12,"Cost":11,"Date":"12/17/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":21,"Cost":11,"Date":"2/10/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":626,"Cost":473,"Date":"2/28/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":928,"Cost":604,"Date":"3/4/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":183,"Cost":146,"Date":"3/9/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":423,"Cost":291,"Date":"3/9/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":45,"Cost":40,"Date":"3/11/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":309,"Cost":261,"Date":"3/17/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":968,"Cost":690,"Date":"3/17/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":34,"Cost":23,"Date":"3/23/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":169,"Cost":143,"Date":"4/1/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":734,"Cost":505,"Date":"5/7/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":505,"Cost":370,"Date":"5/10/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":609,"Cost":472,"Date":"5/20/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":102,"Cost":78,"Date":"6/2/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":548,"Cost":291,"Date":"6/11/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":706,"Cost":507,"Date":"6/16/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":542,"Cost":401,"Date":"6/16/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":142,"Cost":110,"Date":"7/10/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":635,"Cost":392,"Date":"7/11/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":811,"Cost":682,"Date":"8/28/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":4,"Cost":2,"Date":"8/29/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":184,"Cost":104,"Date":"8/31/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":141,"Cost":106,"Date":"9/8/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":528,"Cost":292,"Date":"9/13/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":300,"Cost":152,"Date":"9/14/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":293,"Cost":244,"Date":"9/19/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":762,"Cost":543,"Date":"9/25/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":803,"Cost":723,"Date":"10/4/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":44,"Cost":36,"Date":"10/10/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":113,"Cost":95,"Date":"10/17/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":627,"Cost":524,"Date":"10/28/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":387,"Cost":350,"Date":"10/30/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":227,"Cost":127,"Date":"11/1/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":620,"Cost":412,"Date":"11/15/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":999,"Cost":716,"Date":"11/25/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":195,"Cost":135,"Date":"1/10/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":767,"Cost":394,"Date":"1/14/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":965,"Cost":519,"Date":"1/20/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":165,"Cost":140,"Date":"2/8/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":960,"Cost":621,"Date":"2/25/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":952,"Cost":681,"Date":"3/7/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":375,"Cost":329,"Date":"3/14/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":71,"Cost":37,"Date":"3/27/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":147,"Cost":77,"Date":"4/5/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":953,"Cost":518,"Date":"4/14/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":532,"Cost":451,"Date":"5/3/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":640,"Cost":483,"Date":"5/9/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":760,"Cost":649,"Date":"5/15/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":807,"Cost":672,"Date":"5/25/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":289,"Cost":216,"Date":"5/26/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":736,"Cost":395,"Date":"5/31/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":519,"Cost":380,"Date":"7/27/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":17,"Cost":9,"Date":"9/17/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":639,"Cost":435,"Date":"10/6/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":294,"Cost":157,"Date":"10/8/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":204,"Cost":161,"Date":"10/26/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":915,"Cost":625,"Date":"11/16/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":106,"Cost":62,"Date":"11/18/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"HM","Country":"Germany","Sale":216,"Cost":156,"Date":"12/1/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":875,"Cost":794,"Date":"2/9/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":385,"Cost":292,"Date":"2/11/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":853,"Cost":531,"Date":"3/10/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":738,"Cost":376,"Date":"3/16/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":735,"Cost":636,"Date":"3/18/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":59,"Cost":31,"Date":"3/20/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":662,"Cost":367,"Date":"3/26/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":928,"Cost":495,"Date":"6/2/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":83,"Cost":64,"Date":"6/10/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":440,"Cost":333,"Date":"6/16/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":537,"Cost":390,"Date":"6/25/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":711,"Cost":432,"Date":"7/19/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":902,"Cost":663,"Date":"7/21/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":642,"Cost":517,"Date":"7/25/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":771,"Cost":701,"Date":"8/4/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":762,"Cost":610,"Date":"9/2/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":512,"Cost":411,"Date":"9/4/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":390,"Cost":266,"Date":"9/19/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":943,"Cost":838,"Date":"9/29/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":883,"Cost":588,"Date":"10/2/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":963,"Cost":896,"Date":"10/15/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":534,"Cost":349,"Date":"10/30/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":22,"Cost":11,"Date":"11/9/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":154,"Cost":78,"Date":"11/23/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":999,"Cost":576,"Date":"11/30/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":797,"Cost":542,"Date":"12/8/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":842,"Cost":681,"Date":"12/11/2018"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":563,"Cost":458,"Date":"1/15/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":938,"Cost":748,"Date":"1/24/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":704,"Cost":606,"Date":"2/3/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":359,"Cost":215,"Date":"2/4/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":209,"Cost":126,"Date":"3/9/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":58,"Cost":53,"Date":"3/12/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":674,"Cost":501,"Date":"4/19/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":667,"Cost":463,"Date":"5/3/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":919,"Cost":483,"Date":"5/4/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":646,"Cost":476,"Date":"6/8/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":983,"Cost":922,"Date":"6/26/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":704,"Cost":638,"Date":"7/4/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":57,"Cost":31,"Date":"7/13/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":368,"Cost":217,"Date":"8/8/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":499,"Cost":353,"Date":"8/26/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":975,"Cost":578,"Date":"9/2/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":156,"Cost":82,"Date":"9/29/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":465,"Cost":438,"Date":"10/12/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":979,"Cost":650,"Date":"11/2/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":377,"Cost":208,"Date":"11/4/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":580,"Cost":496,"Date":"11/7/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":567,"Cost":293,"Date":"12/1/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":946,"Cost":773,"Date":"12/4/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":275,"Cost":231,"Date":"12/7/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":563,"Cost":508,"Date":"12/18/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":576,"Cost":511,"Date":"12/20/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":866,"Cost":821,"Date":"12/20/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":882,"Cost":688,"Date":"12/21/2019"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":104,"Cost":95,"Date":"1/9/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":501,"Cost":298,"Date":"2/5/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":858,"Cost":600,"Date":"2/16/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":915,"Cost":600,"Date":"2/16/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":773,"Cost":550,"Date":"2/18/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":605,"Cost":347,"Date":"2/22/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":293,"Cost":232,"Date":"2/25/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":297,"Cost":243,"Date":"3/8/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":7,"Cost":4,"Date":"4/2/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":136,"Cost":85,"Date":"4/3/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":334,"Cost":265,"Date":"4/9/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":63,"Cost":39,"Date":"4/10/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":323,"Cost":199,"Date":"4/19/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":927,"Cost":715,"Date":"5/17/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":400,"Cost":222,"Date":"5/22/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":1,"Cost":1,"Date":"6/20/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":383,"Cost":195,"Date":"7/1/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":208,"Cost":160,"Date":"7/4/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":504,"Cost":270,"Date":"7/8/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":814,"Cost":620,"Date":"7/9/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":963,"Cost":790,"Date":"7/14/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":820,"Cost":549,"Date":"7/19/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":524,"Cost":313,"Date":"8/1/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":509,"Cost":414,"Date":"8/6/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":981,"Cost":588,"Date":"8/7/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":829,"Cost":537,"Date":"8/22/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":903,"Cost":521,"Date":"8/31/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":378,"Cost":337,"Date":"9/1/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":829,"Cost":625,"Date":"9/1/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":791,"Cost":704,"Date":"9/17/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":418,"Cost":371,"Date":"9/29/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":12,"Cost":10,"Date":"11/7/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":270,"Cost":150,"Date":"11/26/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":208,"Cost":166,"Date":"11/27/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":742,"Cost":617,"Date":"12/5/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":664,"Cost":412,"Date":"12/26/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":985,"Cost":597,"Date":"12/31/2020"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":466,"Cost":233,"Date":"1/20/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":527,"Cost":415,"Date":"2/2/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":95,"Cost":81,"Date":"2/8/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":244,"Cost":220,"Date":"2/27/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":97,"Cost":70,"Date":"3/1/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":532,"Cost":487,"Date":"3/1/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":462,"Cost":367,"Date":"3/19/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":550,"Cost":511,"Date":"3/28/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":695,"Cost":622,"Date":"5/21/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":545,"Cost":402,"Date":"7/21/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":672,"Cost":502,"Date":"8/5/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":548,"Cost":439,"Date":"8/12/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":876,"Cost":677,"Date":"8/21/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":457,"Cost":324,"Date":"8/23/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":562,"Cost":498,"Date":"9/3/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":141,"Cost":123,"Date":"9/5/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":310,"Cost":201,"Date":"10/6/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":400,"Cost":372,"Date":"10/19/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":523,"Cost":418,"Date":"11/15/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":7,"Cost":5,"Date":"12/8/2021"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":171,"Cost":143,"Date":"1/8/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":594,"Cost":531,"Date":"1/14/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":889,"Cost":464,"Date":"1/19/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":746,"Cost":630,"Date":"1/28/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":73,"Cost":70,"Date":"1/31/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":741,"Cost":526,"Date":"3/27/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":324,"Cost":263,"Date":"4/20/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":991,"Cost":780,"Date":"4/24/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":475,"Cost":261,"Date":"4/28/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":808,"Cost":696,"Date":"5/15/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":750,"Cost":573,"Date":"5/16/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":425,"Cost":321,"Date":"5/18/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":706,"Cost":406,"Date":"6/2/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":723,"Cost":682,"Date":"6/3/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":32,"Cost":17,"Date":"6/5/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":80,"Cost":45,"Date":"6/7/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":227,"Cost":183,"Date":"6/14/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":527,"Cost":313,"Date":"6/20/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":427,"Cost":371,"Date":"6/24/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":660,"Cost":350,"Date":"7/4/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":687,"Cost":507,"Date":"7/9/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":728,"Cost":425,"Date":"7/12/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":43,"Cost":22,"Date":"8/14/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":130,"Cost":87,"Date":"8/16/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":434,"Cost":356,"Date":"8/23/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":660,"Cost":406,"Date":"9/2/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":667,"Cost":498,"Date":"9/3/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":200,"Cost":135,"Date":"9/16/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":772,"Cost":577,"Date":"10/4/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":532,"Cost":467,"Date":"11/1/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":984,"Cost":658,"Date":"11/2/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":574,"Cost":291,"Date":"12/17/2022"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":149,"Cost":121,"Date":"2/10/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":80,"Cost":74,"Date":"2/28/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":474,"Cost":333,"Date":"3/4/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":803,"Cost":561,"Date":"3/9/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":958,"Cost":524,"Date":"3/9/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":199,"Cost":139,"Date":"3/11/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":629,"Cost":555,"Date":"3/17/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":18,"Cost":11,"Date":"3/17/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":220,"Cost":207,"Date":"3/23/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":100,"Cost":61,"Date":"4/1/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":300,"Cost":196,"Date":"5/7/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":193,"Cost":170,"Date":"5/10/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":720,"Cost":551,"Date":"5/20/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":878,"Cost":746,"Date":"6/2/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":561,"Cost":358,"Date":"6/11/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":526,"Cost":365,"Date":"6/16/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":767,"Cost":717,"Date":"6/16/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":721,"Cost":678,"Date":"7/10/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":293,"Cost":224,"Date":"7/11/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":481,"Cost":329,"Date":"8/28/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":690,"Cost":452,"Date":"8/29/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":719,"Cost":628,"Date":"8/31/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":915,"Cost":642,"Date":"9/8/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":606,"Cost":330,"Date":"9/13/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":333,"Cost":204,"Date":"9/14/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":544,"Cost":288,"Date":"9/19/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":525,"Cost":382,"Date":"9/25/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":461,"Cost":277,"Date":"10/4/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":469,"Cost":407,"Date":"10/10/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":951,"Cost":482,"Date":"10/17/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":754,"Cost":528,"Date":"10/28/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":878,"Cost":823,"Date":"10/30/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":165,"Cost":156,"Date":"11/1/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":581,"Cost":515,"Date":"11/15/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":873,"Cost":691,"Date":"11/25/2023"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":437,"Cost":363,"Date":"1/10/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":646,"Cost":358,"Date":"1/14/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":873,"Cost":478,"Date":"1/20/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":52,"Cost":31,"Date":"2/8/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":466,"Cost":311,"Date":"2/25/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":893,"Cost":789,"Date":"3/7/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":60,"Cost":55,"Date":"3/14/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":269,"Cost":146,"Date":"3/27/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":882,"Cost":653,"Date":"4/5/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":504,"Cost":430,"Date":"4/14/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":321,"Cost":256,"Date":"5/3/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":362,"Cost":301,"Date":"5/9/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":401,"Cost":350,"Date":"5/15/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":123,"Cost":81,"Date":"5/25/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":501,"Cost":440,"Date":"5/26/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":959,"Cost":626,"Date":"5/31/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":113,"Cost":93,"Date":"7/27/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":16,"Cost":8,"Date":"9/17/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":237,"Cost":216,"Date":"10/6/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":194,"Cost":107,"Date":"10/8/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":618,"Cost":451,"Date":"10/26/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":402,"Cost":357,"Date":"11/16/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":676,"Cost":369,"Date":"11/18/2024"},{"Store":"Alt-Chemnitz-Center","Brand":"COS","Country":"Germany","Sale":67,"Cost":48,"Date":"12/1/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":25,"Cost":19,"Date":"2/9/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":453,"Cost":274,"Date":"2/11/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":575,"Cost":514,"Date":"3/10/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":164,"Cost":137,"Date":"3/16/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":338,"Cost":292,"Date":"3/18/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":734,"Cost":400,"Date":"3/20/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":230,"Cost":202,"Date":"3/26/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":646,"Cost":330,"Date":"6/2/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":299,"Cost":263,"Date":"6/10/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":28,"Cost":22,"Date":"6/16/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":603,"Cost":423,"Date":"6/25/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":936,"Cost":876,"Date":"7/19/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":128,"Cost":92,"Date":"7/21/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":306,"Cost":279,"Date":"7/25/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":263,"Cost":164,"Date":"8/4/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":244,"Cost":168,"Date":"9/2/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":443,"Cost":316,"Date":"9/4/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":548,"Cost":440,"Date":"9/19/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":899,"Cost":669,"Date":"9/29/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":346,"Cost":180,"Date":"10/2/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":976,"Cost":586,"Date":"10/15/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":596,"Cost":541,"Date":"10/30/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":206,"Cost":180,"Date":"11/9/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":700,"Cost":651,"Date":"11/23/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":723,"Cost":363,"Date":"11/30/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":778,"Cost":569,"Date":"12/8/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":353,"Cost":323,"Date":"12/11/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":34,"Cost":29,"Date":"1/15/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":692,"Cost":614,"Date":"1/24/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":128,"Cost":83,"Date":"2/3/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":821,"Cost":424,"Date":"2/4/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":556,"Cost":308,"Date":"3/9/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":56,"Cost":49,"Date":"3/12/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":260,"Cost":221,"Date":"4/19/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":623,"Cost":367,"Date":"5/3/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":378,"Cost":298,"Date":"5/4/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":511,"Cost":256,"Date":"6/8/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":654,"Cost":530,"Date":"6/26/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":945,"Cost":731,"Date":"7/4/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":745,"Cost":372,"Date":"7/13/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":192,"Cost":159,"Date":"8/8/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":689,"Cost":598,"Date":"8/26/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":926,"Cost":733,"Date":"9/2/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":102,"Cost":79,"Date":"9/29/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":173,"Cost":103,"Date":"10/12/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":215,"Cost":203,"Date":"11/2/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":35,"Cost":24,"Date":"11/4/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":759,"Cost":538,"Date":"11/7/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":675,"Cost":480,"Date":"12/1/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":928,"Cost":464,"Date":"12/4/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":564,"Cost":318,"Date":"12/7/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":155,"Cost":107,"Date":"12/18/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":337,"Cost":169,"Date":"12/20/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":308,"Cost":220,"Date":"12/20/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":897,"Cost":637,"Date":"12/21/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":452,"Cost":386,"Date":"1/9/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":449,"Cost":265,"Date":"2/5/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":355,"Cost":288,"Date":"2/16/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":6,"Cost":5,"Date":"2/16/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":191,"Cost":104,"Date":"2/18/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":210,"Cost":184,"Date":"2/22/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":444,"Cost":396,"Date":"2/25/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":202,"Cost":163,"Date":"3/8/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":871,"Cost":603,"Date":"4/2/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":353,"Cost":207,"Date":"4/3/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":227,"Cost":164,"Date":"4/9/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":731,"Cost":498,"Date":"4/10/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":562,"Cost":453,"Date":"4/19/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":637,"Cost":580,"Date":"5/17/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":191,"Cost":144,"Date":"5/22/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":159,"Cost":128,"Date":"6/20/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":93,"Cost":47,"Date":"7/1/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":8,"Cost":8,"Date":"7/4/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":27,"Cost":25,"Date":"7/8/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":277,"Cost":142,"Date":"7/9/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":771,"Cost":521,"Date":"7/14/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":419,"Cost":212,"Date":"7/19/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":854,"Cost":445,"Date":"8/1/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":711,"Cost":528,"Date":"8/6/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":53,"Cost":35,"Date":"8/7/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":298,"Cost":276,"Date":"8/22/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":975,"Cost":620,"Date":"8/31/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":922,"Cost":469,"Date":"9/1/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":574,"Cost":375,"Date":"9/1/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":28,"Cost":23,"Date":"9/17/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":917,"Cost":806,"Date":"9/29/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":341,"Cost":207,"Date":"11/7/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":444,"Cost":368,"Date":"11/26/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":855,"Cost":641,"Date":"11/27/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":117,"Cost":59,"Date":"12/5/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":692,"Cost":609,"Date":"12/26/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":919,"Cost":756,"Date":"12/31/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":247,"Cost":176,"Date":"1/20/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":930,"Cost":512,"Date":"2/2/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":971,"Cost":783,"Date":"2/8/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":166,"Cost":140,"Date":"2/27/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":871,"Cost":436,"Date":"3/1/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":415,"Cost":261,"Date":"3/1/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":686,"Cost":556,"Date":"3/19/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":489,"Cost":411,"Date":"3/28/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":516,"Cost":322,"Date":"5/21/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":622,"Cost":588,"Date":"7/21/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":218,"Cost":185,"Date":"8/5/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":687,"Cost":556,"Date":"8/12/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":105,"Cost":63,"Date":"8/21/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":140,"Cost":107,"Date":"8/23/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":920,"Cost":660,"Date":"9/3/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":810,"Cost":573,"Date":"9/5/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":431,"Cost":326,"Date":"10/6/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":497,"Cost":453,"Date":"10/19/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":51,"Cost":32,"Date":"11/15/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":863,"Cost":498,"Date":"12/8/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":644,"Cost":410,"Date":"1/8/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":479,"Cost":367,"Date":"1/14/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":714,"Cost":487,"Date":"1/19/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":844,"Cost":489,"Date":"1/28/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":519,"Cost":333,"Date":"1/31/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":188,"Cost":146,"Date":"3/27/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":1000,"Cost":633,"Date":"4/20/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":958,"Cost":727,"Date":"4/24/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":3,"Cost":3,"Date":"4/28/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":143,"Cost":119,"Date":"5/15/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":197,"Cost":144,"Date":"5/16/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":228,"Cost":211,"Date":"5/18/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":942,"Cost":508,"Date":"6/2/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":444,"Cost":259,"Date":"6/3/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":139,"Cost":100,"Date":"6/5/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":560,"Cost":308,"Date":"6/7/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":127,"Cost":79,"Date":"6/14/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":476,"Cost":431,"Date":"6/20/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":106,"Cost":81,"Date":"6/24/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":592,"Cost":370,"Date":"7/4/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":104,"Cost":52,"Date":"7/9/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":93,"Cost":67,"Date":"7/12/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":585,"Cost":400,"Date":"8/14/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":737,"Cost":577,"Date":"8/16/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":798,"Cost":585,"Date":"8/23/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":861,"Cost":450,"Date":"9/2/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":957,"Cost":787,"Date":"9/3/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":227,"Cost":190,"Date":"9/16/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":787,"Cost":714,"Date":"10/4/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":321,"Cost":255,"Date":"11/1/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":203,"Cost":160,"Date":"11/2/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":369,"Cost":228,"Date":"12/17/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":909,"Cost":701,"Date":"2/10/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":127,"Cost":71,"Date":"2/28/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":729,"Cost":663,"Date":"3/4/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":552,"Cost":349,"Date":"3/9/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":727,"Cost":653,"Date":"3/9/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":255,"Cost":223,"Date":"3/11/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":965,"Cost":777,"Date":"3/17/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":953,"Cost":483,"Date":"3/17/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":762,"Cost":618,"Date":"3/23/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":314,"Cost":265,"Date":"4/1/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":439,"Cost":348,"Date":"5/7/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":757,"Cost":431,"Date":"5/10/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":110,"Cost":64,"Date":"5/20/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":472,"Cost":296,"Date":"6/2/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":172,"Cost":129,"Date":"6/11/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":784,"Cost":507,"Date":"6/16/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":601,"Cost":317,"Date":"6/16/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":341,"Cost":195,"Date":"7/10/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":9,"Cost":8,"Date":"7/11/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":288,"Cost":241,"Date":"8/28/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":427,"Cost":337,"Date":"8/29/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":552,"Cost":289,"Date":"8/31/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":578,"Cost":336,"Date":"9/8/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":456,"Cost":430,"Date":"9/13/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":341,"Cost":266,"Date":"9/14/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":484,"Cost":317,"Date":"9/19/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":348,"Cost":221,"Date":"9/25/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":67,"Cost":58,"Date":"10/4/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":73,"Cost":57,"Date":"10/10/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":782,"Cost":583,"Date":"10/17/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":591,"Cost":355,"Date":"10/28/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":978,"Cost":818,"Date":"10/30/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":397,"Cost":286,"Date":"11/1/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":677,"Cost":343,"Date":"11/15/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":473,"Cost":334,"Date":"11/25/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":787,"Cost":406,"Date":"1/10/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":291,"Cost":184,"Date":"1/14/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":292,"Cost":235,"Date":"1/20/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":25,"Cost":22,"Date":"2/8/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":40,"Cost":20,"Date":"2/25/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":579,"Cost":540,"Date":"3/7/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":903,"Cost":707,"Date":"3/14/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":529,"Cost":398,"Date":"3/27/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":453,"Cost":419,"Date":"4/5/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":853,"Cost":481,"Date":"4/14/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":966,"Cost":881,"Date":"5/3/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":814,"Cost":470,"Date":"5/9/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":475,"Cost":417,"Date":"5/15/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":80,"Cost":48,"Date":"5/25/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":651,"Cost":613,"Date":"5/26/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":986,"Cost":782,"Date":"5/31/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":706,"Cost":468,"Date":"7/27/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":155,"Cost":141,"Date":"9/17/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":890,"Cost":562,"Date":"10/6/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":253,"Cost":221,"Date":"10/8/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":723,"Cost":513,"Date":"10/26/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":634,"Cost":585,"Date":"11/16/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":183,"Cost":146,"Date":"11/18/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"HM","Country":"Germany","Sale":801,"Cost":659,"Date":"12/1/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":131,"Cost":121,"Date":"2/9/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":701,"Cost":411,"Date":"2/11/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":273,"Cost":193,"Date":"3/10/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":480,"Cost":274,"Date":"3/16/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":334,"Cost":228,"Date":"3/18/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":605,"Cost":472,"Date":"3/20/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":478,"Cost":349,"Date":"3/26/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":826,"Cost":756,"Date":"6/2/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":997,"Cost":896,"Date":"6/10/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":65,"Cost":56,"Date":"6/16/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":230,"Cost":153,"Date":"6/25/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":418,"Cost":251,"Date":"7/19/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":425,"Cost":356,"Date":"7/21/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":490,"Cost":383,"Date":"7/25/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":716,"Cost":487,"Date":"8/4/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":35,"Cost":17,"Date":"9/2/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":797,"Cost":495,"Date":"9/4/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":544,"Cost":377,"Date":"9/19/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":548,"Cost":317,"Date":"9/29/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":125,"Cost":103,"Date":"10/2/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":151,"Cost":98,"Date":"10/15/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":182,"Cost":116,"Date":"10/30/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":472,"Cost":304,"Date":"11/9/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":229,"Cost":182,"Date":"11/23/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":386,"Cost":238,"Date":"11/30/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":179,"Cost":139,"Date":"12/8/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":338,"Cost":281,"Date":"12/11/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":114,"Cost":77,"Date":"1/15/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":84,"Cost":64,"Date":"1/24/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":75,"Cost":47,"Date":"2/3/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":951,"Cost":764,"Date":"2/4/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":904,"Cost":542,"Date":"3/9/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":338,"Cost":172,"Date":"3/12/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":378,"Cost":258,"Date":"4/19/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":575,"Cost":515,"Date":"5/3/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":895,"Cost":850,"Date":"5/4/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":256,"Cost":229,"Date":"6/8/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":622,"Cost":386,"Date":"6/26/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":819,"Cost":528,"Date":"7/4/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":156,"Cost":91,"Date":"7/13/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":170,"Cost":110,"Date":"8/8/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":951,"Cost":633,"Date":"8/26/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":730,"Cost":629,"Date":"9/2/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":574,"Cost":391,"Date":"9/29/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":274,"Cost":156,"Date":"10/12/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":420,"Cost":285,"Date":"11/2/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":956,"Cost":605,"Date":"11/4/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":86,"Cost":51,"Date":"11/7/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":183,"Cost":102,"Date":"12/1/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":53,"Cost":43,"Date":"12/4/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":751,"Cost":525,"Date":"12/7/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":337,"Cost":171,"Date":"12/18/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":949,"Cost":531,"Date":"12/20/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":250,"Cost":206,"Date":"12/20/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":240,"Cost":184,"Date":"12/21/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":850,"Cost":504,"Date":"1/9/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":485,"Cost":359,"Date":"2/5/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":788,"Cost":671,"Date":"2/16/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":625,"Cost":455,"Date":"2/16/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":331,"Cost":255,"Date":"2/18/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":132,"Cost":83,"Date":"2/22/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":755,"Cost":712,"Date":"2/25/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":700,"Cost":350,"Date":"3/8/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":501,"Cost":433,"Date":"4/2/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":385,"Cost":348,"Date":"4/3/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":510,"Cost":439,"Date":"4/9/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":482,"Cost":299,"Date":"4/10/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":381,"Cost":195,"Date":"4/19/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":374,"Cost":276,"Date":"5/17/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":332,"Cost":294,"Date":"5/22/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":887,"Cost":835,"Date":"6/20/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":986,"Cost":792,"Date":"7/1/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":28,"Cost":22,"Date":"7/4/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":27,"Cost":25,"Date":"7/8/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":241,"Cost":158,"Date":"7/9/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":93,"Cost":56,"Date":"7/14/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":550,"Cost":333,"Date":"7/19/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":46,"Cost":38,"Date":"8/1/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":268,"Cost":207,"Date":"8/6/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":932,"Cost":736,"Date":"8/7/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":42,"Cost":39,"Date":"8/22/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":328,"Cost":171,"Date":"8/31/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":898,"Cost":605,"Date":"9/1/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":455,"Cost":344,"Date":"9/1/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":466,"Cost":270,"Date":"9/17/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":359,"Cost":216,"Date":"9/29/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":289,"Cost":272,"Date":"11/7/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":48,"Cost":34,"Date":"11/26/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":855,"Cost":685,"Date":"11/27/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":103,"Cost":89,"Date":"12/5/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":111,"Cost":94,"Date":"12/26/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":960,"Cost":607,"Date":"12/31/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":276,"Cost":203,"Date":"1/20/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":915,"Cost":483,"Date":"2/2/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":643,"Cost":519,"Date":"2/8/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":594,"Cost":424,"Date":"2/27/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":497,"Cost":438,"Date":"3/1/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":782,"Cost":610,"Date":"3/1/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":247,"Cost":196,"Date":"3/19/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":3,"Cost":2,"Date":"3/28/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":567,"Cost":327,"Date":"5/21/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":816,"Cost":606,"Date":"7/21/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":859,"Cost":654,"Date":"8/5/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":879,"Cost":713,"Date":"8/12/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":563,"Cost":370,"Date":"8/21/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":160,"Cost":131,"Date":"8/23/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":894,"Cost":541,"Date":"9/3/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":781,"Cost":529,"Date":"9/5/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":647,"Cost":409,"Date":"10/6/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":471,"Cost":315,"Date":"10/19/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":499,"Cost":269,"Date":"11/15/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":37,"Cost":30,"Date":"12/8/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":717,"Cost":677,"Date":"1/8/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":962,"Cost":564,"Date":"1/14/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":28,"Cost":18,"Date":"1/19/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":201,"Cost":186,"Date":"1/28/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":160,"Cost":127,"Date":"1/31/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":368,"Cost":210,"Date":"3/27/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":746,"Cost":415,"Date":"4/20/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":804,"Cost":636,"Date":"4/24/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":254,"Cost":184,"Date":"4/28/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":950,"Cost":595,"Date":"5/15/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":369,"Cost":337,"Date":"5/16/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":782,"Cost":590,"Date":"5/18/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":15,"Cost":10,"Date":"6/2/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":96,"Cost":83,"Date":"6/3/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":474,"Cost":412,"Date":"6/5/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":649,"Cost":558,"Date":"6/7/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":103,"Cost":52,"Date":"6/14/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":79,"Cost":60,"Date":"6/20/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":596,"Cost":415,"Date":"6/24/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":379,"Cost":224,"Date":"7/4/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":291,"Cost":156,"Date":"7/9/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":900,"Cost":598,"Date":"7/12/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":889,"Cost":590,"Date":"8/14/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":669,"Cost":460,"Date":"8/16/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":189,"Cost":112,"Date":"8/23/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":314,"Cost":255,"Date":"9/2/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":862,"Cost":557,"Date":"9/3/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":816,"Cost":445,"Date":"9/16/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":586,"Cost":537,"Date":"10/4/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":899,"Cost":451,"Date":"11/1/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":614,"Cost":392,"Date":"11/2/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":477,"Cost":281,"Date":"12/17/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":697,"Cost":429,"Date":"2/10/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":395,"Cost":372,"Date":"2/28/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":319,"Cost":175,"Date":"3/4/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":489,"Cost":319,"Date":"3/9/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":680,"Cost":385,"Date":"3/9/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":945,"Cost":732,"Date":"3/11/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":945,"Cost":493,"Date":"3/17/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":486,"Cost":299,"Date":"3/17/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":803,"Cost":530,"Date":"3/23/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":553,"Cost":470,"Date":"4/1/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":605,"Cost":396,"Date":"5/7/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":867,"Cost":756,"Date":"5/10/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":364,"Cost":209,"Date":"5/20/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":663,"Cost":510,"Date":"6/2/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":182,"Cost":96,"Date":"6/11/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":177,"Cost":145,"Date":"6/16/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":524,"Cost":303,"Date":"6/16/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":919,"Cost":677,"Date":"7/10/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":962,"Cost":658,"Date":"7/11/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":953,"Cost":595,"Date":"8/28/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":651,"Cost":333,"Date":"8/29/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":271,"Cost":207,"Date":"8/31/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":728,"Cost":432,"Date":"9/8/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":837,"Cost":604,"Date":"9/13/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":397,"Cost":292,"Date":"9/14/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":574,"Cost":423,"Date":"9/19/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":402,"Cost":357,"Date":"9/25/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":934,"Cost":674,"Date":"10/4/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":740,"Cost":545,"Date":"10/10/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":240,"Cost":211,"Date":"10/17/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":132,"Cost":101,"Date":"10/28/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":691,"Cost":536,"Date":"10/30/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":863,"Cost":610,"Date":"11/1/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":997,"Cost":552,"Date":"11/15/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":760,"Cost":447,"Date":"11/25/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":753,"Cost":629,"Date":"1/10/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":670,"Cost":551,"Date":"1/14/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":42,"Cost":34,"Date":"1/20/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":344,"Cost":178,"Date":"2/8/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":788,"Cost":680,"Date":"2/25/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":457,"Cost":431,"Date":"3/7/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":19,"Cost":18,"Date":"3/14/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":159,"Cost":132,"Date":"3/27/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":190,"Cost":105,"Date":"4/5/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":967,"Cost":523,"Date":"4/14/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":976,"Cost":729,"Date":"5/3/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":445,"Cost":352,"Date":"5/9/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":500,"Cost":307,"Date":"5/15/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":662,"Cost":544,"Date":"5/25/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":446,"Cost":321,"Date":"5/26/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":785,"Cost":422,"Date":"5/31/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":160,"Cost":134,"Date":"7/27/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":356,"Cost":328,"Date":"9/17/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":16,"Cost":9,"Date":"10/6/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":456,"Cost":347,"Date":"10/8/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":171,"Cost":144,"Date":"10/26/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":975,"Cost":842,"Date":"11/16/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":101,"Cost":60,"Date":"11/18/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"Sellpy","Country":"Germany","Sale":441,"Cost":318,"Date":"12/1/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":499,"Cost":338,"Date":"2/9/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":705,"Cost":656,"Date":"2/11/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":358,"Cost":327,"Date":"3/10/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":297,"Cost":202,"Date":"3/16/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":576,"Cost":493,"Date":"3/18/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":335,"Cost":272,"Date":"3/20/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":811,"Cost":631,"Date":"3/26/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":389,"Cost":330,"Date":"6/2/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":476,"Cost":410,"Date":"6/10/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":974,"Cost":868,"Date":"6/16/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":899,"Cost":771,"Date":"6/25/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":48,"Cost":39,"Date":"7/19/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":364,"Cost":238,"Date":"7/21/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":340,"Cost":182,"Date":"7/25/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":783,"Cost":578,"Date":"8/4/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":59,"Cost":51,"Date":"9/2/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":449,"Cost":383,"Date":"9/4/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":605,"Cost":357,"Date":"9/19/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":664,"Cost":412,"Date":"9/29/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":524,"Cost":382,"Date":"10/2/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":755,"Cost":492,"Date":"10/15/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":132,"Cost":123,"Date":"10/30/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":441,"Cost":348,"Date":"11/9/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":292,"Cost":200,"Date":"11/23/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":134,"Cost":104,"Date":"11/30/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":456,"Cost":255,"Date":"12/8/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":342,"Cost":197,"Date":"12/11/2018"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":394,"Cost":339,"Date":"1/15/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":864,"Cost":589,"Date":"1/24/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":469,"Cost":361,"Date":"2/3/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":65,"Cost":60,"Date":"2/4/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":546,"Cost":346,"Date":"3/9/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":95,"Cost":91,"Date":"3/12/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":667,"Cost":500,"Date":"4/19/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":757,"Cost":595,"Date":"5/3/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":44,"Cost":40,"Date":"5/4/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":216,"Cost":141,"Date":"6/8/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":640,"Cost":591,"Date":"6/26/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":313,"Cost":258,"Date":"7/4/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":686,"Cost":510,"Date":"7/13/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":710,"Cost":440,"Date":"8/8/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":89,"Cost":45,"Date":"8/26/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":938,"Cost":472,"Date":"9/2/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":329,"Cost":253,"Date":"9/29/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":55,"Cost":36,"Date":"10/12/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":592,"Cost":381,"Date":"11/2/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":716,"Cost":408,"Date":"11/4/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":988,"Cost":505,"Date":"11/7/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":916,"Cost":797,"Date":"12/1/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":992,"Cost":624,"Date":"12/4/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":859,"Cost":803,"Date":"12/7/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":729,"Cost":571,"Date":"12/18/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":224,"Cost":157,"Date":"12/20/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":525,"Cost":396,"Date":"12/20/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":15,"Cost":13,"Date":"12/21/2019"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":267,"Cost":198,"Date":"1/9/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":976,"Cost":552,"Date":"2/5/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":497,"Cost":466,"Date":"2/16/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":769,"Cost":703,"Date":"2/16/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":770,"Cost":455,"Date":"2/18/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":433,"Cost":242,"Date":"2/22/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":804,"Cost":762,"Date":"2/25/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":815,"Cost":586,"Date":"3/8/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":279,"Cost":166,"Date":"4/2/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":357,"Cost":327,"Date":"4/3/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":710,"Cost":647,"Date":"4/9/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":160,"Cost":127,"Date":"4/10/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":565,"Cost":389,"Date":"4/19/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":383,"Cost":351,"Date":"5/17/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":609,"Cost":431,"Date":"5/22/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":86,"Cost":68,"Date":"6/20/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":62,"Cost":35,"Date":"7/1/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":296,"Cost":150,"Date":"7/4/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":109,"Cost":65,"Date":"7/8/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":561,"Cost":429,"Date":"7/9/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":261,"Cost":207,"Date":"7/14/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":343,"Cost":187,"Date":"7/19/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":979,"Cost":814,"Date":"8/1/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":913,"Cost":674,"Date":"8/6/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":536,"Cost":399,"Date":"8/7/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":799,"Cost":759,"Date":"8/22/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":579,"Cost":323,"Date":"8/31/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":271,"Cost":198,"Date":"9/1/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":145,"Cost":80,"Date":"9/1/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":583,"Cost":483,"Date":"9/17/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":527,"Cost":284,"Date":"9/29/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":508,"Cost":373,"Date":"11/7/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":414,"Cost":349,"Date":"11/26/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":233,"Cost":125,"Date":"11/27/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":487,"Cost":268,"Date":"12/5/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":723,"Cost":504,"Date":"12/26/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":489,"Cost":325,"Date":"12/31/2020"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":206,"Cost":164,"Date":"1/20/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":310,"Cost":291,"Date":"2/2/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":951,"Cost":540,"Date":"2/8/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":944,"Cost":870,"Date":"2/27/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":385,"Cost":193,"Date":"3/1/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":40,"Cost":26,"Date":"3/1/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":123,"Cost":97,"Date":"3/19/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":21,"Cost":20,"Date":"3/28/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":528,"Cost":380,"Date":"5/21/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":805,"Cost":707,"Date":"7/21/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":646,"Cost":601,"Date":"8/5/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":15,"Cost":12,"Date":"8/12/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":487,"Cost":305,"Date":"8/21/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":520,"Cost":413,"Date":"8/23/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":847,"Cost":607,"Date":"9/3/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":519,"Cost":411,"Date":"9/5/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":957,"Cost":683,"Date":"10/6/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":604,"Cost":434,"Date":"10/19/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":945,"Cost":527,"Date":"11/15/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":838,"Cost":742,"Date":"12/8/2021"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":322,"Cost":289,"Date":"1/8/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":737,"Cost":592,"Date":"1/14/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":685,"Cost":423,"Date":"1/19/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":289,"Cost":222,"Date":"1/28/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":296,"Cost":212,"Date":"1/31/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":79,"Cost":39,"Date":"3/27/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":304,"Cost":246,"Date":"4/20/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":774,"Cost":581,"Date":"4/24/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":758,"Cost":404,"Date":"4/28/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":437,"Cost":253,"Date":"5/15/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":561,"Cost":506,"Date":"5/16/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":143,"Cost":89,"Date":"5/18/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":269,"Cost":220,"Date":"6/2/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":251,"Cost":229,"Date":"6/3/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":163,"Cost":96,"Date":"6/5/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":333,"Cost":173,"Date":"6/7/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":611,"Cost":406,"Date":"6/14/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":180,"Cost":111,"Date":"6/20/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":863,"Cost":669,"Date":"6/24/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":379,"Cost":236,"Date":"7/4/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":60,"Cost":30,"Date":"7/9/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":819,"Cost":548,"Date":"7/12/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":403,"Cost":321,"Date":"8/14/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":995,"Cost":548,"Date":"8/16/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":936,"Cost":558,"Date":"8/23/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":431,"Cost":247,"Date":"9/2/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":8,"Cost":5,"Date":"9/3/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":393,"Cost":310,"Date":"9/16/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":742,"Cost":464,"Date":"10/4/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":847,"Cost":729,"Date":"11/1/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":45,"Cost":32,"Date":"11/2/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":740,"Cost":557,"Date":"12/17/2022"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":844,"Cost":796,"Date":"2/10/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":685,"Cost":354,"Date":"2/28/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":637,"Cost":318,"Date":"3/4/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":360,"Cost":295,"Date":"3/9/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":1,"Cost":1,"Date":"3/9/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":219,"Cost":167,"Date":"3/11/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":868,"Cost":466,"Date":"3/17/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":69,"Cost":47,"Date":"3/17/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":691,"Cost":656,"Date":"3/23/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":387,"Cost":240,"Date":"4/1/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":990,"Cost":716,"Date":"5/7/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":310,"Cost":188,"Date":"5/10/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":121,"Cost":98,"Date":"5/20/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":692,"Cost":487,"Date":"6/2/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":974,"Cost":570,"Date":"6/11/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":376,"Cost":196,"Date":"6/16/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":969,"Cost":893,"Date":"6/16/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":114,"Cost":87,"Date":"7/10/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":167,"Cost":91,"Date":"7/11/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":926,"Cost":469,"Date":"8/28/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":626,"Cost":572,"Date":"8/29/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":541,"Cost":438,"Date":"8/31/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":752,"Cost":376,"Date":"9/8/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":228,"Cost":115,"Date":"9/13/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":125,"Cost":108,"Date":"9/14/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":804,"Cost":670,"Date":"9/19/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":585,"Cost":444,"Date":"9/25/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":516,"Cost":293,"Date":"10/4/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":420,"Cost":383,"Date":"10/10/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":722,"Cost":601,"Date":"10/17/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":930,"Cost":676,"Date":"10/28/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":846,"Cost":430,"Date":"10/30/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":45,"Cost":38,"Date":"11/1/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":904,"Cost":524,"Date":"11/15/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":662,"Cost":431,"Date":"11/25/2023"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":769,"Cost":605,"Date":"1/10/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":581,"Cost":430,"Date":"1/14/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":590,"Cost":403,"Date":"1/20/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":757,"Cost":403,"Date":"2/8/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":51,"Cost":33,"Date":"2/25/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":882,"Cost":603,"Date":"3/7/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":30,"Cost":24,"Date":"3/14/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":983,"Cost":602,"Date":"3/27/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":124,"Cost":109,"Date":"4/5/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":200,"Cost":142,"Date":"4/14/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":227,"Cost":173,"Date":"5/3/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":945,"Cost":810,"Date":"5/9/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":312,"Cost":261,"Date":"5/15/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":892,"Cost":513,"Date":"5/25/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":600,"Cost":486,"Date":"5/26/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":989,"Cost":548,"Date":"5/31/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":585,"Cost":338,"Date":"7/27/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":955,"Cost":884,"Date":"9/17/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":561,"Cost":387,"Date":"10/6/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":667,"Cost":476,"Date":"10/8/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":466,"Cost":384,"Date":"10/26/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":973,"Cost":882,"Date":"11/16/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":795,"Cost":496,"Date":"11/18/2024"},{"Store":"Aquis Plaza, Aachen","Brand":"COS","Country":"Germany","Sale":924,"Cost":847,"Date":"12/1/2024"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":830,"Cost":761,"Date":"2/9/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":672,"Cost":531,"Date":"2/11/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":270,"Cost":172,"Date":"3/10/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":510,"Cost":307,"Date":"3/16/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":228,"Cost":123,"Date":"3/18/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":757,"Cost":503,"Date":"3/20/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":802,"Cost":642,"Date":"3/26/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":209,"Cost":163,"Date":"6/2/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":334,"Cost":181,"Date":"6/10/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":570,"Cost":529,"Date":"6/16/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":738,"Cost":632,"Date":"6/25/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":389,"Cost":261,"Date":"7/19/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":958,"Cost":560,"Date":"7/21/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":455,"Cost":255,"Date":"7/25/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":597,"Cost":556,"Date":"8/4/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":234,"Cost":189,"Date":"9/2/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":217,"Cost":175,"Date":"9/4/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":564,"Cost":349,"Date":"9/19/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":32,"Cost":26,"Date":"9/29/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":78,"Cost":71,"Date":"10/2/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":224,"Cost":119,"Date":"10/15/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":12,"Cost":6,"Date":"10/30/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":643,"Cost":527,"Date":"11/9/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":526,"Cost":310,"Date":"11/23/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":17,"Cost":9,"Date":"11/30/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":282,"Cost":239,"Date":"12/8/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":966,"Cost":672,"Date":"12/11/2018"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":299,"Cost":182,"Date":"1/15/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":153,"Cost":127,"Date":"1/24/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":195,"Cost":151,"Date":"2/3/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":29,"Cost":27,"Date":"2/4/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":85,"Cost":44,"Date":"3/9/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":83,"Cost":76,"Date":"3/12/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":895,"Cost":701,"Date":"4/19/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":982,"Cost":882,"Date":"5/3/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":66,"Cost":54,"Date":"5/4/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":114,"Cost":63,"Date":"6/8/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":511,"Cost":473,"Date":"6/26/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":741,"Cost":591,"Date":"7/4/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":171,"Cost":98,"Date":"7/13/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":183,"Cost":125,"Date":"8/8/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":832,"Cost":617,"Date":"8/26/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":497,"Cost":369,"Date":"9/2/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":703,"Cost":576,"Date":"9/29/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":820,"Cost":413,"Date":"10/12/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":550,"Cost":332,"Date":"11/2/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":384,"Cost":270,"Date":"11/4/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":684,"Cost":641,"Date":"11/7/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":648,"Cost":560,"Date":"12/1/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":21,"Cost":17,"Date":"12/4/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":481,"Cost":259,"Date":"12/7/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":176,"Cost":103,"Date":"12/18/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":364,"Cost":200,"Date":"12/20/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":414,"Cost":282,"Date":"12/20/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":258,"Cost":152,"Date":"12/21/2019"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":695,"Cost":651,"Date":"1/9/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":923,"Cost":642,"Date":"2/5/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":110,"Cost":94,"Date":"2/16/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":280,"Cost":251,"Date":"2/16/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":164,"Cost":134,"Date":"2/18/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":71,"Cost":41,"Date":"2/22/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":971,"Cost":510,"Date":"2/25/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":595,"Cost":381,"Date":"3/8/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":119,"Cost":84,"Date":"4/2/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":869,"Cost":462,"Date":"4/3/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":878,"Cost":596,"Date":"4/9/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":213,"Cost":112,"Date":"4/10/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":946,"Cost":691,"Date":"4/19/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":90,"Cost":62,"Date":"5/17/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":339,"Cost":253,"Date":"5/22/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":581,"Cost":348,"Date":"6/20/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":361,"Cost":230,"Date":"7/1/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":530,"Cost":433,"Date":"7/4/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":40,"Cost":33,"Date":"7/8/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":314,"Cost":278,"Date":"7/9/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":305,"Cost":279,"Date":"7/14/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":839,"Cost":491,"Date":"7/19/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":583,"Cost":458,"Date":"8/1/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":108,"Cost":96,"Date":"8/6/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":221,"Cost":117,"Date":"8/7/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":678,"Cost":456,"Date":"8/22/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":222,"Cost":141,"Date":"8/31/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":83,"Cost":51,"Date":"9/1/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":189,"Cost":114,"Date":"9/1/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":117,"Cost":63,"Date":"9/17/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":102,"Cost":60,"Date":"9/29/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":639,"Cost":455,"Date":"11/7/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":44,"Cost":31,"Date":"11/26/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":232,"Cost":170,"Date":"11/27/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":819,"Cost":583,"Date":"12/5/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":985,"Cost":493,"Date":"12/26/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":320,"Cost":253,"Date":"12/31/2020"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":832,"Cost":590,"Date":"1/20/2021"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":769,"Cost":713,"Date":"2/2/2021"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":846,"Cost":653,"Date":"2/8/2021"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":667,"Cost":342,"Date":"2/27/2021"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":37,"Cost":29,"Date":"3/1/2021"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":609,"Cost":325,"Date":"3/1/2021"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":800,"Cost":449,"Date":"3/19/2021"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":838,"Cost":562,"Date":"3/28/2021"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":358,"Cost":185,"Date":"5/21/2021"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":690,"Cost":382,"Date":"7/21/2021"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":348,"Cost":188,"Date":"8/5/2021"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":644,"Cost":567,"Date":"8/12/2021"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":11,"Cost":6,"Date":"8/21/2021"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":471,"Cost":357,"Date":"8/23/2021"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":994,"Cost":869,"Date":"9/3/2021"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":949,"Cost":872,"Date":"9/5/2021"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":407,"Cost":370,"Date":"10/6/2021"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":211,"Cost":172,"Date":"10/19/2021"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":715,"Cost":396,"Date":"11/15/2021"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":169,"Cost":136,"Date":"12/8/2021"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":352,"Cost":296,"Date":"1/8/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":153,"Cost":124,"Date":"1/14/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":3,"Cost":1,"Date":"1/19/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":689,"Cost":557,"Date":"1/28/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":884,"Cost":707,"Date":"1/31/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":415,"Cost":260,"Date":"3/27/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":366,"Cost":276,"Date":"4/20/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":185,"Cost":172,"Date":"4/24/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":516,"Cost":369,"Date":"4/28/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":677,"Cost":462,"Date":"5/15/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":353,"Cost":222,"Date":"5/16/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":4,"Cost":3,"Date":"5/18/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":291,"Cost":276,"Date":"6/2/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":650,"Cost":477,"Date":"6/3/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":184,"Cost":136,"Date":"6/5/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":937,"Cost":702,"Date":"6/7/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":513,"Cost":370,"Date":"6/14/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":587,"Cost":529,"Date":"6/20/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":178,"Cost":164,"Date":"6/24/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":300,"Cost":204,"Date":"7/4/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":787,"Cost":550,"Date":"7/9/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":92,"Cost":52,"Date":"7/12/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":562,"Cost":480,"Date":"8/14/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":386,"Cost":278,"Date":"8/16/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":574,"Cost":441,"Date":"8/23/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":166,"Cost":119,"Date":"9/2/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":824,"Cost":499,"Date":"9/3/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":644,"Cost":451,"Date":"9/16/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":566,"Cost":378,"Date":"10/4/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":578,"Cost":459,"Date":"11/1/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":652,"Cost":603,"Date":"11/2/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":413,"Cost":211,"Date":"12/17/2022"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":431,"Cost":367,"Date":"2/10/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":710,"Cost":663,"Date":"2/28/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":327,"Cost":257,"Date":"3/4/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":345,"Cost":203,"Date":"3/9/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":266,"Cost":230,"Date":"3/9/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":201,"Cost":174,"Date":"3/11/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":959,"Cost":701,"Date":"3/17/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":370,"Cost":259,"Date":"3/17/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":734,"Cost":600,"Date":"3/23/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":632,"Cost":446,"Date":"4/1/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":227,"Cost":154,"Date":"5/7/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":921,"Cost":770,"Date":"5/10/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":391,"Cost":346,"Date":"5/20/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":278,"Cost":214,"Date":"6/2/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":453,"Cost":410,"Date":"6/11/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":591,"Cost":381,"Date":"6/16/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":469,"Cost":236,"Date":"6/16/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":177,"Cost":124,"Date":"7/10/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":160,"Cost":95,"Date":"7/11/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":466,"Cost":420,"Date":"8/28/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":677,"Cost":468,"Date":"8/29/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":583,"Cost":524,"Date":"8/31/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":791,"Cost":596,"Date":"9/8/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":645,"Cost":529,"Date":"9/13/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":415,"Cost":327,"Date":"9/14/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":424,"Cost":296,"Date":"9/19/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":58,"Cost":48,"Date":"9/25/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":792,"Cost":714,"Date":"10/4/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":713,"Cost":625,"Date":"10/10/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":544,"Cost":416,"Date":"10/17/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":787,"Cost":652,"Date":"10/28/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":684,"Cost":379,"Date":"10/30/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":531,"Cost":313,"Date":"11/1/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":397,"Cost":218,"Date":"11/15/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":146,"Cost":116,"Date":"11/25/2023"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":57,"Cost":44,"Date":"1/10/2024"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":458,"Cost":300,"Date":"1/14/2024"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":638,"Cost":389,"Date":"1/20/2024"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":632,"Cost":378,"Date":"2/8/2024"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":774,"Cost":570,"Date":"2/25/2024"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":730,"Cost":497,"Date":"3/7/2024"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":673,"Cost":575,"Date":"3/14/2024"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":519,"Cost":393,"Date":"3/27/2024"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":335,"Cost":264,"Date":"4/5/2024"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":531,"Cost":294,"Date":"4/14/2024"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":610,"Cost":391,"Date":"5/3/2024"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":637,"Cost":553,"Date":"5/9/2024"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":638,"Cost":333,"Date":"5/15/2024"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":318,"Cost":284,"Date":"5/25/2024"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":977,"Cost":732,"Date":"5/26/2024"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":208,"Cost":192,"Date":"5/31/2024"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":583,"Cost":348,"Date":"7/27/2024"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":801,"Cost":500,"Date":"9/17/2024"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":365,"Cost":261,"Date":"10/6/2024"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":381,"Cost":290,"Date":"10/8/2024"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":740,"Cost":604,"Date":"10/26/2024"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":786,"Cost":452,"Date":"11/16/2024"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":412,"Cost":256,"Date":"11/18/2024"},{"Store":"Bikini Center, Berlin","Brand":"ARKET","Country":"Germany","Sale":48,"Cost":24,"Date":"12/1/2024"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":433,"Cost":216,"Date":"2/9/2018"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":192,"Cost":112,"Date":"2/11/2018"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":302,"Cost":160,"Date":"3/10/2018"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":464,"Cost":350,"Date":"3/16/2018"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":735,"Cost":525,"Date":"3/18/2018"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":54,"Cost":29,"Date":"3/20/2018"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":359,"Cost":227,"Date":"3/26/2018"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":409,"Cost":255,"Date":"6/2/2018"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":348,"Cost":233,"Date":"6/10/2018"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":972,"Cost":748,"Date":"6/16/2018"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":777,"Cost":399,"Date":"6/25/2018"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":428,"Cost":353,"Date":"7/19/2018"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":820,"Cost":559,"Date":"7/21/2018"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":613,"Cost":423,"Date":"7/25/2018"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":191,"Cost":129,"Date":"8/4/2018"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":339,"Cost":268,"Date":"9/2/2018"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":507,"Cost":271,"Date":"9/4/2018"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":951,"Cost":886,"Date":"9/19/2018"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":781,"Cost":498,"Date":"9/29/2018"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":275,"Cost":246,"Date":"10/2/2018"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":796,"Cost":623,"Date":"10/15/2018"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":266,"Cost":152,"Date":"10/30/2018"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":645,"Cost":571,"Date":"11/9/2018"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":956,"Cost":815,"Date":"11/23/2018"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":998,"Cost":720,"Date":"11/30/2018"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":395,"Cost":343,"Date":"12/8/2018"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":858,"Cost":676,"Date":"12/11/2018"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":690,"Cost":566,"Date":"1/15/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":819,"Cost":587,"Date":"1/24/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":222,"Cost":149,"Date":"2/3/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":162,"Cost":104,"Date":"2/4/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":604,"Cost":402,"Date":"3/9/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":589,"Cost":336,"Date":"3/12/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":871,"Cost":768,"Date":"4/19/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":410,"Cost":236,"Date":"5/3/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":238,"Cost":205,"Date":"5/4/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":28,"Cost":21,"Date":"6/8/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":505,"Cost":349,"Date":"6/26/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":667,"Cost":615,"Date":"7/4/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":971,"Cost":778,"Date":"7/13/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":894,"Cost":469,"Date":"8/8/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":741,"Cost":437,"Date":"8/26/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":31,"Cost":27,"Date":"9/2/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":103,"Cost":85,"Date":"9/29/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":266,"Cost":207,"Date":"10/12/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":842,"Cost":690,"Date":"11/2/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":46,"Cost":30,"Date":"11/4/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":100,"Cost":54,"Date":"11/7/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":968,"Cost":742,"Date":"12/1/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":653,"Cost":552,"Date":"12/4/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":544,"Cost":382,"Date":"12/7/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":644,"Cost":350,"Date":"12/18/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":913,"Cost":750,"Date":"12/20/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":59,"Cost":45,"Date":"12/20/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":369,"Cost":226,"Date":"12/21/2019"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":860,"Cost":723,"Date":"1/9/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":200,"Cost":108,"Date":"2/5/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":16,"Cost":12,"Date":"2/16/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":151,"Cost":139,"Date":"2/16/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":200,"Cost":133,"Date":"2/18/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":133,"Cost":120,"Date":"2/22/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":933,"Cost":805,"Date":"2/25/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":588,"Cost":429,"Date":"3/8/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":96,"Cost":80,"Date":"4/2/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":561,"Cost":309,"Date":"4/3/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":837,"Cost":731,"Date":"4/9/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":70,"Cost":63,"Date":"4/10/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":586,"Cost":492,"Date":"4/19/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":196,"Cost":121,"Date":"5/17/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":456,"Cost":382,"Date":"5/22/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":170,"Cost":156,"Date":"6/20/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":480,"Cost":402,"Date":"7/1/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":920,"Cost":627,"Date":"7/4/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":257,"Cost":201,"Date":"7/8/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":424,"Cost":403,"Date":"7/9/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":702,"Cost":351,"Date":"7/14/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":607,"Cost":399,"Date":"7/19/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":829,"Cost":516,"Date":"8/1/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":425,"Cost":257,"Date":"8/6/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":810,"Cost":573,"Date":"8/7/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":850,"Cost":735,"Date":"8/22/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":153,"Cost":93,"Date":"8/31/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":120,"Cost":95,"Date":"9/1/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":953,"Cost":492,"Date":"9/1/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":930,"Cost":510,"Date":"9/17/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":313,"Cost":249,"Date":"9/29/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":785,"Cost":424,"Date":"11/7/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":492,"Cost":462,"Date":"11/26/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":495,"Cost":405,"Date":"11/27/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":31,"Cost":18,"Date":"12/5/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":164,"Cost":88,"Date":"12/26/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":759,"Cost":635,"Date":"12/31/2020"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":680,"Cost":557,"Date":"1/20/2021"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":731,"Cost":370,"Date":"2/2/2021"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":127,"Cost":108,"Date":"2/8/2021"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":140,"Cost":117,"Date":"2/27/2021"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":149,"Cost":132,"Date":"3/1/2021"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":839,"Cost":442,"Date":"3/1/2021"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":816,"Cost":473,"Date":"3/19/2021"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":326,"Cost":260,"Date":"3/28/2021"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":437,"Cost":321,"Date":"5/21/2021"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":282,"Cost":248,"Date":"7/21/2021"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":555,"Cost":347,"Date":"8/5/2021"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":274,"Cost":208,"Date":"8/12/2021"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":891,"Cost":801,"Date":"8/21/2021"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":693,"Cost":488,"Date":"8/23/2021"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":708,"Cost":662,"Date":"9/3/2021"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":237,"Cost":196,"Date":"9/5/2021"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":236,"Cost":168,"Date":"10/6/2021"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":290,"Cost":261,"Date":"10/19/2021"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":973,"Cost":838,"Date":"11/15/2021"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":860,"Cost":492,"Date":"12/8/2021"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":240,"Cost":180,"Date":"1/8/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":82,"Cost":71,"Date":"1/14/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":88,"Cost":77,"Date":"1/19/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":288,"Cost":224,"Date":"1/28/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":423,"Cost":241,"Date":"1/31/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":438,"Cost":309,"Date":"3/27/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":169,"Cost":143,"Date":"4/20/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":794,"Cost":476,"Date":"4/24/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":276,"Cost":219,"Date":"4/28/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":82,"Cost":60,"Date":"5/15/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":62,"Cost":42,"Date":"5/16/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":376,"Cost":230,"Date":"5/18/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":262,"Cost":183,"Date":"6/2/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":471,"Cost":273,"Date":"6/3/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":689,"Cost":574,"Date":"6/5/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":60,"Cost":39,"Date":"6/7/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":807,"Cost":576,"Date":"6/14/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":383,"Cost":263,"Date":"6/20/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":598,"Cost":431,"Date":"6/24/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":711,"Cost":575,"Date":"7/4/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":842,"Cost":548,"Date":"7/9/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":607,"Cost":560,"Date":"7/12/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":658,"Cost":402,"Date":"8/14/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":13,"Cost":9,"Date":"8/16/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":458,"Cost":373,"Date":"8/23/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":536,"Cost":296,"Date":"9/2/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":591,"Cost":355,"Date":"9/3/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":649,"Cost":384,"Date":"9/16/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":556,"Cost":522,"Date":"10/4/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":921,"Cost":738,"Date":"11/1/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":47,"Cost":35,"Date":"11/2/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":171,"Cost":149,"Date":"12/17/2022"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":791,"Cost":614,"Date":"2/10/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":694,"Cost":382,"Date":"2/28/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":922,"Cost":463,"Date":"3/4/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":46,"Cost":26,"Date":"3/9/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":865,"Cost":686,"Date":"3/9/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":231,"Cost":155,"Date":"3/11/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":274,"Cost":151,"Date":"3/17/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":961,"Cost":666,"Date":"3/17/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":10,"Cost":7,"Date":"3/23/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":921,"Cost":790,"Date":"4/1/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":819,"Cost":772,"Date":"5/7/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":317,"Cost":221,"Date":"5/10/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":975,"Cost":530,"Date":"5/20/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":593,"Cost":308,"Date":"6/2/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":47,"Cost":44,"Date":"6/11/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":729,"Cost":366,"Date":"6/16/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":537,"Cost":279,"Date":"6/16/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":104,"Cost":74,"Date":"7/10/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":232,"Cost":125,"Date":"7/11/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":541,"Cost":302,"Date":"8/28/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":979,"Cost":794,"Date":"8/29/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":513,"Cost":373,"Date":"8/31/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":758,"Cost":684,"Date":"9/8/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":918,"Cost":867,"Date":"9/13/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":400,"Cost":319,"Date":"9/14/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":123,"Cost":84,"Date":"9/19/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":997,"Cost":538,"Date":"9/25/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":364,"Cost":186,"Date":"10/4/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":523,"Cost":378,"Date":"10/10/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":416,"Cost":324,"Date":"10/17/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":329,"Cost":261,"Date":"10/28/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":378,"Cost":270,"Date":"10/30/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":779,"Cost":623,"Date":"11/1/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":265,"Cost":251,"Date":"11/15/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":916,"Cost":844,"Date":"11/25/2023"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":749,"Cost":526,"Date":"1/10/2024"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":600,"Cost":427,"Date":"1/14/2024"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":854,"Cost":521,"Date":"1/20/2024"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":534,"Cost":389,"Date":"2/8/2024"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":512,"Cost":401,"Date":"2/25/2024"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":160,"Cost":113,"Date":"3/7/2024"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":754,"Cost":425,"Date":"3/14/2024"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":480,"Cost":430,"Date":"3/27/2024"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":708,"Cost":468,"Date":"4/5/2024"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":3,"Cost":3,"Date":"4/14/2024"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":14,"Cost":12,"Date":"5/3/2024"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":485,"Cost":250,"Date":"5/9/2024"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":485,"Cost":431,"Date":"5/15/2024"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":797,"Cost":401,"Date":"5/25/2024"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":473,"Cost":380,"Date":"5/26/2024"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":531,"Cost":272,"Date":"5/31/2024"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":176,"Cost":157,"Date":"7/27/2024"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":723,"Cost":614,"Date":"9/17/2024"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":572,"Cost":306,"Date":"10/6/2024"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":762,"Cost":485,"Date":"10/8/2024"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":342,"Cost":205,"Date":"10/26/2024"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":757,"Cost":678,"Date":"11/16/2024"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":960,"Cost":570,"Date":"11/18/2024"},{"Store":"Bikini Center, Berlin","Brand":"Jeans","Country":"Germany","Sale":638,"Cost":525,"Date":"12/1/2024"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":103,"Cost":85,"Date":"2/9/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":242,"Cost":176,"Date":"2/11/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":953,"Cost":617,"Date":"3/10/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":112,"Cost":80,"Date":"3/16/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":458,"Cost":304,"Date":"3/18/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":996,"Cost":656,"Date":"3/20/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":747,"Cost":387,"Date":"3/26/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":17,"Cost":8,"Date":"6/2/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":62,"Cost":58,"Date":"6/10/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":312,"Cost":231,"Date":"6/16/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":143,"Cost":103,"Date":"6/25/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":601,"Cost":524,"Date":"7/19/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":420,"Cost":280,"Date":"7/21/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":563,"Cost":473,"Date":"7/25/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":747,"Cost":556,"Date":"8/4/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":602,"Cost":469,"Date":"9/2/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":760,"Cost":527,"Date":"9/4/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":227,"Cost":169,"Date":"9/19/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":101,"Cost":77,"Date":"9/29/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":931,"Cost":498,"Date":"10/2/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":393,"Cost":323,"Date":"10/15/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":165,"Cost":129,"Date":"10/30/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":332,"Cost":272,"Date":"11/9/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":426,"Cost":304,"Date":"11/23/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":706,"Cost":517,"Date":"11/30/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":841,"Cost":632,"Date":"12/8/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":497,"Cost":415,"Date":"12/11/2018"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":430,"Cost":341,"Date":"1/15/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":946,"Cost":757,"Date":"1/24/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":962,"Cost":785,"Date":"2/3/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":96,"Cost":67,"Date":"2/4/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":732,"Cost":679,"Date":"3/9/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":239,"Cost":214,"Date":"3/12/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":390,"Cost":253,"Date":"4/19/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":410,"Cost":264,"Date":"5/3/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":313,"Cost":221,"Date":"5/4/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":194,"Cost":165,"Date":"6/8/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":696,"Cost":422,"Date":"6/26/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":913,"Cost":481,"Date":"7/4/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":411,"Cost":385,"Date":"7/13/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":135,"Cost":71,"Date":"8/8/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":558,"Cost":332,"Date":"8/26/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":472,"Cost":373,"Date":"9/2/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":837,"Cost":430,"Date":"9/29/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":583,"Cost":413,"Date":"10/12/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":447,"Cost":261,"Date":"11/2/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":408,"Cost":261,"Date":"11/4/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":49,"Cost":36,"Date":"11/7/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":99,"Cost":88,"Date":"12/1/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":239,"Cost":148,"Date":"12/4/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":387,"Cost":216,"Date":"12/7/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":254,"Cost":203,"Date":"12/18/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":120,"Cost":113,"Date":"12/20/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":671,"Cost":459,"Date":"12/20/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":407,"Cost":256,"Date":"12/21/2019"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":254,"Cost":155,"Date":"1/9/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":585,"Cost":484,"Date":"2/5/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":540,"Cost":463,"Date":"2/16/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":982,"Cost":848,"Date":"2/16/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":335,"Cost":205,"Date":"2/18/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":728,"Cost":367,"Date":"2/22/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":875,"Cost":770,"Date":"2/25/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":792,"Cost":501,"Date":"3/8/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":793,"Cost":535,"Date":"4/2/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":624,"Cost":417,"Date":"4/3/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":766,"Cost":719,"Date":"4/9/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":864,"Cost":641,"Date":"4/10/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":443,"Cost":270,"Date":"4/19/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":607,"Cost":327,"Date":"5/17/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":308,"Cost":240,"Date":"5/22/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":623,"Cost":506,"Date":"6/20/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":593,"Cost":426,"Date":"7/1/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":213,"Cost":109,"Date":"7/4/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":991,"Cost":864,"Date":"7/8/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":263,"Cost":171,"Date":"7/9/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":239,"Cost":123,"Date":"7/14/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":58,"Cost":46,"Date":"7/19/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":204,"Cost":105,"Date":"8/1/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":62,"Cost":46,"Date":"8/6/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":194,"Cost":105,"Date":"8/7/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":516,"Cost":325,"Date":"8/22/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":621,"Cost":423,"Date":"8/31/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":517,"Cost":323,"Date":"9/1/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":868,"Cost":585,"Date":"9/1/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":902,"Cost":739,"Date":"9/17/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":235,"Cost":205,"Date":"9/29/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":117,"Cost":65,"Date":"11/7/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":201,"Cost":120,"Date":"11/26/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":982,"Cost":692,"Date":"11/27/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":753,"Cost":670,"Date":"12/5/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":564,"Cost":283,"Date":"12/26/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":892,"Cost":804,"Date":"12/31/2020"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":267,"Cost":237,"Date":"1/20/2021"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":926,"Cost":498,"Date":"2/2/2021"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":556,"Cost":384,"Date":"2/8/2021"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":142,"Cost":122,"Date":"2/27/2021"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":50,"Cost":41,"Date":"3/1/2021"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":228,"Cost":116,"Date":"3/1/2021"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":525,"Cost":389,"Date":"3/19/2021"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":272,"Cost":146,"Date":"3/28/2021"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":158,"Cost":136,"Date":"5/21/2021"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":761,"Cost":521,"Date":"7/21/2021"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":246,"Cost":138,"Date":"8/5/2021"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":244,"Cost":183,"Date":"8/12/2021"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":100,"Cost":86,"Date":"8/21/2021"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":174,"Cost":105,"Date":"8/23/2021"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":590,"Cost":506,"Date":"9/3/2021"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":908,"Cost":497,"Date":"9/5/2021"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":650,"Cost":386,"Date":"10/6/2021"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":162,"Cost":110,"Date":"10/19/2021"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":553,"Cost":517,"Date":"11/15/2021"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":528,"Cost":484,"Date":"12/8/2021"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":313,"Cost":278,"Date":"1/8/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":803,"Cost":643,"Date":"1/14/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":522,"Cost":361,"Date":"1/19/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":64,"Cost":56,"Date":"1/28/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":552,"Cost":281,"Date":"1/31/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":202,"Cost":119,"Date":"3/27/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":909,"Cost":585,"Date":"4/20/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":259,"Cost":223,"Date":"4/24/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":422,"Cost":230,"Date":"4/28/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":528,"Cost":338,"Date":"5/15/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":670,"Cost":465,"Date":"5/16/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":687,"Cost":575,"Date":"5/18/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":299,"Cost":266,"Date":"6/2/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":472,"Cost":433,"Date":"6/3/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":853,"Cost":624,"Date":"6/5/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":481,"Cost":306,"Date":"6/7/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":421,"Cost":279,"Date":"6/14/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":662,"Cost":584,"Date":"6/20/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":108,"Cost":76,"Date":"6/24/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":93,"Cost":85,"Date":"7/4/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":91,"Cost":61,"Date":"7/9/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":1,"Cost":1,"Date":"7/12/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":827,"Cost":672,"Date":"8/14/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":493,"Cost":388,"Date":"8/16/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":143,"Cost":130,"Date":"8/23/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":627,"Cost":401,"Date":"9/2/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":349,"Cost":327,"Date":"9/3/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":709,"Cost":480,"Date":"9/16/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":58,"Cost":40,"Date":"10/4/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":652,"Cost":518,"Date":"11/1/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":857,"Cost":650,"Date":"11/2/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":199,"Cost":170,"Date":"12/17/2022"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":280,"Cost":164,"Date":"2/10/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":743,"Cost":405,"Date":"2/28/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":242,"Cost":222,"Date":"3/4/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":476,"Cost":371,"Date":"3/9/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":314,"Cost":225,"Date":"3/9/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":506,"Cost":376,"Date":"3/11/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":118,"Cost":66,"Date":"3/17/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":911,"Cost":722,"Date":"3/17/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":666,"Cost":394,"Date":"3/23/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":727,"Cost":622,"Date":"4/1/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":704,"Cost":633,"Date":"5/7/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":308,"Cost":237,"Date":"5/10/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":578,"Cost":432,"Date":"5/20/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":809,"Cost":750,"Date":"6/2/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":682,"Cost":647,"Date":"6/11/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":310,"Cost":270,"Date":"6/16/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":476,"Cost":328,"Date":"6/16/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":47,"Cost":35,"Date":"7/10/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":76,"Cost":40,"Date":"7/11/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":865,"Cost":606,"Date":"8/28/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":128,"Cost":71,"Date":"8/29/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":708,"Cost":594,"Date":"8/31/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":268,"Cost":161,"Date":"9/8/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":895,"Cost":821,"Date":"9/13/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":286,"Cost":180,"Date":"9/14/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":172,"Cost":151,"Date":"9/19/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":470,"Cost":266,"Date":"9/25/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":829,"Cost":684,"Date":"10/4/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":220,"Cost":196,"Date":"10/10/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":319,"Cost":210,"Date":"10/17/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":330,"Cost":221,"Date":"10/28/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":363,"Cost":239,"Date":"10/30/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":867,"Cost":794,"Date":"11/1/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":424,"Cost":393,"Date":"11/15/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":499,"Cost":325,"Date":"11/25/2023"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":633,"Cost":454,"Date":"1/10/2024"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":240,"Cost":123,"Date":"1/14/2024"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":407,"Cost":295,"Date":"1/20/2024"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":735,"Cost":449,"Date":"2/8/2024"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":216,"Cost":161,"Date":"2/25/2024"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":397,"Cost":233,"Date":"3/7/2024"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":76,"Cost":57,"Date":"3/14/2024"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":659,"Cost":370,"Date":"3/27/2024"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":157,"Cost":85,"Date":"4/5/2024"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":661,"Cost":541,"Date":"4/14/2024"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":897,"Cost":666,"Date":"5/3/2024"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":509,"Cost":397,"Date":"5/9/2024"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":173,"Cost":99,"Date":"5/15/2024"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":773,"Cost":677,"Date":"5/25/2024"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":7,"Cost":6,"Date":"5/26/2024"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":887,"Cost":640,"Date":"5/31/2024"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":339,"Cost":188,"Date":"7/27/2024"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":526,"Cost":450,"Date":"9/17/2024"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":158,"Cost":130,"Date":"10/6/2024"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":768,"Cost":608,"Date":"10/8/2024"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":639,"Cost":422,"Date":"10/26/2024"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":113,"Cost":79,"Date":"11/16/2024"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":954,"Cost":787,"Date":"11/18/2024"},{"Store":"Bikini Center, Berlin","Brand":"Sellpy","Country":"Germany","Sale":614,"Cost":410,"Date":"12/1/2024"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":582,"Cost":525,"Date":"2/9/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":87,"Cost":77,"Date":"2/11/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":146,"Cost":120,"Date":"3/10/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":955,"Cost":816,"Date":"3/16/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":447,"Cost":252,"Date":"3/18/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":348,"Cost":188,"Date":"3/20/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":538,"Cost":369,"Date":"3/26/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":55,"Cost":36,"Date":"6/2/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":666,"Cost":483,"Date":"6/10/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":996,"Cost":688,"Date":"6/16/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":128,"Cost":75,"Date":"6/25/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":745,"Cost":650,"Date":"7/19/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":454,"Cost":327,"Date":"7/21/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":299,"Cost":170,"Date":"7/25/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":359,"Cost":213,"Date":"8/4/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":939,"Cost":509,"Date":"9/2/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":808,"Cost":452,"Date":"9/4/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":469,"Cost":432,"Date":"9/19/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":551,"Cost":477,"Date":"9/29/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":205,"Cost":195,"Date":"10/2/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":936,"Cost":737,"Date":"10/15/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":791,"Cost":548,"Date":"10/30/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":469,"Cost":248,"Date":"11/9/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":451,"Cost":357,"Date":"11/23/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":424,"Cost":251,"Date":"11/30/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":911,"Cost":536,"Date":"12/8/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":994,"Cost":708,"Date":"12/11/2018"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":996,"Cost":577,"Date":"1/15/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":945,"Cost":895,"Date":"1/24/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":973,"Cost":586,"Date":"2/3/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":149,"Cost":136,"Date":"2/4/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":805,"Cost":667,"Date":"3/9/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":479,"Cost":437,"Date":"3/12/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":269,"Cost":169,"Date":"4/19/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":610,"Cost":530,"Date":"5/3/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":736,"Cost":432,"Date":"5/4/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":822,"Cost":763,"Date":"6/8/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":34,"Cost":22,"Date":"6/26/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":37,"Cost":29,"Date":"7/4/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":435,"Cost":300,"Date":"7/13/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":630,"Cost":460,"Date":"8/8/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":784,"Cost":652,"Date":"8/26/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":256,"Cost":242,"Date":"9/2/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":978,"Cost":511,"Date":"9/29/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":619,"Cost":542,"Date":"10/12/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":123,"Cost":115,"Date":"11/2/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":896,"Cost":517,"Date":"11/4/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":527,"Cost":410,"Date":"11/7/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":453,"Cost":313,"Date":"12/1/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":369,"Cost":188,"Date":"12/4/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":198,"Cost":106,"Date":"12/7/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":823,"Cost":450,"Date":"12/18/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":921,"Cost":764,"Date":"12/20/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":600,"Cost":564,"Date":"12/20/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":842,"Cost":447,"Date":"12/21/2019"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":580,"Cost":440,"Date":"1/9/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":638,"Cost":592,"Date":"2/5/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":763,"Cost":464,"Date":"2/16/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":709,"Cost":455,"Date":"2/16/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":94,"Cost":84,"Date":"2/18/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":181,"Cost":102,"Date":"2/22/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":342,"Cost":307,"Date":"2/25/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":763,"Cost":522,"Date":"3/8/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":938,"Cost":634,"Date":"4/2/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":649,"Cost":590,"Date":"4/3/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":426,"Cost":242,"Date":"4/9/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":626,"Cost":412,"Date":"4/10/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":871,"Cost":491,"Date":"4/19/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":614,"Cost":554,"Date":"5/17/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":803,"Cost":448,"Date":"5/22/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":220,"Cost":157,"Date":"6/20/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":92,"Cost":63,"Date":"7/1/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":665,"Cost":500,"Date":"7/4/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":624,"Cost":426,"Date":"7/8/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":851,"Cost":559,"Date":"7/9/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":364,"Cost":304,"Date":"7/14/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":202,"Cost":183,"Date":"7/19/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":53,"Cost":37,"Date":"8/1/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":673,"Cost":584,"Date":"8/6/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":799,"Cost":671,"Date":"8/7/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":205,"Cost":163,"Date":"8/22/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":400,"Cost":339,"Date":"8/31/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":540,"Cost":417,"Date":"9/1/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":368,"Cost":275,"Date":"9/1/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":32,"Cost":21,"Date":"9/17/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":40,"Cost":34,"Date":"9/29/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":734,"Cost":410,"Date":"11/7/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":635,"Cost":327,"Date":"11/26/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":868,"Cost":714,"Date":"11/27/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":559,"Cost":504,"Date":"12/5/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":187,"Cost":104,"Date":"12/26/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":611,"Cost":453,"Date":"12/31/2020"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":195,"Cost":139,"Date":"1/20/2021"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":624,"Cost":362,"Date":"2/2/2021"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":36,"Cost":18,"Date":"2/8/2021"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":580,"Cost":512,"Date":"2/27/2021"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":160,"Cost":101,"Date":"3/1/2021"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":417,"Cost":292,"Date":"3/1/2021"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":813,"Cost":596,"Date":"3/19/2021"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":435,"Cost":324,"Date":"3/28/2021"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":375,"Cost":238,"Date":"5/21/2021"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":662,"Cost":580,"Date":"7/21/2021"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":158,"Cost":143,"Date":"8/5/2021"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":694,"Cost":588,"Date":"8/12/2021"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":272,"Cost":166,"Date":"8/21/2021"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":887,"Cost":709,"Date":"8/23/2021"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":973,"Cost":771,"Date":"9/3/2021"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":236,"Cost":222,"Date":"9/5/2021"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":687,"Cost":397,"Date":"10/6/2021"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":630,"Cost":508,"Date":"10/19/2021"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":560,"Cost":331,"Date":"11/15/2021"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":264,"Cost":241,"Date":"12/8/2021"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":582,"Cost":403,"Date":"1/8/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":109,"Cost":63,"Date":"1/14/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":697,"Cost":537,"Date":"1/19/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":256,"Cost":154,"Date":"1/28/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":895,"Cost":681,"Date":"1/31/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":360,"Cost":231,"Date":"3/27/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":800,"Cost":684,"Date":"4/20/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":118,"Cost":94,"Date":"4/24/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":182,"Cost":157,"Date":"4/28/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":458,"Cost":411,"Date":"5/15/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":860,"Cost":457,"Date":"5/16/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":190,"Cost":167,"Date":"5/18/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":286,"Cost":258,"Date":"6/2/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":733,"Cost":489,"Date":"6/3/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":712,"Cost":429,"Date":"6/5/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":424,"Cost":371,"Date":"6/7/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":407,"Cost":332,"Date":"6/14/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":367,"Cost":328,"Date":"6/20/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":732,"Cost":405,"Date":"6/24/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":933,"Cost":592,"Date":"7/4/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":345,"Cost":198,"Date":"7/9/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":831,"Cost":690,"Date":"7/12/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":471,"Cost":287,"Date":"8/14/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":613,"Cost":333,"Date":"8/16/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":227,"Cost":187,"Date":"8/23/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":22,"Cost":13,"Date":"9/2/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":910,"Cost":857,"Date":"9/3/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":966,"Cost":648,"Date":"9/16/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":559,"Cost":436,"Date":"10/4/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":358,"Cost":326,"Date":"11/1/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":165,"Cost":115,"Date":"11/2/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":389,"Cost":317,"Date":"12/17/2022"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":460,"Cost":430,"Date":"2/10/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":497,"Cost":250,"Date":"2/28/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":605,"Cost":443,"Date":"3/4/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":470,"Cost":313,"Date":"3/9/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":681,"Cost":514,"Date":"3/9/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":854,"Cost":786,"Date":"3/11/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":123,"Cost":62,"Date":"3/17/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":168,"Cost":148,"Date":"3/17/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":461,"Cost":252,"Date":"3/23/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":299,"Cost":280,"Date":"4/1/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":954,"Cost":849,"Date":"5/7/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":411,"Cost":347,"Date":"5/10/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":503,"Cost":270,"Date":"5/20/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":576,"Cost":290,"Date":"6/2/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":858,"Cost":769,"Date":"6/11/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":716,"Cost":451,"Date":"6/16/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":94,"Cost":63,"Date":"6/16/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":160,"Cost":122,"Date":"7/10/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":461,"Cost":326,"Date":"7/11/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":743,"Cost":413,"Date":"8/28/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":24,"Cost":12,"Date":"8/29/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":85,"Cost":69,"Date":"8/31/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":507,"Cost":408,"Date":"9/8/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":246,"Cost":144,"Date":"9/13/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":670,"Cost":499,"Date":"9/14/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":98,"Cost":92,"Date":"9/19/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":557,"Cost":437,"Date":"9/25/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":24,"Cost":18,"Date":"10/4/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":868,"Cost":441,"Date":"10/10/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":869,"Cost":656,"Date":"10/17/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":96,"Cost":59,"Date":"10/28/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":136,"Cost":99,"Date":"10/30/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":51,"Cost":45,"Date":"11/1/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":645,"Cost":549,"Date":"11/15/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":724,"Cost":419,"Date":"11/25/2023"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":360,"Cost":321,"Date":"1/10/2024"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":310,"Cost":171,"Date":"1/14/2024"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":178,"Cost":144,"Date":"1/20/2024"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":911,"Cost":657,"Date":"2/8/2024"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":289,"Cost":263,"Date":"2/25/2024"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":807,"Cost":654,"Date":"3/7/2024"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":780,"Cost":699,"Date":"3/14/2024"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":432,"Cost":368,"Date":"3/27/2024"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":599,"Cost":564,"Date":"4/5/2024"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":371,"Cost":267,"Date":"4/14/2024"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":374,"Cost":326,"Date":"5/3/2024"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":658,"Cost":501,"Date":"5/9/2024"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":356,"Cost":323,"Date":"5/15/2024"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":586,"Cost":343,"Date":"5/25/2024"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":427,"Cost":256,"Date":"5/26/2024"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":719,"Cost":586,"Date":"5/31/2024"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":699,"Cost":662,"Date":"7/27/2024"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":927,"Cost":636,"Date":"9/17/2024"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":403,"Cost":370,"Date":"10/6/2024"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":995,"Cost":679,"Date":"10/8/2024"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":787,"Cost":451,"Date":"10/26/2024"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":404,"Cost":311,"Date":"11/16/2024"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":387,"Cost":348,"Date":"11/18/2024"},{"Store":"Aachen Arkaden","Brand":"Jeans","Country":"Germany","Sale":790,"Cost":586,"Date":"12/1/2024"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":349,"Cost":226,"Date":"2/9/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":521,"Cost":485,"Date":"2/11/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":422,"Cost":256,"Date":"3/10/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":315,"Cost":170,"Date":"3/16/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":951,"Cost":555,"Date":"3/18/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":65,"Cost":51,"Date":"3/20/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":942,"Cost":601,"Date":"3/26/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":766,"Cost":520,"Date":"6/2/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":220,"Cost":176,"Date":"6/10/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":738,"Cost":512,"Date":"6/16/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":544,"Cost":493,"Date":"6/25/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":533,"Cost":492,"Date":"7/19/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":158,"Cost":111,"Date":"7/21/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":115,"Cost":87,"Date":"7/25/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":891,"Cost":702,"Date":"8/4/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":185,"Cost":173,"Date":"9/2/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":699,"Cost":546,"Date":"9/4/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":192,"Cost":109,"Date":"9/19/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":100,"Cost":53,"Date":"9/29/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":858,"Cost":668,"Date":"10/2/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":944,"Cost":727,"Date":"10/15/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":677,"Cost":569,"Date":"10/30/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":669,"Cost":608,"Date":"11/9/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":38,"Cost":31,"Date":"11/23/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":950,"Cost":770,"Date":"11/30/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":423,"Cost":346,"Date":"12/8/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":132,"Cost":111,"Date":"12/11/2018"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":446,"Cost":299,"Date":"1/15/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":231,"Cost":203,"Date":"1/24/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":520,"Cost":470,"Date":"2/3/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":661,"Cost":589,"Date":"2/4/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":853,"Cost":673,"Date":"3/9/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":74,"Cost":61,"Date":"3/12/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":122,"Cost":101,"Date":"4/19/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":241,"Cost":181,"Date":"5/3/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":806,"Cost":498,"Date":"5/4/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":177,"Cost":92,"Date":"6/8/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":803,"Cost":621,"Date":"6/26/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":276,"Cost":253,"Date":"7/4/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":667,"Cost":416,"Date":"7/13/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":832,"Cost":627,"Date":"8/8/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":169,"Cost":142,"Date":"8/26/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":109,"Cost":68,"Date":"9/2/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":711,"Cost":437,"Date":"9/29/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":98,"Cost":79,"Date":"10/12/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":905,"Cost":482,"Date":"11/2/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":780,"Cost":515,"Date":"11/4/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":944,"Cost":499,"Date":"11/7/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":492,"Cost":428,"Date":"12/1/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":623,"Cost":411,"Date":"12/4/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":484,"Cost":382,"Date":"12/7/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":867,"Cost":780,"Date":"12/18/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":843,"Cost":525,"Date":"12/20/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":967,"Cost":574,"Date":"12/20/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":336,"Cost":195,"Date":"12/21/2019"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":851,"Cost":514,"Date":"1/9/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":81,"Cost":44,"Date":"2/5/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":592,"Cost":387,"Date":"2/16/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":807,"Cost":452,"Date":"2/16/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":761,"Cost":551,"Date":"2/18/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":514,"Cost":272,"Date":"2/22/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":250,"Cost":192,"Date":"2/25/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":756,"Cost":672,"Date":"3/8/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":499,"Cost":385,"Date":"4/2/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":788,"Cost":560,"Date":"4/3/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":460,"Cost":270,"Date":"4/9/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":659,"Cost":595,"Date":"4/10/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":989,"Cost":921,"Date":"4/19/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":794,"Cost":547,"Date":"5/17/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":808,"Cost":574,"Date":"5/22/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":144,"Cost":82,"Date":"6/20/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":631,"Cost":570,"Date":"7/1/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":662,"Cost":558,"Date":"7/4/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":652,"Cost":350,"Date":"7/8/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":258,"Cost":162,"Date":"7/9/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":36,"Cost":27,"Date":"7/14/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":563,"Cost":423,"Date":"7/19/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":238,"Cost":157,"Date":"8/1/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":855,"Cost":438,"Date":"8/6/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":10,"Cost":8,"Date":"8/7/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":22,"Cost":12,"Date":"8/22/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":67,"Cost":47,"Date":"8/31/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":305,"Cost":238,"Date":"9/1/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":949,"Cost":660,"Date":"9/1/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":499,"Cost":439,"Date":"9/17/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":140,"Cost":101,"Date":"9/29/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":651,"Cost":557,"Date":"11/7/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":734,"Cost":524,"Date":"11/26/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":190,"Cost":172,"Date":"11/27/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":874,"Cost":473,"Date":"12/5/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":461,"Cost":257,"Date":"12/26/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":449,"Cost":270,"Date":"12/31/2020"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":124,"Cost":113,"Date":"1/20/2021"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":534,"Cost":459,"Date":"2/2/2021"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":133,"Cost":68,"Date":"2/8/2021"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":107,"Cost":65,"Date":"2/27/2021"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":709,"Cost":557,"Date":"3/1/2021"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":692,"Cost":624,"Date":"3/1/2021"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":110,"Cost":82,"Date":"3/19/2021"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":4,"Cost":3,"Date":"3/28/2021"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":191,"Cost":167,"Date":"5/21/2021"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":858,"Cost":614,"Date":"7/21/2021"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":948,"Cost":873,"Date":"8/5/2021"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":276,"Cost":175,"Date":"8/12/2021"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":848,"Cost":588,"Date":"8/21/2021"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":335,"Cost":299,"Date":"8/23/2021"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":560,"Cost":371,"Date":"9/3/2021"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":943,"Cost":876,"Date":"9/5/2021"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":913,"Cost":557,"Date":"10/6/2021"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":170,"Cost":149,"Date":"10/19/2021"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":119,"Cost":102,"Date":"11/15/2021"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":983,"Cost":914,"Date":"12/8/2021"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":428,"Cost":371,"Date":"1/8/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":251,"Cost":139,"Date":"1/14/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":637,"Cost":385,"Date":"1/19/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":141,"Cost":74,"Date":"1/28/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":141,"Cost":77,"Date":"1/31/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":808,"Cost":608,"Date":"3/27/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":162,"Cost":112,"Date":"4/20/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":375,"Cost":256,"Date":"4/24/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":966,"Cost":668,"Date":"4/28/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":868,"Cost":458,"Date":"5/15/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":887,"Cost":523,"Date":"5/16/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":643,"Cost":383,"Date":"5/18/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":958,"Cost":691,"Date":"6/2/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":103,"Cost":56,"Date":"6/3/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":754,"Cost":507,"Date":"6/5/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":173,"Cost":100,"Date":"6/7/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":834,"Cost":500,"Date":"6/14/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":493,"Cost":337,"Date":"6/20/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":959,"Cost":598,"Date":"6/24/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":205,"Cost":119,"Date":"7/4/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":258,"Cost":188,"Date":"7/9/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":50,"Cost":46,"Date":"7/12/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":27,"Cost":13,"Date":"8/14/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":539,"Cost":310,"Date":"8/16/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":664,"Cost":504,"Date":"8/23/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":121,"Cost":88,"Date":"9/2/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":707,"Cost":653,"Date":"9/3/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":109,"Cost":65,"Date":"9/16/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":313,"Cost":258,"Date":"10/4/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":687,"Cost":528,"Date":"11/1/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":44,"Cost":40,"Date":"11/2/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":111,"Cost":98,"Date":"12/17/2022"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":766,"Cost":679,"Date":"2/10/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":867,"Cost":587,"Date":"2/28/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":137,"Cost":121,"Date":"3/4/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":626,"Cost":527,"Date":"3/9/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":987,"Cost":545,"Date":"3/9/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":371,"Cost":192,"Date":"3/11/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":795,"Cost":495,"Date":"3/17/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":141,"Cost":75,"Date":"3/17/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":284,"Cost":192,"Date":"3/23/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":983,"Cost":514,"Date":"4/1/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":420,"Cost":345,"Date":"5/7/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":537,"Cost":459,"Date":"5/10/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":730,"Cost":534,"Date":"5/20/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":25,"Cost":20,"Date":"6/2/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":784,"Cost":504,"Date":"6/11/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":390,"Cost":276,"Date":"6/16/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":219,"Cost":137,"Date":"6/16/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":459,"Cost":403,"Date":"7/10/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":153,"Cost":103,"Date":"7/11/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":207,"Cost":164,"Date":"8/28/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":179,"Cost":98,"Date":"8/29/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":604,"Cost":369,"Date":"8/31/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":635,"Cost":433,"Date":"9/8/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":909,"Cost":728,"Date":"9/13/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":788,"Cost":480,"Date":"9/14/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":36,"Cost":29,"Date":"9/19/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":530,"Cost":361,"Date":"9/25/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":26,"Cost":21,"Date":"10/4/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":368,"Cost":317,"Date":"10/10/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":55,"Cost":31,"Date":"10/17/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":995,"Cost":596,"Date":"10/28/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":82,"Cost":46,"Date":"10/30/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":92,"Cost":60,"Date":"11/1/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":875,"Cost":815,"Date":"11/15/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":683,"Cost":530,"Date":"11/25/2023"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":259,"Cost":182,"Date":"1/10/2024"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":525,"Cost":281,"Date":"1/14/2024"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":557,"Cost":342,"Date":"1/20/2024"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":580,"Cost":363,"Date":"2/8/2024"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":170,"Cost":142,"Date":"2/25/2024"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":782,"Cost":395,"Date":"3/7/2024"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":556,"Cost":328,"Date":"3/14/2024"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":952,"Cost":753,"Date":"3/27/2024"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":398,"Cost":229,"Date":"4/5/2024"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":895,"Cost":568,"Date":"4/14/2024"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":26,"Cost":17,"Date":"5/3/2024"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":177,"Cost":151,"Date":"5/9/2024"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":219,"Cost":175,"Date":"5/15/2024"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":902,"Cost":595,"Date":"5/25/2024"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":539,"Cost":391,"Date":"5/26/2024"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":956,"Cost":497,"Date":"5/31/2024"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":29,"Cost":23,"Date":"7/27/2024"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":383,"Cost":244,"Date":"9/17/2024"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":239,"Cost":179,"Date":"10/6/2024"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":49,"Cost":30,"Date":"10/8/2024"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":852,"Cost":691,"Date":"10/26/2024"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":812,"Cost":713,"Date":"11/16/2024"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":811,"Cost":618,"Date":"11/18/2024"},{"Store":"Aachen Arkaden","Brand":"HM","Country":"Germany","Sale":384,"Cost":340,"Date":"12/1/2024"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":835,"Cost":712,"Date":"2/9/2018"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":172,"Cost":108,"Date":"2/11/2018"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":202,"Cost":117,"Date":"3/10/2018"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":285,"Cost":246,"Date":"3/16/2018"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":775,"Cost":655,"Date":"3/18/2018"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":800,"Cost":675,"Date":"3/20/2018"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":951,"Cost":735,"Date":"3/26/2018"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":335,"Cost":283,"Date":"6/2/2018"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":209,"Cost":152,"Date":"6/10/2018"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":97,"Cost":79,"Date":"6/16/2018"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":947,"Cost":828,"Date":"6/25/2018"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":460,"Cost":285,"Date":"7/19/2018"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":283,"Cost":216,"Date":"7/21/2018"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":609,"Cost":353,"Date":"7/25/2018"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":951,"Cost":803,"Date":"8/4/2018"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":803,"Cost":458,"Date":"9/2/2018"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":186,"Cost":149,"Date":"9/4/2018"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":337,"Cost":258,"Date":"9/19/2018"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":245,"Cost":210,"Date":"9/29/2018"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":169,"Cost":149,"Date":"10/2/2018"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":575,"Cost":333,"Date":"10/15/2018"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":11,"Cost":8,"Date":"10/30/2018"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":956,"Cost":719,"Date":"11/9/2018"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":86,"Cost":72,"Date":"11/23/2018"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":200,"Cost":127,"Date":"11/30/2018"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":284,"Cost":210,"Date":"12/8/2018"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":121,"Cost":78,"Date":"12/11/2018"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":879,"Cost":469,"Date":"1/15/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":879,"Cost":754,"Date":"1/24/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":890,"Cost":816,"Date":"2/3/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":68,"Cost":40,"Date":"2/4/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":21,"Cost":19,"Date":"3/9/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":748,"Cost":516,"Date":"3/12/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":392,"Cost":209,"Date":"4/19/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":789,"Cost":486,"Date":"5/3/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":300,"Cost":254,"Date":"5/4/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":607,"Cost":574,"Date":"6/8/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":466,"Cost":429,"Date":"6/26/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":435,"Cost":288,"Date":"7/4/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":185,"Cost":129,"Date":"7/13/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":84,"Cost":49,"Date":"8/8/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":959,"Cost":608,"Date":"8/26/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":972,"Cost":676,"Date":"9/2/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":611,"Cost":327,"Date":"9/29/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":172,"Cost":149,"Date":"10/12/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":373,"Cost":343,"Date":"11/2/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":959,"Cost":611,"Date":"11/4/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":1,"Cost":1,"Date":"11/7/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":455,"Cost":408,"Date":"12/1/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":660,"Cost":563,"Date":"12/4/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":22,"Cost":18,"Date":"12/7/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":595,"Cost":460,"Date":"12/18/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":855,"Cost":789,"Date":"12/20/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":14,"Cost":11,"Date":"12/20/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":651,"Cost":611,"Date":"12/21/2019"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":471,"Cost":442,"Date":"1/9/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":702,"Cost":484,"Date":"2/5/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":129,"Cost":79,"Date":"2/16/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":308,"Cost":159,"Date":"2/16/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":332,"Cost":285,"Date":"2/18/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":544,"Cost":484,"Date":"2/22/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":623,"Cost":570,"Date":"2/25/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":526,"Cost":333,"Date":"3/8/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":53,"Cost":33,"Date":"4/2/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":911,"Cost":549,"Date":"4/3/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":85,"Cost":62,"Date":"4/9/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":878,"Cost":667,"Date":"4/10/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":23,"Cost":12,"Date":"4/19/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":3,"Cost":2,"Date":"5/17/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":992,"Cost":708,"Date":"5/22/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":516,"Cost":270,"Date":"6/20/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":148,"Cost":114,"Date":"7/1/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":827,"Cost":579,"Date":"7/4/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":252,"Cost":163,"Date":"7/8/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":87,"Cost":67,"Date":"7/9/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":275,"Cost":170,"Date":"7/14/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":888,"Cost":671,"Date":"7/19/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":626,"Cost":475,"Date":"8/1/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":629,"Cost":367,"Date":"8/6/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":794,"Cost":520,"Date":"8/7/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":658,"Cost":367,"Date":"8/22/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":750,"Cost":606,"Date":"8/31/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":643,"Cost":435,"Date":"9/1/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":337,"Cost":183,"Date":"9/1/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":92,"Cost":60,"Date":"9/17/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":77,"Cost":61,"Date":"9/29/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":531,"Cost":407,"Date":"11/7/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":596,"Cost":342,"Date":"11/26/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":155,"Cost":89,"Date":"11/27/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":965,"Cost":516,"Date":"12/5/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":533,"Cost":287,"Date":"12/26/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":633,"Cost":402,"Date":"12/31/2020"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":361,"Cost":181,"Date":"1/20/2021"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":821,"Cost":433,"Date":"2/2/2021"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":611,"Cost":509,"Date":"2/8/2021"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":939,"Cost":793,"Date":"2/27/2021"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":777,"Cost":711,"Date":"3/1/2021"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":338,"Cost":301,"Date":"3/1/2021"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":741,"Cost":554,"Date":"3/19/2021"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":789,"Cost":613,"Date":"3/28/2021"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":127,"Cost":121,"Date":"5/21/2021"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":400,"Cost":277,"Date":"7/21/2021"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":33,"Cost":26,"Date":"8/5/2021"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":834,"Cost":543,"Date":"8/12/2021"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":121,"Cost":73,"Date":"8/21/2021"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":72,"Cost":42,"Date":"8/23/2021"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":154,"Cost":89,"Date":"9/3/2021"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":830,"Cost":764,"Date":"9/5/2021"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":331,"Cost":223,"Date":"10/6/2021"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":245,"Cost":190,"Date":"10/19/2021"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":235,"Cost":224,"Date":"11/15/2021"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":425,"Cost":298,"Date":"12/8/2021"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":378,"Cost":343,"Date":"1/8/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":429,"Cost":285,"Date":"1/14/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":445,"Cost":411,"Date":"1/19/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":162,"Cost":115,"Date":"1/28/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":569,"Cost":407,"Date":"1/31/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":163,"Cost":95,"Date":"3/27/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":295,"Cost":224,"Date":"4/20/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":674,"Cost":562,"Date":"4/24/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":994,"Cost":784,"Date":"4/28/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":876,"Cost":723,"Date":"5/15/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":89,"Cost":46,"Date":"5/16/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":600,"Cost":352,"Date":"5/18/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":780,"Cost":468,"Date":"6/2/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":70,"Cost":56,"Date":"6/3/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":927,"Cost":485,"Date":"6/5/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":480,"Cost":389,"Date":"6/7/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":692,"Cost":400,"Date":"6/14/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":919,"Cost":620,"Date":"6/20/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":331,"Cost":313,"Date":"6/24/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":242,"Cost":158,"Date":"7/4/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":949,"Cost":758,"Date":"7/9/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":174,"Cost":140,"Date":"7/12/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":256,"Cost":212,"Date":"8/14/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":433,"Cost":241,"Date":"8/16/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":762,"Cost":408,"Date":"8/23/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":694,"Cost":383,"Date":"9/2/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":763,"Cost":689,"Date":"9/3/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":867,"Cost":520,"Date":"9/16/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":673,"Cost":495,"Date":"10/4/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":574,"Cost":457,"Date":"11/1/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":378,"Cost":241,"Date":"11/2/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":679,"Cost":372,"Date":"12/17/2022"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":678,"Cost":524,"Date":"2/10/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":291,"Cost":195,"Date":"2/28/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":972,"Cost":779,"Date":"3/4/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":62,"Cost":38,"Date":"3/9/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":172,"Cost":128,"Date":"3/9/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":869,"Cost":519,"Date":"3/11/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":716,"Cost":650,"Date":"3/17/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":45,"Cost":25,"Date":"3/17/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":572,"Cost":419,"Date":"3/23/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":29,"Cost":21,"Date":"4/1/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":390,"Cost":369,"Date":"5/7/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":846,"Cost":655,"Date":"5/10/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":181,"Cost":157,"Date":"5/20/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":896,"Cost":518,"Date":"6/2/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":762,"Cost":662,"Date":"6/11/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":606,"Cost":471,"Date":"6/16/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":210,"Cost":141,"Date":"6/16/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":840,"Cost":670,"Date":"7/10/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":510,"Cost":455,"Date":"7/11/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":16,"Cost":10,"Date":"8/28/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":440,"Cost":282,"Date":"8/29/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":37,"Cost":24,"Date":"8/31/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":17,"Cost":14,"Date":"9/8/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":477,"Cost":391,"Date":"9/13/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":73,"Cost":45,"Date":"9/14/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":468,"Cost":270,"Date":"9/19/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":716,"Cost":431,"Date":"9/25/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":499,"Cost":322,"Date":"10/4/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":674,"Cost":454,"Date":"10/10/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":949,"Cost":756,"Date":"10/17/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":382,"Cost":351,"Date":"10/28/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":575,"Cost":386,"Date":"10/30/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":894,"Cost":548,"Date":"11/1/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":67,"Cost":63,"Date":"11/15/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":104,"Cost":55,"Date":"11/25/2023"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":974,"Cost":912,"Date":"1/10/2024"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":183,"Cost":159,"Date":"1/14/2024"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":178,"Cost":150,"Date":"1/20/2024"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":194,"Cost":132,"Date":"2/8/2024"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":280,"Cost":186,"Date":"2/25/2024"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":961,"Cost":861,"Date":"3/7/2024"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":223,"Cost":190,"Date":"3/14/2024"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":324,"Cost":191,"Date":"3/27/2024"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":243,"Cost":140,"Date":"4/5/2024"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":414,"Cost":353,"Date":"4/14/2024"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":484,"Cost":431,"Date":"5/3/2024"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":441,"Cost":336,"Date":"5/9/2024"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":281,"Cost":161,"Date":"5/15/2024"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":17,"Cost":12,"Date":"5/25/2024"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":968,"Cost":762,"Date":"5/26/2024"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":944,"Cost":590,"Date":"5/31/2024"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":182,"Cost":128,"Date":"7/27/2024"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":303,"Cost":234,"Date":"9/17/2024"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":18,"Cost":15,"Date":"10/6/2024"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":800,"Cost":646,"Date":"10/8/2024"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":136,"Cost":108,"Date":"10/26/2024"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":20,"Cost":11,"Date":"11/16/2024"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":864,"Cost":554,"Date":"11/18/2024"},{"Store":"Aachen Arkaden","Brand":"ARKET","Country":"Germany","Sale":769,"Cost":717,"Date":"12/1/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":586,"Cost":415,"Date":"2/9/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":131,"Cost":106,"Date":"2/11/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":29,"Cost":24,"Date":"3/10/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":536,"Cost":281,"Date":"3/16/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":108,"Cost":80,"Date":"3/18/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":862,"Cost":663,"Date":"3/20/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":388,"Cost":289,"Date":"3/26/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":126,"Cost":106,"Date":"6/2/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":696,"Cost":550,"Date":"6/10/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":144,"Cost":119,"Date":"6/16/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":574,"Cost":523,"Date":"6/25/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":342,"Cost":210,"Date":"7/19/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":39,"Cost":25,"Date":"7/21/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":946,"Cost":484,"Date":"7/25/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":948,"Cost":723,"Date":"8/4/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":828,"Cost":669,"Date":"9/2/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":357,"Cost":303,"Date":"9/4/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":740,"Cost":680,"Date":"9/19/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":147,"Cost":114,"Date":"9/29/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":141,"Cost":126,"Date":"10/2/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":504,"Cost":403,"Date":"10/15/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":769,"Cost":453,"Date":"10/30/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":253,"Cost":155,"Date":"11/9/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":902,"Cost":661,"Date":"11/23/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":412,"Cost":271,"Date":"11/30/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":596,"Cost":459,"Date":"12/8/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":636,"Cost":337,"Date":"12/11/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":602,"Cost":346,"Date":"1/15/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":88,"Cost":69,"Date":"1/24/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":406,"Cost":299,"Date":"2/3/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":686,"Cost":603,"Date":"2/4/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":950,"Cost":692,"Date":"3/9/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":555,"Cost":310,"Date":"3/12/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":508,"Cost":428,"Date":"4/19/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":622,"Cost":571,"Date":"5/3/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":771,"Cost":447,"Date":"5/4/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":103,"Cost":69,"Date":"6/8/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":888,"Cost":753,"Date":"6/26/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":633,"Cost":586,"Date":"7/4/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":19,"Cost":13,"Date":"7/13/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":738,"Cost":409,"Date":"8/8/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":583,"Cost":308,"Date":"8/26/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":843,"Cost":472,"Date":"9/2/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":139,"Cost":124,"Date":"9/29/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":703,"Cost":490,"Date":"10/12/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":175,"Cost":147,"Date":"11/2/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":40,"Cost":33,"Date":"11/4/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":336,"Cost":287,"Date":"11/7/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":733,"Cost":513,"Date":"12/1/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":131,"Cost":102,"Date":"12/4/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":805,"Cost":658,"Date":"12/7/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":856,"Cost":767,"Date":"12/18/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":612,"Cost":529,"Date":"12/20/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":769,"Cost":522,"Date":"12/20/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":839,"Cost":758,"Date":"12/21/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":99,"Cost":55,"Date":"1/9/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":942,"Cost":762,"Date":"2/5/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":901,"Cost":538,"Date":"2/16/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":612,"Cost":491,"Date":"2/16/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":837,"Cost":496,"Date":"2/18/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":843,"Cost":731,"Date":"2/22/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":544,"Cost":288,"Date":"2/25/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":303,"Cost":152,"Date":"3/8/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":891,"Cost":498,"Date":"4/2/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":151,"Cost":107,"Date":"4/3/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":757,"Cost":518,"Date":"4/9/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":724,"Cost":526,"Date":"4/10/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":191,"Cost":136,"Date":"4/19/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":503,"Cost":457,"Date":"5/17/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":905,"Cost":472,"Date":"5/22/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":129,"Cost":115,"Date":"6/20/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":894,"Cost":659,"Date":"7/1/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":140,"Cost":109,"Date":"7/4/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":20,"Cost":17,"Date":"7/8/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":89,"Cost":48,"Date":"7/9/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":23,"Cost":17,"Date":"7/14/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":575,"Cost":466,"Date":"7/19/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":487,"Cost":254,"Date":"8/1/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":19,"Cost":17,"Date":"8/6/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":735,"Cost":380,"Date":"8/7/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":56,"Cost":44,"Date":"8/22/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":505,"Cost":308,"Date":"8/31/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":632,"Cost":448,"Date":"9/1/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":248,"Cost":138,"Date":"9/1/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":47,"Cost":34,"Date":"9/17/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":948,"Cost":642,"Date":"9/29/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":163,"Cost":135,"Date":"11/7/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":169,"Cost":105,"Date":"11/26/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":865,"Cost":578,"Date":"11/27/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":995,"Cost":614,"Date":"12/5/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":489,"Cost":431,"Date":"12/26/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":617,"Cost":489,"Date":"12/31/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":312,"Cost":167,"Date":"1/20/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":286,"Cost":157,"Date":"2/2/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":500,"Cost":329,"Date":"2/8/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":156,"Cost":102,"Date":"2/27/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":113,"Cost":80,"Date":"3/1/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":907,"Cost":545,"Date":"3/1/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":569,"Cost":371,"Date":"3/19/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":334,"Cost":217,"Date":"3/28/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":183,"Cost":118,"Date":"5/21/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":530,"Cost":298,"Date":"7/21/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":95,"Cost":57,"Date":"8/5/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":387,"Cost":350,"Date":"8/12/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":955,"Cost":863,"Date":"8/21/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":313,"Cost":200,"Date":"8/23/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":270,"Cost":153,"Date":"9/3/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":69,"Cost":48,"Date":"9/5/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":320,"Cost":192,"Date":"10/6/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":788,"Cost":565,"Date":"10/19/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":668,"Cost":419,"Date":"11/15/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":121,"Cost":102,"Date":"12/8/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":207,"Cost":180,"Date":"1/8/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":422,"Cost":384,"Date":"1/14/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":163,"Cost":152,"Date":"1/19/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":398,"Cost":369,"Date":"1/28/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":307,"Cost":233,"Date":"1/31/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":682,"Cost":524,"Date":"3/27/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":910,"Cost":610,"Date":"4/20/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":147,"Cost":126,"Date":"4/24/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":691,"Cost":422,"Date":"4/28/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":539,"Cost":385,"Date":"5/15/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":764,"Cost":717,"Date":"5/16/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":319,"Cost":207,"Date":"5/18/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":677,"Cost":634,"Date":"6/2/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":452,"Cost":254,"Date":"6/3/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":948,"Cost":861,"Date":"6/5/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":534,"Cost":323,"Date":"6/7/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":391,"Cost":268,"Date":"6/14/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":260,"Cost":156,"Date":"6/20/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":322,"Cost":260,"Date":"6/24/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":301,"Cost":193,"Date":"7/4/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":601,"Cost":529,"Date":"7/9/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":930,"Cost":689,"Date":"7/12/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":308,"Cost":219,"Date":"8/14/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":219,"Cost":166,"Date":"8/16/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":752,"Cost":585,"Date":"8/23/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":352,"Cost":199,"Date":"9/2/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":451,"Cost":228,"Date":"9/3/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":25,"Cost":12,"Date":"9/16/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":404,"Cost":297,"Date":"10/4/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":519,"Cost":275,"Date":"11/1/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":693,"Cost":545,"Date":"11/2/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":34,"Cost":23,"Date":"12/17/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":521,"Cost":372,"Date":"2/10/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":796,"Cost":528,"Date":"2/28/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":445,"Cost":264,"Date":"3/4/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":245,"Cost":185,"Date":"3/9/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":997,"Cost":541,"Date":"3/9/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":777,"Cost":530,"Date":"3/11/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":32,"Cost":22,"Date":"3/17/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":247,"Cost":183,"Date":"3/17/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":784,"Cost":456,"Date":"3/23/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":834,"Cost":462,"Date":"4/1/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":734,"Cost":436,"Date":"5/7/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":298,"Cost":220,"Date":"5/10/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":435,"Cost":317,"Date":"5/20/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":47,"Cost":32,"Date":"6/2/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":619,"Cost":398,"Date":"6/11/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":883,"Cost":748,"Date":"6/16/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":289,"Cost":272,"Date":"6/16/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":183,"Cost":152,"Date":"7/10/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":230,"Cost":185,"Date":"7/11/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":208,"Cost":188,"Date":"8/28/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":69,"Cost":65,"Date":"8/29/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":876,"Cost":779,"Date":"8/31/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":518,"Cost":437,"Date":"9/8/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":247,"Cost":131,"Date":"9/13/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":418,"Cost":392,"Date":"9/14/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":102,"Cost":79,"Date":"9/19/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":712,"Cost":420,"Date":"9/25/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":557,"Cost":331,"Date":"10/4/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":79,"Cost":73,"Date":"10/10/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":744,"Cost":621,"Date":"10/17/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":845,"Cost":770,"Date":"10/28/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":390,"Cost":348,"Date":"10/30/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":729,"Cost":583,"Date":"11/1/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":148,"Cost":120,"Date":"11/15/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":108,"Cost":86,"Date":"11/25/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":53,"Cost":50,"Date":"1/10/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":796,"Cost":676,"Date":"1/14/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":516,"Cost":412,"Date":"1/20/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":559,"Cost":409,"Date":"2/8/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":733,"Cost":418,"Date":"2/25/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":979,"Cost":823,"Date":"3/7/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":597,"Cost":532,"Date":"3/14/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":134,"Cost":123,"Date":"3/27/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":706,"Cost":626,"Date":"4/5/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":599,"Cost":463,"Date":"4/14/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":464,"Cost":399,"Date":"5/3/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":597,"Cost":377,"Date":"5/9/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":860,"Cost":681,"Date":"5/15/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":175,"Cost":88,"Date":"5/25/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":506,"Cost":342,"Date":"5/26/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":1000,"Cost":680,"Date":"5/31/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":858,"Cost":448,"Date":"7/27/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":999,"Cost":510,"Date":"9/17/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":689,"Cost":635,"Date":"10/6/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":743,"Cost":562,"Date":"10/8/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":994,"Cost":854,"Date":"10/26/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":367,"Cost":214,"Date":"11/16/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":892,"Cost":529,"Date":"11/18/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Jeans","Country":"Germany","Sale":438,"Cost":257,"Date":"12/1/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":371,"Cost":272,"Date":"2/9/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":768,"Cost":504,"Date":"2/11/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":391,"Cost":312,"Date":"3/10/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":101,"Cost":66,"Date":"3/16/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":32,"Cost":23,"Date":"3/18/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":369,"Cost":205,"Date":"3/20/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":67,"Cost":61,"Date":"3/26/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":747,"Cost":552,"Date":"6/2/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":662,"Cost":404,"Date":"6/10/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":448,"Cost":283,"Date":"6/16/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":152,"Cost":93,"Date":"6/25/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":558,"Cost":366,"Date":"7/19/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":542,"Cost":335,"Date":"7/21/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":898,"Cost":452,"Date":"7/25/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":146,"Cost":122,"Date":"8/4/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":854,"Cost":459,"Date":"9/2/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":190,"Cost":97,"Date":"9/4/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":735,"Cost":619,"Date":"9/19/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":644,"Cost":497,"Date":"9/29/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":588,"Cost":428,"Date":"10/2/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":431,"Cost":250,"Date":"10/15/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":340,"Cost":249,"Date":"10/30/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":164,"Cost":145,"Date":"11/9/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":222,"Cost":163,"Date":"11/23/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":668,"Cost":415,"Date":"11/30/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":423,"Cost":294,"Date":"12/8/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":574,"Cost":420,"Date":"12/11/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":9,"Cost":8,"Date":"1/15/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":489,"Cost":457,"Date":"1/24/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":844,"Cost":645,"Date":"2/3/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":821,"Cost":662,"Date":"2/4/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":812,"Cost":450,"Date":"3/9/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":566,"Cost":477,"Date":"3/12/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":981,"Cost":892,"Date":"4/19/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":214,"Cost":126,"Date":"5/3/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":901,"Cost":479,"Date":"5/4/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":51,"Cost":33,"Date":"6/8/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":992,"Cost":786,"Date":"6/26/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":846,"Cost":671,"Date":"7/4/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":834,"Cost":658,"Date":"7/13/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":649,"Cost":567,"Date":"8/8/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":183,"Cost":155,"Date":"8/26/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":566,"Cost":395,"Date":"9/2/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":158,"Cost":125,"Date":"9/29/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":682,"Cost":402,"Date":"10/12/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":870,"Cost":771,"Date":"11/2/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":627,"Cost":488,"Date":"11/4/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":146,"Cost":89,"Date":"11/7/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":330,"Cost":303,"Date":"12/1/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":560,"Cost":384,"Date":"12/4/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":277,"Cost":225,"Date":"12/7/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":718,"Cost":631,"Date":"12/18/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":299,"Cost":156,"Date":"12/20/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":707,"Cost":484,"Date":"12/20/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":436,"Cost":270,"Date":"12/21/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":463,"Cost":398,"Date":"1/9/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":843,"Cost":580,"Date":"2/5/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":211,"Cost":195,"Date":"2/16/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":22,"Cost":12,"Date":"2/16/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":62,"Cost":58,"Date":"2/18/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":805,"Cost":722,"Date":"2/22/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":921,"Cost":486,"Date":"2/25/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":465,"Cost":388,"Date":"3/8/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":598,"Cost":424,"Date":"4/2/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":701,"Cost":437,"Date":"4/3/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":814,"Cost":574,"Date":"4/9/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":828,"Cost":510,"Date":"4/10/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":43,"Cost":24,"Date":"4/19/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":860,"Cost":512,"Date":"5/17/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":439,"Cost":273,"Date":"5/22/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":822,"Cost":768,"Date":"6/20/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":968,"Cost":569,"Date":"7/1/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":610,"Cost":401,"Date":"7/4/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":964,"Cost":802,"Date":"7/8/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":536,"Cost":465,"Date":"7/9/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":357,"Cost":311,"Date":"7/14/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":814,"Cost":623,"Date":"7/19/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":161,"Cost":81,"Date":"8/1/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":174,"Cost":92,"Date":"8/6/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":733,"Cost":500,"Date":"8/7/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":775,"Cost":684,"Date":"8/22/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":740,"Cost":696,"Date":"8/31/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":298,"Cost":188,"Date":"9/1/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":835,"Cost":460,"Date":"9/1/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":632,"Cost":339,"Date":"9/17/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":905,"Cost":531,"Date":"9/29/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":297,"Cost":264,"Date":"11/7/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":517,"Cost":417,"Date":"11/26/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":141,"Cost":106,"Date":"11/27/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":800,"Cost":741,"Date":"12/5/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":498,"Cost":268,"Date":"12/26/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":373,"Cost":197,"Date":"12/31/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":45,"Cost":27,"Date":"1/20/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":966,"Cost":828,"Date":"2/2/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":370,"Cost":306,"Date":"2/8/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":714,"Cost":469,"Date":"2/27/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":856,"Cost":544,"Date":"3/1/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":485,"Cost":273,"Date":"3/1/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":94,"Cost":61,"Date":"3/19/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":673,"Cost":586,"Date":"3/28/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":440,"Cost":301,"Date":"5/21/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":64,"Cost":39,"Date":"7/21/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":190,"Cost":159,"Date":"8/5/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":622,"Cost":509,"Date":"8/12/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":712,"Cost":533,"Date":"8/21/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":282,"Cost":252,"Date":"8/23/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":987,"Cost":892,"Date":"9/3/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":548,"Cost":505,"Date":"9/5/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":489,"Cost":376,"Date":"10/6/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":756,"Cost":593,"Date":"10/19/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":528,"Cost":403,"Date":"11/15/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":720,"Cost":404,"Date":"12/8/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":475,"Cost":419,"Date":"1/8/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":379,"Cost":265,"Date":"1/14/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":748,"Cost":593,"Date":"1/19/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":416,"Cost":261,"Date":"1/28/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":56,"Cost":45,"Date":"1/31/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":994,"Cost":702,"Date":"3/27/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":113,"Cost":71,"Date":"4/20/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":9,"Cost":5,"Date":"4/24/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":271,"Cost":195,"Date":"4/28/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":212,"Cost":150,"Date":"5/15/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":19,"Cost":14,"Date":"5/16/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":92,"Cost":69,"Date":"5/18/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":408,"Cost":355,"Date":"6/2/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":352,"Cost":317,"Date":"6/3/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":48,"Cost":44,"Date":"6/5/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":701,"Cost":506,"Date":"6/7/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":737,"Cost":666,"Date":"6/14/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":955,"Cost":703,"Date":"6/20/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":755,"Cost":418,"Date":"6/24/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":548,"Cost":285,"Date":"7/4/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":592,"Cost":302,"Date":"7/9/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":327,"Cost":235,"Date":"7/12/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":358,"Cost":314,"Date":"8/14/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":370,"Cost":213,"Date":"8/16/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":879,"Cost":524,"Date":"8/23/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":110,"Cost":95,"Date":"9/2/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":660,"Cost":571,"Date":"9/3/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":496,"Cost":267,"Date":"9/16/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":116,"Cost":96,"Date":"10/4/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":378,"Cost":231,"Date":"11/1/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":213,"Cost":152,"Date":"11/2/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":73,"Cost":61,"Date":"12/17/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":257,"Cost":237,"Date":"2/10/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":605,"Cost":518,"Date":"2/28/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":955,"Cost":548,"Date":"3/4/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":440,"Cost":340,"Date":"3/9/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":766,"Cost":393,"Date":"3/9/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":369,"Cost":278,"Date":"3/11/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":752,"Cost":386,"Date":"3/17/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":548,"Cost":452,"Date":"3/17/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":455,"Cost":294,"Date":"3/23/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":211,"Cost":118,"Date":"4/1/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":222,"Cost":178,"Date":"5/7/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":300,"Cost":171,"Date":"5/10/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":938,"Cost":549,"Date":"5/20/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":219,"Cost":195,"Date":"6/2/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":304,"Cost":172,"Date":"6/11/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":461,"Cost":290,"Date":"6/16/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":936,"Cost":640,"Date":"6/16/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":247,"Cost":168,"Date":"7/10/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":6,"Cost":3,"Date":"7/11/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":142,"Cost":118,"Date":"8/28/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":750,"Cost":606,"Date":"8/29/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":584,"Cost":530,"Date":"8/31/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":826,"Cost":625,"Date":"9/8/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":150,"Cost":78,"Date":"9/13/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":528,"Cost":464,"Date":"9/14/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":260,"Cost":131,"Date":"9/19/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":237,"Cost":159,"Date":"9/25/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":944,"Cost":713,"Date":"10/4/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":34,"Cost":26,"Date":"10/10/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":544,"Cost":469,"Date":"10/17/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":895,"Cost":768,"Date":"10/28/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":312,"Cost":181,"Date":"10/30/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":914,"Cost":734,"Date":"11/1/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":344,"Cost":219,"Date":"11/15/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":283,"Cost":269,"Date":"11/25/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":825,"Cost":502,"Date":"1/10/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":298,"Cost":280,"Date":"1/14/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":870,"Cost":659,"Date":"1/20/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":167,"Cost":135,"Date":"2/8/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":886,"Cost":683,"Date":"2/25/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":47,"Cost":23,"Date":"3/7/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":681,"Cost":444,"Date":"3/14/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":21,"Cost":16,"Date":"3/27/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":913,"Cost":820,"Date":"4/5/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":671,"Cost":484,"Date":"4/14/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":192,"Cost":156,"Date":"5/3/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":298,"Cost":170,"Date":"5/9/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":792,"Cost":446,"Date":"5/15/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":795,"Cost":486,"Date":"5/25/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":796,"Cost":638,"Date":"5/26/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":856,"Cost":754,"Date":"5/31/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":456,"Cost":350,"Date":"7/27/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":536,"Cost":343,"Date":"9/17/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":120,"Cost":61,"Date":"10/6/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":581,"Cost":312,"Date":"10/8/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":34,"Cost":21,"Date":"10/26/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":966,"Cost":588,"Date":"11/16/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":641,"Cost":509,"Date":"11/18/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"HM Home","Country":"Germany","Sale":488,"Cost":326,"Date":"12/1/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":252,"Cost":190,"Date":"2/9/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":225,"Cost":183,"Date":"2/11/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":93,"Cost":58,"Date":"3/10/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":22,"Cost":14,"Date":"3/16/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":848,"Cost":541,"Date":"3/18/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":59,"Cost":34,"Date":"3/20/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":368,"Cost":193,"Date":"3/26/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":838,"Cost":484,"Date":"6/2/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":824,"Cost":454,"Date":"6/10/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":565,"Cost":320,"Date":"6/16/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":112,"Cost":80,"Date":"6/25/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":801,"Cost":726,"Date":"7/19/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":339,"Cost":233,"Date":"7/21/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":335,"Cost":261,"Date":"7/25/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":704,"Cost":653,"Date":"8/4/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":277,"Cost":255,"Date":"9/2/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":363,"Cost":236,"Date":"9/4/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":966,"Cost":680,"Date":"9/19/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":914,"Cost":680,"Date":"9/29/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":636,"Cost":511,"Date":"10/2/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":660,"Cost":585,"Date":"10/15/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":701,"Cost":561,"Date":"10/30/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":766,"Cost":524,"Date":"11/9/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":645,"Cost":552,"Date":"11/23/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":779,"Cost":517,"Date":"11/30/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":147,"Cost":115,"Date":"12/8/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":4,"Cost":3,"Date":"12/11/2018"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":702,"Cost":581,"Date":"1/15/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":678,"Cost":450,"Date":"1/24/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":501,"Cost":361,"Date":"2/3/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":170,"Cost":92,"Date":"2/4/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":832,"Cost":473,"Date":"3/9/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":643,"Cost":606,"Date":"3/12/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":483,"Cost":408,"Date":"4/19/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":167,"Cost":131,"Date":"5/3/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":823,"Cost":730,"Date":"5/4/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":208,"Cost":197,"Date":"6/8/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":30,"Cost":18,"Date":"6/26/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":942,"Cost":563,"Date":"7/4/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":324,"Cost":247,"Date":"7/13/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":946,"Cost":499,"Date":"8/8/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":891,"Cost":771,"Date":"8/26/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":644,"Cost":555,"Date":"9/2/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":950,"Cost":574,"Date":"9/29/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":741,"Cost":702,"Date":"10/12/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":656,"Cost":528,"Date":"11/2/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":599,"Cost":346,"Date":"11/4/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":801,"Cost":429,"Date":"11/7/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":862,"Cost":733,"Date":"12/1/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":527,"Cost":365,"Date":"12/4/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":960,"Cost":695,"Date":"12/7/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":653,"Cost":371,"Date":"12/18/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":620,"Cost":312,"Date":"12/20/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":587,"Cost":498,"Date":"12/20/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":543,"Cost":348,"Date":"12/21/2019"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":788,"Cost":510,"Date":"1/9/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":152,"Cost":137,"Date":"2/5/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":271,"Cost":206,"Date":"2/16/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":346,"Cost":274,"Date":"2/16/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":13,"Cost":10,"Date":"2/18/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":854,"Cost":533,"Date":"2/22/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":246,"Cost":129,"Date":"2/25/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":275,"Cost":151,"Date":"3/8/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":115,"Cost":84,"Date":"4/2/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":854,"Cost":475,"Date":"4/3/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":637,"Cost":509,"Date":"4/9/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":718,"Cost":666,"Date":"4/10/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":381,"Cost":332,"Date":"4/19/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":712,"Cost":442,"Date":"5/17/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":947,"Cost":677,"Date":"5/22/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":597,"Cost":390,"Date":"6/20/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":121,"Cost":90,"Date":"7/1/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":536,"Cost":272,"Date":"7/4/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":518,"Cost":329,"Date":"7/8/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":35,"Cost":29,"Date":"7/9/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":337,"Cost":179,"Date":"7/14/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":452,"Cost":270,"Date":"7/19/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":587,"Cost":315,"Date":"8/1/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":46,"Cost":27,"Date":"8/6/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":400,"Cost":226,"Date":"8/7/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":595,"Cost":371,"Date":"8/22/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":377,"Cost":305,"Date":"8/31/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":752,"Cost":537,"Date":"9/1/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":39,"Cost":27,"Date":"9/1/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":50,"Cost":48,"Date":"9/17/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":113,"Cost":67,"Date":"9/29/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":657,"Cost":459,"Date":"11/7/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":327,"Cost":236,"Date":"11/26/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":128,"Cost":104,"Date":"11/27/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":60,"Cost":45,"Date":"12/5/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":151,"Cost":100,"Date":"12/26/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":960,"Cost":518,"Date":"12/31/2020"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":179,"Cost":137,"Date":"1/20/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":261,"Cost":200,"Date":"2/2/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":35,"Cost":32,"Date":"2/8/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":587,"Cost":415,"Date":"2/27/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":705,"Cost":578,"Date":"3/1/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":275,"Cost":177,"Date":"3/1/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":686,"Cost":449,"Date":"3/19/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":404,"Cost":330,"Date":"3/28/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":231,"Cost":199,"Date":"5/21/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":906,"Cost":721,"Date":"7/21/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":31,"Cost":25,"Date":"8/5/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":991,"Cost":777,"Date":"8/12/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":587,"Cost":448,"Date":"8/21/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":829,"Cost":762,"Date":"8/23/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":843,"Cost":696,"Date":"9/3/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":141,"Cost":122,"Date":"9/5/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":541,"Cost":472,"Date":"10/6/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":333,"Cost":215,"Date":"10/19/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":672,"Cost":616,"Date":"11/15/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":862,"Cost":590,"Date":"12/8/2021"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":73,"Cost":60,"Date":"1/8/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":209,"Cost":136,"Date":"1/14/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":899,"Cost":848,"Date":"1/19/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":626,"Cost":586,"Date":"1/28/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":370,"Cost":344,"Date":"1/31/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":846,"Cost":447,"Date":"3/27/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":465,"Cost":305,"Date":"4/20/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":754,"Cost":406,"Date":"4/24/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":459,"Cost":347,"Date":"4/28/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":902,"Cost":471,"Date":"5/15/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":311,"Cost":211,"Date":"5/16/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":961,"Cost":811,"Date":"5/18/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":791,"Cost":566,"Date":"6/2/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":635,"Cost":503,"Date":"6/3/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":896,"Cost":654,"Date":"6/5/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":626,"Cost":483,"Date":"6/7/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":569,"Cost":481,"Date":"6/14/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":975,"Cost":791,"Date":"6/20/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":677,"Cost":450,"Date":"6/24/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":481,"Cost":396,"Date":"7/4/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":913,"Cost":863,"Date":"7/9/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":873,"Cost":778,"Date":"7/12/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":906,"Cost":800,"Date":"8/14/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":368,"Cost":336,"Date":"8/16/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":981,"Cost":816,"Date":"8/23/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":529,"Cost":296,"Date":"9/2/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":119,"Cost":103,"Date":"9/3/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":82,"Cost":51,"Date":"9/16/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":168,"Cost":118,"Date":"10/4/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":748,"Cost":576,"Date":"11/1/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":885,"Cost":555,"Date":"11/2/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":86,"Cost":79,"Date":"12/17/2022"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":278,"Cost":157,"Date":"2/10/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":615,"Cost":428,"Date":"2/28/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":503,"Cost":289,"Date":"3/4/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":330,"Cost":173,"Date":"3/9/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":204,"Cost":109,"Date":"3/9/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":514,"Cost":429,"Date":"3/11/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":816,"Cost":600,"Date":"3/17/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":655,"Cost":515,"Date":"3/17/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":752,"Cost":512,"Date":"3/23/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":658,"Cost":612,"Date":"4/1/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":98,"Cost":55,"Date":"5/7/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":587,"Cost":415,"Date":"5/10/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":96,"Cost":91,"Date":"5/20/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":797,"Cost":687,"Date":"6/2/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":205,"Cost":145,"Date":"6/11/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":766,"Cost":658,"Date":"6/16/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":631,"Cost":587,"Date":"6/16/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":73,"Cost":58,"Date":"7/10/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":495,"Cost":459,"Date":"7/11/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":898,"Cost":661,"Date":"8/28/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":117,"Cost":105,"Date":"8/29/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":857,"Cost":442,"Date":"8/31/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":268,"Cost":152,"Date":"9/8/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":913,"Cost":621,"Date":"9/13/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":616,"Cost":324,"Date":"9/14/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":906,"Cost":461,"Date":"9/19/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":477,"Cost":441,"Date":"9/25/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":375,"Cost":291,"Date":"10/4/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":23,"Cost":14,"Date":"10/10/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":683,"Cost":493,"Date":"10/17/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":579,"Cost":485,"Date":"10/28/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":303,"Cost":257,"Date":"10/30/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":919,"Cost":568,"Date":"11/1/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":187,"Cost":144,"Date":"11/15/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":449,"Cost":381,"Date":"11/25/2023"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":500,"Cost":275,"Date":"1/10/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":130,"Cost":93,"Date":"1/14/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":80,"Cost":64,"Date":"1/20/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":924,"Cost":640,"Date":"2/8/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":542,"Cost":431,"Date":"2/25/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":302,"Cost":243,"Date":"3/7/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":550,"Cost":464,"Date":"3/14/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":681,"Cost":386,"Date":"3/27/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":874,"Cost":778,"Date":"4/5/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":848,"Cost":484,"Date":"4/14/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":916,"Cost":471,"Date":"5/3/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":794,"Cost":633,"Date":"5/9/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":159,"Cost":147,"Date":"5/15/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":597,"Cost":536,"Date":"5/25/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":194,"Cost":175,"Date":"5/26/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":875,"Cost":710,"Date":"5/31/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":139,"Cost":124,"Date":"7/27/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":323,"Cost":240,"Date":"9/17/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":573,"Cost":297,"Date":"10/6/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":363,"Cost":226,"Date":"10/8/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":93,"Cost":86,"Date":"10/26/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":944,"Cost":690,"Date":"11/16/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":921,"Cost":693,"Date":"11/18/2024"},{"Store":"Altstadt-Arkaden, Nordhausen","Brand":"Nova","Country":"Germany","Sale":132,"Cost":120,"Date":"12/1/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":940,"Cost":707,"Date":"2/9/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":563,"Cost":428,"Date":"2/11/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":783,"Cost":479,"Date":"3/10/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":258,"Cost":147,"Date":"3/16/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":381,"Cost":225,"Date":"3/18/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":120,"Cost":92,"Date":"3/20/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":469,"Cost":387,"Date":"3/26/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":848,"Cost":477,"Date":"6/2/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":173,"Cost":108,"Date":"6/10/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":596,"Cost":360,"Date":"6/16/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":136,"Cost":108,"Date":"6/25/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":434,"Cost":327,"Date":"7/19/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":783,"Cost":455,"Date":"7/21/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":141,"Cost":130,"Date":"7/25/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":515,"Cost":347,"Date":"8/4/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":472,"Cost":334,"Date":"9/2/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":685,"Cost":429,"Date":"9/4/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":420,"Cost":321,"Date":"9/19/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":655,"Cost":340,"Date":"9/29/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":365,"Cost":285,"Date":"10/2/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":946,"Cost":532,"Date":"10/15/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":402,"Cost":330,"Date":"10/30/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":394,"Cost":338,"Date":"11/9/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":256,"Cost":132,"Date":"11/23/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":37,"Cost":31,"Date":"11/30/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":322,"Cost":302,"Date":"12/8/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":850,"Cost":434,"Date":"12/11/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":585,"Cost":460,"Date":"1/15/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":350,"Cost":317,"Date":"1/24/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":440,"Cost":312,"Date":"2/3/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":887,"Cost":810,"Date":"2/4/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":945,"Cost":484,"Date":"3/9/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":731,"Cost":686,"Date":"3/12/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":387,"Cost":274,"Date":"4/19/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":137,"Cost":68,"Date":"5/3/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":140,"Cost":132,"Date":"5/4/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":581,"Cost":312,"Date":"6/8/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":539,"Cost":493,"Date":"6/26/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":725,"Cost":586,"Date":"7/4/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":877,"Cost":793,"Date":"7/13/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":895,"Cost":532,"Date":"8/8/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":65,"Cost":53,"Date":"8/26/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":54,"Cost":35,"Date":"9/2/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":308,"Cost":239,"Date":"9/29/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":491,"Cost":420,"Date":"10/12/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":206,"Cost":140,"Date":"11/2/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":179,"Cost":168,"Date":"11/4/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":762,"Cost":463,"Date":"11/7/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":681,"Cost":591,"Date":"12/1/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":624,"Cost":424,"Date":"12/4/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":825,"Cost":773,"Date":"12/7/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":338,"Cost":204,"Date":"12/18/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":654,"Cost":563,"Date":"12/20/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":866,"Cost":735,"Date":"12/20/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":384,"Cost":338,"Date":"12/21/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":79,"Cost":70,"Date":"1/9/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":660,"Cost":509,"Date":"2/5/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":115,"Cost":82,"Date":"2/16/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":875,"Cost":759,"Date":"2/16/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":252,"Cost":178,"Date":"2/18/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":843,"Cost":771,"Date":"2/22/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":879,"Cost":447,"Date":"2/25/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":448,"Cost":359,"Date":"3/8/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":934,"Cost":698,"Date":"4/2/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":651,"Cost":542,"Date":"4/3/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":749,"Cost":435,"Date":"4/9/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":692,"Cost":460,"Date":"4/10/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":590,"Cost":377,"Date":"4/19/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":571,"Cost":293,"Date":"5/17/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":391,"Cost":293,"Date":"5/22/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":315,"Cost":161,"Date":"6/20/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":353,"Cost":239,"Date":"7/1/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":708,"Cost":623,"Date":"7/4/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":17,"Cost":13,"Date":"7/8/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":140,"Cost":131,"Date":"7/9/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":346,"Cost":189,"Date":"7/14/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":633,"Cost":541,"Date":"7/19/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":201,"Cost":116,"Date":"8/1/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":870,"Cost":490,"Date":"8/6/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":523,"Cost":284,"Date":"8/7/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":380,"Cost":297,"Date":"8/22/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":747,"Cost":427,"Date":"8/31/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":220,"Cost":152,"Date":"9/1/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":289,"Cost":261,"Date":"9/1/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":965,"Cost":496,"Date":"9/17/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":205,"Cost":131,"Date":"9/29/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":930,"Cost":778,"Date":"11/7/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":297,"Cost":261,"Date":"11/26/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":161,"Cost":128,"Date":"11/27/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":373,"Cost":280,"Date":"12/5/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":670,"Cost":611,"Date":"12/26/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":649,"Cost":352,"Date":"12/31/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":682,"Cost":426,"Date":"1/20/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":913,"Cost":813,"Date":"2/2/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":236,"Cost":194,"Date":"2/8/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":114,"Cost":79,"Date":"2/27/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":357,"Cost":186,"Date":"3/1/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":821,"Cost":572,"Date":"3/1/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":569,"Cost":512,"Date":"3/19/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":904,"Cost":677,"Date":"3/28/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":559,"Cost":467,"Date":"5/21/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":417,"Cost":306,"Date":"7/21/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":769,"Cost":574,"Date":"8/5/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":734,"Cost":578,"Date":"8/12/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":307,"Cost":241,"Date":"8/21/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":479,"Cost":332,"Date":"8/23/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":775,"Cost":491,"Date":"9/3/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":555,"Cost":283,"Date":"9/5/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":523,"Cost":335,"Date":"10/6/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":935,"Cost":591,"Date":"10/19/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":258,"Cost":224,"Date":"11/15/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":931,"Cost":582,"Date":"12/8/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":971,"Cost":693,"Date":"1/8/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":601,"Cost":517,"Date":"1/14/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":228,"Cost":212,"Date":"1/19/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":571,"Cost":391,"Date":"1/28/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":702,"Cost":551,"Date":"1/31/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":337,"Cost":181,"Date":"3/27/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":820,"Cost":728,"Date":"4/20/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":19,"Cost":12,"Date":"4/24/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":288,"Cost":179,"Date":"4/28/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":200,"Cost":181,"Date":"5/15/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":827,"Cost":710,"Date":"5/16/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":113,"Cost":72,"Date":"5/18/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":745,"Cost":525,"Date":"6/2/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":586,"Cost":516,"Date":"6/3/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":389,"Cost":282,"Date":"6/5/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":970,"Cost":771,"Date":"6/7/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":381,"Cost":307,"Date":"6/14/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":486,"Cost":264,"Date":"6/20/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":143,"Cost":102,"Date":"6/24/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":18,"Cost":12,"Date":"7/4/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":509,"Cost":381,"Date":"7/9/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":202,"Cost":123,"Date":"7/12/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":438,"Cost":339,"Date":"8/14/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":778,"Cost":609,"Date":"8/16/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":830,"Cost":674,"Date":"8/23/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":519,"Cost":463,"Date":"9/2/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":718,"Cost":547,"Date":"9/3/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":190,"Cost":175,"Date":"9/16/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":596,"Cost":463,"Date":"10/4/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":503,"Cost":418,"Date":"11/1/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":634,"Cost":395,"Date":"11/2/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":877,"Cost":830,"Date":"12/17/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":604,"Cost":423,"Date":"2/10/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":884,"Cost":739,"Date":"2/28/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":558,"Cost":448,"Date":"3/4/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":908,"Cost":720,"Date":"3/9/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":375,"Cost":313,"Date":"3/9/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":887,"Cost":563,"Date":"3/11/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":283,"Cost":164,"Date":"3/17/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":894,"Cost":631,"Date":"3/17/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":187,"Cost":105,"Date":"3/23/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":419,"Cost":213,"Date":"4/1/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":970,"Cost":622,"Date":"5/7/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":347,"Cost":300,"Date":"5/10/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":340,"Cost":308,"Date":"5/20/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":375,"Cost":232,"Date":"6/2/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":884,"Cost":768,"Date":"6/11/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":318,"Cost":178,"Date":"6/16/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":307,"Cost":188,"Date":"6/16/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":184,"Cost":128,"Date":"7/10/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":140,"Cost":114,"Date":"7/11/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":227,"Cost":141,"Date":"8/28/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":463,"Cost":378,"Date":"8/29/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":528,"Cost":478,"Date":"8/31/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":105,"Cost":62,"Date":"9/8/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":407,"Cost":289,"Date":"9/13/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":359,"Cost":269,"Date":"9/14/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":749,"Cost":641,"Date":"9/19/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":654,"Cost":450,"Date":"9/25/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":603,"Cost":474,"Date":"10/4/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":83,"Cost":67,"Date":"10/10/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":473,"Cost":342,"Date":"10/17/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":438,"Cost":367,"Date":"10/28/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":514,"Cost":386,"Date":"10/30/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":307,"Cost":210,"Date":"11/1/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":877,"Cost":549,"Date":"11/15/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":178,"Cost":159,"Date":"11/25/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":952,"Cost":866,"Date":"1/10/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":220,"Cost":134,"Date":"1/14/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":538,"Cost":372,"Date":"1/20/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":834,"Cost":678,"Date":"2/8/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":568,"Cost":534,"Date":"2/25/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":629,"Cost":379,"Date":"3/7/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":22,"Cost":19,"Date":"3/14/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":181,"Cost":109,"Date":"3/27/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":48,"Cost":25,"Date":"4/5/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":924,"Cost":569,"Date":"4/14/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":567,"Cost":342,"Date":"5/3/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":629,"Cost":421,"Date":"5/9/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":521,"Cost":362,"Date":"5/15/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":383,"Cost":300,"Date":"5/25/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":123,"Cost":93,"Date":"5/26/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":996,"Cost":618,"Date":"5/31/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":931,"Cost":841,"Date":"7/27/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":96,"Cost":70,"Date":"9/17/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":76,"Cost":56,"Date":"10/6/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":14,"Cost":7,"Date":"10/8/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":295,"Cost":207,"Date":"10/26/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":873,"Cost":614,"Date":"11/16/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":502,"Cost":405,"Date":"11/18/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM","Country":"Germany","Sale":792,"Cost":540,"Date":"12/1/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":894,"Cost":811,"Date":"2/9/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":414,"Cost":251,"Date":"2/11/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":16,"Cost":9,"Date":"3/10/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":296,"Cost":206,"Date":"3/16/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":835,"Cost":587,"Date":"3/18/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":853,"Cost":533,"Date":"3/20/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":456,"Cost":371,"Date":"3/26/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":538,"Cost":287,"Date":"6/2/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":747,"Cost":500,"Date":"6/10/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":991,"Cost":748,"Date":"6/16/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":488,"Cost":266,"Date":"6/25/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":983,"Cost":701,"Date":"7/19/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":984,"Cost":886,"Date":"7/21/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":55,"Cost":34,"Date":"7/25/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":461,"Cost":355,"Date":"8/4/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":799,"Cost":561,"Date":"9/2/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":636,"Cost":433,"Date":"9/4/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":198,"Cost":158,"Date":"9/19/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":358,"Cost":256,"Date":"9/29/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":559,"Cost":424,"Date":"10/2/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":700,"Cost":562,"Date":"10/15/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":871,"Cost":682,"Date":"10/30/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":499,"Cost":434,"Date":"11/9/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":792,"Cost":607,"Date":"11/23/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":416,"Cost":395,"Date":"11/30/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":27,"Cost":24,"Date":"12/8/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":490,"Cost":337,"Date":"12/11/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":974,"Cost":901,"Date":"1/15/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":102,"Cost":60,"Date":"1/24/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":642,"Cost":390,"Date":"2/3/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":891,"Cost":785,"Date":"2/4/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":473,"Cost":262,"Date":"3/9/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":652,"Cost":383,"Date":"3/12/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":432,"Cost":381,"Date":"4/19/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":338,"Cost":223,"Date":"5/3/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":877,"Cost":533,"Date":"5/4/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":3,"Cost":3,"Date":"6/8/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":772,"Cost":400,"Date":"6/26/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":242,"Cost":205,"Date":"7/4/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":232,"Cost":189,"Date":"7/13/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":656,"Cost":384,"Date":"8/8/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":883,"Cost":515,"Date":"8/26/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":138,"Cost":130,"Date":"9/2/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":819,"Cost":531,"Date":"9/29/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":811,"Cost":709,"Date":"10/12/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":493,"Cost":369,"Date":"11/2/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":253,"Cost":209,"Date":"11/4/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":715,"Cost":446,"Date":"11/7/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":887,"Cost":581,"Date":"12/1/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":543,"Cost":422,"Date":"12/4/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":358,"Cost":314,"Date":"12/7/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":448,"Cost":316,"Date":"12/18/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":40,"Cost":26,"Date":"12/20/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":771,"Cost":610,"Date":"12/20/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":31,"Cost":20,"Date":"12/21/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":635,"Cost":467,"Date":"1/9/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":587,"Cost":454,"Date":"2/5/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":456,"Cost":265,"Date":"2/16/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":897,"Cost":769,"Date":"2/16/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":445,"Cost":415,"Date":"2/18/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":984,"Cost":930,"Date":"2/22/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":465,"Cost":370,"Date":"2/25/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":885,"Cost":629,"Date":"3/8/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":948,"Cost":477,"Date":"4/2/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":148,"Cost":103,"Date":"4/3/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":264,"Cost":184,"Date":"4/9/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":189,"Cost":119,"Date":"4/10/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":985,"Cost":584,"Date":"4/19/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":14,"Cost":8,"Date":"5/17/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":916,"Cost":773,"Date":"5/22/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":207,"Cost":121,"Date":"6/20/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":789,"Cost":538,"Date":"7/1/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":687,"Cost":560,"Date":"7/4/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":951,"Cost":786,"Date":"7/8/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":1000,"Cost":757,"Date":"7/9/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":880,"Cost":694,"Date":"7/14/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":982,"Cost":821,"Date":"7/19/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":878,"Cost":586,"Date":"8/1/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":465,"Cost":380,"Date":"8/6/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":171,"Cost":123,"Date":"8/7/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":504,"Cost":296,"Date":"8/22/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":510,"Cost":312,"Date":"8/31/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":364,"Cost":343,"Date":"9/1/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":314,"Cost":159,"Date":"9/1/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":883,"Cost":488,"Date":"9/17/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":588,"Cost":356,"Date":"9/29/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":862,"Cost":481,"Date":"11/7/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":227,"Cost":199,"Date":"11/26/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":343,"Cost":223,"Date":"11/27/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":734,"Cost":651,"Date":"12/5/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":3,"Cost":2,"Date":"12/26/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":655,"Cost":373,"Date":"12/31/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":150,"Cost":98,"Date":"1/20/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":270,"Cost":202,"Date":"2/2/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":755,"Cost":400,"Date":"2/8/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":455,"Cost":325,"Date":"2/27/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":998,"Cost":683,"Date":"3/1/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":766,"Cost":578,"Date":"3/1/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":96,"Cost":56,"Date":"3/19/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":234,"Cost":165,"Date":"3/28/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":774,"Cost":614,"Date":"5/21/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":360,"Cost":313,"Date":"7/21/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":322,"Cost":199,"Date":"8/5/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":396,"Cost":256,"Date":"8/12/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":408,"Cost":274,"Date":"8/21/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":972,"Cost":533,"Date":"8/23/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":334,"Cost":225,"Date":"9/3/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":886,"Cost":480,"Date":"9/5/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":488,"Cost":346,"Date":"10/6/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":220,"Cost":161,"Date":"10/19/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":604,"Cost":444,"Date":"11/15/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":41,"Cost":33,"Date":"12/8/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":278,"Cost":168,"Date":"1/8/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":211,"Cost":143,"Date":"1/14/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":78,"Cost":65,"Date":"1/19/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":589,"Cost":327,"Date":"1/28/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":630,"Cost":343,"Date":"1/31/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":540,"Cost":280,"Date":"3/27/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":244,"Cost":182,"Date":"4/20/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":119,"Cost":69,"Date":"4/24/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":790,"Cost":599,"Date":"4/28/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":245,"Cost":174,"Date":"5/15/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":657,"Cost":346,"Date":"5/16/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":525,"Cost":344,"Date":"5/18/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":141,"Cost":99,"Date":"6/2/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":871,"Cost":644,"Date":"6/3/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":697,"Cost":531,"Date":"6/5/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":868,"Cost":811,"Date":"6/7/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":884,"Cost":635,"Date":"6/14/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":296,"Cost":195,"Date":"6/20/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":31,"Cost":19,"Date":"6/24/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":895,"Cost":686,"Date":"7/4/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":287,"Cost":245,"Date":"7/9/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":172,"Cost":121,"Date":"7/12/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":329,"Cost":176,"Date":"8/14/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":504,"Cost":417,"Date":"8/16/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":451,"Cost":409,"Date":"8/23/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":540,"Cost":412,"Date":"9/2/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":548,"Cost":443,"Date":"9/3/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":520,"Cost":401,"Date":"9/16/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":243,"Cost":192,"Date":"10/4/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":559,"Cost":471,"Date":"11/1/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":964,"Cost":491,"Date":"11/2/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":792,"Cost":684,"Date":"12/17/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":97,"Cost":63,"Date":"2/10/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":240,"Cost":226,"Date":"2/28/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":5,"Cost":3,"Date":"3/4/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":182,"Cost":120,"Date":"3/9/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":424,"Cost":310,"Date":"3/9/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":135,"Cost":99,"Date":"3/11/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":62,"Cost":48,"Date":"3/17/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":538,"Cost":405,"Date":"3/17/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":348,"Cost":320,"Date":"3/23/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":16,"Cost":15,"Date":"4/1/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":566,"Cost":450,"Date":"5/7/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":873,"Cost":764,"Date":"5/10/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":143,"Cost":85,"Date":"5/20/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":566,"Cost":291,"Date":"6/2/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":769,"Cost":513,"Date":"6/11/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":135,"Cost":115,"Date":"6/16/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":359,"Cost":278,"Date":"6/16/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":6,"Cost":4,"Date":"7/10/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":546,"Cost":312,"Date":"7/11/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":692,"Cost":654,"Date":"8/28/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":958,"Cost":621,"Date":"8/29/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":422,"Cost":215,"Date":"8/31/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":848,"Cost":638,"Date":"9/8/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":906,"Cost":553,"Date":"9/13/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":932,"Cost":539,"Date":"9/14/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":998,"Cost":549,"Date":"9/19/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":573,"Cost":350,"Date":"9/25/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":31,"Cost":29,"Date":"10/4/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":780,"Cost":538,"Date":"10/10/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":954,"Cost":533,"Date":"10/17/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":41,"Cost":27,"Date":"10/28/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":854,"Cost":477,"Date":"10/30/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":54,"Cost":36,"Date":"11/1/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":846,"Cost":702,"Date":"11/15/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":377,"Cost":329,"Date":"11/25/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":187,"Cost":134,"Date":"1/10/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":145,"Cost":82,"Date":"1/14/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":489,"Cost":306,"Date":"1/20/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":210,"Cost":196,"Date":"2/8/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":117,"Cost":107,"Date":"2/25/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":750,"Cost":433,"Date":"3/7/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":288,"Cost":200,"Date":"3/14/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":390,"Cost":343,"Date":"3/27/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":155,"Cost":97,"Date":"4/5/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":672,"Cost":532,"Date":"4/14/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":366,"Cost":234,"Date":"5/3/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":854,"Cost":796,"Date":"5/9/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":271,"Cost":159,"Date":"5/15/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":880,"Cost":506,"Date":"5/25/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":126,"Cost":66,"Date":"5/26/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":901,"Cost":461,"Date":"5/31/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":568,"Cost":361,"Date":"7/27/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":107,"Cost":57,"Date":"9/17/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":767,"Cost":484,"Date":"10/6/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":526,"Cost":461,"Date":"10/8/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":92,"Cost":82,"Date":"10/26/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":786,"Cost":433,"Date":"11/16/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":876,"Cost":606,"Date":"11/18/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"HM Home","Country":"Germany","Sale":613,"Cost":529,"Date":"12/1/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":745,"Cost":521,"Date":"2/9/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":27,"Cost":22,"Date":"2/11/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":33,"Cost":19,"Date":"3/10/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":372,"Cost":196,"Date":"3/16/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":827,"Cost":689,"Date":"3/18/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":400,"Cost":222,"Date":"3/20/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":186,"Cost":176,"Date":"3/26/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":915,"Cost":610,"Date":"6/2/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":108,"Cost":64,"Date":"6/10/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":950,"Cost":844,"Date":"6/16/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":16,"Cost":13,"Date":"6/25/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":540,"Cost":296,"Date":"7/19/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":732,"Cost":497,"Date":"7/21/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":633,"Cost":322,"Date":"7/25/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":75,"Cost":64,"Date":"8/4/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":13,"Cost":8,"Date":"9/2/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":860,"Cost":645,"Date":"9/4/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":949,"Cost":514,"Date":"9/19/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":282,"Cost":240,"Date":"9/29/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":923,"Cost":657,"Date":"10/2/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":812,"Cost":420,"Date":"10/15/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":310,"Cost":239,"Date":"10/30/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":861,"Cost":507,"Date":"11/9/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":962,"Cost":867,"Date":"11/23/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":218,"Cost":198,"Date":"11/30/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":658,"Cost":466,"Date":"12/8/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":304,"Cost":265,"Date":"12/11/2018"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":92,"Cost":48,"Date":"1/15/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":583,"Cost":406,"Date":"1/24/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":17,"Cost":8,"Date":"2/3/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":538,"Cost":463,"Date":"2/4/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":550,"Cost":300,"Date":"3/9/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":877,"Cost":511,"Date":"3/12/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":522,"Cost":463,"Date":"4/19/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":549,"Cost":352,"Date":"5/3/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":911,"Cost":514,"Date":"5/4/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":991,"Cost":632,"Date":"6/8/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":827,"Cost":532,"Date":"6/26/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":93,"Cost":49,"Date":"7/4/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":645,"Cost":490,"Date":"7/13/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":567,"Cost":503,"Date":"8/8/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":281,"Cost":184,"Date":"8/26/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":732,"Cost":481,"Date":"9/2/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":593,"Cost":429,"Date":"9/29/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":148,"Cost":129,"Date":"10/12/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":875,"Cost":611,"Date":"11/2/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":940,"Cost":829,"Date":"11/4/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":273,"Cost":191,"Date":"11/7/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":57,"Cost":32,"Date":"12/1/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":376,"Cost":354,"Date":"12/4/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":25,"Cost":14,"Date":"12/7/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":821,"Cost":563,"Date":"12/18/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":887,"Cost":760,"Date":"12/20/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":46,"Cost":26,"Date":"12/20/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":260,"Cost":165,"Date":"12/21/2019"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":306,"Cost":291,"Date":"1/9/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":216,"Cost":153,"Date":"2/5/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":996,"Cost":813,"Date":"2/16/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":767,"Cost":626,"Date":"2/16/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":945,"Cost":846,"Date":"2/18/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":300,"Cost":199,"Date":"2/22/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":247,"Cost":130,"Date":"2/25/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":148,"Cost":132,"Date":"3/8/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":355,"Cost":180,"Date":"4/2/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":950,"Cost":842,"Date":"4/3/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":403,"Cost":313,"Date":"4/9/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":614,"Cost":367,"Date":"4/10/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":399,"Cost":247,"Date":"4/19/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":706,"Cost":426,"Date":"5/17/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":939,"Cost":698,"Date":"5/22/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":655,"Cost":501,"Date":"6/20/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":506,"Cost":334,"Date":"7/1/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":993,"Cost":713,"Date":"7/4/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":586,"Cost":326,"Date":"7/8/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":715,"Cost":362,"Date":"7/9/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":416,"Cost":290,"Date":"7/14/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":327,"Cost":303,"Date":"7/19/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":192,"Cost":108,"Date":"8/1/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":679,"Cost":484,"Date":"8/6/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":483,"Cost":243,"Date":"8/7/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":331,"Cost":281,"Date":"8/22/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":124,"Cost":63,"Date":"8/31/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":961,"Cost":697,"Date":"9/1/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":689,"Cost":636,"Date":"9/1/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":580,"Cost":452,"Date":"9/17/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":405,"Cost":282,"Date":"9/29/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":145,"Cost":137,"Date":"11/7/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":379,"Cost":220,"Date":"11/26/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":264,"Cost":240,"Date":"11/27/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":986,"Cost":723,"Date":"12/5/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":872,"Cost":521,"Date":"12/26/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":800,"Cost":725,"Date":"12/31/2020"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":406,"Cost":233,"Date":"1/20/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":581,"Cost":499,"Date":"2/2/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":398,"Cost":354,"Date":"2/8/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":326,"Cost":175,"Date":"2/27/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":221,"Cost":169,"Date":"3/1/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":22,"Cost":15,"Date":"3/1/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":967,"Cost":739,"Date":"3/19/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":831,"Cost":536,"Date":"3/28/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":417,"Cost":230,"Date":"5/21/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":412,"Cost":334,"Date":"7/21/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":95,"Cost":87,"Date":"8/5/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":359,"Cost":209,"Date":"8/12/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":276,"Cost":262,"Date":"8/21/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":305,"Cost":209,"Date":"8/23/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":91,"Cost":84,"Date":"9/3/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":957,"Cost":495,"Date":"9/5/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":526,"Cost":424,"Date":"10/6/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":938,"Cost":492,"Date":"10/19/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":84,"Cost":57,"Date":"11/15/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":50,"Cost":42,"Date":"12/8/2021"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":49,"Cost":25,"Date":"1/8/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":675,"Cost":613,"Date":"1/14/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":106,"Cost":99,"Date":"1/19/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":517,"Cost":371,"Date":"1/28/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":475,"Cost":344,"Date":"1/31/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":193,"Cost":152,"Date":"3/27/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":91,"Cost":84,"Date":"4/20/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":441,"Cost":349,"Date":"4/24/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":283,"Cost":197,"Date":"4/28/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":606,"Cost":445,"Date":"5/15/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":618,"Cost":345,"Date":"5/16/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":111,"Cost":65,"Date":"5/18/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":131,"Cost":122,"Date":"6/2/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":302,"Cost":198,"Date":"6/3/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":734,"Cost":643,"Date":"6/5/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":939,"Cost":475,"Date":"6/7/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":324,"Cost":214,"Date":"6/14/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":816,"Cost":669,"Date":"6/20/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":40,"Cost":32,"Date":"6/24/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":587,"Cost":310,"Date":"7/4/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":528,"Cost":335,"Date":"7/9/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":923,"Cost":624,"Date":"7/12/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":634,"Cost":368,"Date":"8/14/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":557,"Cost":446,"Date":"8/16/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":421,"Cost":329,"Date":"8/23/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":178,"Cost":114,"Date":"9/2/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":420,"Cost":380,"Date":"9/3/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":325,"Cost":261,"Date":"9/16/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":784,"Cost":470,"Date":"10/4/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":81,"Cost":61,"Date":"11/1/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":924,"Cost":828,"Date":"11/2/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":342,"Cost":277,"Date":"12/17/2022"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":301,"Cost":160,"Date":"2/10/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":167,"Cost":116,"Date":"2/28/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":953,"Cost":861,"Date":"3/4/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":382,"Cost":208,"Date":"3/9/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":87,"Cost":62,"Date":"3/9/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":770,"Cost":530,"Date":"3/11/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":35,"Cost":20,"Date":"3/17/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":589,"Cost":309,"Date":"3/17/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":262,"Cost":215,"Date":"3/23/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":711,"Cost":676,"Date":"4/1/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":480,"Cost":332,"Date":"5/7/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":451,"Cost":349,"Date":"5/10/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":514,"Cost":261,"Date":"5/20/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":505,"Cost":304,"Date":"6/2/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":593,"Cost":550,"Date":"6/11/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":679,"Cost":543,"Date":"6/16/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":495,"Cost":259,"Date":"6/16/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":122,"Cost":76,"Date":"7/10/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":730,"Cost":626,"Date":"7/11/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":949,"Cost":646,"Date":"8/28/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":45,"Cost":31,"Date":"8/29/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":708,"Cost":411,"Date":"8/31/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":54,"Cost":51,"Date":"9/8/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":550,"Cost":489,"Date":"9/13/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":369,"Cost":265,"Date":"9/14/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":537,"Cost":340,"Date":"9/19/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":29,"Cost":17,"Date":"9/25/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":629,"Cost":538,"Date":"10/4/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":800,"Cost":525,"Date":"10/10/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":747,"Cost":583,"Date":"10/17/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":500,"Cost":416,"Date":"10/28/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":840,"Cost":743,"Date":"10/30/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":159,"Cost":95,"Date":"11/1/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":297,"Cost":262,"Date":"11/15/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":738,"Cost":543,"Date":"11/25/2023"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":823,"Cost":704,"Date":"1/10/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":97,"Cost":70,"Date":"1/14/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":785,"Cost":625,"Date":"1/20/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":671,"Cost":451,"Date":"2/8/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":117,"Cost":82,"Date":"2/25/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":80,"Cost":57,"Date":"3/7/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":4,"Cost":2,"Date":"3/14/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":94,"Cost":89,"Date":"3/27/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":618,"Cost":354,"Date":"4/5/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":872,"Cost":708,"Date":"4/14/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":179,"Cost":129,"Date":"5/3/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":577,"Cost":478,"Date":"5/9/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":21,"Cost":15,"Date":"5/15/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":857,"Cost":613,"Date":"5/25/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":593,"Cost":374,"Date":"5/26/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":8,"Cost":6,"Date":"5/31/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":185,"Cost":157,"Date":"7/27/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":316,"Cost":191,"Date":"9/17/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":706,"Cost":628,"Date":"10/6/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":986,"Cost":495,"Date":"10/8/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":539,"Cost":295,"Date":"10/26/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":407,"Cost":354,"Date":"11/16/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":643,"Cost":399,"Date":"11/18/2024"},{"Store":"Arneken-Galerie, Hildesheim","Brand":"Sellpy","Country":"Germany","Sale":311,"Cost":277,"Date":"12/1/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":387,"Cost":283,"Date":"2/9/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":943,"Cost":718,"Date":"2/11/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":59,"Cost":35,"Date":"3/10/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":22,"Cost":16,"Date":"3/16/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":451,"Cost":324,"Date":"3/18/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":771,"Cost":536,"Date":"3/20/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":560,"Cost":514,"Date":"3/26/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":838,"Cost":623,"Date":"6/2/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":414,"Cost":262,"Date":"6/10/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":482,"Cost":380,"Date":"6/16/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":271,"Cost":218,"Date":"6/25/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":700,"Cost":578,"Date":"7/19/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":189,"Cost":137,"Date":"7/21/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":195,"Cost":118,"Date":"7/25/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":771,"Cost":432,"Date":"8/4/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":802,"Cost":750,"Date":"9/2/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":617,"Cost":379,"Date":"9/4/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":543,"Cost":431,"Date":"9/19/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":203,"Cost":167,"Date":"9/29/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":980,"Cost":914,"Date":"10/2/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":311,"Cost":170,"Date":"10/15/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":800,"Cost":734,"Date":"10/30/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":12,"Cost":9,"Date":"11/9/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":584,"Cost":402,"Date":"11/23/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":835,"Cost":531,"Date":"11/30/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":906,"Cost":678,"Date":"12/8/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":696,"Cost":505,"Date":"12/11/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":672,"Cost":449,"Date":"1/15/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":920,"Cost":480,"Date":"1/24/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":18,"Cost":17,"Date":"2/3/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":74,"Cost":67,"Date":"2/4/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":272,"Cost":216,"Date":"3/9/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":35,"Cost":24,"Date":"3/12/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":212,"Cost":112,"Date":"4/19/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":291,"Cost":222,"Date":"5/3/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":330,"Cost":273,"Date":"5/4/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":835,"Cost":651,"Date":"6/8/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":641,"Cost":489,"Date":"6/26/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":828,"Cost":509,"Date":"7/4/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":350,"Cost":295,"Date":"7/13/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":991,"Cost":930,"Date":"8/8/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":377,"Cost":226,"Date":"8/26/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":793,"Cost":470,"Date":"9/2/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":115,"Cost":65,"Date":"9/29/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":46,"Cost":39,"Date":"10/12/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":628,"Cost":468,"Date":"11/2/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":642,"Cost":345,"Date":"11/4/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":4,"Cost":2,"Date":"11/7/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":112,"Cost":89,"Date":"12/1/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":534,"Cost":495,"Date":"12/4/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":523,"Cost":435,"Date":"12/7/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":56,"Cost":52,"Date":"12/18/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":17,"Cost":9,"Date":"12/20/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":248,"Cost":234,"Date":"12/20/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":55,"Cost":41,"Date":"12/21/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":194,"Cost":124,"Date":"1/9/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":293,"Cost":275,"Date":"2/5/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":780,"Cost":467,"Date":"2/16/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":747,"Cost":454,"Date":"2/16/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":434,"Cost":302,"Date":"2/18/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":475,"Cost":258,"Date":"2/22/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":429,"Cost":246,"Date":"2/25/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":912,"Cost":598,"Date":"3/8/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":24,"Cost":14,"Date":"4/2/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":177,"Cost":141,"Date":"4/3/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":319,"Cost":280,"Date":"4/9/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":647,"Cost":423,"Date":"4/10/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":808,"Cost":648,"Date":"4/19/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":820,"Cost":668,"Date":"5/17/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":471,"Cost":418,"Date":"5/22/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":213,"Cost":176,"Date":"6/20/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":53,"Cost":28,"Date":"7/1/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":609,"Cost":343,"Date":"7/4/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":582,"Cost":398,"Date":"7/8/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":6,"Cost":5,"Date":"7/9/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":647,"Cost":526,"Date":"7/14/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":898,"Cost":818,"Date":"7/19/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":317,"Cost":257,"Date":"8/1/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":24,"Cost":21,"Date":"8/6/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":444,"Cost":293,"Date":"8/7/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":164,"Cost":134,"Date":"8/22/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":513,"Cost":376,"Date":"8/31/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":984,"Cost":670,"Date":"9/1/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":284,"Cost":176,"Date":"9/1/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":540,"Cost":502,"Date":"9/17/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":416,"Cost":268,"Date":"9/29/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":295,"Cost":148,"Date":"11/7/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":774,"Cost":427,"Date":"11/26/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":657,"Cost":335,"Date":"11/27/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":396,"Cost":301,"Date":"12/5/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":854,"Cost":591,"Date":"12/26/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":851,"Cost":432,"Date":"12/31/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":989,"Cost":616,"Date":"1/20/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":316,"Cost":213,"Date":"2/2/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":154,"Cost":83,"Date":"2/8/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":956,"Cost":597,"Date":"2/27/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":641,"Cost":436,"Date":"3/1/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":645,"Cost":594,"Date":"3/1/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":580,"Cost":459,"Date":"3/19/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":468,"Cost":266,"Date":"3/28/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":774,"Cost":557,"Date":"5/21/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":809,"Cost":457,"Date":"7/21/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":230,"Cost":190,"Date":"8/5/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":76,"Cost":44,"Date":"8/12/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":881,"Cost":702,"Date":"8/21/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":237,"Cost":141,"Date":"8/23/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":793,"Cost":681,"Date":"9/3/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":746,"Cost":704,"Date":"9/5/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":112,"Cost":69,"Date":"10/6/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":54,"Cost":35,"Date":"10/19/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":49,"Cost":30,"Date":"11/15/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":466,"Cost":286,"Date":"12/8/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":831,"Cost":700,"Date":"1/8/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":351,"Cost":211,"Date":"1/14/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":236,"Cost":153,"Date":"1/19/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":701,"Cost":379,"Date":"1/28/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":100,"Cost":78,"Date":"1/31/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":640,"Cost":338,"Date":"3/27/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":605,"Cost":410,"Date":"4/20/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":51,"Cost":27,"Date":"4/24/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":754,"Cost":503,"Date":"4/28/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":193,"Cost":171,"Date":"5/15/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":36,"Cost":18,"Date":"5/16/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":309,"Cost":252,"Date":"5/18/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":82,"Cost":68,"Date":"6/2/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":252,"Cost":157,"Date":"6/3/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":6,"Cost":5,"Date":"6/5/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":744,"Cost":420,"Date":"6/7/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":863,"Cost":465,"Date":"6/14/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":684,"Cost":643,"Date":"6/20/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":628,"Cost":484,"Date":"6/24/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":91,"Cost":69,"Date":"7/4/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":983,"Cost":688,"Date":"7/9/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":809,"Cost":722,"Date":"7/12/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":623,"Cost":442,"Date":"8/14/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":733,"Cost":435,"Date":"8/16/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":959,"Cost":631,"Date":"8/23/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":579,"Cost":461,"Date":"9/2/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":122,"Cost":72,"Date":"9/3/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":901,"Cost":739,"Date":"9/16/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":784,"Cost":663,"Date":"10/4/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":366,"Cost":186,"Date":"11/1/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":498,"Cost":362,"Date":"11/2/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":409,"Cost":281,"Date":"12/17/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":154,"Cost":139,"Date":"2/10/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":785,"Cost":458,"Date":"2/28/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":301,"Cost":207,"Date":"3/4/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":766,"Cost":430,"Date":"3/9/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":65,"Cost":50,"Date":"3/9/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":172,"Cost":105,"Date":"3/11/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":80,"Cost":69,"Date":"3/17/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":115,"Cost":107,"Date":"3/17/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":643,"Cost":418,"Date":"3/23/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":350,"Cost":186,"Date":"4/1/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":106,"Cost":59,"Date":"5/7/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":42,"Cost":37,"Date":"5/10/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":889,"Cost":826,"Date":"5/20/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":86,"Cost":64,"Date":"6/2/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":806,"Cost":561,"Date":"6/11/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":126,"Cost":103,"Date":"6/16/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":745,"Cost":525,"Date":"6/16/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":50,"Cost":42,"Date":"7/10/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":836,"Cost":652,"Date":"7/11/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":992,"Cost":642,"Date":"8/28/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":160,"Cost":142,"Date":"8/29/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":571,"Cost":423,"Date":"8/31/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":191,"Cost":153,"Date":"9/8/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":930,"Cost":861,"Date":"9/13/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":86,"Cost":52,"Date":"9/14/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":148,"Cost":133,"Date":"9/19/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":216,"Cost":131,"Date":"9/25/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":324,"Cost":242,"Date":"10/4/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":465,"Cost":302,"Date":"10/10/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":863,"Cost":478,"Date":"10/17/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":746,"Cost":563,"Date":"10/28/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":981,"Cost":627,"Date":"10/30/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":397,"Cost":314,"Date":"11/1/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":255,"Cost":192,"Date":"11/15/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":513,"Cost":355,"Date":"11/25/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":6,"Cost":5,"Date":"1/10/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":974,"Cost":542,"Date":"1/14/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":990,"Cost":630,"Date":"1/20/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":663,"Cost":501,"Date":"2/8/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":17,"Cost":11,"Date":"2/25/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":763,"Cost":494,"Date":"3/7/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":608,"Cost":578,"Date":"3/14/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":704,"Cost":430,"Date":"3/27/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":396,"Cost":367,"Date":"4/5/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":176,"Cost":162,"Date":"4/14/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":603,"Cost":406,"Date":"5/3/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":898,"Cost":522,"Date":"5/9/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":461,"Cost":352,"Date":"5/15/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":119,"Cost":105,"Date":"5/25/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":370,"Cost":277,"Date":"5/26/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":458,"Cost":386,"Date":"5/31/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":730,"Cost":656,"Date":"7/27/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":301,"Cost":270,"Date":"9/17/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":810,"Cost":703,"Date":"10/6/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":400,"Cost":373,"Date":"10/8/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":545,"Cost":428,"Date":"10/26/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":407,"Cost":233,"Date":"11/16/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":595,"Cost":476,"Date":"11/18/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"Jeans","Country":"Germany","Sale":921,"Cost":585,"Date":"12/1/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":679,"Cost":409,"Date":"2/9/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":503,"Cost":364,"Date":"2/11/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":58,"Cost":42,"Date":"3/10/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":264,"Cost":195,"Date":"3/16/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":242,"Cost":164,"Date":"3/18/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":849,"Cost":537,"Date":"3/20/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":26,"Cost":22,"Date":"3/26/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":791,"Cost":526,"Date":"6/2/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":27,"Cost":18,"Date":"6/10/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":452,"Cost":275,"Date":"6/16/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":663,"Cost":414,"Date":"6/25/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":877,"Cost":746,"Date":"7/19/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":391,"Cost":368,"Date":"7/21/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":636,"Cost":550,"Date":"7/25/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":164,"Cost":101,"Date":"8/4/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":190,"Cost":169,"Date":"9/2/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":641,"Cost":438,"Date":"9/4/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":654,"Cost":416,"Date":"9/19/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":215,"Cost":127,"Date":"9/29/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":78,"Cost":56,"Date":"10/2/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":742,"Cost":521,"Date":"10/15/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":579,"Cost":324,"Date":"10/30/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":184,"Cost":157,"Date":"11/9/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":617,"Cost":459,"Date":"11/23/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":571,"Cost":295,"Date":"11/30/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":565,"Cost":533,"Date":"12/8/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":522,"Cost":261,"Date":"12/11/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":637,"Cost":336,"Date":"1/15/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":385,"Cost":243,"Date":"1/24/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":504,"Cost":263,"Date":"2/3/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":310,"Cost":195,"Date":"2/4/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":44,"Cost":30,"Date":"3/9/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":436,"Cost":273,"Date":"3/12/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":431,"Cost":305,"Date":"4/19/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":765,"Cost":689,"Date":"5/3/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":783,"Cost":445,"Date":"5/4/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":702,"Cost":560,"Date":"6/8/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":477,"Cost":254,"Date":"6/26/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":540,"Cost":386,"Date":"7/4/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":806,"Cost":474,"Date":"7/13/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":828,"Cost":699,"Date":"8/8/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":64,"Cost":41,"Date":"8/26/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":715,"Cost":631,"Date":"9/2/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":209,"Cost":120,"Date":"9/29/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":60,"Cost":41,"Date":"10/12/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":96,"Cost":62,"Date":"11/2/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":594,"Cost":303,"Date":"11/4/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":412,"Cost":330,"Date":"11/7/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":269,"Cost":231,"Date":"12/1/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":506,"Cost":464,"Date":"12/4/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":957,"Cost":518,"Date":"12/7/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":534,"Cost":313,"Date":"12/18/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":326,"Cost":245,"Date":"12/20/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":981,"Cost":665,"Date":"12/20/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":336,"Cost":242,"Date":"12/21/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":278,"Cost":214,"Date":"1/9/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":215,"Cost":157,"Date":"2/5/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":243,"Cost":141,"Date":"2/16/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":450,"Cost":387,"Date":"2/16/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":125,"Cost":94,"Date":"2/18/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":287,"Cost":238,"Date":"2/22/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":818,"Cost":554,"Date":"2/25/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":765,"Cost":399,"Date":"3/8/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":788,"Cost":440,"Date":"4/2/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":381,"Cost":305,"Date":"4/3/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":13,"Cost":11,"Date":"4/9/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":85,"Cost":77,"Date":"4/10/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":417,"Cost":353,"Date":"4/19/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":956,"Cost":633,"Date":"5/17/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":633,"Cost":502,"Date":"5/22/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":69,"Cost":41,"Date":"6/20/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":95,"Cost":71,"Date":"7/1/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":847,"Cost":550,"Date":"7/4/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":953,"Cost":810,"Date":"7/8/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":888,"Cost":686,"Date":"7/9/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":979,"Cost":589,"Date":"7/14/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":616,"Cost":395,"Date":"7/19/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":931,"Cost":466,"Date":"8/1/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":431,"Cost":298,"Date":"8/6/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":997,"Cost":944,"Date":"8/7/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":136,"Cost":86,"Date":"8/22/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":54,"Cost":47,"Date":"8/31/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":789,"Cost":701,"Date":"9/1/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":673,"Cost":347,"Date":"9/1/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":709,"Cost":618,"Date":"9/17/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":170,"Cost":153,"Date":"9/29/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":766,"Cost":666,"Date":"11/7/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":629,"Cost":547,"Date":"11/26/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":156,"Cost":109,"Date":"11/27/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":9,"Cost":7,"Date":"12/5/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":422,"Cost":364,"Date":"12/26/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":69,"Cost":46,"Date":"12/31/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":155,"Cost":91,"Date":"1/20/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":33,"Cost":29,"Date":"2/2/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":402,"Cost":307,"Date":"2/8/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":769,"Cost":679,"Date":"2/27/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":601,"Cost":442,"Date":"3/1/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":616,"Cost":549,"Date":"3/1/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":546,"Cost":325,"Date":"3/19/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":505,"Cost":312,"Date":"3/28/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":80,"Cost":50,"Date":"5/21/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":745,"Cost":436,"Date":"7/21/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":128,"Cost":118,"Date":"8/5/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":927,"Cost":793,"Date":"8/12/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":662,"Cost":454,"Date":"8/21/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":517,"Cost":312,"Date":"8/23/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":688,"Cost":427,"Date":"9/3/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":940,"Cost":553,"Date":"9/5/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":817,"Cost":710,"Date":"10/6/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":823,"Cost":441,"Date":"10/19/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":726,"Cost":378,"Date":"11/15/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":25,"Cost":19,"Date":"12/8/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":414,"Cost":256,"Date":"1/8/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":805,"Cost":569,"Date":"1/14/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":408,"Cost":240,"Date":"1/19/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":566,"Cost":434,"Date":"1/28/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":258,"Cost":219,"Date":"1/31/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":261,"Cost":218,"Date":"3/27/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":363,"Cost":293,"Date":"4/20/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":3,"Cost":3,"Date":"4/24/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":565,"Cost":426,"Date":"4/28/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":228,"Cost":206,"Date":"5/15/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":240,"Cost":146,"Date":"5/16/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":836,"Cost":470,"Date":"5/18/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":814,"Cost":588,"Date":"6/2/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":832,"Cost":578,"Date":"6/3/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":99,"Cost":51,"Date":"6/5/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":167,"Cost":107,"Date":"6/7/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":58,"Cost":33,"Date":"6/14/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":750,"Cost":515,"Date":"6/20/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":827,"Cost":726,"Date":"6/24/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":873,"Cost":799,"Date":"7/4/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":103,"Cost":54,"Date":"7/9/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":250,"Cost":233,"Date":"7/12/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":711,"Cost":468,"Date":"8/14/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":585,"Cost":324,"Date":"8/16/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":648,"Cost":500,"Date":"8/23/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":478,"Cost":409,"Date":"9/2/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":966,"Cost":507,"Date":"9/3/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":895,"Cost":775,"Date":"9/16/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":73,"Cost":62,"Date":"10/4/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":451,"Cost":318,"Date":"11/1/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":281,"Cost":184,"Date":"11/2/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":158,"Cost":87,"Date":"12/17/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":370,"Cost":280,"Date":"2/10/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":669,"Cost":487,"Date":"2/28/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":751,"Cost":665,"Date":"3/4/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":91,"Cost":76,"Date":"3/9/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":970,"Cost":699,"Date":"3/9/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":422,"Cost":341,"Date":"3/11/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":384,"Cost":320,"Date":"3/17/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":204,"Cost":135,"Date":"3/17/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":66,"Cost":42,"Date":"3/23/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":668,"Cost":538,"Date":"4/1/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":351,"Cost":193,"Date":"5/7/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":328,"Cost":189,"Date":"5/10/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":869,"Cost":565,"Date":"5/20/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":46,"Cost":39,"Date":"6/2/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":806,"Cost":451,"Date":"6/11/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":141,"Cost":99,"Date":"6/16/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":757,"Cost":546,"Date":"6/16/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":909,"Cost":827,"Date":"7/10/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":559,"Cost":477,"Date":"7/11/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":646,"Cost":410,"Date":"8/28/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":957,"Cost":489,"Date":"8/29/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":83,"Cost":51,"Date":"8/31/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":790,"Cost":557,"Date":"9/8/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":768,"Cost":479,"Date":"9/13/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":514,"Cost":357,"Date":"9/14/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":509,"Cost":371,"Date":"9/19/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":269,"Cost":163,"Date":"9/25/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":150,"Cost":123,"Date":"10/4/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":10,"Cost":9,"Date":"10/10/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":840,"Cost":458,"Date":"10/17/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":6,"Cost":5,"Date":"10/28/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":326,"Cost":261,"Date":"10/30/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":647,"Cost":599,"Date":"11/1/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":750,"Cost":504,"Date":"11/15/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":607,"Cost":308,"Date":"11/25/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":589,"Cost":394,"Date":"1/10/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":796,"Cost":691,"Date":"1/14/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":172,"Cost":158,"Date":"1/20/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":784,"Cost":392,"Date":"2/8/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":605,"Cost":417,"Date":"2/25/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":118,"Cost":62,"Date":"3/7/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":577,"Cost":410,"Date":"3/14/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":938,"Cost":752,"Date":"3/27/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":753,"Cost":561,"Date":"4/5/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":314,"Cost":180,"Date":"4/14/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":451,"Cost":255,"Date":"5/3/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":756,"Cost":459,"Date":"5/9/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":250,"Cost":205,"Date":"5/15/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":589,"Cost":429,"Date":"5/25/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":311,"Cost":213,"Date":"5/26/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":819,"Cost":725,"Date":"5/31/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":962,"Cost":774,"Date":"7/27/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":927,"Cost":816,"Date":"9/17/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":447,"Cost":374,"Date":"10/6/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":686,"Cost":417,"Date":"10/8/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":731,"Cost":400,"Date":"10/26/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":820,"Cost":673,"Date":"11/16/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":91,"Cost":57,"Date":"11/18/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"HM","Country":"Germany","Sale":946,"Cost":563,"Date":"12/1/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":218,"Cost":129,"Date":"2/9/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":908,"Cost":766,"Date":"2/11/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":875,"Cost":614,"Date":"3/10/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":63,"Cost":31,"Date":"3/16/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":729,"Cost":503,"Date":"3/18/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":744,"Cost":522,"Date":"3/20/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":346,"Cost":311,"Date":"3/26/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":395,"Cost":247,"Date":"6/2/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":285,"Cost":253,"Date":"6/10/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":612,"Cost":495,"Date":"6/16/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":292,"Cost":210,"Date":"6/25/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":570,"Cost":439,"Date":"7/19/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":802,"Cost":761,"Date":"7/21/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":847,"Cost":796,"Date":"7/25/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":614,"Cost":351,"Date":"8/4/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":233,"Cost":151,"Date":"9/2/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":868,"Cost":572,"Date":"9/4/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":449,"Cost":236,"Date":"9/19/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":796,"Cost":583,"Date":"9/29/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":150,"Cost":132,"Date":"10/2/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":293,"Cost":222,"Date":"10/15/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":77,"Cost":59,"Date":"10/30/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":263,"Cost":212,"Date":"11/9/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":489,"Cost":340,"Date":"11/23/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":528,"Cost":382,"Date":"11/30/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":583,"Cost":410,"Date":"12/8/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":850,"Cost":476,"Date":"12/11/2018"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":509,"Cost":315,"Date":"1/15/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":420,"Cost":344,"Date":"1/24/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":490,"Cost":256,"Date":"2/3/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":605,"Cost":509,"Date":"2/4/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":27,"Cost":14,"Date":"3/9/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":373,"Cost":289,"Date":"3/12/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":791,"Cost":655,"Date":"4/19/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":282,"Cost":207,"Date":"5/3/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":947,"Cost":538,"Date":"5/4/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":238,"Cost":139,"Date":"6/8/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":608,"Cost":382,"Date":"6/26/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":263,"Cost":170,"Date":"7/4/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":316,"Cost":259,"Date":"7/13/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":87,"Cost":63,"Date":"8/8/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":880,"Cost":678,"Date":"8/26/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":612,"Cost":451,"Date":"9/2/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":901,"Cost":815,"Date":"9/29/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":144,"Cost":112,"Date":"10/12/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":238,"Cost":132,"Date":"11/2/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":145,"Cost":104,"Date":"11/4/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":137,"Cost":102,"Date":"11/7/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":244,"Cost":217,"Date":"12/1/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":21,"Cost":15,"Date":"12/4/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":201,"Cost":107,"Date":"12/7/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":953,"Cost":766,"Date":"12/18/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":357,"Cost":209,"Date":"12/20/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":508,"Cost":470,"Date":"12/20/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":749,"Cost":692,"Date":"12/21/2019"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":916,"Cost":494,"Date":"1/9/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":637,"Cost":355,"Date":"2/5/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":423,"Cost":352,"Date":"2/16/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":185,"Cost":161,"Date":"2/16/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":178,"Cost":112,"Date":"2/18/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":855,"Cost":637,"Date":"2/22/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":146,"Cost":103,"Date":"2/25/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":884,"Cost":773,"Date":"3/8/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":936,"Cost":669,"Date":"4/2/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":120,"Cost":71,"Date":"4/3/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":839,"Cost":486,"Date":"4/9/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":474,"Cost":328,"Date":"4/10/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":939,"Cost":546,"Date":"4/19/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":880,"Cost":495,"Date":"5/17/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":858,"Cost":543,"Date":"5/22/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":905,"Cost":622,"Date":"6/20/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":668,"Cost":542,"Date":"7/1/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":954,"Cost":714,"Date":"7/4/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":568,"Cost":443,"Date":"7/8/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":157,"Cost":84,"Date":"7/9/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":793,"Cost":664,"Date":"7/14/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":485,"Cost":423,"Date":"7/19/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":269,"Cost":160,"Date":"8/1/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":175,"Cost":99,"Date":"8/6/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":729,"Cost":620,"Date":"8/7/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":393,"Cost":230,"Date":"8/22/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":795,"Cost":481,"Date":"8/31/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":635,"Cost":383,"Date":"9/1/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":162,"Cost":87,"Date":"9/1/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":712,"Cost":505,"Date":"9/17/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":284,"Cost":150,"Date":"9/29/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":198,"Cost":130,"Date":"11/7/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":84,"Cost":64,"Date":"11/26/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":539,"Cost":315,"Date":"11/27/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":477,"Cost":398,"Date":"12/5/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":793,"Cost":471,"Date":"12/26/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":972,"Cost":562,"Date":"12/31/2020"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":478,"Cost":323,"Date":"1/20/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":557,"Cost":524,"Date":"2/2/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":336,"Cost":226,"Date":"2/8/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":321,"Cost":208,"Date":"2/27/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":630,"Cost":561,"Date":"3/1/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":900,"Cost":814,"Date":"3/1/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":687,"Cost":528,"Date":"3/19/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":228,"Cost":208,"Date":"3/28/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":194,"Cost":101,"Date":"5/21/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":603,"Cost":379,"Date":"7/21/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":201,"Cost":140,"Date":"8/5/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":338,"Cost":254,"Date":"8/12/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":743,"Cost":594,"Date":"8/21/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":385,"Cost":359,"Date":"8/23/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":523,"Cost":497,"Date":"9/3/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":999,"Cost":881,"Date":"9/5/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":175,"Cost":87,"Date":"10/6/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":775,"Cost":519,"Date":"10/19/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":971,"Cost":895,"Date":"11/15/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":502,"Cost":335,"Date":"12/8/2021"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":154,"Cost":126,"Date":"1/8/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":669,"Cost":433,"Date":"1/14/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":994,"Cost":551,"Date":"1/19/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":533,"Cost":299,"Date":"1/28/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":652,"Cost":333,"Date":"1/31/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":802,"Cost":729,"Date":"3/27/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":242,"Cost":145,"Date":"4/20/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":424,"Cost":216,"Date":"4/24/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":319,"Cost":283,"Date":"4/28/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":720,"Cost":624,"Date":"5/15/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":811,"Cost":489,"Date":"5/16/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":711,"Cost":565,"Date":"5/18/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":507,"Cost":260,"Date":"6/2/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":73,"Cost":60,"Date":"6/3/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":909,"Cost":751,"Date":"6/5/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":884,"Cost":567,"Date":"6/7/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":448,"Cost":358,"Date":"6/14/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":198,"Cost":109,"Date":"6/20/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":361,"Cost":219,"Date":"6/24/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":611,"Cost":431,"Date":"7/4/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":415,"Cost":271,"Date":"7/9/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":498,"Cost":257,"Date":"7/12/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":151,"Cost":123,"Date":"8/14/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":644,"Cost":514,"Date":"8/16/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":649,"Cost":482,"Date":"8/23/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":454,"Cost":414,"Date":"9/2/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":574,"Cost":304,"Date":"9/3/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":413,"Cost":297,"Date":"9/16/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":596,"Cost":471,"Date":"10/4/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":856,"Cost":671,"Date":"11/1/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":151,"Cost":128,"Date":"11/2/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":269,"Cost":164,"Date":"12/17/2022"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":812,"Cost":461,"Date":"2/10/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":557,"Cost":328,"Date":"2/28/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":917,"Cost":802,"Date":"3/4/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":847,"Cost":793,"Date":"3/9/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":613,"Cost":581,"Date":"3/9/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":393,"Cost":301,"Date":"3/11/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":778,"Cost":566,"Date":"3/17/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":734,"Cost":482,"Date":"3/17/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":891,"Cost":655,"Date":"3/23/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":280,"Cost":224,"Date":"4/1/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":729,"Cost":427,"Date":"5/7/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":516,"Cost":481,"Date":"5/10/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":653,"Cost":387,"Date":"5/20/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":171,"Cost":154,"Date":"6/2/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":786,"Cost":512,"Date":"6/11/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":620,"Cost":408,"Date":"6/16/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":124,"Cost":85,"Date":"6/16/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":197,"Cost":131,"Date":"7/10/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":814,"Cost":713,"Date":"7/11/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":20,"Cost":19,"Date":"8/28/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":527,"Cost":369,"Date":"8/29/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":967,"Cost":677,"Date":"8/31/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":12,"Cost":8,"Date":"9/8/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":485,"Cost":282,"Date":"9/13/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":891,"Cost":493,"Date":"9/14/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":398,"Cost":328,"Date":"9/19/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":183,"Cost":173,"Date":"9/25/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":246,"Cost":132,"Date":"10/4/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":716,"Cost":527,"Date":"10/10/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":299,"Cost":213,"Date":"10/17/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":861,"Cost":474,"Date":"10/28/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":879,"Cost":765,"Date":"10/30/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":127,"Cost":88,"Date":"11/1/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":299,"Cost":198,"Date":"11/15/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":478,"Cost":335,"Date":"11/25/2023"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":716,"Cost":519,"Date":"1/10/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":816,"Cost":694,"Date":"1/14/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":436,"Cost":299,"Date":"1/20/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":799,"Cost":670,"Date":"2/8/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":901,"Cost":523,"Date":"2/25/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":69,"Cost":40,"Date":"3/7/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":775,"Cost":445,"Date":"3/14/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":103,"Cost":60,"Date":"3/27/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":537,"Cost":334,"Date":"4/5/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":372,"Cost":283,"Date":"4/14/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":630,"Cost":508,"Date":"5/3/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":459,"Cost":295,"Date":"5/9/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":257,"Cost":147,"Date":"5/15/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":9,"Cost":6,"Date":"5/25/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":440,"Cost":305,"Date":"5/26/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":308,"Cost":164,"Date":"5/31/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":92,"Cost":84,"Date":"7/27/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":730,"Cost":412,"Date":"9/17/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":656,"Cost":620,"Date":"10/6/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":715,"Cost":564,"Date":"10/8/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":621,"Cost":349,"Date":"10/26/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":907,"Cost":491,"Date":"11/16/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":664,"Cost":566,"Date":"11/18/2024"},{"Store":"Schwarzwald-City, Freiburg","Brand":"ARKET","Country":"Germany","Sale":454,"Cost":375,"Date":"12/1/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":144,"Cost":123,"Date":"2/9/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":895,"Cost":461,"Date":"2/11/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":787,"Cost":657,"Date":"3/10/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":646,"Cost":354,"Date":"3/16/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":129,"Cost":110,"Date":"3/18/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":275,"Cost":175,"Date":"3/20/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":823,"Cost":469,"Date":"3/26/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":382,"Cost":298,"Date":"6/2/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":715,"Cost":612,"Date":"6/10/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":316,"Cost":253,"Date":"6/16/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":992,"Cost":620,"Date":"6/25/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":345,"Cost":298,"Date":"7/19/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":599,"Cost":355,"Date":"7/21/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":930,"Cost":543,"Date":"7/25/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":814,"Cost":665,"Date":"8/4/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":563,"Cost":497,"Date":"9/2/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":491,"Cost":391,"Date":"9/4/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":74,"Cost":60,"Date":"9/19/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":357,"Cost":198,"Date":"9/29/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":280,"Cost":151,"Date":"10/2/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":520,"Cost":318,"Date":"10/15/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":82,"Cost":75,"Date":"10/30/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":331,"Cost":283,"Date":"11/9/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":284,"Cost":237,"Date":"11/23/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":708,"Cost":476,"Date":"11/30/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":477,"Cost":327,"Date":"12/8/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":559,"Cost":296,"Date":"12/11/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":762,"Cost":509,"Date":"1/15/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":806,"Cost":626,"Date":"1/24/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":982,"Cost":914,"Date":"2/3/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":351,"Cost":247,"Date":"2/4/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":104,"Cost":90,"Date":"3/9/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":55,"Cost":40,"Date":"3/12/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":842,"Cost":675,"Date":"4/19/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":153,"Cost":138,"Date":"5/3/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":141,"Cost":75,"Date":"5/4/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":916,"Cost":662,"Date":"6/8/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":35,"Cost":20,"Date":"6/26/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":507,"Cost":389,"Date":"7/4/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":712,"Cost":539,"Date":"7/13/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":38,"Cost":29,"Date":"8/8/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":451,"Cost":284,"Date":"8/26/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":658,"Cost":392,"Date":"9/2/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":344,"Cost":220,"Date":"9/29/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":987,"Cost":606,"Date":"10/12/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":911,"Cost":481,"Date":"11/2/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":695,"Cost":575,"Date":"11/4/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":377,"Cost":292,"Date":"11/7/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":844,"Cost":667,"Date":"12/1/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":964,"Cost":902,"Date":"12/4/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":142,"Cost":100,"Date":"12/7/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":420,"Cost":323,"Date":"12/18/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":451,"Cost":325,"Date":"12/20/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":182,"Cost":140,"Date":"12/20/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":653,"Cost":464,"Date":"12/21/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":427,"Cost":256,"Date":"1/9/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":874,"Cost":676,"Date":"2/5/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":447,"Cost":375,"Date":"2/16/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":954,"Cost":874,"Date":"2/16/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":607,"Cost":380,"Date":"2/18/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":685,"Cost":553,"Date":"2/22/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":713,"Cost":659,"Date":"2/25/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":123,"Cost":79,"Date":"3/8/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":840,"Cost":514,"Date":"4/2/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":427,"Cost":347,"Date":"4/3/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":565,"Cost":345,"Date":"4/9/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":24,"Cost":14,"Date":"4/10/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":112,"Cost":86,"Date":"4/19/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":79,"Cost":64,"Date":"5/17/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":948,"Cost":551,"Date":"5/22/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":981,"Cost":811,"Date":"6/20/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":392,"Cost":225,"Date":"7/1/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":169,"Cost":123,"Date":"7/4/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":685,"Cost":630,"Date":"7/8/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":533,"Cost":333,"Date":"7/9/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":158,"Cost":102,"Date":"7/14/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":93,"Cost":47,"Date":"7/19/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":706,"Cost":377,"Date":"8/1/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":461,"Cost":296,"Date":"8/6/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":226,"Cost":167,"Date":"8/7/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":157,"Cost":128,"Date":"8/22/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":74,"Cost":63,"Date":"8/31/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":842,"Cost":601,"Date":"9/1/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":523,"Cost":384,"Date":"9/1/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":661,"Cost":476,"Date":"9/17/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":604,"Cost":531,"Date":"9/29/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":60,"Cost":55,"Date":"11/7/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":130,"Cost":106,"Date":"11/26/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":215,"Cost":180,"Date":"11/27/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":595,"Cost":406,"Date":"12/5/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":823,"Cost":474,"Date":"12/26/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":222,"Cost":147,"Date":"12/31/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":267,"Cost":191,"Date":"1/20/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":812,"Cost":520,"Date":"2/2/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":583,"Cost":342,"Date":"2/8/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":607,"Cost":473,"Date":"2/27/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":433,"Cost":310,"Date":"3/1/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":934,"Cost":678,"Date":"3/1/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":5,"Cost":3,"Date":"3/19/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":808,"Cost":614,"Date":"3/28/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":580,"Cost":314,"Date":"5/21/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":962,"Cost":667,"Date":"7/21/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":844,"Cost":491,"Date":"8/5/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":504,"Cost":440,"Date":"8/12/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":597,"Cost":463,"Date":"8/21/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":866,"Cost":703,"Date":"8/23/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":159,"Cost":81,"Date":"9/3/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":699,"Cost":617,"Date":"9/5/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":113,"Cost":89,"Date":"10/6/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":428,"Cost":280,"Date":"10/19/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":572,"Cost":398,"Date":"11/15/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":916,"Cost":502,"Date":"12/8/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":411,"Cost":295,"Date":"1/8/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":199,"Cost":159,"Date":"1/14/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":403,"Cost":234,"Date":"1/19/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":945,"Cost":481,"Date":"1/28/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":349,"Cost":285,"Date":"1/31/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":227,"Cost":189,"Date":"3/27/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":145,"Cost":73,"Date":"4/20/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":802,"Cost":434,"Date":"4/24/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":549,"Cost":373,"Date":"4/28/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":248,"Cost":205,"Date":"5/15/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":292,"Cost":206,"Date":"5/16/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":747,"Cost":629,"Date":"5/18/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":735,"Cost":461,"Date":"6/2/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":536,"Cost":440,"Date":"6/3/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":94,"Cost":65,"Date":"6/5/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":644,"Cost":589,"Date":"6/7/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":865,"Cost":581,"Date":"6/14/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":313,"Cost":257,"Date":"6/20/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":293,"Cost":192,"Date":"6/24/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":220,"Cost":179,"Date":"7/4/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":389,"Cost":210,"Date":"7/9/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":551,"Cost":420,"Date":"7/12/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":643,"Cost":356,"Date":"8/14/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":712,"Cost":512,"Date":"8/16/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":621,"Cost":527,"Date":"8/23/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":293,"Cost":249,"Date":"9/2/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":512,"Cost":470,"Date":"9/3/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":629,"Cost":438,"Date":"9/16/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":784,"Cost":700,"Date":"10/4/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":783,"Cost":451,"Date":"11/1/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":58,"Cost":53,"Date":"11/2/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":946,"Cost":558,"Date":"12/17/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":368,"Cost":224,"Date":"2/10/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":70,"Cost":37,"Date":"2/28/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":894,"Cost":480,"Date":"3/4/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":26,"Cost":16,"Date":"3/9/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":201,"Cost":102,"Date":"3/9/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":115,"Cost":84,"Date":"3/11/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":145,"Cost":97,"Date":"3/17/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":679,"Cost":446,"Date":"3/17/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":13,"Cost":7,"Date":"3/23/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":429,"Cost":323,"Date":"4/1/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":704,"Cost":507,"Date":"5/7/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":779,"Cost":427,"Date":"5/10/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":67,"Cost":61,"Date":"5/20/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":46,"Cost":30,"Date":"6/2/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":189,"Cost":149,"Date":"6/11/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":586,"Cost":382,"Date":"6/16/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":884,"Cost":741,"Date":"6/16/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":464,"Cost":364,"Date":"7/10/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":753,"Cost":625,"Date":"7/11/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":540,"Cost":453,"Date":"8/28/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":561,"Cost":361,"Date":"8/29/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":283,"Cost":191,"Date":"8/31/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":650,"Cost":411,"Date":"9/8/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":881,"Cost":819,"Date":"9/13/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":154,"Cost":133,"Date":"9/14/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":961,"Cost":818,"Date":"9/19/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":945,"Cost":871,"Date":"9/25/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":57,"Cost":39,"Date":"10/4/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":798,"Cost":470,"Date":"10/10/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":733,"Cost":590,"Date":"10/17/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":102,"Cost":55,"Date":"10/28/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":951,"Cost":710,"Date":"10/30/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":968,"Cost":826,"Date":"11/1/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":841,"Cost":473,"Date":"11/15/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":821,"Cost":450,"Date":"11/25/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":764,"Cost":586,"Date":"1/10/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":501,"Cost":338,"Date":"1/14/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":27,"Cost":15,"Date":"1/20/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":953,"Cost":588,"Date":"2/8/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":305,"Cost":199,"Date":"2/25/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":663,"Cost":482,"Date":"3/7/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":199,"Cost":132,"Date":"3/14/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":714,"Cost":482,"Date":"3/27/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":414,"Cost":307,"Date":"4/5/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":728,"Cost":381,"Date":"4/14/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":625,"Cost":326,"Date":"5/3/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":567,"Cost":403,"Date":"5/9/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":981,"Cost":794,"Date":"5/15/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":534,"Cost":372,"Date":"5/25/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":334,"Cost":278,"Date":"5/26/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":277,"Cost":190,"Date":"5/31/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":425,"Cost":326,"Date":"7/27/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":611,"Cost":541,"Date":"9/17/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":898,"Cost":518,"Date":"10/6/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":492,"Cost":417,"Date":"10/8/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":900,"Cost":657,"Date":"10/26/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":439,"Cost":238,"Date":"11/16/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":326,"Cost":247,"Date":"11/18/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"Nova","Country":"Germany","Sale":847,"Cost":455,"Date":"12/1/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":757,"Cost":537,"Date":"2/9/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":155,"Cost":144,"Date":"2/11/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":574,"Cost":299,"Date":"3/10/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":975,"Cost":543,"Date":"3/16/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":458,"Cost":426,"Date":"3/18/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":520,"Cost":314,"Date":"3/20/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":568,"Cost":456,"Date":"3/26/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":925,"Cost":735,"Date":"6/2/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":612,"Cost":412,"Date":"6/10/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":870,"Cost":581,"Date":"6/16/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":352,"Cost":225,"Date":"6/25/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":751,"Cost":682,"Date":"7/19/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":628,"Cost":333,"Date":"7/21/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":574,"Cost":354,"Date":"7/25/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":783,"Cost":559,"Date":"8/4/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":859,"Cost":457,"Date":"9/2/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":956,"Cost":759,"Date":"9/4/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":260,"Cost":204,"Date":"9/19/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":931,"Cost":495,"Date":"9/29/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":638,"Cost":421,"Date":"10/2/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":502,"Cost":308,"Date":"10/15/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":172,"Cost":91,"Date":"10/30/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":679,"Cost":545,"Date":"11/9/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":962,"Cost":895,"Date":"11/23/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":580,"Cost":524,"Date":"11/30/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":306,"Cost":264,"Date":"12/8/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":913,"Cost":711,"Date":"12/11/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":155,"Cost":81,"Date":"1/15/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":848,"Cost":683,"Date":"1/24/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":803,"Cost":591,"Date":"2/3/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":374,"Cost":302,"Date":"2/4/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":765,"Cost":613,"Date":"3/9/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":507,"Cost":306,"Date":"3/12/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":538,"Cost":428,"Date":"4/19/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":672,"Cost":366,"Date":"5/3/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":762,"Cost":691,"Date":"5/4/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":523,"Cost":310,"Date":"6/8/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":262,"Cost":172,"Date":"6/26/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":416,"Cost":380,"Date":"7/4/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":318,"Cost":250,"Date":"7/13/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":1,"Cost":1,"Date":"8/8/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":908,"Cost":677,"Date":"8/26/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":474,"Cost":363,"Date":"9/2/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":395,"Cost":314,"Date":"9/29/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":199,"Cost":109,"Date":"10/12/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":550,"Cost":490,"Date":"11/2/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":20,"Cost":13,"Date":"11/4/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":547,"Cost":281,"Date":"11/7/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":636,"Cost":470,"Date":"12/1/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":481,"Cost":264,"Date":"12/4/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":758,"Cost":434,"Date":"12/7/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":262,"Cost":198,"Date":"12/18/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":179,"Cost":165,"Date":"12/20/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":266,"Cost":167,"Date":"12/20/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":352,"Cost":269,"Date":"12/21/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":585,"Cost":551,"Date":"1/9/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":505,"Cost":317,"Date":"2/5/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":271,"Cost":192,"Date":"2/16/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":894,"Cost":765,"Date":"2/16/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":689,"Cost":368,"Date":"2/18/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":197,"Cost":148,"Date":"2/22/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":204,"Cost":139,"Date":"2/25/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":968,"Cost":698,"Date":"3/8/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":875,"Cost":691,"Date":"4/2/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":621,"Cost":407,"Date":"4/3/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":545,"Cost":466,"Date":"4/9/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":874,"Cost":658,"Date":"4/10/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":93,"Cost":56,"Date":"4/19/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":29,"Cost":17,"Date":"5/17/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":952,"Cost":751,"Date":"5/22/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":459,"Cost":412,"Date":"6/20/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":194,"Cost":101,"Date":"7/1/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":288,"Cost":165,"Date":"7/4/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":117,"Cost":70,"Date":"7/8/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":337,"Cost":263,"Date":"7/9/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":822,"Cost":440,"Date":"7/14/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":351,"Cost":270,"Date":"7/19/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":858,"Cost":688,"Date":"8/1/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":230,"Cost":164,"Date":"8/6/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":56,"Cost":47,"Date":"8/7/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":887,"Cost":803,"Date":"8/22/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":861,"Cost":462,"Date":"8/31/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":595,"Cost":506,"Date":"9/1/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":184,"Cost":103,"Date":"9/1/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":358,"Cost":275,"Date":"9/17/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":969,"Cost":608,"Date":"9/29/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":290,"Cost":227,"Date":"11/7/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":201,"Cost":151,"Date":"11/26/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":760,"Cost":599,"Date":"11/27/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":834,"Cost":610,"Date":"12/5/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":948,"Cost":581,"Date":"12/26/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":634,"Cost":496,"Date":"12/31/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":280,"Cost":209,"Date":"1/20/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":410,"Cost":312,"Date":"2/2/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":767,"Cost":402,"Date":"2/8/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":881,"Cost":787,"Date":"2/27/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":782,"Cost":391,"Date":"3/1/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":129,"Cost":105,"Date":"3/1/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":231,"Cost":164,"Date":"3/19/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":154,"Cost":119,"Date":"3/28/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":503,"Cost":264,"Date":"5/21/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":598,"Cost":475,"Date":"7/21/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":524,"Cost":291,"Date":"8/5/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":280,"Cost":245,"Date":"8/12/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":916,"Cost":504,"Date":"8/21/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":721,"Cost":581,"Date":"8/23/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":606,"Cost":528,"Date":"9/3/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":938,"Cost":507,"Date":"9/5/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":342,"Cost":257,"Date":"10/6/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":336,"Cost":305,"Date":"10/19/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":690,"Cost":500,"Date":"11/15/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":385,"Cost":328,"Date":"12/8/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":503,"Cost":310,"Date":"1/8/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":848,"Cost":662,"Date":"1/14/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":876,"Cost":640,"Date":"1/19/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":816,"Cost":560,"Date":"1/28/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":200,"Cost":117,"Date":"1/31/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":711,"Cost":643,"Date":"3/27/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":394,"Cost":287,"Date":"4/20/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":498,"Cost":285,"Date":"4/24/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":965,"Cost":699,"Date":"4/28/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":639,"Cost":528,"Date":"5/15/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":375,"Cost":190,"Date":"5/16/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":301,"Cost":199,"Date":"5/18/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":766,"Cost":712,"Date":"6/2/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":202,"Cost":107,"Date":"6/3/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":468,"Cost":322,"Date":"6/5/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":722,"Cost":369,"Date":"6/7/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":276,"Cost":229,"Date":"6/14/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":890,"Cost":663,"Date":"6/20/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":643,"Cost":523,"Date":"6/24/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":700,"Cost":420,"Date":"7/4/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":915,"Cost":460,"Date":"7/9/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":480,"Cost":386,"Date":"7/12/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":202,"Cost":145,"Date":"8/14/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":225,"Cost":196,"Date":"8/16/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":921,"Cost":715,"Date":"8/23/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":816,"Cost":755,"Date":"9/2/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":238,"Cost":162,"Date":"9/3/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":912,"Cost":567,"Date":"9/16/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":295,"Cost":276,"Date":"10/4/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":650,"Cost":482,"Date":"11/1/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":274,"Cost":201,"Date":"11/2/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":626,"Cost":353,"Date":"12/17/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":853,"Cost":773,"Date":"2/10/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":888,"Cost":764,"Date":"2/28/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":373,"Cost":221,"Date":"3/4/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":898,"Cost":456,"Date":"3/9/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":842,"Cost":552,"Date":"3/9/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":987,"Cost":902,"Date":"3/11/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":346,"Cost":212,"Date":"3/17/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":321,"Cost":163,"Date":"3/17/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":260,"Cost":183,"Date":"3/23/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":243,"Cost":229,"Date":"4/1/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":221,"Cost":126,"Date":"5/7/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":640,"Cost":498,"Date":"5/10/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":782,"Cost":689,"Date":"5/20/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":775,"Cost":435,"Date":"6/2/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":89,"Cost":53,"Date":"6/11/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":628,"Cost":377,"Date":"6/16/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":121,"Cost":110,"Date":"6/16/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":163,"Cost":91,"Date":"7/10/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":326,"Cost":220,"Date":"7/11/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":936,"Cost":658,"Date":"8/28/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":891,"Cost":713,"Date":"8/29/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":412,"Cost":224,"Date":"8/31/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":794,"Cost":496,"Date":"9/8/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":280,"Cost":143,"Date":"9/13/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":421,"Cost":313,"Date":"9/14/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":398,"Cost":208,"Date":"9/19/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":7,"Cost":5,"Date":"9/25/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":117,"Cost":70,"Date":"10/4/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":533,"Cost":295,"Date":"10/10/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":324,"Cost":191,"Date":"10/17/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":803,"Cost":583,"Date":"10/28/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":361,"Cost":297,"Date":"10/30/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":688,"Cost":449,"Date":"11/1/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":321,"Cost":271,"Date":"11/15/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":954,"Cost":676,"Date":"11/25/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":517,"Cost":398,"Date":"1/10/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":705,"Cost":557,"Date":"1/14/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":893,"Cost":597,"Date":"1/20/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":437,"Cost":281,"Date":"2/8/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":692,"Cost":377,"Date":"2/25/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":970,"Cost":486,"Date":"3/7/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":42,"Cost":25,"Date":"3/14/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":734,"Cost":567,"Date":"3/27/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":115,"Cost":59,"Date":"4/5/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":70,"Cost":55,"Date":"4/14/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":85,"Cost":49,"Date":"5/3/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":983,"Cost":800,"Date":"5/9/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":214,"Cost":152,"Date":"5/15/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":946,"Cost":672,"Date":"5/25/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":945,"Cost":808,"Date":"5/26/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":837,"Cost":715,"Date":"5/31/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":544,"Cost":468,"Date":"7/27/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":432,"Cost":249,"Date":"9/17/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":202,"Cost":108,"Date":"10/6/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":434,"Cost":361,"Date":"10/8/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":179,"Cost":164,"Date":"10/26/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":683,"Cost":642,"Date":"11/16/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":58,"Cost":42,"Date":"11/18/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"ARKET","Country":"Germany","Sale":414,"Cost":297,"Date":"12/1/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":680,"Cost":449,"Date":"2/9/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":604,"Cost":361,"Date":"2/11/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":782,"Cost":724,"Date":"3/10/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":272,"Cost":205,"Date":"3/16/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":227,"Cost":161,"Date":"3/18/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":410,"Cost":233,"Date":"3/20/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":409,"Cost":284,"Date":"3/26/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":990,"Cost":709,"Date":"6/2/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":546,"Cost":355,"Date":"6/10/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":718,"Cost":570,"Date":"6/16/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":690,"Cost":449,"Date":"6/25/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":840,"Cost":503,"Date":"7/19/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":55,"Cost":48,"Date":"7/21/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":810,"Cost":637,"Date":"7/25/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":441,"Cost":418,"Date":"8/4/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":582,"Cost":542,"Date":"9/2/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":86,"Cost":45,"Date":"9/4/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":353,"Cost":290,"Date":"9/19/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":953,"Cost":626,"Date":"9/29/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":983,"Cost":699,"Date":"10/2/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":13,"Cost":8,"Date":"10/15/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":105,"Cost":94,"Date":"10/30/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":682,"Cost":388,"Date":"11/9/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":28,"Cost":24,"Date":"11/23/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":898,"Cost":478,"Date":"11/30/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":733,"Cost":371,"Date":"12/8/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":876,"Cost":608,"Date":"12/11/2018"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":700,"Cost":517,"Date":"1/15/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":257,"Cost":242,"Date":"1/24/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":132,"Cost":123,"Date":"2/3/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":882,"Cost":463,"Date":"2/4/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":463,"Cost":411,"Date":"3/9/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":685,"Cost":578,"Date":"3/12/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":335,"Cost":269,"Date":"4/19/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":567,"Cost":405,"Date":"5/3/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":475,"Cost":437,"Date":"5/4/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":124,"Cost":107,"Date":"6/8/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":243,"Cost":153,"Date":"6/26/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":280,"Cost":215,"Date":"7/4/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":262,"Cost":141,"Date":"7/13/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":778,"Cost":607,"Date":"8/8/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":689,"Cost":586,"Date":"8/26/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":645,"Cost":329,"Date":"9/2/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":866,"Cost":522,"Date":"9/29/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":453,"Cost":305,"Date":"10/12/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":691,"Cost":407,"Date":"11/2/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":269,"Cost":227,"Date":"11/4/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":6,"Cost":6,"Date":"11/7/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":545,"Cost":507,"Date":"12/1/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":51,"Cost":35,"Date":"12/4/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":115,"Cost":84,"Date":"12/7/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":62,"Cost":58,"Date":"12/18/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":478,"Cost":276,"Date":"12/20/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":158,"Cost":87,"Date":"12/20/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":870,"Cost":705,"Date":"12/21/2019"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":788,"Cost":714,"Date":"1/9/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":641,"Cost":484,"Date":"2/5/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":851,"Cost":541,"Date":"2/16/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":819,"Cost":584,"Date":"2/16/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":83,"Cost":63,"Date":"2/18/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":139,"Cost":99,"Date":"2/22/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":180,"Cost":123,"Date":"2/25/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":209,"Cost":145,"Date":"3/8/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":374,"Cost":229,"Date":"4/2/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":574,"Cost":486,"Date":"4/3/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":589,"Cost":518,"Date":"4/9/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":434,"Cost":389,"Date":"4/10/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":247,"Cost":134,"Date":"4/19/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":600,"Cost":302,"Date":"5/17/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":842,"Cost":656,"Date":"5/22/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":850,"Cost":436,"Date":"6/20/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":805,"Cost":418,"Date":"7/1/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":753,"Cost":543,"Date":"7/4/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":250,"Cost":203,"Date":"7/8/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":433,"Cost":299,"Date":"7/9/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":797,"Cost":669,"Date":"7/14/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":561,"Cost":308,"Date":"7/19/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":359,"Cost":252,"Date":"8/1/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":390,"Cost":202,"Date":"8/6/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":197,"Cost":119,"Date":"8/7/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":640,"Cost":369,"Date":"8/22/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":944,"Cost":680,"Date":"8/31/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":342,"Cost":277,"Date":"9/1/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":448,"Cost":393,"Date":"9/1/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":903,"Cost":515,"Date":"9/17/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":102,"Cost":78,"Date":"9/29/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":267,"Cost":174,"Date":"11/7/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":916,"Cost":788,"Date":"11/26/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":386,"Cost":316,"Date":"11/27/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":889,"Cost":555,"Date":"12/5/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":241,"Cost":215,"Date":"12/26/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":331,"Cost":314,"Date":"12/31/2020"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":838,"Cost":461,"Date":"1/20/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":133,"Cost":70,"Date":"2/2/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":19,"Cost":13,"Date":"2/8/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":607,"Cost":373,"Date":"2/27/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":838,"Cost":678,"Date":"3/1/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":130,"Cost":103,"Date":"3/1/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":413,"Cost":284,"Date":"3/19/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":30,"Cost":29,"Date":"3/28/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":549,"Cost":341,"Date":"5/21/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":694,"Cost":356,"Date":"7/21/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":771,"Cost":439,"Date":"8/5/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":663,"Cost":534,"Date":"8/12/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":560,"Cost":333,"Date":"8/21/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":360,"Cost":339,"Date":"8/23/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":221,"Cost":197,"Date":"9/3/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":952,"Cost":625,"Date":"9/5/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":723,"Cost":681,"Date":"10/6/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":233,"Cost":143,"Date":"10/19/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":358,"Cost":289,"Date":"11/15/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":61,"Cost":35,"Date":"12/8/2021"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":362,"Cost":236,"Date":"1/8/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":189,"Cost":150,"Date":"1/14/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":255,"Cost":229,"Date":"1/19/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":490,"Cost":339,"Date":"1/28/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":170,"Cost":88,"Date":"1/31/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":176,"Cost":90,"Date":"3/27/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":302,"Cost":262,"Date":"4/20/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":389,"Cost":335,"Date":"4/24/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":224,"Cost":115,"Date":"4/28/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":132,"Cost":82,"Date":"5/15/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":452,"Cost":296,"Date":"5/16/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":326,"Cost":195,"Date":"5/18/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":160,"Cost":148,"Date":"6/2/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":341,"Cost":278,"Date":"6/3/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":854,"Cost":744,"Date":"6/5/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":636,"Cost":330,"Date":"6/7/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":506,"Cost":268,"Date":"6/14/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":122,"Cost":91,"Date":"6/20/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":465,"Cost":299,"Date":"6/24/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":226,"Cost":123,"Date":"7/4/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":862,"Cost":455,"Date":"7/9/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":65,"Cost":49,"Date":"7/12/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":124,"Cost":84,"Date":"8/14/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":694,"Cost":372,"Date":"8/16/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":559,"Cost":357,"Date":"8/23/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":121,"Cost":64,"Date":"9/2/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":718,"Cost":368,"Date":"9/3/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":413,"Cost":323,"Date":"9/16/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":300,"Cost":217,"Date":"10/4/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":240,"Cost":175,"Date":"11/1/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":527,"Cost":462,"Date":"11/2/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":813,"Cost":547,"Date":"12/17/2022"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":220,"Cost":177,"Date":"2/10/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":269,"Cost":149,"Date":"2/28/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":483,"Cost":248,"Date":"3/4/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":465,"Cost":380,"Date":"3/9/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":335,"Cost":250,"Date":"3/9/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":964,"Cost":659,"Date":"3/11/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":109,"Cost":99,"Date":"3/17/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":665,"Cost":556,"Date":"3/17/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":953,"Cost":677,"Date":"3/23/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":467,"Cost":263,"Date":"4/1/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":133,"Cost":79,"Date":"5/7/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":57,"Cost":53,"Date":"5/10/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":55,"Cost":31,"Date":"5/20/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":675,"Cost":525,"Date":"6/2/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":977,"Cost":712,"Date":"6/11/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":419,"Cost":352,"Date":"6/16/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":152,"Cost":76,"Date":"6/16/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":780,"Cost":576,"Date":"7/10/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":374,"Cost":339,"Date":"7/11/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":305,"Cost":153,"Date":"8/28/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":998,"Cost":893,"Date":"8/29/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":204,"Cost":112,"Date":"8/31/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":55,"Cost":48,"Date":"9/8/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":533,"Cost":420,"Date":"9/13/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":931,"Cost":636,"Date":"9/14/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":117,"Cost":79,"Date":"9/19/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":823,"Cost":564,"Date":"9/25/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":481,"Cost":265,"Date":"10/4/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":662,"Cost":411,"Date":"10/10/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":434,"Cost":310,"Date":"10/17/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":218,"Cost":130,"Date":"10/28/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":741,"Cost":467,"Date":"10/30/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":413,"Cost":274,"Date":"11/1/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":181,"Cost":164,"Date":"11/15/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":715,"Cost":621,"Date":"11/25/2023"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":474,"Cost":403,"Date":"1/10/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":971,"Cost":905,"Date":"1/14/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":772,"Cost":523,"Date":"1/20/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":339,"Cost":235,"Date":"2/8/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":640,"Cost":522,"Date":"2/25/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":616,"Cost":415,"Date":"3/7/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":938,"Cost":585,"Date":"3/14/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":147,"Cost":116,"Date":"3/27/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":958,"Cost":652,"Date":"4/5/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":733,"Cost":441,"Date":"4/14/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":705,"Cost":492,"Date":"5/3/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":866,"Cost":732,"Date":"5/9/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":648,"Cost":514,"Date":"5/15/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":32,"Cost":18,"Date":"5/25/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":606,"Cost":412,"Date":"5/26/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":148,"Cost":115,"Date":"5/31/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":38,"Cost":21,"Date":"7/27/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":62,"Cost":51,"Date":"9/17/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":845,"Cost":793,"Date":"10/6/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":816,"Cost":728,"Date":"10/8/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":347,"Cost":259,"Date":"10/26/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":888,"Cost":757,"Date":"11/16/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":975,"Cost":909,"Date":"11/18/2024"},{"Store":"Aldi Einkaufszentrum, Gelsenkirchen","Brand":"HM Home","Country":"Germany","Sale":877,"Cost":586,"Date":"12/1/2024"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":57,"Cost":53,"Date":"2/9/2018"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":122,"Cost":107,"Date":"2/11/2018"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":610,"Cost":576,"Date":"3/10/2018"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":726,"Cost":436,"Date":"3/16/2018"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":769,"Cost":453,"Date":"3/18/2018"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":165,"Cost":100,"Date":"3/20/2018"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":319,"Cost":268,"Date":"3/26/2018"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":396,"Cost":249,"Date":"6/2/2018"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":641,"Cost":367,"Date":"6/10/2018"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":552,"Cost":522,"Date":"6/16/2018"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":951,"Cost":654,"Date":"6/25/2018"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":152,"Cost":77,"Date":"7/19/2018"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":636,"Cost":477,"Date":"7/21/2018"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":282,"Cost":170,"Date":"7/25/2018"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":307,"Cost":158,"Date":"8/4/2018"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":431,"Cost":273,"Date":"9/2/2018"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":503,"Cost":256,"Date":"9/4/2018"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":252,"Cost":130,"Date":"9/19/2018"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":218,"Cost":166,"Date":"9/29/2018"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":354,"Cost":278,"Date":"10/2/2018"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":275,"Cost":234,"Date":"10/15/2018"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":898,"Cost":783,"Date":"10/30/2018"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":260,"Cost":189,"Date":"11/9/2018"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":23,"Cost":21,"Date":"11/23/2018"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":186,"Cost":108,"Date":"11/30/2018"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":558,"Cost":504,"Date":"12/8/2018"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":154,"Cost":100,"Date":"12/11/2018"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":89,"Cost":70,"Date":"1/15/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":672,"Cost":466,"Date":"1/24/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":287,"Cost":195,"Date":"2/3/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":115,"Cost":91,"Date":"2/4/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":164,"Cost":120,"Date":"3/9/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":821,"Cost":755,"Date":"3/12/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":755,"Cost":698,"Date":"4/19/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":327,"Cost":304,"Date":"5/3/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":14,"Cost":11,"Date":"5/4/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":47,"Cost":25,"Date":"6/8/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":765,"Cost":719,"Date":"6/26/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":171,"Cost":129,"Date":"7/4/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":196,"Cost":151,"Date":"7/13/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":940,"Cost":722,"Date":"8/8/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":804,"Cost":689,"Date":"8/26/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":173,"Cost":132,"Date":"9/2/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":103,"Cost":57,"Date":"9/29/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":193,"Cost":99,"Date":"10/12/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":911,"Cost":825,"Date":"11/2/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":36,"Cost":35,"Date":"11/4/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":900,"Cost":556,"Date":"11/7/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":608,"Cost":470,"Date":"12/1/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":440,"Cost":360,"Date":"12/4/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":577,"Cost":371,"Date":"12/7/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":808,"Cost":490,"Date":"12/18/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":585,"Cost":416,"Date":"12/20/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":170,"Cost":132,"Date":"12/20/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":120,"Cost":86,"Date":"12/21/2019"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":992,"Cost":638,"Date":"1/9/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":829,"Cost":576,"Date":"2/5/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":616,"Cost":437,"Date":"2/16/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":249,"Cost":132,"Date":"2/16/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":397,"Cost":319,"Date":"2/18/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":969,"Cost":551,"Date":"2/22/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":581,"Cost":403,"Date":"2/25/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":250,"Cost":228,"Date":"3/8/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":128,"Cost":85,"Date":"4/2/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":83,"Cost":46,"Date":"4/3/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":182,"Cost":149,"Date":"4/9/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":40,"Cost":37,"Date":"4/10/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":219,"Cost":162,"Date":"4/19/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":259,"Cost":146,"Date":"5/17/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":3,"Cost":3,"Date":"5/22/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":616,"Cost":429,"Date":"6/20/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":305,"Cost":175,"Date":"7/1/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":340,"Cost":237,"Date":"7/4/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":661,"Cost":335,"Date":"7/8/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":640,"Cost":442,"Date":"7/9/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":86,"Cost":75,"Date":"7/14/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":86,"Cost":79,"Date":"7/19/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":209,"Cost":138,"Date":"8/1/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":360,"Cost":315,"Date":"8/6/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":858,"Cost":483,"Date":"8/7/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":290,"Cost":202,"Date":"8/22/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":45,"Cost":27,"Date":"8/31/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":674,"Cost":395,"Date":"9/1/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":773,"Cost":444,"Date":"9/1/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":122,"Cost":69,"Date":"9/17/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":621,"Cost":442,"Date":"9/29/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":844,"Cost":569,"Date":"11/7/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":275,"Cost":189,"Date":"11/26/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":81,"Cost":58,"Date":"11/27/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":277,"Cost":165,"Date":"12/5/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":200,"Cost":159,"Date":"12/26/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":951,"Cost":576,"Date":"12/31/2020"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":504,"Cost":436,"Date":"1/20/2021"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":196,"Cost":157,"Date":"2/2/2021"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":543,"Cost":325,"Date":"2/8/2021"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":192,"Cost":158,"Date":"2/27/2021"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":148,"Cost":90,"Date":"3/1/2021"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":968,"Cost":497,"Date":"3/1/2021"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":546,"Cost":492,"Date":"3/19/2021"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":318,"Cost":159,"Date":"3/28/2021"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":148,"Cost":90,"Date":"5/21/2021"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":515,"Cost":390,"Date":"7/21/2021"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":775,"Cost":632,"Date":"8/5/2021"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":499,"Cost":332,"Date":"8/12/2021"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":176,"Cost":158,"Date":"8/21/2021"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":850,"Cost":691,"Date":"8/23/2021"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":84,"Cost":63,"Date":"9/3/2021"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":896,"Cost":668,"Date":"9/5/2021"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":118,"Cost":73,"Date":"10/6/2021"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":136,"Cost":110,"Date":"10/19/2021"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":798,"Cost":530,"Date":"11/15/2021"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":659,"Cost":552,"Date":"12/8/2021"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":668,"Cost":380,"Date":"1/8/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":130,"Cost":67,"Date":"1/14/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":823,"Cost":563,"Date":"1/19/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":241,"Cost":214,"Date":"1/28/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":138,"Cost":104,"Date":"1/31/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":720,"Cost":392,"Date":"3/27/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":571,"Cost":476,"Date":"4/20/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":832,"Cost":714,"Date":"4/24/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":290,"Cost":247,"Date":"4/28/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":221,"Cost":196,"Date":"5/15/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":399,"Cost":331,"Date":"5/16/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":389,"Cost":240,"Date":"5/18/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":370,"Cost":222,"Date":"6/2/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":83,"Cost":52,"Date":"6/3/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":588,"Cost":324,"Date":"6/5/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":304,"Cost":248,"Date":"6/7/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":542,"Cost":429,"Date":"6/14/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":468,"Cost":333,"Date":"6/20/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":43,"Cost":35,"Date":"6/24/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":174,"Cost":87,"Date":"7/4/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":161,"Cost":89,"Date":"7/9/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":492,"Cost":282,"Date":"7/12/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":760,"Cost":452,"Date":"8/14/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":621,"Cost":528,"Date":"8/16/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":617,"Cost":425,"Date":"8/23/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":450,"Cost":233,"Date":"9/2/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":121,"Cost":100,"Date":"9/3/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":952,"Cost":842,"Date":"9/16/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":653,"Cost":425,"Date":"10/4/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":12,"Cost":6,"Date":"11/1/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":26,"Cost":14,"Date":"11/2/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":217,"Cost":141,"Date":"12/17/2022"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":893,"Cost":469,"Date":"2/10/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":789,"Cost":460,"Date":"2/28/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":5,"Cost":4,"Date":"3/4/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":162,"Cost":119,"Date":"3/9/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":521,"Cost":384,"Date":"3/9/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":492,"Cost":402,"Date":"3/11/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":942,"Cost":614,"Date":"3/17/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":275,"Cost":232,"Date":"3/17/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":904,"Cost":515,"Date":"3/23/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":827,"Cost":730,"Date":"4/1/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":243,"Cost":138,"Date":"5/7/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":332,"Cost":314,"Date":"5/10/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":552,"Cost":291,"Date":"5/20/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":850,"Cost":746,"Date":"6/2/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":109,"Cost":63,"Date":"6/11/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":667,"Cost":538,"Date":"6/16/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":243,"Cost":202,"Date":"6/16/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":224,"Cost":114,"Date":"7/10/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":753,"Cost":701,"Date":"7/11/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":991,"Cost":900,"Date":"8/28/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":982,"Cost":876,"Date":"8/29/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":987,"Cost":777,"Date":"8/31/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":658,"Cost":469,"Date":"9/8/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":589,"Cost":432,"Date":"9/13/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":629,"Cost":573,"Date":"9/14/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":344,"Cost":201,"Date":"9/19/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":463,"Cost":401,"Date":"9/25/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":89,"Cost":53,"Date":"10/4/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":703,"Cost":382,"Date":"10/10/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":93,"Cost":79,"Date":"10/17/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":140,"Cost":125,"Date":"10/28/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":847,"Cost":535,"Date":"10/30/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":551,"Cost":373,"Date":"11/1/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":227,"Cost":212,"Date":"11/15/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":424,"Cost":256,"Date":"11/25/2023"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":530,"Cost":385,"Date":"1/10/2024"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":417,"Cost":393,"Date":"1/14/2024"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":98,"Cost":81,"Date":"1/20/2024"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":783,"Cost":743,"Date":"2/8/2024"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":501,"Cost":379,"Date":"2/25/2024"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":126,"Cost":89,"Date":"3/7/2024"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":876,"Cost":482,"Date":"3/14/2024"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":861,"Cost":689,"Date":"3/27/2024"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":197,"Cost":187,"Date":"4/5/2024"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":349,"Cost":285,"Date":"4/14/2024"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":150,"Cost":111,"Date":"5/3/2024"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":281,"Cost":187,"Date":"5/9/2024"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":446,"Cost":410,"Date":"5/15/2024"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":433,"Cost":281,"Date":"5/25/2024"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":314,"Cost":187,"Date":"5/26/2024"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":891,"Cost":750,"Date":"5/31/2024"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":804,"Cost":547,"Date":"7/27/2024"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":239,"Cost":223,"Date":"9/17/2024"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":488,"Cost":349,"Date":"10/6/2024"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":220,"Cost":175,"Date":"10/8/2024"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":933,"Cost":599,"Date":"10/26/2024"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":877,"Cost":789,"Date":"11/16/2024"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":132,"Cost":120,"Date":"11/18/2024"},{"Store":"MercaturA, Aalen","Brand":"ARKET","Country":"Germany","Sale":984,"Cost":662,"Date":"12/1/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":802,"Cost":736,"Date":"2/9/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":32,"Cost":24,"Date":"2/11/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":311,"Cost":282,"Date":"3/10/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":416,"Cost":228,"Date":"3/16/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":274,"Cost":163,"Date":"3/18/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":14,"Cost":12,"Date":"3/20/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":962,"Cost":691,"Date":"3/26/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":538,"Cost":496,"Date":"6/2/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":306,"Cost":256,"Date":"6/10/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":56,"Cost":50,"Date":"6/16/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":48,"Cost":26,"Date":"6/25/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":889,"Cost":473,"Date":"7/19/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":203,"Cost":155,"Date":"7/21/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":507,"Cost":278,"Date":"7/25/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":858,"Cost":541,"Date":"8/4/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":388,"Cost":227,"Date":"9/2/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":696,"Cost":595,"Date":"9/4/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":102,"Cost":58,"Date":"9/19/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":166,"Cost":101,"Date":"9/29/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":116,"Cost":74,"Date":"10/2/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":737,"Cost":637,"Date":"10/15/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":772,"Cost":514,"Date":"10/30/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":61,"Cost":32,"Date":"11/9/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":587,"Cost":521,"Date":"11/23/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":395,"Cost":313,"Date":"11/30/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":104,"Cost":70,"Date":"12/8/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":753,"Cost":605,"Date":"12/11/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":339,"Cost":321,"Date":"1/15/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":566,"Cost":405,"Date":"1/24/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":30,"Cost":27,"Date":"2/3/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":920,"Cost":479,"Date":"2/4/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":436,"Cost":236,"Date":"3/9/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":756,"Cost":594,"Date":"3/12/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":967,"Cost":813,"Date":"4/19/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":496,"Cost":277,"Date":"5/3/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":320,"Cost":278,"Date":"5/4/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":847,"Cost":772,"Date":"6/8/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":409,"Cost":371,"Date":"6/26/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":753,"Cost":561,"Date":"7/4/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":209,"Cost":161,"Date":"7/13/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":816,"Cost":436,"Date":"8/8/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":557,"Cost":465,"Date":"8/26/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":337,"Cost":268,"Date":"9/2/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":741,"Cost":507,"Date":"9/29/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":567,"Cost":327,"Date":"10/12/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":361,"Cost":207,"Date":"11/2/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":433,"Cost":292,"Date":"11/4/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":237,"Cost":123,"Date":"11/7/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":480,"Cost":425,"Date":"12/1/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":106,"Cost":90,"Date":"12/4/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":731,"Cost":563,"Date":"12/7/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":304,"Cost":163,"Date":"12/18/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":223,"Cost":149,"Date":"12/20/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":626,"Cost":582,"Date":"12/20/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":453,"Cost":302,"Date":"12/21/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":125,"Cost":82,"Date":"1/9/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":505,"Cost":309,"Date":"2/5/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":600,"Cost":363,"Date":"2/16/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":297,"Cost":255,"Date":"2/16/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":158,"Cost":140,"Date":"2/18/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":651,"Cost":366,"Date":"2/22/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":982,"Cost":821,"Date":"2/25/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":580,"Cost":449,"Date":"3/8/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":76,"Cost":58,"Date":"4/2/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":391,"Cost":332,"Date":"4/3/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":515,"Cost":325,"Date":"4/9/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":640,"Cost":571,"Date":"4/10/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":520,"Cost":280,"Date":"4/19/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":288,"Cost":271,"Date":"5/17/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":965,"Cost":543,"Date":"5/22/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":967,"Cost":807,"Date":"6/20/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":878,"Cost":734,"Date":"7/1/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":914,"Cost":497,"Date":"7/4/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":461,"Cost":397,"Date":"7/8/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":23,"Cost":11,"Date":"7/9/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":829,"Cost":499,"Date":"7/14/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":743,"Cost":532,"Date":"7/19/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":464,"Cost":362,"Date":"8/1/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":960,"Cost":773,"Date":"8/6/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":472,"Cost":391,"Date":"8/7/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":694,"Cost":647,"Date":"8/22/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":418,"Cost":258,"Date":"8/31/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":997,"Cost":503,"Date":"9/1/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":637,"Cost":344,"Date":"9/1/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":496,"Cost":265,"Date":"9/17/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":161,"Cost":137,"Date":"9/29/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":211,"Cost":159,"Date":"11/7/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":735,"Cost":468,"Date":"11/26/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":189,"Cost":168,"Date":"11/27/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":961,"Cost":724,"Date":"12/5/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":67,"Cost":40,"Date":"12/26/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":395,"Cost":223,"Date":"12/31/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":354,"Cost":230,"Date":"1/20/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":609,"Cost":518,"Date":"2/2/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":498,"Cost":332,"Date":"2/8/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":687,"Cost":377,"Date":"2/27/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":828,"Cost":729,"Date":"3/1/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":455,"Cost":350,"Date":"3/1/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":361,"Cost":272,"Date":"3/19/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":968,"Cost":560,"Date":"3/28/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":739,"Cost":666,"Date":"5/21/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":989,"Cost":931,"Date":"7/21/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":582,"Cost":473,"Date":"8/5/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":994,"Cost":921,"Date":"8/12/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":770,"Cost":466,"Date":"8/21/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":134,"Cost":108,"Date":"8/23/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":661,"Cost":421,"Date":"9/3/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":33,"Cost":32,"Date":"9/5/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":557,"Cost":361,"Date":"10/6/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":571,"Cost":356,"Date":"10/19/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":55,"Cost":35,"Date":"11/15/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":520,"Cost":330,"Date":"12/8/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":627,"Cost":486,"Date":"1/8/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":735,"Cost":653,"Date":"1/14/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":126,"Cost":98,"Date":"1/19/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":519,"Cost":297,"Date":"1/28/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":648,"Cost":523,"Date":"1/31/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":301,"Cost":228,"Date":"3/27/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":388,"Cost":323,"Date":"4/20/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":566,"Cost":339,"Date":"4/24/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":317,"Cost":282,"Date":"4/28/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":100,"Cost":58,"Date":"5/15/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":292,"Cost":168,"Date":"5/16/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":387,"Cost":194,"Date":"5/18/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":11,"Cost":9,"Date":"6/2/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":333,"Cost":191,"Date":"6/3/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":859,"Cost":608,"Date":"6/5/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":389,"Cost":273,"Date":"6/7/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":327,"Cost":238,"Date":"6/14/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":740,"Cost":383,"Date":"6/20/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":399,"Cost":313,"Date":"6/24/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":75,"Cost":51,"Date":"7/4/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":410,"Cost":253,"Date":"7/9/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":597,"Cost":445,"Date":"7/12/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":323,"Cost":276,"Date":"8/14/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":271,"Cost":181,"Date":"8/16/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":182,"Cost":158,"Date":"8/23/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":585,"Cost":404,"Date":"9/2/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":463,"Cost":304,"Date":"9/3/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":758,"Cost":449,"Date":"9/16/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":775,"Cost":733,"Date":"10/4/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":302,"Cost":199,"Date":"11/1/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":248,"Cost":162,"Date":"11/2/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":373,"Cost":191,"Date":"12/17/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":345,"Cost":241,"Date":"2/10/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":206,"Cost":138,"Date":"2/28/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":208,"Cost":131,"Date":"3/4/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":586,"Cost":399,"Date":"3/9/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":692,"Cost":513,"Date":"3/9/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":836,"Cost":477,"Date":"3/11/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":449,"Cost":409,"Date":"3/17/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":730,"Cost":442,"Date":"3/17/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":659,"Cost":452,"Date":"3/23/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":121,"Cost":112,"Date":"4/1/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":955,"Cost":630,"Date":"5/7/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":340,"Cost":292,"Date":"5/10/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":758,"Cost":516,"Date":"5/20/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":127,"Cost":97,"Date":"6/2/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":324,"Cost":285,"Date":"6/11/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":985,"Cost":512,"Date":"6/16/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":585,"Cost":467,"Date":"6/16/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":149,"Cost":131,"Date":"7/10/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":910,"Cost":557,"Date":"7/11/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":486,"Cost":437,"Date":"8/28/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":755,"Cost":560,"Date":"8/29/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":288,"Cost":272,"Date":"8/31/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":479,"Cost":279,"Date":"9/8/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":460,"Cost":305,"Date":"9/13/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":713,"Cost":535,"Date":"9/14/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":559,"Cost":283,"Date":"9/19/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":108,"Cost":65,"Date":"9/25/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":782,"Cost":514,"Date":"10/4/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":995,"Cost":923,"Date":"10/10/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":505,"Cost":351,"Date":"10/17/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":625,"Cost":393,"Date":"10/28/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":676,"Cost":575,"Date":"10/30/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":14,"Cost":14,"Date":"11/1/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":216,"Cost":119,"Date":"11/15/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":371,"Cost":232,"Date":"11/25/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":894,"Cost":727,"Date":"1/10/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":117,"Cost":83,"Date":"1/14/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":316,"Cost":292,"Date":"1/20/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":710,"Cost":571,"Date":"2/8/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":598,"Cost":402,"Date":"2/25/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":304,"Cost":262,"Date":"3/7/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":264,"Cost":139,"Date":"3/14/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":937,"Cost":559,"Date":"3/27/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":886,"Cost":575,"Date":"4/5/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":991,"Cost":799,"Date":"4/14/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":665,"Cost":494,"Date":"5/3/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":70,"Cost":66,"Date":"5/9/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":813,"Cost":763,"Date":"5/15/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":553,"Cost":313,"Date":"5/25/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":289,"Cost":185,"Date":"5/26/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":717,"Cost":416,"Date":"5/31/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":290,"Cost":204,"Date":"7/27/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":879,"Cost":668,"Date":"9/17/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":222,"Cost":209,"Date":"10/6/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":868,"Cost":800,"Date":"10/8/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":74,"Cost":56,"Date":"10/26/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":908,"Cost":640,"Date":"11/16/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":729,"Cost":554,"Date":"11/18/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":535,"Cost":496,"Date":"12/1/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":860,"Cost":447,"Date":"2/9/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":266,"Cost":172,"Date":"2/11/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":343,"Cost":231,"Date":"3/10/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":222,"Cost":175,"Date":"3/16/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":812,"Cost":509,"Date":"3/18/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":628,"Cost":427,"Date":"3/20/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":775,"Cost":689,"Date":"3/26/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":73,"Cost":49,"Date":"6/2/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":793,"Cost":512,"Date":"6/10/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":787,"Cost":455,"Date":"6/16/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":488,"Cost":421,"Date":"6/25/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":377,"Cost":191,"Date":"7/19/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":465,"Cost":265,"Date":"7/21/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":527,"Cost":332,"Date":"7/25/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":365,"Cost":343,"Date":"8/4/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":291,"Cost":148,"Date":"9/2/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":656,"Cost":583,"Date":"9/4/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":605,"Cost":423,"Date":"9/19/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":218,"Cost":157,"Date":"9/29/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":1000,"Cost":855,"Date":"10/2/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":474,"Cost":289,"Date":"10/15/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":132,"Cost":85,"Date":"10/30/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":10,"Cost":8,"Date":"11/9/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":357,"Cost":291,"Date":"11/23/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":123,"Cost":96,"Date":"11/30/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":271,"Cost":164,"Date":"12/8/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":47,"Cost":29,"Date":"12/11/2018"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":879,"Cost":589,"Date":"1/15/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":139,"Cost":124,"Date":"1/24/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":519,"Cost":358,"Date":"2/3/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":563,"Cost":411,"Date":"2/4/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":830,"Cost":482,"Date":"3/9/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":844,"Cost":703,"Date":"3/12/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":628,"Cost":571,"Date":"4/19/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":30,"Cost":20,"Date":"5/3/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":464,"Cost":346,"Date":"5/4/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":977,"Cost":833,"Date":"6/8/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":152,"Cost":126,"Date":"6/26/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":320,"Cost":244,"Date":"7/4/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":299,"Cost":200,"Date":"7/13/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":376,"Cost":327,"Date":"8/8/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":273,"Cost":143,"Date":"8/26/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":306,"Cost":267,"Date":"9/2/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":472,"Cost":298,"Date":"9/29/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":48,"Cost":39,"Date":"10/12/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":874,"Cost":779,"Date":"11/2/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":189,"Cost":101,"Date":"11/4/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":171,"Cost":160,"Date":"11/7/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":1,"Cost":0,"Date":"12/1/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":119,"Cost":90,"Date":"12/4/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":949,"Cost":901,"Date":"12/7/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":885,"Cost":818,"Date":"12/18/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":188,"Cost":153,"Date":"12/20/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":928,"Cost":798,"Date":"12/20/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":475,"Cost":414,"Date":"12/21/2019"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":504,"Cost":296,"Date":"1/9/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":980,"Cost":921,"Date":"2/5/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":508,"Cost":338,"Date":"2/16/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":596,"Cost":528,"Date":"2/16/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":553,"Cost":430,"Date":"2/18/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":328,"Cost":208,"Date":"2/22/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":779,"Cost":733,"Date":"2/25/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":944,"Cost":762,"Date":"3/8/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":118,"Cost":93,"Date":"4/2/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":467,"Cost":337,"Date":"4/3/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":470,"Cost":352,"Date":"4/9/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":978,"Cost":813,"Date":"4/10/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":342,"Cost":217,"Date":"4/19/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":133,"Cost":124,"Date":"5/17/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":351,"Cost":323,"Date":"5/22/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":282,"Cost":209,"Date":"6/20/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":951,"Cost":622,"Date":"7/1/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":166,"Cost":120,"Date":"7/4/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":955,"Cost":857,"Date":"7/8/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":280,"Cost":156,"Date":"7/9/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":321,"Cost":220,"Date":"7/14/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":971,"Cost":804,"Date":"7/19/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":918,"Cost":802,"Date":"8/1/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":450,"Cost":343,"Date":"8/6/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":535,"Cost":413,"Date":"8/7/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":369,"Cost":220,"Date":"8/22/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":558,"Cost":455,"Date":"8/31/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":469,"Cost":317,"Date":"9/1/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":579,"Cost":466,"Date":"9/1/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":179,"Cost":105,"Date":"9/17/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":54,"Cost":36,"Date":"9/29/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":12,"Cost":12,"Date":"11/7/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":820,"Cost":446,"Date":"11/26/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":814,"Cost":498,"Date":"11/27/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":867,"Cost":557,"Date":"12/5/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":237,"Cost":184,"Date":"12/26/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":618,"Cost":400,"Date":"12/31/2020"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":392,"Cost":228,"Date":"1/20/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":10,"Cost":10,"Date":"2/2/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":541,"Cost":320,"Date":"2/8/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":513,"Cost":285,"Date":"2/27/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":179,"Cost":165,"Date":"3/1/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":329,"Cost":235,"Date":"3/1/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":730,"Cost":682,"Date":"3/19/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":770,"Cost":441,"Date":"3/28/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":838,"Cost":577,"Date":"5/21/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":537,"Cost":302,"Date":"7/21/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":591,"Cost":497,"Date":"8/5/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":520,"Cost":310,"Date":"8/12/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":194,"Cost":173,"Date":"8/21/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":185,"Cost":97,"Date":"8/23/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":817,"Cost":537,"Date":"9/3/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":616,"Cost":478,"Date":"9/5/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":346,"Cost":293,"Date":"10/6/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":452,"Cost":382,"Date":"10/19/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":238,"Cost":158,"Date":"11/15/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":415,"Cost":312,"Date":"12/8/2021"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":202,"Cost":123,"Date":"1/8/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":471,"Cost":317,"Date":"1/14/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":712,"Cost":437,"Date":"1/19/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":701,"Cost":657,"Date":"1/28/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":1,"Cost":1,"Date":"1/31/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":183,"Cost":112,"Date":"3/27/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":861,"Cost":491,"Date":"4/20/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":798,"Cost":707,"Date":"4/24/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":10,"Cost":7,"Date":"4/28/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":361,"Cost":206,"Date":"5/15/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":529,"Cost":343,"Date":"5/16/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":200,"Cost":152,"Date":"5/18/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":159,"Cost":92,"Date":"6/2/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":712,"Cost":567,"Date":"6/3/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":402,"Cost":326,"Date":"6/5/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":264,"Cost":182,"Date":"6/7/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":312,"Cost":213,"Date":"6/14/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":221,"Cost":174,"Date":"6/20/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":405,"Cost":245,"Date":"6/24/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":139,"Cost":125,"Date":"7/4/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":400,"Cost":300,"Date":"7/9/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":880,"Cost":834,"Date":"7/12/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":317,"Cost":270,"Date":"8/14/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":720,"Cost":406,"Date":"8/16/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":240,"Cost":151,"Date":"8/23/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":586,"Cost":555,"Date":"9/2/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":286,"Cost":187,"Date":"9/3/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":110,"Cost":56,"Date":"9/16/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":197,"Cost":137,"Date":"10/4/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":72,"Cost":40,"Date":"11/1/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":531,"Cost":284,"Date":"11/2/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":959,"Cost":570,"Date":"12/17/2022"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":533,"Cost":405,"Date":"2/10/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":912,"Cost":695,"Date":"2/28/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":546,"Cost":517,"Date":"3/4/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":583,"Cost":313,"Date":"3/9/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":648,"Cost":509,"Date":"3/9/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":535,"Cost":285,"Date":"3/11/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":727,"Cost":549,"Date":"3/17/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":592,"Cost":379,"Date":"3/17/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":378,"Cost":264,"Date":"3/23/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":809,"Cost":586,"Date":"4/1/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":407,"Cost":322,"Date":"5/7/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":362,"Cost":240,"Date":"5/10/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":367,"Cost":231,"Date":"5/20/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":641,"Cost":348,"Date":"6/2/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":710,"Cost":641,"Date":"6/11/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":276,"Cost":146,"Date":"6/16/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":222,"Cost":199,"Date":"6/16/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":522,"Cost":330,"Date":"7/10/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":104,"Cost":74,"Date":"7/11/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":6,"Cost":3,"Date":"8/28/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":18,"Cost":9,"Date":"8/29/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":698,"Cost":456,"Date":"8/31/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":42,"Cost":36,"Date":"9/8/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":575,"Cost":388,"Date":"9/13/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":337,"Cost":293,"Date":"9/14/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":128,"Cost":121,"Date":"9/19/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":973,"Cost":736,"Date":"9/25/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":887,"Cost":511,"Date":"10/4/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":169,"Cost":145,"Date":"10/10/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":789,"Cost":538,"Date":"10/17/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":373,"Cost":335,"Date":"10/28/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":456,"Cost":366,"Date":"10/30/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":695,"Cost":624,"Date":"11/1/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":176,"Cost":101,"Date":"11/15/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":145,"Cost":103,"Date":"11/25/2023"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":389,"Cost":283,"Date":"1/10/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":2,"Cost":2,"Date":"1/14/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":756,"Cost":679,"Date":"1/20/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":671,"Cost":535,"Date":"2/8/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":331,"Cost":229,"Date":"2/25/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":328,"Cost":285,"Date":"3/7/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":634,"Cost":424,"Date":"3/14/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":751,"Cost":667,"Date":"3/27/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":443,"Cost":336,"Date":"4/5/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":208,"Cost":150,"Date":"4/14/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":103,"Cost":70,"Date":"5/3/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":904,"Cost":766,"Date":"5/9/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":419,"Cost":368,"Date":"5/15/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":633,"Cost":331,"Date":"5/25/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":414,"Cost":250,"Date":"5/26/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":580,"Cost":502,"Date":"5/31/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":425,"Cost":357,"Date":"7/27/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":684,"Cost":559,"Date":"9/17/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":266,"Cost":191,"Date":"10/6/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":619,"Cost":478,"Date":"10/8/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":701,"Cost":536,"Date":"10/26/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":252,"Cost":139,"Date":"11/16/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":636,"Cost":370,"Date":"11/18/2024"},{"Store":"MercaturA, Aalen","Brand":"COS","Country":"Germany","Sale":866,"Cost":567,"Date":"12/1/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":301,"Cost":269,"Date":"2/9/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":34,"Cost":29,"Date":"2/11/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":441,"Cost":418,"Date":"3/10/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":512,"Cost":287,"Date":"3/16/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":968,"Cost":850,"Date":"3/18/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":219,"Cost":129,"Date":"3/20/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":292,"Cost":186,"Date":"3/26/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":492,"Cost":328,"Date":"6/2/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":331,"Cost":259,"Date":"6/10/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":698,"Cost":530,"Date":"6/16/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":364,"Cost":346,"Date":"6/25/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":426,"Cost":242,"Date":"7/19/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":865,"Cost":720,"Date":"7/21/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":889,"Cost":741,"Date":"7/25/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":434,"Cost":280,"Date":"8/4/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":894,"Cost":514,"Date":"9/2/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":82,"Cost":50,"Date":"9/4/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":303,"Cost":234,"Date":"9/19/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":290,"Cost":274,"Date":"9/29/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":664,"Cost":467,"Date":"10/2/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":3,"Cost":3,"Date":"10/15/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":579,"Cost":353,"Date":"10/30/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":604,"Cost":396,"Date":"11/9/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":430,"Cost":269,"Date":"11/23/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":445,"Cost":386,"Date":"11/30/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":731,"Cost":561,"Date":"12/8/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":720,"Cost":652,"Date":"12/11/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":293,"Cost":212,"Date":"1/15/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":603,"Cost":537,"Date":"1/24/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":74,"Cost":69,"Date":"2/3/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":704,"Cost":468,"Date":"2/4/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":235,"Cost":150,"Date":"3/9/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":25,"Cost":12,"Date":"3/12/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":841,"Cost":636,"Date":"4/19/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":270,"Cost":249,"Date":"5/3/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":857,"Cost":581,"Date":"5/4/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":7,"Cost":7,"Date":"6/8/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":173,"Cost":126,"Date":"6/26/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":362,"Cost":309,"Date":"7/4/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":192,"Cost":108,"Date":"7/13/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":887,"Cost":472,"Date":"8/8/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":252,"Cost":191,"Date":"8/26/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":414,"Cost":300,"Date":"9/2/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":140,"Cost":103,"Date":"9/29/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":893,"Cost":754,"Date":"10/12/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":135,"Cost":93,"Date":"11/2/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":28,"Cost":15,"Date":"11/4/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":215,"Cost":118,"Date":"11/7/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":921,"Cost":623,"Date":"12/1/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":782,"Cost":639,"Date":"12/4/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":538,"Cost":270,"Date":"12/7/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":771,"Cost":551,"Date":"12/18/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":804,"Cost":535,"Date":"12/20/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":992,"Cost":673,"Date":"12/20/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":214,"Cost":168,"Date":"12/21/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":600,"Cost":308,"Date":"1/9/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":646,"Cost":333,"Date":"2/5/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":714,"Cost":604,"Date":"2/16/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":245,"Cost":154,"Date":"2/16/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":251,"Cost":142,"Date":"2/18/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":764,"Cost":616,"Date":"2/22/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":439,"Cost":307,"Date":"2/25/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":348,"Cost":264,"Date":"3/8/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":981,"Cost":916,"Date":"4/2/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":187,"Cost":110,"Date":"4/3/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":1,"Cost":1,"Date":"4/9/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":390,"Cost":197,"Date":"4/10/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":826,"Cost":734,"Date":"4/19/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":95,"Cost":60,"Date":"5/17/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":980,"Cost":857,"Date":"5/22/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":703,"Cost":389,"Date":"6/20/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":995,"Cost":517,"Date":"7/1/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":809,"Cost":561,"Date":"7/4/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":690,"Cost":480,"Date":"7/8/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":353,"Cost":284,"Date":"7/9/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":345,"Cost":223,"Date":"7/14/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":235,"Cost":123,"Date":"7/19/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":617,"Cost":552,"Date":"8/1/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":9,"Cost":5,"Date":"8/6/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":136,"Cost":96,"Date":"8/7/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":250,"Cost":131,"Date":"8/22/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":977,"Cost":879,"Date":"8/31/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":818,"Cost":621,"Date":"9/1/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":783,"Cost":546,"Date":"9/1/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":268,"Cost":194,"Date":"9/17/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":564,"Cost":438,"Date":"9/29/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":678,"Cost":642,"Date":"11/7/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":273,"Cost":193,"Date":"11/26/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":555,"Cost":319,"Date":"11/27/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":931,"Cost":600,"Date":"12/5/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":709,"Cost":398,"Date":"12/26/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":441,"Cost":387,"Date":"12/31/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":368,"Cost":322,"Date":"1/20/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":61,"Cost":31,"Date":"2/2/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":780,"Cost":399,"Date":"2/8/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":615,"Cost":348,"Date":"2/27/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":27,"Cost":20,"Date":"3/1/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":900,"Cost":701,"Date":"3/1/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":600,"Cost":335,"Date":"3/19/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":393,"Cost":214,"Date":"3/28/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":624,"Cost":575,"Date":"5/21/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":700,"Cost":531,"Date":"7/21/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":695,"Cost":571,"Date":"8/5/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":12,"Cost":10,"Date":"8/12/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":836,"Cost":534,"Date":"8/21/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":833,"Cost":496,"Date":"8/23/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":817,"Cost":718,"Date":"9/3/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":224,"Cost":140,"Date":"9/5/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":537,"Cost":330,"Date":"10/6/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":178,"Cost":127,"Date":"10/19/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":328,"Cost":311,"Date":"11/15/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":103,"Cost":89,"Date":"12/8/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":821,"Cost":777,"Date":"1/8/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":427,"Cost":287,"Date":"1/14/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":575,"Cost":533,"Date":"1/19/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":317,"Cost":268,"Date":"1/28/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":990,"Cost":934,"Date":"1/31/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":354,"Cost":309,"Date":"3/27/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":435,"Cost":334,"Date":"4/20/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":276,"Cost":166,"Date":"4/24/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":508,"Cost":423,"Date":"4/28/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":981,"Cost":827,"Date":"5/15/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":638,"Cost":560,"Date":"5/16/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":293,"Cost":207,"Date":"5/18/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":923,"Cost":753,"Date":"6/2/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":739,"Cost":409,"Date":"6/3/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":865,"Cost":815,"Date":"6/5/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":584,"Cost":352,"Date":"6/7/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":339,"Cost":285,"Date":"6/14/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":349,"Cost":217,"Date":"6/20/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":472,"Cost":359,"Date":"6/24/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":273,"Cost":165,"Date":"7/4/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":326,"Cost":249,"Date":"7/9/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":575,"Cost":527,"Date":"7/12/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":459,"Cost":430,"Date":"8/14/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":221,"Cost":172,"Date":"8/16/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":809,"Cost":494,"Date":"8/23/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":517,"Cost":341,"Date":"9/2/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":105,"Cost":71,"Date":"9/3/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":216,"Cost":166,"Date":"9/16/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":412,"Cost":239,"Date":"10/4/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":444,"Cost":351,"Date":"11/1/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":486,"Cost":274,"Date":"11/2/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":87,"Cost":70,"Date":"12/17/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":974,"Cost":681,"Date":"2/10/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":955,"Cost":514,"Date":"2/28/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":719,"Cost":556,"Date":"3/4/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":810,"Cost":631,"Date":"3/9/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":387,"Cost":214,"Date":"3/9/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":897,"Cost":502,"Date":"3/11/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":208,"Cost":182,"Date":"3/17/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":798,"Cost":681,"Date":"3/17/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":876,"Cost":446,"Date":"3/23/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":404,"Cost":260,"Date":"4/1/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":603,"Cost":398,"Date":"5/7/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":967,"Cost":833,"Date":"5/10/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":159,"Cost":124,"Date":"5/20/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":50,"Cost":48,"Date":"6/2/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":683,"Cost":467,"Date":"6/11/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":301,"Cost":242,"Date":"6/16/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":443,"Cost":328,"Date":"6/16/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":583,"Cost":422,"Date":"7/10/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":787,"Cost":491,"Date":"7/11/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":168,"Cost":117,"Date":"8/28/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":27,"Cost":14,"Date":"8/29/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":984,"Cost":812,"Date":"8/31/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":162,"Cost":148,"Date":"9/8/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":904,"Cost":478,"Date":"9/13/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":766,"Cost":665,"Date":"9/14/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":556,"Cost":483,"Date":"9/19/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":236,"Cost":157,"Date":"9/25/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":895,"Cost":477,"Date":"10/4/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":360,"Cost":250,"Date":"10/10/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":616,"Cost":328,"Date":"10/17/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":99,"Cost":61,"Date":"10/28/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":871,"Cost":697,"Date":"10/30/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":484,"Cost":377,"Date":"11/1/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":58,"Cost":35,"Date":"11/15/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":291,"Cost":148,"Date":"11/25/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":680,"Cost":456,"Date":"1/10/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":939,"Cost":889,"Date":"1/14/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":775,"Cost":649,"Date":"1/20/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":219,"Cost":207,"Date":"2/8/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":726,"Cost":568,"Date":"2/25/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":963,"Cost":688,"Date":"3/7/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":249,"Cost":153,"Date":"3/14/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":16,"Cost":10,"Date":"3/27/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":706,"Cost":573,"Date":"4/5/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":4,"Cost":2,"Date":"4/14/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":65,"Cost":56,"Date":"5/3/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":50,"Cost":34,"Date":"5/9/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":944,"Cost":790,"Date":"5/15/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":707,"Cost":379,"Date":"5/25/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":343,"Cost":196,"Date":"5/26/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":852,"Cost":791,"Date":"5/31/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":604,"Cost":465,"Date":"7/27/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":658,"Cost":478,"Date":"9/17/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":852,"Cost":594,"Date":"10/6/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":911,"Cost":765,"Date":"10/8/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":988,"Cost":714,"Date":"10/26/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":413,"Cost":275,"Date":"11/16/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":569,"Cost":346,"Date":"11/18/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":85,"Cost":68,"Date":"12/1/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":608,"Cost":376,"Date":"2/9/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":894,"Cost":498,"Date":"2/11/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":526,"Cost":329,"Date":"3/10/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":220,"Cost":183,"Date":"3/16/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":866,"Cost":760,"Date":"3/18/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":482,"Cost":276,"Date":"3/20/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":284,"Cost":249,"Date":"3/26/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":417,"Cost":249,"Date":"6/2/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":480,"Cost":312,"Date":"6/10/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":102,"Cost":68,"Date":"6/16/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":18,"Cost":15,"Date":"6/25/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":212,"Cost":117,"Date":"7/19/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":163,"Cost":90,"Date":"7/21/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":863,"Cost":619,"Date":"7/25/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":786,"Cost":671,"Date":"8/4/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":450,"Cost":390,"Date":"9/2/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":363,"Cost":269,"Date":"9/4/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":108,"Cost":62,"Date":"9/19/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":14,"Cost":7,"Date":"9/29/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":477,"Cost":354,"Date":"10/2/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":592,"Cost":340,"Date":"10/15/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":534,"Cost":341,"Date":"10/30/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":110,"Cost":77,"Date":"11/9/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":774,"Cost":523,"Date":"11/23/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":253,"Cost":174,"Date":"11/30/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":573,"Cost":295,"Date":"12/8/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":367,"Cost":349,"Date":"12/11/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":236,"Cost":165,"Date":"1/15/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":982,"Cost":806,"Date":"1/24/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":291,"Cost":182,"Date":"2/3/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":364,"Cost":280,"Date":"2/4/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":566,"Cost":440,"Date":"3/9/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":394,"Cost":264,"Date":"3/12/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":871,"Cost":530,"Date":"4/19/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":747,"Cost":647,"Date":"5/3/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":196,"Cost":133,"Date":"5/4/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":898,"Cost":698,"Date":"6/8/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":370,"Cost":322,"Date":"6/26/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":844,"Cost":786,"Date":"7/4/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":481,"Cost":375,"Date":"7/13/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":744,"Cost":484,"Date":"8/8/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":573,"Cost":304,"Date":"8/26/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":782,"Cost":512,"Date":"9/2/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":807,"Cost":762,"Date":"9/29/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":257,"Cost":213,"Date":"10/12/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":585,"Cost":399,"Date":"11/2/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":128,"Cost":109,"Date":"11/4/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":148,"Cost":106,"Date":"11/7/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":63,"Cost":35,"Date":"12/1/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":418,"Cost":251,"Date":"12/4/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":75,"Cost":52,"Date":"12/7/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":576,"Cost":471,"Date":"12/18/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":6,"Cost":5,"Date":"12/20/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":933,"Cost":740,"Date":"12/20/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":264,"Cost":213,"Date":"12/21/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":769,"Cost":449,"Date":"1/9/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":18,"Cost":14,"Date":"2/5/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":500,"Cost":469,"Date":"2/16/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":771,"Cost":676,"Date":"2/16/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":457,"Cost":341,"Date":"2/18/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":175,"Cost":104,"Date":"2/22/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":87,"Cost":45,"Date":"2/25/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":267,"Cost":156,"Date":"3/8/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":913,"Cost":655,"Date":"4/2/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":14,"Cost":10,"Date":"4/3/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":730,"Cost":582,"Date":"4/9/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":102,"Cost":95,"Date":"4/10/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":834,"Cost":755,"Date":"4/19/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":443,"Cost":256,"Date":"5/17/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":705,"Cost":630,"Date":"5/22/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":647,"Cost":381,"Date":"6/20/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":426,"Cost":328,"Date":"7/1/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":797,"Cost":726,"Date":"7/4/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":930,"Cost":606,"Date":"7/8/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":778,"Cost":528,"Date":"7/9/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":781,"Cost":736,"Date":"7/14/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":268,"Cost":175,"Date":"7/19/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":534,"Cost":467,"Date":"8/1/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":964,"Cost":734,"Date":"8/6/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":134,"Cost":97,"Date":"8/7/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":30,"Cost":24,"Date":"8/22/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":825,"Cost":449,"Date":"8/31/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":958,"Cost":734,"Date":"9/1/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":373,"Cost":271,"Date":"9/1/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":711,"Cost":509,"Date":"9/17/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":199,"Cost":182,"Date":"9/29/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":368,"Cost":184,"Date":"11/7/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":616,"Cost":464,"Date":"11/26/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":145,"Cost":109,"Date":"11/27/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":362,"Cost":298,"Date":"12/5/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":775,"Cost":539,"Date":"12/26/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":810,"Cost":714,"Date":"12/31/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":350,"Cost":253,"Date":"1/20/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":609,"Cost":388,"Date":"2/2/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":439,"Cost":409,"Date":"2/8/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":455,"Cost":250,"Date":"2/27/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":52,"Cost":30,"Date":"3/1/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":233,"Cost":144,"Date":"3/1/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":10,"Cost":7,"Date":"3/19/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":586,"Cost":428,"Date":"3/28/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":103,"Cost":69,"Date":"5/21/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":826,"Cost":496,"Date":"7/21/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":555,"Cost":435,"Date":"8/5/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":881,"Cost":774,"Date":"8/12/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":300,"Cost":267,"Date":"8/21/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":960,"Cost":566,"Date":"8/23/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":84,"Cost":50,"Date":"9/3/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":322,"Cost":243,"Date":"9/5/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":66,"Cost":45,"Date":"10/6/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":675,"Cost":517,"Date":"10/19/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":971,"Cost":685,"Date":"11/15/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":779,"Cost":562,"Date":"12/8/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":88,"Cost":69,"Date":"1/8/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":387,"Cost":205,"Date":"1/14/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":45,"Cost":23,"Date":"1/19/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":741,"Cost":498,"Date":"1/28/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":403,"Cost":210,"Date":"1/31/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":638,"Cost":336,"Date":"3/27/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":479,"Cost":289,"Date":"4/20/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":400,"Cost":276,"Date":"4/24/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":287,"Cost":235,"Date":"4/28/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":71,"Cost":67,"Date":"5/15/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":399,"Cost":350,"Date":"5/16/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":220,"Cost":152,"Date":"5/18/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":667,"Cost":425,"Date":"6/2/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":916,"Cost":499,"Date":"6/3/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":17,"Cost":10,"Date":"6/5/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":86,"Cost":45,"Date":"6/7/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":609,"Cost":335,"Date":"6/14/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":32,"Cost":17,"Date":"6/20/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":768,"Cost":499,"Date":"6/24/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":881,"Cost":702,"Date":"7/4/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":522,"Cost":291,"Date":"7/9/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":368,"Cost":290,"Date":"7/12/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":118,"Cost":95,"Date":"8/14/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":231,"Cost":162,"Date":"8/16/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":264,"Cost":219,"Date":"8/23/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":316,"Cost":183,"Date":"9/2/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":441,"Cost":234,"Date":"9/3/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":23,"Cost":13,"Date":"9/16/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":812,"Cost":669,"Date":"10/4/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":506,"Cost":347,"Date":"11/1/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":72,"Cost":61,"Date":"11/2/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":89,"Cost":78,"Date":"12/17/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":427,"Cost":396,"Date":"2/10/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":146,"Cost":87,"Date":"2/28/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":394,"Cost":281,"Date":"3/4/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":364,"Cost":344,"Date":"3/9/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":497,"Cost":464,"Date":"3/9/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":602,"Cost":341,"Date":"3/11/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":182,"Cost":139,"Date":"3/17/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":919,"Cost":587,"Date":"3/17/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":261,"Cost":227,"Date":"3/23/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":374,"Cost":236,"Date":"4/1/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":386,"Cost":206,"Date":"5/7/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":482,"Cost":303,"Date":"5/10/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":816,"Cost":413,"Date":"5/20/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":699,"Cost":659,"Date":"6/2/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":344,"Cost":231,"Date":"6/11/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":627,"Cost":403,"Date":"6/16/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":159,"Cost":113,"Date":"6/16/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":361,"Cost":328,"Date":"7/10/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":133,"Cost":125,"Date":"7/11/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":32,"Cost":26,"Date":"8/28/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":208,"Cost":121,"Date":"8/29/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":323,"Cost":298,"Date":"8/31/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":536,"Cost":295,"Date":"9/8/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":208,"Cost":165,"Date":"9/13/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":177,"Cost":108,"Date":"9/14/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":446,"Cost":269,"Date":"9/19/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":881,"Cost":482,"Date":"9/25/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":569,"Cost":372,"Date":"10/4/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":357,"Cost":281,"Date":"10/10/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":501,"Cost":472,"Date":"10/17/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":613,"Cost":423,"Date":"10/28/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":474,"Cost":354,"Date":"10/30/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":676,"Cost":563,"Date":"11/1/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":817,"Cost":776,"Date":"11/15/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":397,"Cost":209,"Date":"11/25/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":381,"Cost":336,"Date":"1/10/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":951,"Cost":655,"Date":"1/14/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":551,"Cost":519,"Date":"1/20/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":934,"Cost":742,"Date":"2/8/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":355,"Cost":194,"Date":"2/25/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":161,"Cost":140,"Date":"3/7/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":14,"Cost":9,"Date":"3/14/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":428,"Cost":333,"Date":"3/27/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":478,"Cost":379,"Date":"4/5/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":239,"Cost":191,"Date":"4/14/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":543,"Cost":416,"Date":"5/3/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":559,"Cost":431,"Date":"5/9/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":550,"Cost":386,"Date":"5/15/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":292,"Cost":149,"Date":"5/25/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":936,"Cost":776,"Date":"5/26/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":238,"Cost":185,"Date":"5/31/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":71,"Cost":57,"Date":"7/27/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":691,"Cost":345,"Date":"9/17/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":500,"Cost":403,"Date":"10/6/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":941,"Cost":846,"Date":"10/8/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":550,"Cost":378,"Date":"10/26/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":114,"Cost":65,"Date":"11/16/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":531,"Cost":316,"Date":"11/18/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Jeans","Country":"Germany","Sale":753,"Cost":420,"Date":"12/1/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":853,"Cost":779,"Date":"2/9/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":820,"Cost":605,"Date":"2/11/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":613,"Cost":389,"Date":"3/10/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":497,"Cost":471,"Date":"3/16/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":401,"Cost":292,"Date":"3/18/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":67,"Cost":56,"Date":"3/20/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":458,"Cost":386,"Date":"3/26/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":152,"Cost":95,"Date":"6/2/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":696,"Cost":564,"Date":"6/10/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":849,"Cost":552,"Date":"6/16/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":922,"Cost":504,"Date":"6/25/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":753,"Cost":596,"Date":"7/19/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":278,"Cost":243,"Date":"7/21/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":493,"Cost":311,"Date":"7/25/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":695,"Cost":615,"Date":"8/4/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":378,"Cost":286,"Date":"9/2/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":939,"Cost":596,"Date":"9/4/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":113,"Cost":82,"Date":"9/19/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":609,"Cost":514,"Date":"9/29/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":823,"Cost":432,"Date":"10/2/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":33,"Cost":20,"Date":"10/15/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":627,"Cost":483,"Date":"10/30/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":79,"Cost":70,"Date":"11/9/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":257,"Cost":184,"Date":"11/23/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":821,"Cost":622,"Date":"11/30/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":114,"Cost":94,"Date":"12/8/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":822,"Cost":721,"Date":"12/11/2018"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":743,"Cost":496,"Date":"1/15/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":605,"Cost":505,"Date":"1/24/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":86,"Cost":72,"Date":"2/3/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":29,"Cost":15,"Date":"2/4/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":981,"Cost":773,"Date":"3/9/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":713,"Cost":457,"Date":"3/12/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":587,"Cost":422,"Date":"4/19/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":734,"Cost":428,"Date":"5/3/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":787,"Cost":427,"Date":"5/4/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":40,"Cost":35,"Date":"6/8/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":392,"Cost":273,"Date":"6/26/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":723,"Cost":399,"Date":"7/4/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":261,"Cost":147,"Date":"7/13/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":944,"Cost":539,"Date":"8/8/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":95,"Cost":63,"Date":"8/26/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":433,"Cost":240,"Date":"9/2/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":721,"Cost":544,"Date":"9/29/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":125,"Cost":104,"Date":"10/12/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":57,"Cost":38,"Date":"11/2/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":295,"Cost":241,"Date":"11/4/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":410,"Cost":231,"Date":"11/7/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":22,"Cost":15,"Date":"12/1/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":361,"Cost":249,"Date":"12/4/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":423,"Cost":264,"Date":"12/7/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":830,"Cost":488,"Date":"12/18/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":639,"Cost":354,"Date":"12/20/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":618,"Cost":338,"Date":"12/20/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":132,"Cost":124,"Date":"12/21/2019"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":279,"Cost":228,"Date":"1/9/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":54,"Cost":32,"Date":"2/5/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":503,"Cost":395,"Date":"2/16/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":46,"Cost":27,"Date":"2/16/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":368,"Cost":189,"Date":"2/18/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":330,"Cost":311,"Date":"2/22/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":659,"Cost":539,"Date":"2/25/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":597,"Cost":372,"Date":"3/8/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":943,"Cost":548,"Date":"4/2/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":836,"Cost":478,"Date":"4/3/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":886,"Cost":550,"Date":"4/9/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":599,"Cost":469,"Date":"4/10/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":19,"Cost":13,"Date":"4/19/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":3,"Cost":2,"Date":"5/17/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":761,"Cost":655,"Date":"5/22/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":392,"Cost":196,"Date":"6/20/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":761,"Cost":687,"Date":"7/1/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":730,"Cost":429,"Date":"7/4/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":407,"Cost":337,"Date":"7/8/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":847,"Cost":726,"Date":"7/9/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":669,"Cost":353,"Date":"7/14/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":419,"Cost":376,"Date":"7/19/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":591,"Cost":458,"Date":"8/1/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":380,"Cost":212,"Date":"8/6/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":803,"Cost":613,"Date":"8/7/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":500,"Cost":329,"Date":"8/22/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":237,"Cost":172,"Date":"8/31/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":817,"Cost":605,"Date":"9/1/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":841,"Cost":563,"Date":"9/1/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":458,"Cost":387,"Date":"9/17/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":747,"Cost":540,"Date":"9/29/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":693,"Cost":587,"Date":"11/7/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":840,"Cost":556,"Date":"11/26/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":347,"Cost":318,"Date":"11/27/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":856,"Cost":555,"Date":"12/5/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":71,"Cost":55,"Date":"12/26/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":752,"Cost":481,"Date":"12/31/2020"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":872,"Cost":761,"Date":"1/20/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":931,"Cost":882,"Date":"2/2/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":709,"Cost":392,"Date":"2/8/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":601,"Cost":318,"Date":"2/27/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":983,"Cost":554,"Date":"3/1/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":294,"Cost":171,"Date":"3/1/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":57,"Cost":38,"Date":"3/19/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":511,"Cost":293,"Date":"3/28/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":174,"Cost":123,"Date":"5/21/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":930,"Cost":805,"Date":"7/21/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":507,"Cost":341,"Date":"8/5/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":893,"Cost":738,"Date":"8/12/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":53,"Cost":35,"Date":"8/21/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":518,"Cost":278,"Date":"8/23/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":102,"Cost":88,"Date":"9/3/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":771,"Cost":500,"Date":"9/5/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":166,"Cost":120,"Date":"10/6/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":282,"Cost":237,"Date":"10/19/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":35,"Cost":24,"Date":"11/15/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":371,"Cost":287,"Date":"12/8/2021"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":467,"Cost":419,"Date":"1/8/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":563,"Cost":512,"Date":"1/14/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":66,"Cost":35,"Date":"1/19/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":370,"Cost":197,"Date":"1/28/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":804,"Cost":538,"Date":"1/31/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":984,"Cost":865,"Date":"3/27/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":669,"Cost":430,"Date":"4/20/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":641,"Cost":386,"Date":"4/24/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":31,"Cost":15,"Date":"4/28/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":946,"Cost":514,"Date":"5/15/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":279,"Cost":205,"Date":"5/16/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":218,"Cost":127,"Date":"5/18/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":712,"Cost":428,"Date":"6/2/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":613,"Cost":348,"Date":"6/3/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":172,"Cost":153,"Date":"6/5/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":416,"Cost":248,"Date":"6/7/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":766,"Cost":435,"Date":"6/14/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":153,"Cost":86,"Date":"6/20/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":378,"Cost":290,"Date":"6/24/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":964,"Cost":621,"Date":"7/4/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":478,"Cost":320,"Date":"7/9/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":610,"Cost":416,"Date":"7/12/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":460,"Cost":277,"Date":"8/14/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":429,"Cost":341,"Date":"8/16/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":1,"Cost":1,"Date":"8/23/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":67,"Cost":37,"Date":"9/2/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":712,"Cost":535,"Date":"9/3/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":225,"Cost":149,"Date":"9/16/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":966,"Cost":820,"Date":"10/4/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":34,"Cost":22,"Date":"11/1/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":413,"Cost":318,"Date":"11/2/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":6,"Cost":6,"Date":"12/17/2022"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":166,"Cost":96,"Date":"2/10/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":205,"Cost":146,"Date":"2/28/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":840,"Cost":548,"Date":"3/4/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":85,"Cost":78,"Date":"3/9/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":477,"Cost":444,"Date":"3/9/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":722,"Cost":544,"Date":"3/11/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":350,"Cost":305,"Date":"3/17/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":802,"Cost":637,"Date":"3/17/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":388,"Cost":244,"Date":"3/23/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":665,"Cost":593,"Date":"4/1/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":319,"Cost":211,"Date":"5/7/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":586,"Cost":483,"Date":"5/10/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":952,"Cost":857,"Date":"5/20/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":730,"Cost":373,"Date":"6/2/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":873,"Cost":670,"Date":"6/11/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":582,"Cost":424,"Date":"6/16/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":648,"Cost":355,"Date":"6/16/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":960,"Cost":659,"Date":"7/10/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":138,"Cost":83,"Date":"7/11/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":255,"Cost":131,"Date":"8/28/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":265,"Cost":186,"Date":"8/29/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":139,"Cost":107,"Date":"8/31/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":603,"Cost":317,"Date":"9/8/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":283,"Cost":261,"Date":"9/13/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":258,"Cost":203,"Date":"9/14/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":418,"Cost":374,"Date":"9/19/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":192,"Cost":141,"Date":"9/25/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":712,"Cost":589,"Date":"10/4/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":611,"Cost":533,"Date":"10/10/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":979,"Cost":686,"Date":"10/17/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":111,"Cost":65,"Date":"10/28/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":920,"Cost":765,"Date":"10/30/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":351,"Cost":197,"Date":"11/1/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":841,"Cost":727,"Date":"11/15/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":753,"Cost":658,"Date":"11/25/2023"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":83,"Cost":41,"Date":"1/10/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":875,"Cost":537,"Date":"1/14/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":479,"Cost":316,"Date":"1/20/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":933,"Cost":611,"Date":"2/8/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":671,"Cost":430,"Date":"2/25/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":485,"Cost":271,"Date":"3/7/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":428,"Cost":267,"Date":"3/14/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":889,"Cost":841,"Date":"3/27/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":945,"Cost":622,"Date":"4/5/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":312,"Cost":171,"Date":"4/14/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":553,"Cost":280,"Date":"5/3/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":469,"Cost":305,"Date":"5/9/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":215,"Cost":159,"Date":"5/15/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":436,"Cost":356,"Date":"5/25/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":541,"Cost":417,"Date":"5/26/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":242,"Cost":127,"Date":"5/31/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":127,"Cost":113,"Date":"7/27/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":777,"Cost":607,"Date":"9/17/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":152,"Cost":106,"Date":"10/6/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":200,"Cost":183,"Date":"10/8/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":430,"Cost":218,"Date":"10/26/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":942,"Cost":541,"Date":"11/16/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":207,"Cost":167,"Date":"11/18/2024"},{"Store":"ZO-Zentrum Oberwiehre, Freiburg","Brand":"Nova","Country":"Germany","Sale":278,"Cost":204,"Date":"12/1/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":327,"Cost":291,"Date":"2/9/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":678,"Cost":593,"Date":"2/11/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":113,"Cost":101,"Date":"3/10/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":692,"Cost":511,"Date":"3/16/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":716,"Cost":574,"Date":"3/18/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":186,"Cost":136,"Date":"3/20/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":184,"Cost":174,"Date":"3/26/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":450,"Cost":362,"Date":"6/2/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":900,"Cost":593,"Date":"6/10/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":956,"Cost":718,"Date":"6/16/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":521,"Cost":307,"Date":"6/25/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":880,"Cost":645,"Date":"7/19/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":442,"Cost":322,"Date":"7/21/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":727,"Cost":627,"Date":"7/25/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":197,"Cost":113,"Date":"8/4/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":899,"Cost":849,"Date":"9/2/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":201,"Cost":119,"Date":"9/4/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":706,"Cost":649,"Date":"9/19/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":433,"Cost":410,"Date":"9/29/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":474,"Cost":340,"Date":"10/2/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":109,"Cost":101,"Date":"10/15/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":860,"Cost":770,"Date":"10/30/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":613,"Cost":483,"Date":"11/9/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":626,"Cost":386,"Date":"11/23/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":137,"Cost":92,"Date":"11/30/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":86,"Cost":60,"Date":"12/8/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":799,"Cost":706,"Date":"12/11/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":696,"Cost":494,"Date":"1/15/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":977,"Cost":576,"Date":"1/24/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":581,"Cost":517,"Date":"2/3/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":149,"Cost":106,"Date":"2/4/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":486,"Cost":459,"Date":"3/9/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":732,"Cost":526,"Date":"3/12/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":225,"Cost":176,"Date":"4/19/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":915,"Cost":775,"Date":"5/3/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":461,"Cost":299,"Date":"5/4/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":325,"Cost":211,"Date":"6/8/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":574,"Cost":534,"Date":"6/26/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":792,"Cost":734,"Date":"7/4/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":818,"Cost":659,"Date":"7/13/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":609,"Cost":532,"Date":"8/8/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":754,"Cost":685,"Date":"8/26/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":212,"Cost":199,"Date":"9/2/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":474,"Cost":326,"Date":"9/29/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":700,"Cost":455,"Date":"10/12/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":788,"Cost":624,"Date":"11/2/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":554,"Cost":499,"Date":"11/4/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":439,"Cost":336,"Date":"11/7/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":516,"Cost":271,"Date":"12/1/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":593,"Cost":325,"Date":"12/4/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":683,"Cost":380,"Date":"12/7/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":247,"Cost":191,"Date":"12/18/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":100,"Cost":60,"Date":"12/20/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":178,"Cost":114,"Date":"12/20/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":114,"Cost":71,"Date":"12/21/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":612,"Cost":344,"Date":"1/9/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":145,"Cost":127,"Date":"2/5/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":852,"Cost":752,"Date":"2/16/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":829,"Cost":416,"Date":"2/16/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":565,"Cost":425,"Date":"2/18/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":181,"Cost":172,"Date":"2/22/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":449,"Cost":234,"Date":"2/25/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":347,"Cost":174,"Date":"3/8/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":327,"Cost":173,"Date":"4/2/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":852,"Cost":753,"Date":"4/3/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":932,"Cost":576,"Date":"4/9/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":767,"Cost":703,"Date":"4/10/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":784,"Cost":614,"Date":"4/19/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":420,"Cost":217,"Date":"5/17/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":127,"Cost":118,"Date":"5/22/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":994,"Cost":607,"Date":"6/20/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":697,"Cost":553,"Date":"7/1/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":788,"Cost":596,"Date":"7/4/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":620,"Cost":451,"Date":"7/8/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":300,"Cost":164,"Date":"7/9/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":441,"Cost":278,"Date":"7/14/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":365,"Cost":226,"Date":"7/19/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":916,"Cost":561,"Date":"8/1/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":258,"Cost":159,"Date":"8/6/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":896,"Cost":805,"Date":"8/7/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":64,"Cost":41,"Date":"8/22/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":330,"Cost":175,"Date":"8/31/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":310,"Cost":233,"Date":"9/1/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":653,"Cost":562,"Date":"9/1/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":297,"Cost":250,"Date":"9/17/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":991,"Cost":602,"Date":"9/29/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":826,"Cost":620,"Date":"11/7/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":954,"Cost":641,"Date":"11/26/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":477,"Cost":423,"Date":"11/27/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":594,"Cost":338,"Date":"12/5/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":758,"Cost":428,"Date":"12/26/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":478,"Cost":377,"Date":"12/31/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":796,"Cost":585,"Date":"1/20/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":378,"Cost":215,"Date":"2/2/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":487,"Cost":313,"Date":"2/8/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":841,"Cost":699,"Date":"2/27/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":509,"Cost":302,"Date":"3/1/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":203,"Cost":163,"Date":"3/1/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":757,"Cost":644,"Date":"3/19/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":59,"Cost":43,"Date":"3/28/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":239,"Cost":179,"Date":"5/21/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":438,"Cost":390,"Date":"7/21/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":499,"Cost":429,"Date":"8/5/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":510,"Cost":355,"Date":"8/12/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":416,"Cost":214,"Date":"8/21/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":556,"Cost":417,"Date":"8/23/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":293,"Cost":201,"Date":"9/3/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":422,"Cost":370,"Date":"9/5/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":623,"Cost":406,"Date":"10/6/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":60,"Cost":36,"Date":"10/19/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":423,"Cost":250,"Date":"11/15/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":736,"Cost":599,"Date":"12/8/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":420,"Cost":314,"Date":"1/8/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":199,"Cost":124,"Date":"1/14/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":665,"Cost":527,"Date":"1/19/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":864,"Cost":757,"Date":"1/28/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":167,"Cost":104,"Date":"1/31/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":840,"Cost":505,"Date":"3/27/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":81,"Cost":43,"Date":"4/20/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":327,"Cost":258,"Date":"4/24/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":418,"Cost":372,"Date":"4/28/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":669,"Cost":523,"Date":"5/15/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":205,"Cost":170,"Date":"5/16/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":722,"Cost":457,"Date":"5/18/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":199,"Cost":150,"Date":"6/2/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":971,"Cost":863,"Date":"6/3/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":890,"Cost":698,"Date":"6/5/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":784,"Cost":724,"Date":"6/7/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":309,"Cost":234,"Date":"6/14/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":190,"Cost":138,"Date":"6/20/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":979,"Cost":561,"Date":"6/24/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":851,"Cost":530,"Date":"7/4/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":730,"Cost":515,"Date":"7/9/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":886,"Cost":614,"Date":"7/12/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":39,"Cost":23,"Date":"8/14/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":271,"Cost":151,"Date":"8/16/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":428,"Cost":320,"Date":"8/23/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":40,"Cost":36,"Date":"9/2/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":323,"Cost":306,"Date":"9/3/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":197,"Cost":178,"Date":"9/16/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":608,"Cost":511,"Date":"10/4/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":680,"Cost":373,"Date":"11/1/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":456,"Cost":292,"Date":"11/2/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":992,"Cost":924,"Date":"12/17/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":799,"Cost":757,"Date":"2/10/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":954,"Cost":543,"Date":"2/28/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":951,"Cost":526,"Date":"3/4/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":547,"Cost":358,"Date":"3/9/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":104,"Cost":84,"Date":"3/9/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":392,"Cost":207,"Date":"3/11/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":875,"Cost":823,"Date":"3/17/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":906,"Cost":552,"Date":"3/17/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":702,"Cost":652,"Date":"3/23/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":227,"Cost":166,"Date":"4/1/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":436,"Cost":321,"Date":"5/7/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":938,"Cost":635,"Date":"5/10/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":783,"Cost":540,"Date":"5/20/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":365,"Cost":282,"Date":"6/2/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":741,"Cost":489,"Date":"6/11/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":786,"Cost":696,"Date":"6/16/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":99,"Cost":50,"Date":"6/16/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":362,"Cost":213,"Date":"7/10/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":501,"Cost":388,"Date":"7/11/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":958,"Cost":894,"Date":"8/28/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":32,"Cost":22,"Date":"8/29/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":633,"Cost":518,"Date":"8/31/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":493,"Cost":412,"Date":"9/8/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":141,"Cost":89,"Date":"9/13/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":649,"Cost":549,"Date":"9/14/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":666,"Cost":615,"Date":"9/19/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":731,"Cost":695,"Date":"9/25/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":710,"Cost":439,"Date":"10/4/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":302,"Cost":157,"Date":"10/10/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":459,"Cost":394,"Date":"10/17/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":371,"Cost":256,"Date":"10/28/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":875,"Cost":627,"Date":"10/30/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":118,"Cost":84,"Date":"11/1/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":319,"Cost":224,"Date":"11/15/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":652,"Cost":601,"Date":"11/25/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":949,"Cost":733,"Date":"1/10/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":997,"Cost":911,"Date":"1/14/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":940,"Cost":694,"Date":"1/20/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":193,"Cost":106,"Date":"2/8/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":323,"Cost":246,"Date":"2/25/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":258,"Cost":156,"Date":"3/7/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":708,"Cost":366,"Date":"3/14/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":967,"Cost":786,"Date":"3/27/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":488,"Cost":406,"Date":"4/5/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":282,"Cost":178,"Date":"4/14/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":57,"Cost":47,"Date":"5/3/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":527,"Cost":469,"Date":"5/9/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":98,"Cost":85,"Date":"5/15/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":808,"Cost":572,"Date":"5/25/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":50,"Cost":32,"Date":"5/26/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":998,"Cost":666,"Date":"5/31/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":132,"Cost":86,"Date":"7/27/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":132,"Cost":68,"Date":"9/17/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":409,"Cost":311,"Date":"10/6/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":231,"Cost":149,"Date":"10/8/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":196,"Cost":103,"Date":"10/26/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":482,"Cost":358,"Date":"11/16/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":770,"Cost":580,"Date":"11/18/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"COS","Country":"Germany","Sale":684,"Cost":639,"Date":"12/1/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":720,"Cost":407,"Date":"2/9/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":837,"Cost":506,"Date":"2/11/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":178,"Cost":102,"Date":"3/10/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":825,"Cost":737,"Date":"3/16/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":674,"Cost":461,"Date":"3/18/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":822,"Cost":604,"Date":"3/20/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":889,"Cost":461,"Date":"3/26/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":414,"Cost":371,"Date":"6/2/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":265,"Cost":159,"Date":"6/10/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":504,"Cost":428,"Date":"6/16/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":366,"Cost":335,"Date":"6/25/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":358,"Cost":297,"Date":"7/19/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":706,"Cost":417,"Date":"7/21/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":446,"Cost":235,"Date":"7/25/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":710,"Cost":366,"Date":"8/4/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":259,"Cost":139,"Date":"9/2/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":966,"Cost":825,"Date":"9/4/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":80,"Cost":60,"Date":"9/19/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":54,"Cost":40,"Date":"9/29/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":995,"Cost":593,"Date":"10/2/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":765,"Cost":695,"Date":"10/15/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":596,"Cost":555,"Date":"10/30/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":65,"Cost":40,"Date":"11/9/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":92,"Cost":49,"Date":"11/23/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":927,"Cost":538,"Date":"11/30/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":982,"Cost":500,"Date":"12/8/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":272,"Cost":166,"Date":"12/11/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":692,"Cost":398,"Date":"1/15/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":16,"Cost":10,"Date":"1/24/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":130,"Cost":123,"Date":"2/3/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":418,"Cost":267,"Date":"2/4/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":258,"Cost":130,"Date":"3/9/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":474,"Cost":251,"Date":"3/12/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":665,"Cost":588,"Date":"4/19/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":349,"Cost":256,"Date":"5/3/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":45,"Cost":38,"Date":"5/4/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":964,"Cost":643,"Date":"6/8/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":121,"Cost":74,"Date":"6/26/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":330,"Cost":290,"Date":"7/4/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":315,"Cost":221,"Date":"7/13/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":228,"Cost":167,"Date":"8/8/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":657,"Cost":469,"Date":"8/26/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":605,"Cost":543,"Date":"9/2/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":329,"Cost":260,"Date":"9/29/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":997,"Cost":509,"Date":"10/12/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":582,"Cost":376,"Date":"11/2/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":417,"Cost":332,"Date":"11/4/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":639,"Cost":335,"Date":"11/7/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":233,"Cost":118,"Date":"12/1/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":159,"Cost":147,"Date":"12/4/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":930,"Cost":698,"Date":"12/7/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":596,"Cost":414,"Date":"12/18/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":406,"Cost":384,"Date":"12/20/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":494,"Cost":388,"Date":"12/20/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":416,"Cost":336,"Date":"12/21/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":104,"Cost":88,"Date":"1/9/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":833,"Cost":730,"Date":"2/5/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":81,"Cost":42,"Date":"2/16/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":353,"Cost":211,"Date":"2/16/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":102,"Cost":51,"Date":"2/18/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":41,"Cost":23,"Date":"2/22/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":691,"Cost":402,"Date":"2/25/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":915,"Cost":648,"Date":"3/8/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":16,"Cost":11,"Date":"4/2/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":291,"Cost":159,"Date":"4/3/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":104,"Cost":91,"Date":"4/9/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":602,"Cost":460,"Date":"4/10/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":94,"Cost":64,"Date":"4/19/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":807,"Cost":498,"Date":"5/17/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":885,"Cost":627,"Date":"5/22/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":156,"Cost":98,"Date":"6/20/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":733,"Cost":560,"Date":"7/1/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":926,"Cost":484,"Date":"7/4/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":805,"Cost":741,"Date":"7/8/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":794,"Cost":686,"Date":"7/9/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":167,"Cost":121,"Date":"7/14/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":915,"Cost":752,"Date":"7/19/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":616,"Cost":370,"Date":"8/1/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":68,"Cost":40,"Date":"8/6/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":555,"Cost":370,"Date":"8/7/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":566,"Cost":478,"Date":"8/22/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":10,"Cost":5,"Date":"8/31/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":248,"Cost":156,"Date":"9/1/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":153,"Cost":114,"Date":"9/1/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":115,"Cost":81,"Date":"9/17/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":502,"Cost":268,"Date":"9/29/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":752,"Cost":580,"Date":"11/7/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":159,"Cost":89,"Date":"11/26/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":801,"Cost":587,"Date":"11/27/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":750,"Cost":507,"Date":"12/5/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":415,"Cost":310,"Date":"12/26/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":846,"Cost":632,"Date":"12/31/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":537,"Cost":323,"Date":"1/20/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":555,"Cost":455,"Date":"2/2/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":422,"Cost":265,"Date":"2/8/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":379,"Cost":260,"Date":"2/27/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":264,"Cost":234,"Date":"3/1/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":185,"Cost":139,"Date":"3/1/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":748,"Cost":574,"Date":"3/19/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":277,"Cost":214,"Date":"3/28/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":528,"Cost":430,"Date":"5/21/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":536,"Cost":405,"Date":"7/21/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":966,"Cost":851,"Date":"8/5/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":823,"Cost":634,"Date":"8/12/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":808,"Cost":408,"Date":"8/21/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":358,"Cost":338,"Date":"8/23/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":871,"Cost":608,"Date":"9/3/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":29,"Cost":20,"Date":"9/5/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":408,"Cost":312,"Date":"10/6/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":714,"Cost":672,"Date":"10/19/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":737,"Cost":564,"Date":"11/15/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":32,"Cost":23,"Date":"12/8/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":80,"Cost":51,"Date":"1/8/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":486,"Cost":350,"Date":"1/14/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":336,"Cost":222,"Date":"1/19/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":636,"Cost":389,"Date":"1/28/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":311,"Cost":240,"Date":"1/31/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":981,"Cost":683,"Date":"3/27/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":764,"Cost":387,"Date":"4/20/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":73,"Cost":56,"Date":"4/24/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":112,"Cost":102,"Date":"4/28/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":717,"Cost":408,"Date":"5/15/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":555,"Cost":453,"Date":"5/16/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":282,"Cost":152,"Date":"5/18/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":662,"Cost":518,"Date":"6/2/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":537,"Cost":499,"Date":"6/3/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":146,"Cost":109,"Date":"6/5/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":643,"Cost":406,"Date":"6/7/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":326,"Cost":297,"Date":"6/14/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":109,"Cost":86,"Date":"6/20/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":31,"Cost":22,"Date":"6/24/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":224,"Cost":138,"Date":"7/4/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":898,"Cost":829,"Date":"7/9/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":195,"Cost":156,"Date":"7/12/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":181,"Cost":122,"Date":"8/14/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":206,"Cost":139,"Date":"8/16/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":578,"Cost":457,"Date":"8/23/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":395,"Cost":247,"Date":"9/2/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":481,"Cost":362,"Date":"9/3/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":710,"Cost":467,"Date":"9/16/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":315,"Cost":213,"Date":"10/4/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":641,"Cost":518,"Date":"11/1/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":365,"Cost":274,"Date":"11/2/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":888,"Cost":768,"Date":"12/17/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":7,"Cost":4,"Date":"2/10/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":690,"Cost":620,"Date":"2/28/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":704,"Cost":641,"Date":"3/4/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":946,"Cost":761,"Date":"3/9/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":312,"Cost":264,"Date":"3/9/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":615,"Cost":517,"Date":"3/11/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":796,"Cost":521,"Date":"3/17/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":616,"Cost":469,"Date":"3/17/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":459,"Cost":289,"Date":"3/23/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":372,"Cost":276,"Date":"4/1/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":837,"Cost":704,"Date":"5/7/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":488,"Cost":390,"Date":"5/10/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":620,"Cost":327,"Date":"5/20/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":523,"Cost":401,"Date":"6/2/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":882,"Cost":628,"Date":"6/11/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":168,"Cost":157,"Date":"6/16/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":187,"Cost":125,"Date":"6/16/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":353,"Cost":334,"Date":"7/10/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":654,"Cost":383,"Date":"7/11/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":90,"Cost":49,"Date":"8/28/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":400,"Cost":304,"Date":"8/29/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":85,"Cost":58,"Date":"8/31/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":707,"Cost":594,"Date":"9/8/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":28,"Cost":16,"Date":"9/13/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":152,"Cost":145,"Date":"9/14/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":403,"Cost":346,"Date":"9/19/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":161,"Cost":143,"Date":"9/25/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":109,"Cost":91,"Date":"10/4/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":534,"Cost":283,"Date":"10/10/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":790,"Cost":741,"Date":"10/17/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":1,"Cost":1,"Date":"10/28/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":956,"Cost":582,"Date":"10/30/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":169,"Cost":134,"Date":"11/1/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":186,"Cost":175,"Date":"11/15/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":11,"Cost":5,"Date":"11/25/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":318,"Cost":195,"Date":"1/10/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":745,"Cost":532,"Date":"1/14/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":565,"Cost":344,"Date":"1/20/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":252,"Cost":137,"Date":"2/8/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":733,"Cost":487,"Date":"2/25/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":859,"Cost":505,"Date":"3/7/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":177,"Cost":121,"Date":"3/14/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":284,"Cost":208,"Date":"3/27/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":434,"Cost":245,"Date":"4/5/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":327,"Cost":183,"Date":"4/14/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":419,"Cost":285,"Date":"5/3/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":392,"Cost":197,"Date":"5/9/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":823,"Cost":721,"Date":"5/15/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":52,"Cost":31,"Date":"5/25/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":193,"Cost":164,"Date":"5/26/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":997,"Cost":657,"Date":"5/31/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":264,"Cost":145,"Date":"7/27/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":890,"Cost":704,"Date":"9/17/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":862,"Cost":488,"Date":"10/6/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":795,"Cost":462,"Date":"10/8/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":842,"Cost":524,"Date":"10/26/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":471,"Cost":419,"Date":"11/16/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":762,"Cost":432,"Date":"11/18/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"Nova","Country":"Germany","Sale":676,"Cost":396,"Date":"12/1/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":540,"Cost":369,"Date":"2/9/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":978,"Cost":837,"Date":"2/11/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":537,"Cost":337,"Date":"3/10/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":935,"Cost":652,"Date":"3/16/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":205,"Cost":143,"Date":"3/18/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":483,"Cost":425,"Date":"3/20/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":841,"Cost":589,"Date":"3/26/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":584,"Cost":372,"Date":"6/2/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":10,"Cost":9,"Date":"6/10/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":210,"Cost":196,"Date":"6/16/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":92,"Cost":67,"Date":"6/25/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":706,"Cost":599,"Date":"7/19/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":135,"Cost":94,"Date":"7/21/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":229,"Cost":200,"Date":"7/25/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":118,"Cost":101,"Date":"8/4/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":533,"Cost":327,"Date":"9/2/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":258,"Cost":220,"Date":"9/4/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":416,"Cost":302,"Date":"9/19/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":518,"Cost":326,"Date":"9/29/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":470,"Cost":292,"Date":"10/2/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":683,"Cost":586,"Date":"10/15/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":596,"Cost":307,"Date":"10/30/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":990,"Cost":788,"Date":"11/9/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":936,"Cost":837,"Date":"11/23/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":423,"Cost":381,"Date":"11/30/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":780,"Cost":707,"Date":"12/8/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":645,"Cost":504,"Date":"12/11/2018"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":797,"Cost":624,"Date":"1/15/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":53,"Cost":32,"Date":"1/24/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":497,"Cost":299,"Date":"2/3/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":86,"Cost":46,"Date":"2/4/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":549,"Cost":343,"Date":"3/9/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":383,"Cost":290,"Date":"3/12/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":536,"Cost":444,"Date":"4/19/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":946,"Cost":672,"Date":"5/3/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":24,"Cost":17,"Date":"5/4/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":902,"Cost":846,"Date":"6/8/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":668,"Cost":399,"Date":"6/26/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":729,"Cost":406,"Date":"7/4/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":1000,"Cost":511,"Date":"7/13/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":337,"Cost":223,"Date":"8/8/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":417,"Cost":275,"Date":"8/26/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":904,"Cost":555,"Date":"9/2/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":909,"Cost":784,"Date":"9/29/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":903,"Cost":685,"Date":"10/12/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":582,"Cost":304,"Date":"11/2/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":269,"Cost":200,"Date":"11/4/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":561,"Cost":411,"Date":"11/7/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":175,"Cost":107,"Date":"12/1/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":292,"Cost":218,"Date":"12/4/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":629,"Cost":583,"Date":"12/7/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":354,"Cost":329,"Date":"12/18/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":155,"Cost":84,"Date":"12/20/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":501,"Cost":440,"Date":"12/20/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":597,"Cost":500,"Date":"12/21/2019"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":564,"Cost":493,"Date":"1/9/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":979,"Cost":638,"Date":"2/5/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":996,"Cost":760,"Date":"2/16/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":308,"Cost":222,"Date":"2/16/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":351,"Cost":220,"Date":"2/18/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":97,"Cost":69,"Date":"2/22/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":404,"Cost":239,"Date":"2/25/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":913,"Cost":737,"Date":"3/8/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":641,"Cost":444,"Date":"4/2/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":9,"Cost":7,"Date":"4/3/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":406,"Cost":380,"Date":"4/9/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":534,"Cost":315,"Date":"4/10/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":369,"Cost":332,"Date":"4/19/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":881,"Cost":494,"Date":"5/17/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":668,"Cost":381,"Date":"5/22/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":804,"Cost":404,"Date":"6/20/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":812,"Cost":412,"Date":"7/1/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":877,"Cost":627,"Date":"7/4/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":782,"Cost":517,"Date":"7/8/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":988,"Cost":702,"Date":"7/9/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":67,"Cost":40,"Date":"7/14/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":966,"Cost":597,"Date":"7/19/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":294,"Cost":254,"Date":"8/1/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":751,"Cost":470,"Date":"8/6/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":22,"Cost":18,"Date":"8/7/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":117,"Cost":74,"Date":"8/22/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":161,"Cost":86,"Date":"8/31/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":632,"Cost":332,"Date":"9/1/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":70,"Cost":54,"Date":"9/1/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":539,"Cost":324,"Date":"9/17/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":219,"Cost":140,"Date":"9/29/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":905,"Cost":497,"Date":"11/7/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":708,"Cost":627,"Date":"11/26/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":549,"Cost":475,"Date":"11/27/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":119,"Cost":87,"Date":"12/5/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":150,"Cost":99,"Date":"12/26/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":744,"Cost":482,"Date":"12/31/2020"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":139,"Cost":87,"Date":"1/20/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":886,"Cost":638,"Date":"2/2/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":99,"Cost":77,"Date":"2/8/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":771,"Cost":518,"Date":"2/27/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":279,"Cost":228,"Date":"3/1/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":661,"Cost":585,"Date":"3/1/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":397,"Cost":328,"Date":"3/19/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":792,"Cost":454,"Date":"3/28/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":426,"Cost":323,"Date":"5/21/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":654,"Cost":613,"Date":"7/21/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":319,"Cost":281,"Date":"8/5/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":401,"Cost":329,"Date":"8/12/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":142,"Cost":135,"Date":"8/21/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":763,"Cost":649,"Date":"8/23/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":185,"Cost":150,"Date":"9/3/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":160,"Cost":145,"Date":"9/5/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":543,"Cost":274,"Date":"10/6/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":255,"Cost":215,"Date":"10/19/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":630,"Cost":582,"Date":"11/15/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":222,"Cost":200,"Date":"12/8/2021"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":572,"Cost":491,"Date":"1/8/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":692,"Cost":540,"Date":"1/14/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":40,"Cost":33,"Date":"1/19/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":200,"Cost":159,"Date":"1/28/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":830,"Cost":570,"Date":"1/31/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":913,"Cost":810,"Date":"3/27/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":815,"Cost":488,"Date":"4/20/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":99,"Cost":88,"Date":"4/24/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":825,"Cost":738,"Date":"4/28/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":357,"Cost":302,"Date":"5/15/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":10,"Cost":9,"Date":"5/16/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":573,"Cost":354,"Date":"5/18/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":132,"Cost":77,"Date":"6/2/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":222,"Cost":172,"Date":"6/3/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":553,"Cost":377,"Date":"6/5/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":761,"Cost":480,"Date":"6/7/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":518,"Cost":298,"Date":"6/14/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":294,"Cost":230,"Date":"6/20/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":525,"Cost":291,"Date":"6/24/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":574,"Cost":526,"Date":"7/4/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":60,"Cost":56,"Date":"7/9/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":324,"Cost":248,"Date":"7/12/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":157,"Cost":117,"Date":"8/14/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":272,"Cost":251,"Date":"8/16/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":930,"Cost":633,"Date":"8/23/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":356,"Cost":325,"Date":"9/2/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":482,"Cost":301,"Date":"9/3/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":889,"Cost":614,"Date":"9/16/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":307,"Cost":278,"Date":"10/4/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":637,"Cost":407,"Date":"11/1/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":316,"Cost":235,"Date":"11/2/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":345,"Cost":213,"Date":"12/17/2022"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":334,"Cost":292,"Date":"2/10/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":708,"Cost":427,"Date":"2/28/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":928,"Cost":562,"Date":"3/4/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":269,"Cost":240,"Date":"3/9/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":842,"Cost":589,"Date":"3/9/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":331,"Cost":281,"Date":"3/11/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":867,"Cost":746,"Date":"3/17/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":455,"Cost":229,"Date":"3/17/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":881,"Cost":748,"Date":"3/23/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":520,"Cost":301,"Date":"4/1/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":646,"Cost":482,"Date":"5/7/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":545,"Cost":295,"Date":"5/10/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":227,"Cost":155,"Date":"5/20/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":976,"Cost":579,"Date":"6/2/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":428,"Cost":242,"Date":"6/11/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":704,"Cost":584,"Date":"6/16/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":127,"Cost":108,"Date":"6/16/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":136,"Cost":119,"Date":"7/10/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":145,"Cost":86,"Date":"7/11/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":733,"Cost":477,"Date":"8/28/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":27,"Cost":23,"Date":"8/29/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":214,"Cost":188,"Date":"8/31/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":265,"Cost":181,"Date":"9/8/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":177,"Cost":134,"Date":"9/13/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":273,"Cost":225,"Date":"9/14/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":339,"Cost":237,"Date":"9/19/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":537,"Cost":321,"Date":"9/25/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":562,"Cost":371,"Date":"10/4/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":933,"Cost":570,"Date":"10/10/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":28,"Cost":21,"Date":"10/17/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":163,"Cost":88,"Date":"10/28/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":145,"Cost":79,"Date":"10/30/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":582,"Cost":486,"Date":"11/1/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":776,"Cost":500,"Date":"11/15/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":170,"Cost":101,"Date":"11/25/2023"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":372,"Cost":219,"Date":"1/10/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":185,"Cost":100,"Date":"1/14/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":691,"Cost":467,"Date":"1/20/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":80,"Cost":57,"Date":"2/8/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":244,"Cost":218,"Date":"2/25/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":340,"Cost":263,"Date":"3/7/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":10,"Cost":5,"Date":"3/14/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":175,"Cost":116,"Date":"3/27/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":789,"Cost":552,"Date":"4/5/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":306,"Cost":191,"Date":"4/14/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":252,"Cost":152,"Date":"5/3/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":477,"Cost":340,"Date":"5/9/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":532,"Cost":359,"Date":"5/15/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":663,"Cost":563,"Date":"5/25/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":549,"Cost":372,"Date":"5/26/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":291,"Cost":148,"Date":"5/31/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":184,"Cost":173,"Date":"7/27/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":738,"Cost":391,"Date":"9/17/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":82,"Cost":52,"Date":"10/6/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":463,"Cost":413,"Date":"10/8/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":27,"Cost":14,"Date":"10/26/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":102,"Cost":94,"Date":"11/16/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":77,"Cost":58,"Date":"11/18/2024"},{"Store":"Friedrichstraße Galerie, Berlin","Brand":"HM Home","Country":"Germany","Sale":912,"Cost":801,"Date":"12/1/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":444,"Cost":231,"Date":"2/9/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":982,"Cost":598,"Date":"2/11/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":179,"Cost":102,"Date":"3/10/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":310,"Cost":201,"Date":"3/16/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":302,"Cost":213,"Date":"3/18/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":135,"Cost":108,"Date":"3/20/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":785,"Cost":602,"Date":"3/26/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":472,"Cost":396,"Date":"6/2/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":231,"Cost":123,"Date":"6/10/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":110,"Cost":56,"Date":"6/16/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":72,"Cost":45,"Date":"6/25/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":357,"Cost":212,"Date":"7/19/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":593,"Cost":458,"Date":"7/21/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":950,"Cost":848,"Date":"7/25/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":748,"Cost":637,"Date":"8/4/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":324,"Cost":241,"Date":"9/2/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":560,"Cost":398,"Date":"9/4/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":814,"Cost":701,"Date":"9/19/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":377,"Cost":285,"Date":"9/29/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":646,"Cost":489,"Date":"10/2/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":253,"Cost":146,"Date":"10/15/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":968,"Cost":774,"Date":"10/30/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":271,"Cost":138,"Date":"11/9/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":733,"Cost":537,"Date":"11/23/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":147,"Cost":82,"Date":"11/30/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":516,"Cost":319,"Date":"12/8/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":275,"Cost":212,"Date":"12/11/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":611,"Cost":452,"Date":"1/15/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":875,"Cost":595,"Date":"1/24/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":436,"Cost":295,"Date":"2/3/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":526,"Cost":429,"Date":"2/4/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":973,"Cost":527,"Date":"3/9/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":255,"Cost":171,"Date":"3/12/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":174,"Cost":148,"Date":"4/19/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":164,"Cost":152,"Date":"5/3/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":590,"Cost":367,"Date":"5/4/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":386,"Cost":316,"Date":"6/8/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":698,"Cost":419,"Date":"6/26/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":550,"Cost":444,"Date":"7/4/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":579,"Cost":469,"Date":"7/13/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":818,"Cost":632,"Date":"8/8/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":14,"Cost":10,"Date":"8/26/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":527,"Cost":287,"Date":"9/2/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":322,"Cost":286,"Date":"9/29/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":651,"Cost":515,"Date":"10/12/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":939,"Cost":728,"Date":"11/2/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":441,"Cost":303,"Date":"11/4/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":149,"Cost":124,"Date":"11/7/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":554,"Cost":484,"Date":"12/1/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":142,"Cost":71,"Date":"12/4/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":84,"Cost":56,"Date":"12/7/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":933,"Cost":696,"Date":"12/18/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":50,"Cost":41,"Date":"12/20/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":591,"Cost":408,"Date":"12/20/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":594,"Cost":374,"Date":"12/21/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":67,"Cost":59,"Date":"1/9/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":945,"Cost":491,"Date":"2/5/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":644,"Cost":523,"Date":"2/16/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":192,"Cost":139,"Date":"2/16/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":75,"Cost":45,"Date":"2/18/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":689,"Cost":409,"Date":"2/22/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":583,"Cost":515,"Date":"2/25/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":900,"Cost":479,"Date":"3/8/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":76,"Cost":39,"Date":"4/2/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":935,"Cost":722,"Date":"4/3/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":111,"Cost":77,"Date":"4/9/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":468,"Cost":329,"Date":"4/10/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":570,"Cost":288,"Date":"4/19/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":482,"Cost":248,"Date":"5/17/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":528,"Cost":293,"Date":"5/22/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":813,"Cost":504,"Date":"6/20/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":95,"Cost":75,"Date":"7/1/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":810,"Cost":443,"Date":"7/4/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":825,"Cost":565,"Date":"7/8/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":205,"Cost":185,"Date":"7/9/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":301,"Cost":259,"Date":"7/14/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":620,"Cost":430,"Date":"7/19/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":442,"Cost":381,"Date":"8/1/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":339,"Cost":251,"Date":"8/6/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":894,"Cost":564,"Date":"8/7/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":998,"Cost":510,"Date":"8/22/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":81,"Cost":61,"Date":"8/31/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":407,"Cost":383,"Date":"9/1/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":718,"Cost":483,"Date":"9/1/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":29,"Cost":21,"Date":"9/17/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":60,"Cost":34,"Date":"9/29/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":614,"Cost":541,"Date":"11/7/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":751,"Cost":528,"Date":"11/26/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":308,"Cost":190,"Date":"11/27/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":802,"Cost":616,"Date":"12/5/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":925,"Cost":739,"Date":"12/26/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":327,"Cost":284,"Date":"12/31/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":913,"Cost":708,"Date":"1/20/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":921,"Cost":700,"Date":"2/2/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":34,"Cost":19,"Date":"2/8/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":97,"Cost":92,"Date":"2/27/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":864,"Cost":478,"Date":"3/1/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":90,"Cost":73,"Date":"3/1/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":552,"Cost":492,"Date":"3/19/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":914,"Cost":692,"Date":"3/28/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":10,"Cost":10,"Date":"5/21/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":524,"Cost":293,"Date":"7/21/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":67,"Cost":61,"Date":"8/5/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":544,"Cost":289,"Date":"8/12/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":614,"Cost":573,"Date":"8/21/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":226,"Cost":178,"Date":"8/23/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":777,"Cost":442,"Date":"9/3/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":456,"Cost":371,"Date":"9/5/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":226,"Cost":117,"Date":"10/6/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":284,"Cost":202,"Date":"10/19/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":584,"Cost":361,"Date":"11/15/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":806,"Cost":597,"Date":"12/8/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":310,"Cost":186,"Date":"1/8/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":164,"Cost":111,"Date":"1/14/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":159,"Cost":148,"Date":"1/19/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":686,"Cost":648,"Date":"1/28/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":296,"Cost":275,"Date":"1/31/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":375,"Cost":305,"Date":"3/27/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":251,"Cost":163,"Date":"4/20/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":998,"Cost":828,"Date":"4/24/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":874,"Cost":747,"Date":"4/28/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":44,"Cost":37,"Date":"5/15/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":727,"Cost":652,"Date":"5/16/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":547,"Cost":349,"Date":"5/18/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":487,"Cost":438,"Date":"6/2/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":248,"Cost":128,"Date":"6/3/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":708,"Cost":424,"Date":"6/5/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":696,"Cost":371,"Date":"6/7/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":741,"Cost":563,"Date":"6/14/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":168,"Cost":94,"Date":"6/20/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":962,"Cost":724,"Date":"6/24/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":561,"Cost":283,"Date":"7/4/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":263,"Cost":140,"Date":"7/9/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":441,"Cost":229,"Date":"7/12/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":777,"Cost":570,"Date":"8/14/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":583,"Cost":382,"Date":"8/16/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":116,"Cost":99,"Date":"8/23/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":177,"Cost":153,"Date":"9/2/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":996,"Cost":658,"Date":"9/3/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":626,"Cost":581,"Date":"9/16/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":355,"Cost":209,"Date":"10/4/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":759,"Cost":584,"Date":"11/1/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":490,"Cost":279,"Date":"11/2/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":319,"Cost":182,"Date":"12/17/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":407,"Cost":385,"Date":"2/10/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":70,"Cost":55,"Date":"2/28/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":868,"Cost":750,"Date":"3/4/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":632,"Cost":480,"Date":"3/9/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":652,"Cost":549,"Date":"3/9/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":549,"Cost":406,"Date":"3/11/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":546,"Cost":448,"Date":"3/17/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":341,"Cost":195,"Date":"3/17/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":929,"Cost":513,"Date":"3/23/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":539,"Cost":363,"Date":"4/1/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":496,"Cost":307,"Date":"5/7/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":973,"Cost":782,"Date":"5/10/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":119,"Cost":79,"Date":"5/20/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":41,"Cost":30,"Date":"6/2/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":128,"Cost":93,"Date":"6/11/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":325,"Cost":178,"Date":"6/16/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":103,"Cost":67,"Date":"6/16/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":194,"Cost":173,"Date":"7/10/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":328,"Cost":181,"Date":"7/11/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":717,"Cost":666,"Date":"8/28/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":14,"Cost":12,"Date":"8/29/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":19,"Cost":13,"Date":"8/31/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":516,"Cost":383,"Date":"9/8/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":531,"Cost":446,"Date":"9/13/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":279,"Cost":199,"Date":"9/14/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":63,"Cost":52,"Date":"9/19/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":708,"Cost":465,"Date":"9/25/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":433,"Cost":226,"Date":"10/4/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":465,"Cost":293,"Date":"10/10/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":370,"Cost":269,"Date":"10/17/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":798,"Cost":538,"Date":"10/28/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":324,"Cost":279,"Date":"10/30/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":629,"Cost":408,"Date":"11/1/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":335,"Cost":281,"Date":"11/15/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":392,"Cost":252,"Date":"11/25/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":61,"Cost":45,"Date":"1/10/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":215,"Cost":171,"Date":"1/14/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":50,"Cost":35,"Date":"1/20/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":799,"Cost":553,"Date":"2/8/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":290,"Cost":231,"Date":"2/25/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":602,"Cost":385,"Date":"3/7/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":475,"Cost":275,"Date":"3/14/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":284,"Cost":233,"Date":"3/27/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":759,"Cost":465,"Date":"4/5/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":978,"Cost":708,"Date":"4/14/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":319,"Cost":183,"Date":"5/3/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":473,"Cost":363,"Date":"5/9/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":976,"Cost":788,"Date":"5/15/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":402,"Cost":305,"Date":"5/25/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":645,"Cost":565,"Date":"5/26/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":32,"Cost":27,"Date":"5/31/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":30,"Cost":27,"Date":"7/27/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":16,"Cost":9,"Date":"9/17/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":823,"Cost":494,"Date":"10/6/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":478,"Cost":444,"Date":"10/8/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":683,"Cost":620,"Date":"10/26/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":652,"Cost":569,"Date":"11/16/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":14,"Cost":8,"Date":"11/18/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"HM Home","Country":"Germany","Sale":681,"Cost":502,"Date":"12/1/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":182,"Cost":102,"Date":"2/9/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":135,"Cost":122,"Date":"2/11/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":728,"Cost":462,"Date":"3/10/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":225,"Cost":134,"Date":"3/16/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":413,"Cost":369,"Date":"3/18/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":193,"Cost":169,"Date":"3/20/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":37,"Cost":23,"Date":"3/26/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":962,"Cost":779,"Date":"6/2/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":662,"Cost":400,"Date":"6/10/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":790,"Cost":485,"Date":"6/16/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":689,"Cost":579,"Date":"6/25/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":245,"Cost":186,"Date":"7/19/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":235,"Cost":164,"Date":"7/21/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":398,"Cost":346,"Date":"7/25/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":65,"Cost":33,"Date":"8/4/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":303,"Cost":166,"Date":"9/2/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":47,"Cost":37,"Date":"9/4/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":529,"Cost":305,"Date":"9/19/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":626,"Cost":433,"Date":"9/29/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":62,"Cost":52,"Date":"10/2/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":741,"Cost":576,"Date":"10/15/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":314,"Cost":165,"Date":"10/30/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":6,"Cost":5,"Date":"11/9/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":108,"Cost":85,"Date":"11/23/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":629,"Cost":342,"Date":"11/30/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":653,"Cost":613,"Date":"12/8/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":242,"Cost":190,"Date":"12/11/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":902,"Cost":520,"Date":"1/15/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":692,"Cost":372,"Date":"1/24/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":305,"Cost":288,"Date":"2/3/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":914,"Cost":782,"Date":"2/4/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":735,"Cost":538,"Date":"3/9/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":782,"Cost":625,"Date":"3/12/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":437,"Cost":296,"Date":"4/19/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":827,"Cost":741,"Date":"5/3/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":319,"Cost":281,"Date":"5/4/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":99,"Cost":78,"Date":"6/8/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":267,"Cost":182,"Date":"6/26/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":895,"Cost":813,"Date":"7/4/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":832,"Cost":669,"Date":"7/13/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":921,"Cost":592,"Date":"8/8/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":818,"Cost":677,"Date":"8/26/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":156,"Cost":101,"Date":"9/2/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":792,"Cost":490,"Date":"9/29/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":59,"Cost":50,"Date":"10/12/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":573,"Cost":527,"Date":"11/2/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":709,"Cost":404,"Date":"11/4/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":261,"Cost":168,"Date":"11/7/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":285,"Cost":191,"Date":"12/1/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":229,"Cost":132,"Date":"12/4/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":411,"Cost":242,"Date":"12/7/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":747,"Cost":568,"Date":"12/18/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":350,"Cost":227,"Date":"12/20/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":391,"Cost":360,"Date":"12/20/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":253,"Cost":137,"Date":"12/21/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":204,"Cost":135,"Date":"1/9/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":970,"Cost":655,"Date":"2/5/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":737,"Cost":475,"Date":"2/16/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":914,"Cost":814,"Date":"2/16/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":971,"Cost":568,"Date":"2/18/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":2,"Cost":2,"Date":"2/22/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":192,"Cost":131,"Date":"2/25/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":289,"Cost":217,"Date":"3/8/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":609,"Cost":423,"Date":"4/2/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":825,"Cost":570,"Date":"4/3/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":343,"Cost":175,"Date":"4/9/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":987,"Cost":691,"Date":"4/10/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":311,"Cost":263,"Date":"4/19/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":889,"Cost":594,"Date":"5/17/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":965,"Cost":727,"Date":"5/22/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":173,"Cost":157,"Date":"6/20/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":107,"Cost":63,"Date":"7/1/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":874,"Cost":621,"Date":"7/4/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":437,"Cost":385,"Date":"7/8/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":524,"Cost":394,"Date":"7/9/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":786,"Cost":537,"Date":"7/14/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":355,"Cost":254,"Date":"7/19/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":698,"Cost":364,"Date":"8/1/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":112,"Cost":69,"Date":"8/6/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":131,"Cost":69,"Date":"8/7/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":10,"Cost":9,"Date":"8/22/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":8,"Cost":4,"Date":"8/31/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":639,"Cost":334,"Date":"9/1/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":615,"Cost":558,"Date":"9/1/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":528,"Cost":381,"Date":"9/17/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":197,"Cost":148,"Date":"9/29/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":304,"Cost":173,"Date":"11/7/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":176,"Cost":139,"Date":"11/26/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":304,"Cost":216,"Date":"11/27/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":919,"Cost":462,"Date":"12/5/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":121,"Cost":75,"Date":"12/26/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":551,"Cost":411,"Date":"12/31/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":428,"Cost":359,"Date":"1/20/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":500,"Cost":454,"Date":"2/2/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":540,"Cost":435,"Date":"2/8/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":860,"Cost":613,"Date":"2/27/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":10,"Cost":5,"Date":"3/1/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":615,"Cost":552,"Date":"3/1/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":479,"Cost":242,"Date":"3/19/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":227,"Cost":196,"Date":"3/28/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":940,"Cost":495,"Date":"5/21/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":839,"Cost":630,"Date":"7/21/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":830,"Cost":717,"Date":"8/5/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":993,"Cost":924,"Date":"8/12/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":68,"Cost":49,"Date":"8/21/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":795,"Cost":650,"Date":"8/23/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":475,"Cost":329,"Date":"9/3/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":755,"Cost":451,"Date":"9/5/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":83,"Cost":47,"Date":"10/6/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":514,"Cost":334,"Date":"10/19/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":721,"Cost":552,"Date":"11/15/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":902,"Cost":604,"Date":"12/8/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":881,"Cost":811,"Date":"1/8/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":422,"Cost":392,"Date":"1/14/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":297,"Cost":157,"Date":"1/19/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":624,"Cost":472,"Date":"1/28/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":406,"Cost":298,"Date":"1/31/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":224,"Cost":130,"Date":"3/27/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":329,"Cost":229,"Date":"4/20/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":495,"Cost":247,"Date":"4/24/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":39,"Cost":35,"Date":"4/28/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":837,"Cost":554,"Date":"5/15/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":718,"Cost":390,"Date":"5/16/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":885,"Cost":788,"Date":"5/18/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":478,"Cost":416,"Date":"6/2/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":428,"Cost":219,"Date":"6/3/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":473,"Cost":331,"Date":"6/5/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":760,"Cost":573,"Date":"6/7/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":254,"Cost":185,"Date":"6/14/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":45,"Cost":34,"Date":"6/20/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":66,"Cost":60,"Date":"6/24/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":279,"Cost":232,"Date":"7/4/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":478,"Cost":333,"Date":"7/9/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":144,"Cost":81,"Date":"7/12/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":414,"Cost":259,"Date":"8/14/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":767,"Cost":496,"Date":"8/16/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":102,"Cost":71,"Date":"8/23/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":968,"Cost":626,"Date":"9/2/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":433,"Cost":360,"Date":"9/3/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":933,"Cost":743,"Date":"9/16/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":464,"Cost":269,"Date":"10/4/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":533,"Cost":342,"Date":"11/1/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":3,"Cost":1,"Date":"11/2/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":134,"Cost":88,"Date":"12/17/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":2,"Cost":1,"Date":"2/10/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":145,"Cost":97,"Date":"2/28/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":10,"Cost":5,"Date":"3/4/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":771,"Cost":692,"Date":"3/9/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":382,"Cost":249,"Date":"3/9/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":121,"Cost":74,"Date":"3/11/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":975,"Cost":516,"Date":"3/17/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":127,"Cost":89,"Date":"3/17/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":863,"Cost":477,"Date":"3/23/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":468,"Cost":375,"Date":"4/1/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":493,"Cost":388,"Date":"5/7/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":343,"Cost":318,"Date":"5/10/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":354,"Cost":205,"Date":"5/20/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":190,"Cost":128,"Date":"6/2/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":150,"Cost":96,"Date":"6/11/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":4,"Cost":3,"Date":"6/16/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":808,"Cost":530,"Date":"6/16/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":183,"Cost":99,"Date":"7/10/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":841,"Cost":622,"Date":"7/11/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":334,"Cost":201,"Date":"8/28/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":907,"Cost":555,"Date":"8/29/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":978,"Cost":630,"Date":"8/31/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":922,"Cost":853,"Date":"9/8/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":468,"Cost":332,"Date":"9/13/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":361,"Cost":219,"Date":"9/14/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":849,"Cost":661,"Date":"9/19/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":465,"Cost":236,"Date":"9/25/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":761,"Cost":404,"Date":"10/4/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":895,"Cost":514,"Date":"10/10/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":349,"Cost":198,"Date":"10/17/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":685,"Cost":627,"Date":"10/28/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":856,"Cost":640,"Date":"10/30/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":484,"Cost":316,"Date":"11/1/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":831,"Cost":446,"Date":"11/15/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":577,"Cost":290,"Date":"11/25/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":464,"Cost":354,"Date":"1/10/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":890,"Cost":780,"Date":"1/14/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":380,"Cost":203,"Date":"1/20/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":797,"Cost":431,"Date":"2/8/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":550,"Cost":324,"Date":"2/25/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":453,"Cost":419,"Date":"3/7/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":968,"Cost":614,"Date":"3/14/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":403,"Cost":381,"Date":"3/27/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":456,"Cost":418,"Date":"4/5/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":46,"Cost":38,"Date":"4/14/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":673,"Cost":492,"Date":"5/3/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":420,"Cost":272,"Date":"5/9/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":449,"Cost":372,"Date":"5/15/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":820,"Cost":538,"Date":"5/25/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":71,"Cost":41,"Date":"5/26/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":205,"Cost":167,"Date":"5/31/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":308,"Cost":201,"Date":"7/27/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":366,"Cost":212,"Date":"9/17/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":518,"Cost":410,"Date":"10/6/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":387,"Cost":223,"Date":"10/8/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":409,"Cost":322,"Date":"10/26/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":846,"Cost":766,"Date":"11/16/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":352,"Cost":298,"Date":"11/18/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Nova","Country":"Germany","Sale":926,"Cost":522,"Date":"12/1/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":555,"Cost":387,"Date":"2/9/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":269,"Cost":251,"Date":"2/11/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":1,"Cost":1,"Date":"3/10/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":626,"Cost":371,"Date":"3/16/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":894,"Cost":732,"Date":"3/18/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":69,"Cost":52,"Date":"3/20/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":342,"Cost":215,"Date":"3/26/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":842,"Cost":766,"Date":"6/2/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":657,"Cost":544,"Date":"6/10/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":268,"Cost":162,"Date":"6/16/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":696,"Cost":656,"Date":"6/25/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":507,"Cost":396,"Date":"7/19/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":789,"Cost":429,"Date":"7/21/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":613,"Cost":344,"Date":"7/25/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":320,"Cost":261,"Date":"8/4/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":140,"Cost":98,"Date":"9/2/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":973,"Cost":860,"Date":"9/4/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":223,"Cost":133,"Date":"9/19/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":753,"Cost":599,"Date":"9/29/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":473,"Cost":400,"Date":"10/2/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":759,"Cost":535,"Date":"10/15/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":806,"Cost":538,"Date":"10/30/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":850,"Cost":497,"Date":"11/9/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":512,"Cost":278,"Date":"11/23/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":216,"Cost":182,"Date":"11/30/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":112,"Cost":56,"Date":"12/8/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":413,"Cost":326,"Date":"12/11/2018"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":535,"Cost":368,"Date":"1/15/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":673,"Cost":375,"Date":"1/24/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":465,"Cost":435,"Date":"2/3/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":699,"Cost":646,"Date":"2/4/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":907,"Cost":819,"Date":"3/9/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":942,"Cost":480,"Date":"3/12/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":749,"Cost":479,"Date":"4/19/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":676,"Cost":525,"Date":"5/3/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":314,"Cost":257,"Date":"5/4/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":988,"Cost":581,"Date":"6/8/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":6,"Cost":3,"Date":"6/26/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":146,"Cost":113,"Date":"7/4/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":731,"Cost":378,"Date":"7/13/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":545,"Cost":411,"Date":"8/8/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":370,"Cost":225,"Date":"8/26/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":986,"Cost":760,"Date":"9/2/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":836,"Cost":760,"Date":"9/29/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":437,"Cost":240,"Date":"10/12/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":76,"Cost":45,"Date":"11/2/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":497,"Cost":321,"Date":"11/4/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":243,"Cost":143,"Date":"11/7/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":118,"Cost":59,"Date":"12/1/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":892,"Cost":536,"Date":"12/4/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":750,"Cost":442,"Date":"12/7/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":385,"Cost":220,"Date":"12/18/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":828,"Cost":695,"Date":"12/20/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":377,"Cost":230,"Date":"12/20/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":730,"Cost":600,"Date":"12/21/2019"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":21,"Cost":20,"Date":"1/9/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":15,"Cost":8,"Date":"2/5/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":558,"Cost":312,"Date":"2/16/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":553,"Cost":313,"Date":"2/16/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":526,"Cost":273,"Date":"2/18/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":191,"Cost":150,"Date":"2/22/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":463,"Cost":341,"Date":"2/25/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":127,"Cost":91,"Date":"3/8/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":431,"Cost":391,"Date":"4/2/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":355,"Cost":326,"Date":"4/3/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":886,"Cost":655,"Date":"4/9/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":166,"Cost":134,"Date":"4/10/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":902,"Cost":723,"Date":"4/19/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":537,"Cost":325,"Date":"5/17/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":628,"Cost":391,"Date":"5/22/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":790,"Cost":439,"Date":"6/20/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":493,"Cost":379,"Date":"7/1/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":522,"Cost":390,"Date":"7/4/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":997,"Cost":505,"Date":"7/8/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":127,"Cost":107,"Date":"7/9/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":849,"Cost":749,"Date":"7/14/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":478,"Cost":332,"Date":"7/19/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":341,"Cost":269,"Date":"8/1/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":573,"Cost":428,"Date":"8/6/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":709,"Cost":415,"Date":"8/7/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":496,"Cost":419,"Date":"8/22/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":847,"Cost":531,"Date":"8/31/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":498,"Cost":465,"Date":"9/1/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":846,"Cost":799,"Date":"9/1/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":340,"Cost":319,"Date":"9/17/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":728,"Cost":528,"Date":"9/29/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":286,"Cost":237,"Date":"11/7/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":960,"Cost":714,"Date":"11/26/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":952,"Cost":538,"Date":"11/27/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":222,"Cost":135,"Date":"12/5/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":481,"Cost":284,"Date":"12/26/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":648,"Cost":329,"Date":"12/31/2020"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":831,"Cost":669,"Date":"1/20/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":821,"Cost":596,"Date":"2/2/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":667,"Cost":513,"Date":"2/8/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":571,"Cost":371,"Date":"2/27/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":948,"Cost":673,"Date":"3/1/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":163,"Cost":140,"Date":"3/1/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":992,"Cost":648,"Date":"3/19/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":928,"Cost":622,"Date":"3/28/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":630,"Cost":578,"Date":"5/21/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":241,"Cost":210,"Date":"7/21/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":144,"Cost":137,"Date":"8/5/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":495,"Cost":279,"Date":"8/12/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":188,"Cost":148,"Date":"8/21/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":583,"Cost":497,"Date":"8/23/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":637,"Cost":441,"Date":"9/3/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":806,"Cost":617,"Date":"9/5/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":635,"Cost":457,"Date":"10/6/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":104,"Cost":82,"Date":"10/19/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":382,"Cost":316,"Date":"11/15/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":294,"Cost":164,"Date":"12/8/2021"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":514,"Cost":366,"Date":"1/8/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":771,"Cost":611,"Date":"1/14/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":149,"Cost":124,"Date":"1/19/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":907,"Cost":770,"Date":"1/28/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":15,"Cost":13,"Date":"1/31/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":679,"Cost":600,"Date":"3/27/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":466,"Cost":331,"Date":"4/20/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":662,"Cost":478,"Date":"4/24/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":694,"Cost":395,"Date":"4/28/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":8,"Cost":5,"Date":"5/15/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":813,"Cost":714,"Date":"5/16/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":540,"Cost":274,"Date":"5/18/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":783,"Cost":610,"Date":"6/2/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":472,"Cost":258,"Date":"6/3/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":494,"Cost":462,"Date":"6/5/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":128,"Cost":68,"Date":"6/7/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":37,"Cost":30,"Date":"6/14/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":28,"Cost":17,"Date":"6/20/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":731,"Cost":586,"Date":"6/24/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":776,"Cost":513,"Date":"7/4/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":828,"Cost":476,"Date":"7/9/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":504,"Cost":418,"Date":"7/12/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":254,"Cost":222,"Date":"8/14/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":840,"Cost":633,"Date":"8/16/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":638,"Cost":424,"Date":"8/23/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":548,"Cost":322,"Date":"9/2/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":606,"Cost":405,"Date":"9/3/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":689,"Cost":590,"Date":"9/16/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":757,"Cost":479,"Date":"10/4/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":329,"Cost":270,"Date":"11/1/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":573,"Cost":388,"Date":"11/2/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":86,"Cost":59,"Date":"12/17/2022"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":356,"Cost":297,"Date":"2/10/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":296,"Cost":169,"Date":"2/28/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":651,"Cost":575,"Date":"3/4/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":445,"Cost":263,"Date":"3/9/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":487,"Cost":368,"Date":"3/9/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":338,"Cost":205,"Date":"3/11/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":628,"Cost":529,"Date":"3/17/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":977,"Cost":853,"Date":"3/17/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":139,"Cost":97,"Date":"3/23/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":923,"Cost":858,"Date":"4/1/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":258,"Cost":162,"Date":"5/7/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":768,"Cost":452,"Date":"5/10/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":292,"Cost":271,"Date":"5/20/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":572,"Cost":438,"Date":"6/2/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":347,"Cost":215,"Date":"6/11/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":818,"Cost":668,"Date":"6/16/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":365,"Cost":311,"Date":"6/16/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":62,"Cost":42,"Date":"7/10/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":439,"Cost":298,"Date":"7/11/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":806,"Cost":643,"Date":"8/28/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":95,"Cost":83,"Date":"8/29/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":608,"Cost":481,"Date":"8/31/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":299,"Cost":150,"Date":"9/8/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":890,"Cost":757,"Date":"9/13/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":832,"Cost":526,"Date":"9/14/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":866,"Cost":610,"Date":"9/19/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":62,"Cost":50,"Date":"9/25/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":472,"Cost":419,"Date":"10/4/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":326,"Cost":228,"Date":"10/10/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":350,"Cost":254,"Date":"10/17/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":909,"Cost":812,"Date":"10/28/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":11,"Cost":8,"Date":"10/30/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":682,"Cost":496,"Date":"11/1/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":15,"Cost":12,"Date":"11/15/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":966,"Cost":767,"Date":"11/25/2023"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":551,"Cost":409,"Date":"1/10/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":95,"Cost":58,"Date":"1/14/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":294,"Cost":226,"Date":"1/20/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":361,"Cost":226,"Date":"2/8/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":833,"Cost":462,"Date":"2/25/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":18,"Cost":13,"Date":"3/7/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":222,"Cost":146,"Date":"3/14/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":733,"Cost":488,"Date":"3/27/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":960,"Cost":518,"Date":"4/5/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":100,"Cost":57,"Date":"4/14/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":356,"Cost":212,"Date":"5/3/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":903,"Cost":625,"Date":"5/9/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":645,"Cost":444,"Date":"5/15/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":600,"Cost":333,"Date":"5/25/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":82,"Cost":73,"Date":"5/26/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":416,"Cost":299,"Date":"5/31/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":386,"Cost":284,"Date":"7/27/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":512,"Cost":373,"Date":"9/17/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":235,"Cost":135,"Date":"10/6/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":709,"Cost":532,"Date":"10/8/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":87,"Cost":63,"Date":"10/26/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":701,"Cost":355,"Date":"11/16/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":39,"Cost":36,"Date":"11/18/2024"},{"Store":"Turmstrasse, Berlin-Mitte","Brand":"Jeans","Country":"Germany","Sale":480,"Cost":349,"Date":"12/1/2024"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":24,"Cost":14,"Date":"2/9/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":353,"Cost":264,"Date":"2/11/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":697,"Cost":456,"Date":"3/10/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":164,"Cost":87,"Date":"3/16/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":842,"Cost":763,"Date":"3/18/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":878,"Cost":666,"Date":"3/20/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":102,"Cost":88,"Date":"3/26/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":182,"Cost":111,"Date":"6/2/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":385,"Cost":239,"Date":"6/10/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":118,"Cost":59,"Date":"6/16/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":238,"Cost":188,"Date":"6/25/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":841,"Cost":652,"Date":"7/19/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":904,"Cost":699,"Date":"7/21/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":438,"Cost":313,"Date":"7/25/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":145,"Cost":111,"Date":"8/4/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":913,"Cost":518,"Date":"9/2/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":364,"Cost":260,"Date":"9/4/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":643,"Cost":457,"Date":"9/19/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":289,"Cost":156,"Date":"9/29/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":45,"Cost":36,"Date":"10/2/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":598,"Cost":467,"Date":"10/15/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":8,"Cost":8,"Date":"10/30/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":115,"Cost":72,"Date":"11/9/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":791,"Cost":592,"Date":"11/23/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":4,"Cost":2,"Date":"11/30/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":675,"Cost":451,"Date":"12/8/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":301,"Cost":235,"Date":"12/11/2018"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":331,"Cost":176,"Date":"1/15/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":435,"Cost":229,"Date":"1/24/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":785,"Cost":490,"Date":"2/3/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":240,"Cost":217,"Date":"2/4/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":770,"Cost":528,"Date":"3/9/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":307,"Cost":211,"Date":"3/12/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":415,"Cost":226,"Date":"4/19/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":623,"Cost":456,"Date":"5/3/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":100,"Cost":55,"Date":"5/4/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":46,"Cost":37,"Date":"6/8/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":604,"Cost":461,"Date":"6/26/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":666,"Cost":471,"Date":"7/4/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":351,"Cost":252,"Date":"7/13/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":950,"Cost":616,"Date":"8/8/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":866,"Cost":500,"Date":"8/26/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":160,"Cost":91,"Date":"9/2/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":713,"Cost":466,"Date":"9/29/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":181,"Cost":135,"Date":"10/12/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":113,"Cost":59,"Date":"11/2/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":975,"Cost":873,"Date":"11/4/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":586,"Cost":297,"Date":"11/7/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":30,"Cost":16,"Date":"12/1/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":324,"Cost":171,"Date":"12/4/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":266,"Cost":149,"Date":"12/7/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":198,"Cost":113,"Date":"12/18/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":65,"Cost":38,"Date":"12/20/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":128,"Cost":95,"Date":"12/20/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":291,"Cost":256,"Date":"12/21/2019"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":854,"Cost":732,"Date":"1/9/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":284,"Cost":178,"Date":"2/5/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":457,"Cost":340,"Date":"2/16/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":318,"Cost":280,"Date":"2/16/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":892,"Cost":591,"Date":"2/18/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":749,"Cost":688,"Date":"2/22/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":526,"Cost":391,"Date":"2/25/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":891,"Cost":450,"Date":"3/8/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":941,"Cost":483,"Date":"4/2/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":739,"Cost":649,"Date":"4/3/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":866,"Cost":436,"Date":"4/9/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":807,"Cost":663,"Date":"4/10/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":519,"Cost":442,"Date":"4/19/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":537,"Cost":388,"Date":"5/17/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":231,"Cost":147,"Date":"5/22/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":82,"Cost":46,"Date":"6/20/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":304,"Cost":260,"Date":"7/1/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":645,"Cost":571,"Date":"7/4/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":736,"Cost":487,"Date":"7/8/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":128,"Cost":86,"Date":"7/9/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":710,"Cost":626,"Date":"7/14/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":540,"Cost":372,"Date":"7/19/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":39,"Cost":25,"Date":"8/1/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":564,"Cost":296,"Date":"8/6/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":427,"Cost":285,"Date":"8/7/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":804,"Cost":744,"Date":"8/22/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":961,"Cost":634,"Date":"8/31/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":186,"Cost":148,"Date":"9/1/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":496,"Cost":354,"Date":"9/1/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":764,"Cost":624,"Date":"9/17/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":324,"Cost":264,"Date":"9/29/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":11,"Cost":6,"Date":"11/7/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":356,"Cost":278,"Date":"11/26/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":58,"Cost":29,"Date":"11/27/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":701,"Cost":376,"Date":"12/5/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":677,"Cost":480,"Date":"12/26/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":877,"Cost":441,"Date":"12/31/2020"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":860,"Cost":753,"Date":"1/20/2021"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":111,"Cost":101,"Date":"2/2/2021"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":342,"Cost":236,"Date":"2/8/2021"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":835,"Cost":561,"Date":"2/27/2021"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":353,"Cost":289,"Date":"3/1/2021"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":154,"Cost":141,"Date":"3/1/2021"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":344,"Cost":297,"Date":"3/19/2021"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":500,"Cost":261,"Date":"3/28/2021"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":357,"Cost":322,"Date":"5/21/2021"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":288,"Cost":234,"Date":"7/21/2021"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":819,"Cost":628,"Date":"8/5/2021"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":763,"Cost":575,"Date":"8/12/2021"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":675,"Cost":452,"Date":"8/21/2021"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":458,"Cost":293,"Date":"8/23/2021"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":189,"Cost":99,"Date":"9/3/2021"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":928,"Cost":551,"Date":"9/5/2021"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":175,"Cost":109,"Date":"10/6/2021"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":397,"Cost":355,"Date":"10/19/2021"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":737,"Cost":635,"Date":"11/15/2021"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":185,"Cost":138,"Date":"12/8/2021"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":565,"Cost":499,"Date":"1/8/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":594,"Cost":420,"Date":"1/14/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":206,"Cost":110,"Date":"1/19/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":939,"Cost":800,"Date":"1/28/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":863,"Cost":650,"Date":"1/31/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":523,"Cost":435,"Date":"3/27/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":446,"Cost":355,"Date":"4/20/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":868,"Cost":459,"Date":"4/24/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":595,"Cost":405,"Date":"4/28/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":465,"Cost":340,"Date":"5/15/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":488,"Cost":284,"Date":"5/16/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":130,"Cost":108,"Date":"5/18/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":100,"Cost":74,"Date":"6/2/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":580,"Cost":458,"Date":"6/3/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":408,"Cost":273,"Date":"6/5/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":388,"Cost":353,"Date":"6/7/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":30,"Cost":24,"Date":"6/14/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":727,"Cost":560,"Date":"6/20/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":966,"Cost":741,"Date":"6/24/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":288,"Cost":197,"Date":"7/4/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":66,"Cost":50,"Date":"7/9/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":946,"Cost":751,"Date":"7/12/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":809,"Cost":504,"Date":"8/14/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":701,"Cost":441,"Date":"8/16/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":960,"Cost":588,"Date":"8/23/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":770,"Cost":417,"Date":"9/2/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":237,"Cost":172,"Date":"9/3/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":626,"Cost":422,"Date":"9/16/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":611,"Cost":532,"Date":"10/4/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":411,"Cost":374,"Date":"11/1/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":530,"Cost":350,"Date":"11/2/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":854,"Cost":439,"Date":"12/17/2022"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":744,"Cost":396,"Date":"2/10/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":152,"Cost":144,"Date":"2/28/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":476,"Cost":238,"Date":"3/4/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":173,"Cost":116,"Date":"3/9/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":593,"Cost":518,"Date":"3/9/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":37,"Cost":22,"Date":"3/11/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":660,"Cost":429,"Date":"3/17/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":59,"Cost":52,"Date":"3/17/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":530,"Cost":478,"Date":"3/23/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":434,"Cost":228,"Date":"4/1/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":777,"Cost":604,"Date":"5/7/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":859,"Cost":708,"Date":"5/10/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":469,"Cost":382,"Date":"5/20/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":899,"Cost":720,"Date":"6/2/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":606,"Cost":524,"Date":"6/11/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":96,"Cost":66,"Date":"6/16/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":198,"Cost":181,"Date":"6/16/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":225,"Cost":186,"Date":"7/10/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":631,"Cost":524,"Date":"7/11/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":122,"Cost":63,"Date":"8/28/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":791,"Cost":670,"Date":"8/29/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":966,"Cost":719,"Date":"8/31/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":925,"Cost":663,"Date":"9/8/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":558,"Cost":331,"Date":"9/13/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":940,"Cost":620,"Date":"9/14/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":326,"Cost":293,"Date":"9/19/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":880,"Cost":799,"Date":"9/25/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":29,"Cost":27,"Date":"10/4/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":916,"Cost":603,"Date":"10/10/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":724,"Cost":405,"Date":"10/17/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":362,"Cost":229,"Date":"10/28/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":122,"Cost":79,"Date":"10/30/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":422,"Cost":279,"Date":"11/1/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":323,"Cost":171,"Date":"11/15/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":355,"Cost":219,"Date":"11/25/2023"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":699,"Cost":422,"Date":"1/10/2024"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":137,"Cost":96,"Date":"1/14/2024"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":610,"Cost":536,"Date":"1/20/2024"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":171,"Cost":125,"Date":"2/8/2024"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":658,"Cost":447,"Date":"2/25/2024"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":526,"Cost":329,"Date":"3/7/2024"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":68,"Cost":48,"Date":"3/14/2024"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":10,"Cost":6,"Date":"3/27/2024"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":158,"Cost":111,"Date":"4/5/2024"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":782,"Cost":719,"Date":"4/14/2024"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":442,"Cost":391,"Date":"5/3/2024"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":833,"Cost":660,"Date":"5/9/2024"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":967,"Cost":894,"Date":"5/15/2024"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":942,"Cost":546,"Date":"5/25/2024"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":791,"Cost":672,"Date":"5/26/2024"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":769,"Cost":616,"Date":"5/31/2024"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":219,"Cost":129,"Date":"7/27/2024"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":938,"Cost":881,"Date":"9/17/2024"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":719,"Cost":509,"Date":"10/6/2024"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":893,"Cost":570,"Date":"10/8/2024"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":473,"Cost":388,"Date":"10/26/2024"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":138,"Cost":131,"Date":"11/16/2024"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":416,"Cost":323,"Date":"11/18/2024"},{"Store":"SeeCarree, Berlin","Brand":"Jeans","Country":"Germany","Sale":216,"Cost":169,"Date":"12/1/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":144,"Cost":118,"Date":"2/9/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":532,"Cost":384,"Date":"2/11/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":215,"Cost":111,"Date":"3/10/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":993,"Cost":816,"Date":"3/16/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":953,"Cost":879,"Date":"3/18/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":148,"Cost":86,"Date":"3/20/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":444,"Cost":327,"Date":"3/26/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":871,"Cost":507,"Date":"6/2/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":512,"Cost":450,"Date":"6/10/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":163,"Cost":109,"Date":"6/16/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":147,"Cost":124,"Date":"6/25/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":302,"Cost":263,"Date":"7/19/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":978,"Cost":694,"Date":"7/21/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":569,"Cost":514,"Date":"7/25/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":150,"Cost":132,"Date":"8/4/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":361,"Cost":217,"Date":"9/2/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":98,"Cost":84,"Date":"9/4/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":404,"Cost":229,"Date":"9/19/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":303,"Cost":208,"Date":"9/29/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":326,"Cost":225,"Date":"10/2/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":914,"Cost":618,"Date":"10/15/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":529,"Cost":339,"Date":"10/30/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":891,"Cost":827,"Date":"11/9/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":211,"Cost":163,"Date":"11/23/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":341,"Cost":288,"Date":"11/30/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":634,"Cost":406,"Date":"12/8/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":771,"Cost":631,"Date":"12/11/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":898,"Cost":543,"Date":"1/15/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":629,"Cost":360,"Date":"1/24/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":408,"Cost":342,"Date":"2/3/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":822,"Cost":440,"Date":"2/4/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":205,"Cost":138,"Date":"3/9/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":657,"Cost":544,"Date":"3/12/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":967,"Cost":872,"Date":"4/19/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":109,"Cost":66,"Date":"5/3/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":11,"Cost":10,"Date":"5/4/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":56,"Cost":49,"Date":"6/8/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":499,"Cost":367,"Date":"6/26/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":931,"Cost":615,"Date":"7/4/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":373,"Cost":311,"Date":"7/13/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":948,"Cost":769,"Date":"8/8/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":410,"Cost":287,"Date":"8/26/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":325,"Cost":168,"Date":"9/2/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":24,"Cost":13,"Date":"9/29/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":451,"Cost":345,"Date":"10/12/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":284,"Cost":208,"Date":"11/2/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":189,"Cost":104,"Date":"11/4/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":906,"Cost":805,"Date":"11/7/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":187,"Cost":161,"Date":"12/1/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":87,"Cost":74,"Date":"12/4/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":472,"Cost":412,"Date":"12/7/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":140,"Cost":130,"Date":"12/18/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":654,"Cost":574,"Date":"12/20/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":271,"Cost":225,"Date":"12/20/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":573,"Cost":299,"Date":"12/21/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":229,"Cost":172,"Date":"1/9/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":437,"Cost":354,"Date":"2/5/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":519,"Cost":275,"Date":"2/16/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":202,"Cost":128,"Date":"2/16/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":889,"Cost":723,"Date":"2/18/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":257,"Cost":137,"Date":"2/22/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":709,"Cost":422,"Date":"2/25/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":909,"Cost":611,"Date":"3/8/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":962,"Cost":669,"Date":"4/2/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":972,"Cost":631,"Date":"4/3/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":306,"Cost":247,"Date":"4/9/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":881,"Cost":589,"Date":"4/10/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":873,"Cost":711,"Date":"4/19/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":651,"Cost":416,"Date":"5/17/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":126,"Cost":80,"Date":"5/22/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":464,"Cost":375,"Date":"6/20/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":575,"Cost":478,"Date":"7/1/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":686,"Cost":592,"Date":"7/4/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":374,"Cost":208,"Date":"7/8/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":199,"Cost":174,"Date":"7/9/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":103,"Cost":75,"Date":"7/14/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":391,"Cost":235,"Date":"7/19/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":636,"Cost":534,"Date":"8/1/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":218,"Cost":144,"Date":"8/6/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":338,"Cost":207,"Date":"8/7/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":935,"Cost":887,"Date":"8/22/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":256,"Cost":170,"Date":"8/31/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":616,"Cost":353,"Date":"9/1/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":988,"Cost":682,"Date":"9/1/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":495,"Cost":361,"Date":"9/17/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":330,"Cost":291,"Date":"9/29/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":400,"Cost":372,"Date":"11/7/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":5,"Cost":5,"Date":"11/26/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":929,"Cost":742,"Date":"11/27/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":197,"Cost":117,"Date":"12/5/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":776,"Cost":653,"Date":"12/26/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":455,"Cost":311,"Date":"12/31/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":658,"Cost":340,"Date":"1/20/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":300,"Cost":160,"Date":"2/2/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":70,"Cost":40,"Date":"2/8/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":528,"Cost":280,"Date":"2/27/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":974,"Cost":667,"Date":"3/1/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":672,"Cost":569,"Date":"3/1/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":790,"Cost":683,"Date":"3/19/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":414,"Cost":383,"Date":"3/28/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":199,"Cost":143,"Date":"5/21/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":645,"Cost":391,"Date":"7/21/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":20,"Cost":19,"Date":"8/5/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":228,"Cost":207,"Date":"8/12/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":463,"Cost":310,"Date":"8/21/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":5,"Cost":4,"Date":"8/23/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":198,"Cost":175,"Date":"9/3/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":138,"Cost":112,"Date":"9/5/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":899,"Cost":677,"Date":"10/6/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":373,"Cost":258,"Date":"10/19/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":567,"Cost":499,"Date":"11/15/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":450,"Cost":306,"Date":"12/8/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":511,"Cost":284,"Date":"1/8/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":997,"Cost":930,"Date":"1/14/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":779,"Cost":594,"Date":"1/19/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":73,"Cost":59,"Date":"1/28/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":537,"Cost":353,"Date":"1/31/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":685,"Cost":632,"Date":"3/27/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":906,"Cost":541,"Date":"4/20/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":65,"Cost":45,"Date":"4/24/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":510,"Cost":429,"Date":"4/28/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":75,"Cost":70,"Date":"5/15/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":883,"Cost":655,"Date":"5/16/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":639,"Cost":488,"Date":"5/18/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":210,"Cost":185,"Date":"6/2/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":33,"Cost":18,"Date":"6/3/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":25,"Cost":18,"Date":"6/5/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":43,"Cost":35,"Date":"6/7/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":602,"Cost":517,"Date":"6/14/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":729,"Cost":487,"Date":"6/20/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":734,"Cost":566,"Date":"6/24/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":773,"Cost":546,"Date":"7/4/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":919,"Cost":713,"Date":"7/9/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":663,"Cost":421,"Date":"7/12/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":690,"Cost":608,"Date":"8/14/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":634,"Cost":341,"Date":"8/16/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":688,"Cost":425,"Date":"8/23/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":257,"Cost":216,"Date":"9/2/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":582,"Cost":353,"Date":"9/3/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":363,"Cost":187,"Date":"9/16/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":166,"Cost":130,"Date":"10/4/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":323,"Cost":278,"Date":"11/1/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":768,"Cost":550,"Date":"11/2/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":784,"Cost":723,"Date":"12/17/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":558,"Cost":296,"Date":"2/10/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":148,"Cost":104,"Date":"2/28/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":33,"Cost":20,"Date":"3/4/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":984,"Cost":751,"Date":"3/9/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":198,"Cost":116,"Date":"3/9/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":352,"Cost":274,"Date":"3/11/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":46,"Cost":37,"Date":"3/17/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":462,"Cost":232,"Date":"3/17/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":644,"Cost":503,"Date":"3/23/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":161,"Cost":133,"Date":"4/1/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":465,"Cost":273,"Date":"5/7/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":543,"Cost":516,"Date":"5/10/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":648,"Cost":392,"Date":"5/20/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":414,"Cost":319,"Date":"6/2/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":756,"Cost":624,"Date":"6/11/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":864,"Cost":717,"Date":"6/16/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":631,"Cost":465,"Date":"6/16/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":240,"Cost":188,"Date":"7/10/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":599,"Cost":529,"Date":"7/11/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":979,"Cost":883,"Date":"8/28/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":696,"Cost":559,"Date":"8/29/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":121,"Cost":71,"Date":"8/31/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":995,"Cost":695,"Date":"9/8/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":166,"Cost":92,"Date":"9/13/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":947,"Cost":832,"Date":"9/14/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":247,"Cost":138,"Date":"9/19/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":854,"Cost":718,"Date":"9/25/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":636,"Cost":360,"Date":"10/4/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":423,"Cost":250,"Date":"10/10/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":748,"Cost":450,"Date":"10/17/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":518,"Cost":400,"Date":"10/28/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":951,"Cost":681,"Date":"10/30/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":21,"Cost":13,"Date":"11/1/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":225,"Cost":166,"Date":"11/15/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":123,"Cost":75,"Date":"11/25/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":296,"Cost":219,"Date":"1/10/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":320,"Cost":268,"Date":"1/14/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":449,"Cost":391,"Date":"1/20/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":715,"Cost":380,"Date":"2/8/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":952,"Cost":739,"Date":"2/25/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":979,"Cost":649,"Date":"3/7/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":992,"Cost":823,"Date":"3/14/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":17,"Cost":15,"Date":"3/27/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":579,"Cost":526,"Date":"4/5/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":548,"Cost":512,"Date":"4/14/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":241,"Cost":191,"Date":"5/3/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":662,"Cost":419,"Date":"5/9/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":130,"Cost":77,"Date":"5/15/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":489,"Cost":352,"Date":"5/25/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":965,"Cost":624,"Date":"5/26/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":721,"Cost":457,"Date":"5/31/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":130,"Cost":114,"Date":"7/27/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":417,"Cost":301,"Date":"9/17/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":759,"Cost":393,"Date":"10/6/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":241,"Cost":174,"Date":"10/8/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":378,"Cost":246,"Date":"10/26/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":475,"Cost":382,"Date":"11/16/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":596,"Cost":561,"Date":"11/18/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM Home","Country":"Germany","Sale":177,"Cost":165,"Date":"12/1/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":160,"Cost":151,"Date":"2/9/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":636,"Cost":358,"Date":"2/11/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":743,"Cost":535,"Date":"3/10/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":395,"Cost":362,"Date":"3/16/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":489,"Cost":324,"Date":"3/18/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":559,"Cost":335,"Date":"3/20/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":480,"Cost":250,"Date":"3/26/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":38,"Cost":22,"Date":"6/2/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":846,"Cost":447,"Date":"6/10/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":477,"Cost":327,"Date":"6/16/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":19,"Cost":12,"Date":"6/25/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":898,"Cost":721,"Date":"7/19/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":577,"Cost":386,"Date":"7/21/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":29,"Cost":26,"Date":"7/25/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":334,"Cost":215,"Date":"8/4/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":748,"Cost":408,"Date":"9/2/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":255,"Cost":166,"Date":"9/4/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":197,"Cost":139,"Date":"9/19/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":503,"Cost":432,"Date":"9/29/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":645,"Cost":409,"Date":"10/2/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":235,"Cost":168,"Date":"10/15/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":800,"Cost":460,"Date":"10/30/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":386,"Cost":363,"Date":"11/9/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":76,"Cost":66,"Date":"11/23/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":699,"Cost":492,"Date":"11/30/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":147,"Cost":90,"Date":"12/8/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":342,"Cost":286,"Date":"12/11/2018"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":412,"Cost":360,"Date":"1/15/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":392,"Cost":313,"Date":"1/24/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":546,"Cost":311,"Date":"2/3/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":270,"Cost":248,"Date":"2/4/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":626,"Cost":560,"Date":"3/9/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":947,"Cost":558,"Date":"3/12/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":203,"Cost":164,"Date":"4/19/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":599,"Cost":406,"Date":"5/3/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":90,"Cost":69,"Date":"5/4/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":892,"Cost":676,"Date":"6/8/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":630,"Cost":471,"Date":"6/26/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":141,"Cost":116,"Date":"7/4/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":595,"Cost":511,"Date":"7/13/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":577,"Cost":472,"Date":"8/8/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":339,"Cost":315,"Date":"8/26/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":1000,"Cost":817,"Date":"9/2/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":960,"Cost":690,"Date":"9/29/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":633,"Cost":450,"Date":"10/12/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":303,"Cost":191,"Date":"11/2/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":489,"Cost":289,"Date":"11/4/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":782,"Cost":482,"Date":"11/7/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":52,"Cost":34,"Date":"12/1/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":28,"Cost":16,"Date":"12/4/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":357,"Cost":255,"Date":"12/7/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":60,"Cost":49,"Date":"12/18/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":650,"Cost":575,"Date":"12/20/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":248,"Cost":136,"Date":"12/20/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":690,"Cost":523,"Date":"12/21/2019"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":56,"Cost":51,"Date":"1/9/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":486,"Cost":459,"Date":"2/5/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":35,"Cost":31,"Date":"2/16/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":408,"Cost":256,"Date":"2/16/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":249,"Cost":233,"Date":"2/18/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":784,"Cost":715,"Date":"2/22/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":414,"Cost":253,"Date":"2/25/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":349,"Cost":238,"Date":"3/8/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":111,"Cost":73,"Date":"4/2/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":650,"Cost":566,"Date":"4/3/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":768,"Cost":411,"Date":"4/9/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":41,"Cost":22,"Date":"4/10/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":852,"Cost":547,"Date":"4/19/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":490,"Cost":328,"Date":"5/17/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":284,"Cost":208,"Date":"5/22/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":613,"Cost":394,"Date":"6/20/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":593,"Cost":492,"Date":"7/1/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":110,"Cost":76,"Date":"7/4/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":876,"Cost":467,"Date":"7/8/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":666,"Cost":619,"Date":"7/9/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":74,"Cost":48,"Date":"7/14/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":703,"Cost":499,"Date":"7/19/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":534,"Cost":469,"Date":"8/1/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":843,"Cost":678,"Date":"8/6/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":335,"Cost":203,"Date":"8/7/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":559,"Cost":490,"Date":"8/22/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":574,"Cost":467,"Date":"8/31/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":791,"Cost":491,"Date":"9/1/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":828,"Cost":655,"Date":"9/1/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":771,"Cost":582,"Date":"9/17/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":903,"Cost":814,"Date":"9/29/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":919,"Cost":637,"Date":"11/7/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":894,"Cost":495,"Date":"11/26/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":904,"Cost":626,"Date":"11/27/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":660,"Cost":552,"Date":"12/5/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":983,"Cost":870,"Date":"12/26/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":281,"Cost":210,"Date":"12/31/2020"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":545,"Cost":393,"Date":"1/20/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":827,"Cost":680,"Date":"2/2/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":922,"Cost":787,"Date":"2/8/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":25,"Cost":17,"Date":"2/27/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":248,"Cost":125,"Date":"3/1/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":157,"Cost":110,"Date":"3/1/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":120,"Cost":98,"Date":"3/19/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":780,"Cost":736,"Date":"3/28/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":417,"Cost":383,"Date":"5/21/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":451,"Cost":289,"Date":"7/21/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":43,"Cost":26,"Date":"8/5/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":434,"Cost":402,"Date":"8/12/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":916,"Cost":648,"Date":"8/21/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":22,"Cost":17,"Date":"8/23/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":838,"Cost":749,"Date":"9/3/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":16,"Cost":12,"Date":"9/5/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":477,"Cost":373,"Date":"10/6/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":308,"Cost":187,"Date":"10/19/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":412,"Cost":367,"Date":"11/15/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":496,"Cost":359,"Date":"12/8/2021"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":157,"Cost":146,"Date":"1/8/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":430,"Cost":391,"Date":"1/14/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":134,"Cost":73,"Date":"1/19/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":162,"Cost":111,"Date":"1/28/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":982,"Cost":815,"Date":"1/31/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":205,"Cost":139,"Date":"3/27/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":205,"Cost":169,"Date":"4/20/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":844,"Cost":519,"Date":"4/24/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":923,"Cost":607,"Date":"4/28/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":673,"Cost":533,"Date":"5/15/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":208,"Cost":129,"Date":"5/16/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":236,"Cost":190,"Date":"5/18/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":346,"Cost":220,"Date":"6/2/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":818,"Cost":585,"Date":"6/3/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":677,"Cost":585,"Date":"6/5/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":421,"Cost":394,"Date":"6/7/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":113,"Cost":92,"Date":"6/14/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":572,"Cost":303,"Date":"6/20/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":390,"Cost":211,"Date":"6/24/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":530,"Cost":325,"Date":"7/4/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":218,"Cost":208,"Date":"7/9/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":726,"Cost":385,"Date":"7/12/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":393,"Cost":278,"Date":"8/14/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":277,"Cost":207,"Date":"8/16/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":901,"Cost":470,"Date":"8/23/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":716,"Cost":628,"Date":"9/2/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":460,"Cost":362,"Date":"9/3/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":755,"Cost":515,"Date":"9/16/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":685,"Cost":573,"Date":"10/4/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":406,"Cost":208,"Date":"11/1/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":700,"Cost":555,"Date":"11/2/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":952,"Cost":592,"Date":"12/17/2022"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":915,"Cost":480,"Date":"2/10/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":481,"Cost":349,"Date":"2/28/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":416,"Cost":224,"Date":"3/4/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":209,"Cost":176,"Date":"3/9/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":584,"Cost":399,"Date":"3/9/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":177,"Cost":129,"Date":"3/11/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":513,"Cost":281,"Date":"3/17/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":734,"Cost":376,"Date":"3/17/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":29,"Cost":25,"Date":"3/23/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":569,"Cost":391,"Date":"4/1/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":886,"Cost":531,"Date":"5/7/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":1,"Cost":1,"Date":"5/10/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":703,"Cost":621,"Date":"5/20/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":938,"Cost":526,"Date":"6/2/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":931,"Cost":819,"Date":"6/11/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":223,"Cost":119,"Date":"6/16/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":66,"Cost":44,"Date":"6/16/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":103,"Cost":75,"Date":"7/10/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":817,"Cost":551,"Date":"7/11/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":314,"Cost":220,"Date":"8/28/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":519,"Cost":455,"Date":"8/29/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":245,"Cost":165,"Date":"8/31/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":864,"Cost":528,"Date":"9/8/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":642,"Cost":607,"Date":"9/13/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":899,"Cost":535,"Date":"9/14/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":532,"Cost":401,"Date":"9/19/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":981,"Cost":698,"Date":"9/25/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":644,"Cost":579,"Date":"10/4/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":47,"Cost":23,"Date":"10/10/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":203,"Cost":168,"Date":"10/17/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":71,"Cost":48,"Date":"10/28/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":218,"Cost":160,"Date":"10/30/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":203,"Cost":124,"Date":"11/1/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":206,"Cost":158,"Date":"11/15/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":869,"Cost":575,"Date":"11/25/2023"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":922,"Cost":550,"Date":"1/10/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":943,"Cost":500,"Date":"1/14/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":256,"Cost":160,"Date":"1/20/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":981,"Cost":579,"Date":"2/8/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":356,"Cost":234,"Date":"2/25/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":270,"Cost":254,"Date":"3/7/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":900,"Cost":672,"Date":"3/14/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":444,"Cost":225,"Date":"3/27/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":356,"Cost":234,"Date":"4/5/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":267,"Cost":243,"Date":"4/14/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":575,"Cost":409,"Date":"5/3/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":190,"Cost":98,"Date":"5/9/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":143,"Cost":136,"Date":"5/15/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":870,"Cost":505,"Date":"5/25/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":562,"Cost":506,"Date":"5/26/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":786,"Cost":529,"Date":"5/31/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":524,"Cost":284,"Date":"7/27/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":290,"Cost":162,"Date":"9/17/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":370,"Cost":313,"Date":"10/6/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":902,"Cost":509,"Date":"10/8/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":575,"Cost":443,"Date":"10/26/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":720,"Cost":522,"Date":"11/16/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":559,"Cost":284,"Date":"11/18/2024"},{"Store":"SeeCarree, Berlin","Brand":"HM","Country":"Germany","Sale":514,"Cost":475,"Date":"12/1/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":188,"Cost":171,"Date":"2/9/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":604,"Cost":534,"Date":"2/11/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":854,"Cost":747,"Date":"3/10/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":793,"Cost":540,"Date":"3/16/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":160,"Cost":95,"Date":"3/18/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":349,"Cost":280,"Date":"3/20/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":880,"Cost":539,"Date":"3/26/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":480,"Cost":417,"Date":"6/2/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":873,"Cost":573,"Date":"6/10/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":279,"Cost":157,"Date":"6/16/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":946,"Cost":545,"Date":"6/25/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":288,"Cost":178,"Date":"7/19/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":73,"Cost":69,"Date":"7/21/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":800,"Cost":430,"Date":"7/25/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":303,"Cost":201,"Date":"8/4/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":703,"Cost":561,"Date":"9/2/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":504,"Cost":426,"Date":"9/4/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":574,"Cost":526,"Date":"9/19/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":594,"Cost":536,"Date":"9/29/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":339,"Cost":225,"Date":"10/2/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":182,"Cost":155,"Date":"10/15/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":15,"Cost":9,"Date":"10/30/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":136,"Cost":75,"Date":"11/9/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":741,"Cost":685,"Date":"11/23/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":284,"Cost":188,"Date":"11/30/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":890,"Cost":458,"Date":"12/8/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":531,"Cost":446,"Date":"12/11/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":799,"Cost":635,"Date":"1/15/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":744,"Cost":514,"Date":"1/24/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":340,"Cost":306,"Date":"2/3/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":414,"Cost":248,"Date":"2/4/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":869,"Cost":545,"Date":"3/9/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":461,"Cost":304,"Date":"3/12/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":1,"Cost":0,"Date":"4/19/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":892,"Cost":486,"Date":"5/3/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":934,"Cost":715,"Date":"5/4/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":292,"Cost":215,"Date":"6/8/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":748,"Cost":446,"Date":"6/26/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":249,"Cost":220,"Date":"7/4/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":261,"Cost":220,"Date":"7/13/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":519,"Cost":290,"Date":"8/8/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":569,"Cost":419,"Date":"8/26/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":887,"Cost":570,"Date":"9/2/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":621,"Cost":355,"Date":"9/29/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":387,"Cost":326,"Date":"10/12/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":489,"Cost":290,"Date":"11/2/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":983,"Cost":510,"Date":"11/4/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":802,"Cost":541,"Date":"11/7/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":2,"Cost":2,"Date":"12/1/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":577,"Cost":478,"Date":"12/4/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":422,"Cost":346,"Date":"12/7/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":77,"Cost":43,"Date":"12/18/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":870,"Cost":611,"Date":"12/20/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":995,"Cost":811,"Date":"12/20/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":189,"Cost":166,"Date":"12/21/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":499,"Cost":371,"Date":"1/9/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":566,"Cost":529,"Date":"2/5/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":716,"Cost":409,"Date":"2/16/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":283,"Cost":262,"Date":"2/16/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":410,"Cost":243,"Date":"2/18/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":361,"Cost":216,"Date":"2/22/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":223,"Cost":177,"Date":"2/25/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":345,"Cost":174,"Date":"3/8/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":111,"Cost":79,"Date":"4/2/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":994,"Cost":897,"Date":"4/3/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":54,"Cost":36,"Date":"4/9/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":560,"Cost":512,"Date":"4/10/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":90,"Cost":67,"Date":"4/19/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":841,"Cost":563,"Date":"5/17/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":475,"Cost":362,"Date":"5/22/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":371,"Cost":213,"Date":"6/20/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":455,"Cost":311,"Date":"7/1/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":580,"Cost":377,"Date":"7/4/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":997,"Cost":624,"Date":"7/8/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":864,"Cost":504,"Date":"7/9/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":164,"Cost":138,"Date":"7/14/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":927,"Cost":839,"Date":"7/19/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":444,"Cost":311,"Date":"8/1/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":472,"Cost":363,"Date":"8/6/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":289,"Cost":210,"Date":"8/7/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":483,"Cost":282,"Date":"8/22/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":231,"Cost":145,"Date":"8/31/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":193,"Cost":104,"Date":"9/1/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":413,"Cost":387,"Date":"9/1/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":401,"Cost":348,"Date":"9/17/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":79,"Cost":46,"Date":"9/29/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":905,"Cost":694,"Date":"11/7/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":74,"Cost":59,"Date":"11/26/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":496,"Cost":281,"Date":"11/27/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":468,"Cost":322,"Date":"12/5/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":517,"Cost":364,"Date":"12/26/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":540,"Cost":478,"Date":"12/31/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":564,"Cost":531,"Date":"1/20/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":833,"Cost":593,"Date":"2/2/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":218,"Cost":109,"Date":"2/8/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":763,"Cost":635,"Date":"2/27/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":916,"Cost":749,"Date":"3/1/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":423,"Cost":332,"Date":"3/1/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":691,"Cost":497,"Date":"3/19/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":295,"Cost":240,"Date":"3/28/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":43,"Cost":23,"Date":"5/21/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":233,"Cost":129,"Date":"7/21/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":580,"Cost":320,"Date":"8/5/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":380,"Cost":221,"Date":"8/12/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":48,"Cost":25,"Date":"8/21/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":597,"Cost":562,"Date":"8/23/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":855,"Cost":538,"Date":"9/3/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":533,"Cost":457,"Date":"9/5/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":110,"Cost":59,"Date":"10/6/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":589,"Cost":528,"Date":"10/19/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":399,"Cost":377,"Date":"11/15/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":587,"Cost":370,"Date":"12/8/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":466,"Cost":426,"Date":"1/8/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":382,"Cost":249,"Date":"1/14/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":495,"Cost":286,"Date":"1/19/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":651,"Cost":356,"Date":"1/28/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":965,"Cost":913,"Date":"1/31/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":362,"Cost":307,"Date":"3/27/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":438,"Cost":231,"Date":"4/20/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":857,"Cost":757,"Date":"4/24/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":448,"Cost":374,"Date":"4/28/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":413,"Cost":325,"Date":"5/15/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":646,"Cost":425,"Date":"5/16/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":834,"Cost":619,"Date":"5/18/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":969,"Cost":613,"Date":"6/2/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":88,"Cost":72,"Date":"6/3/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":389,"Cost":306,"Date":"6/5/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":660,"Cost":569,"Date":"6/7/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":213,"Cost":166,"Date":"6/14/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":107,"Cost":81,"Date":"6/20/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":70,"Cost":64,"Date":"6/24/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":410,"Cost":239,"Date":"7/4/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":783,"Cost":490,"Date":"7/9/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":7,"Cost":6,"Date":"7/12/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":442,"Cost":291,"Date":"8/14/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":51,"Cost":38,"Date":"8/16/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":266,"Cost":150,"Date":"8/23/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":792,"Cost":455,"Date":"9/2/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":30,"Cost":29,"Date":"9/3/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":897,"Cost":553,"Date":"9/16/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":996,"Cost":606,"Date":"10/4/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":744,"Cost":436,"Date":"11/1/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":18,"Cost":14,"Date":"11/2/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":672,"Cost":382,"Date":"12/17/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":414,"Cost":264,"Date":"2/10/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":322,"Cost":245,"Date":"2/28/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":916,"Cost":817,"Date":"3/4/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":745,"Cost":693,"Date":"3/9/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":297,"Cost":174,"Date":"3/9/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":83,"Cost":47,"Date":"3/11/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":784,"Cost":529,"Date":"3/17/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":407,"Cost":265,"Date":"3/17/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":597,"Cost":451,"Date":"3/23/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":860,"Cost":715,"Date":"4/1/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":293,"Cost":273,"Date":"5/7/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":315,"Cost":282,"Date":"5/10/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":704,"Cost":420,"Date":"5/20/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":296,"Cost":279,"Date":"6/2/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":361,"Cost":335,"Date":"6/11/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":389,"Cost":325,"Date":"6/16/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":547,"Cost":483,"Date":"6/16/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":449,"Cost":273,"Date":"7/10/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":218,"Cost":171,"Date":"7/11/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":714,"Cost":560,"Date":"8/28/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":221,"Cost":200,"Date":"8/29/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":29,"Cost":16,"Date":"8/31/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":133,"Cost":85,"Date":"9/8/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":535,"Cost":437,"Date":"9/13/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":232,"Cost":119,"Date":"9/14/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":730,"Cost":600,"Date":"9/19/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":708,"Cost":610,"Date":"9/25/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":560,"Cost":503,"Date":"10/4/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":367,"Cost":260,"Date":"10/10/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":9,"Cost":6,"Date":"10/17/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":425,"Cost":333,"Date":"10/28/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":409,"Cost":239,"Date":"10/30/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":805,"Cost":763,"Date":"11/1/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":36,"Cost":30,"Date":"11/15/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":974,"Cost":563,"Date":"11/25/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":417,"Cost":229,"Date":"1/10/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":287,"Cost":260,"Date":"1/14/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":611,"Cost":383,"Date":"1/20/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":39,"Cost":25,"Date":"2/8/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":617,"Cost":578,"Date":"2/25/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":93,"Cost":54,"Date":"3/7/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":87,"Cost":81,"Date":"3/14/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":764,"Cost":649,"Date":"3/27/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":264,"Cost":240,"Date":"4/5/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":808,"Cost":589,"Date":"4/14/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":11,"Cost":11,"Date":"5/3/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":982,"Cost":867,"Date":"5/9/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":205,"Cost":164,"Date":"5/15/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":911,"Cost":809,"Date":"5/25/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":962,"Cost":904,"Date":"5/26/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":800,"Cost":581,"Date":"5/31/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":210,"Cost":175,"Date":"7/27/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":995,"Cost":572,"Date":"9/17/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":789,"Cost":403,"Date":"10/6/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":41,"Cost":38,"Date":"10/8/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":676,"Cost":353,"Date":"10/26/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":20,"Cost":10,"Date":"11/16/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":614,"Cost":434,"Date":"11/18/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":144,"Cost":110,"Date":"12/1/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":92,"Cost":53,"Date":"2/9/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":211,"Cost":171,"Date":"2/11/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":595,"Cost":307,"Date":"3/10/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":757,"Cost":429,"Date":"3/16/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":313,"Cost":206,"Date":"3/18/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":322,"Cost":187,"Date":"3/20/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":279,"Cost":175,"Date":"3/26/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":472,"Cost":409,"Date":"6/2/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":403,"Cost":333,"Date":"6/10/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":347,"Cost":230,"Date":"6/16/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":237,"Cost":187,"Date":"6/25/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":351,"Cost":193,"Date":"7/19/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":48,"Cost":29,"Date":"7/21/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":814,"Cost":599,"Date":"7/25/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":677,"Cost":597,"Date":"8/4/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":98,"Cost":90,"Date":"9/2/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":718,"Cost":514,"Date":"9/4/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":198,"Cost":186,"Date":"9/19/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":335,"Cost":239,"Date":"9/29/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":760,"Cost":473,"Date":"10/2/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":389,"Cost":199,"Date":"10/15/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":245,"Cost":184,"Date":"10/30/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":865,"Cost":483,"Date":"11/9/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":342,"Cost":312,"Date":"11/23/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":523,"Cost":458,"Date":"11/30/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":381,"Cost":238,"Date":"12/8/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":442,"Cost":244,"Date":"12/11/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":307,"Cost":276,"Date":"1/15/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":505,"Cost":471,"Date":"1/24/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":742,"Cost":569,"Date":"2/3/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":518,"Cost":479,"Date":"2/4/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":637,"Cost":511,"Date":"3/9/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":582,"Cost":533,"Date":"3/12/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":215,"Cost":149,"Date":"4/19/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":18,"Cost":16,"Date":"5/3/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":97,"Cost":64,"Date":"5/4/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":501,"Cost":405,"Date":"6/8/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":979,"Cost":913,"Date":"6/26/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":650,"Cost":469,"Date":"7/4/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":444,"Cost":240,"Date":"7/13/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":160,"Cost":133,"Date":"8/8/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":773,"Cost":396,"Date":"8/26/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":780,"Cost":392,"Date":"9/2/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":586,"Cost":472,"Date":"9/29/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":3,"Cost":2,"Date":"10/12/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":317,"Cost":200,"Date":"11/2/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":519,"Cost":471,"Date":"11/4/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":474,"Cost":417,"Date":"11/7/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":815,"Cost":758,"Date":"12/1/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":723,"Cost":612,"Date":"12/4/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":940,"Cost":889,"Date":"12/7/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":764,"Cost":448,"Date":"12/18/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":920,"Cost":760,"Date":"12/20/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":810,"Cost":663,"Date":"12/20/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":159,"Cost":86,"Date":"12/21/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":177,"Cost":134,"Date":"1/9/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":464,"Cost":331,"Date":"2/5/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":973,"Cost":495,"Date":"2/16/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":106,"Cost":84,"Date":"2/16/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":972,"Cost":790,"Date":"2/18/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":581,"Cost":322,"Date":"2/22/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":711,"Cost":632,"Date":"2/25/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":162,"Cost":149,"Date":"3/8/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":899,"Cost":783,"Date":"4/2/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":500,"Cost":372,"Date":"4/3/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":506,"Cost":253,"Date":"4/9/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":465,"Cost":365,"Date":"4/10/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":962,"Cost":816,"Date":"4/19/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":783,"Cost":464,"Date":"5/17/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":941,"Cost":842,"Date":"5/22/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":546,"Cost":306,"Date":"6/20/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":729,"Cost":647,"Date":"7/1/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":519,"Cost":397,"Date":"7/4/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":635,"Cost":429,"Date":"7/8/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":340,"Cost":216,"Date":"7/9/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":939,"Cost":806,"Date":"7/14/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":81,"Cost":41,"Date":"7/19/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":105,"Cost":54,"Date":"8/1/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":290,"Cost":264,"Date":"8/6/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":932,"Cost":719,"Date":"8/7/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":936,"Cost":606,"Date":"8/22/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":733,"Cost":518,"Date":"8/31/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":568,"Cost":451,"Date":"9/1/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":547,"Cost":337,"Date":"9/1/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":857,"Cost":723,"Date":"9/17/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":595,"Cost":397,"Date":"9/29/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":355,"Cost":261,"Date":"11/7/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":922,"Cost":520,"Date":"11/26/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":458,"Cost":350,"Date":"11/27/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":612,"Cost":392,"Date":"12/5/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":219,"Cost":127,"Date":"12/26/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":758,"Cost":602,"Date":"12/31/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":905,"Cost":472,"Date":"1/20/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":1,"Cost":0,"Date":"2/2/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":693,"Cost":441,"Date":"2/8/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":831,"Cost":772,"Date":"2/27/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":973,"Cost":725,"Date":"3/1/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":176,"Cost":96,"Date":"3/1/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":380,"Cost":335,"Date":"3/19/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":931,"Cost":750,"Date":"3/28/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":475,"Cost":313,"Date":"5/21/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":321,"Cost":187,"Date":"7/21/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":860,"Cost":499,"Date":"8/5/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":142,"Cost":108,"Date":"8/12/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":803,"Cost":759,"Date":"8/21/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":953,"Cost":481,"Date":"8/23/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":888,"Cost":797,"Date":"9/3/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":511,"Cost":477,"Date":"9/5/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":902,"Cost":605,"Date":"10/6/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":583,"Cost":294,"Date":"10/19/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":819,"Cost":475,"Date":"11/15/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":671,"Cost":566,"Date":"12/8/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":861,"Cost":443,"Date":"1/8/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":612,"Cost":467,"Date":"1/14/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":320,"Cost":295,"Date":"1/19/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":792,"Cost":407,"Date":"1/28/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":419,"Cost":301,"Date":"1/31/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":253,"Cost":231,"Date":"3/27/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":613,"Cost":529,"Date":"4/20/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":430,"Cost":372,"Date":"4/24/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":691,"Cost":506,"Date":"4/28/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":471,"Cost":316,"Date":"5/15/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":98,"Cost":52,"Date":"5/16/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":175,"Cost":160,"Date":"5/18/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":821,"Cost":737,"Date":"6/2/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":434,"Cost":269,"Date":"6/3/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":750,"Cost":571,"Date":"6/5/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":911,"Cost":838,"Date":"6/7/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":846,"Cost":686,"Date":"6/14/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":993,"Cost":741,"Date":"6/20/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":691,"Cost":489,"Date":"6/24/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":32,"Cost":20,"Date":"7/4/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":285,"Cost":236,"Date":"7/9/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":524,"Cost":370,"Date":"7/12/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":931,"Cost":670,"Date":"8/14/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":94,"Cost":69,"Date":"8/16/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":779,"Cost":401,"Date":"8/23/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":762,"Cost":514,"Date":"9/2/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":67,"Cost":63,"Date":"9/3/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":840,"Cost":566,"Date":"9/16/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":113,"Cost":101,"Date":"10/4/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":97,"Cost":80,"Date":"11/1/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":733,"Cost":456,"Date":"11/2/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":308,"Cost":240,"Date":"12/17/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":633,"Cost":515,"Date":"2/10/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":306,"Cost":283,"Date":"2/28/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":388,"Cost":237,"Date":"3/4/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":599,"Cost":451,"Date":"3/9/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":866,"Cost":515,"Date":"3/9/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":531,"Cost":422,"Date":"3/11/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":626,"Cost":527,"Date":"3/17/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":41,"Cost":30,"Date":"3/17/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":648,"Cost":349,"Date":"3/23/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":68,"Cost":44,"Date":"4/1/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":358,"Cost":188,"Date":"5/7/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":586,"Cost":404,"Date":"5/10/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":448,"Cost":352,"Date":"5/20/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":727,"Cost":610,"Date":"6/2/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":672,"Cost":554,"Date":"6/11/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":67,"Cost":45,"Date":"6/16/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":412,"Cost":235,"Date":"6/16/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":268,"Cost":161,"Date":"7/10/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":609,"Cost":483,"Date":"7/11/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":19,"Cost":10,"Date":"8/28/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":413,"Cost":391,"Date":"8/29/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":770,"Cost":569,"Date":"8/31/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":225,"Cost":173,"Date":"9/8/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":754,"Cost":498,"Date":"9/13/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":796,"Cost":502,"Date":"9/14/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":365,"Cost":273,"Date":"9/19/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":454,"Cost":260,"Date":"9/25/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":453,"Cost":263,"Date":"10/4/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":810,"Cost":514,"Date":"10/10/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":837,"Cost":537,"Date":"10/17/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":887,"Cost":822,"Date":"10/28/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":346,"Cost":199,"Date":"10/30/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":217,"Cost":198,"Date":"11/1/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":147,"Cost":77,"Date":"11/15/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":276,"Cost":143,"Date":"11/25/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":527,"Cost":486,"Date":"1/10/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":396,"Cost":306,"Date":"1/14/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":953,"Cost":484,"Date":"1/20/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":206,"Cost":146,"Date":"2/8/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":734,"Cost":517,"Date":"2/25/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":937,"Cost":794,"Date":"3/7/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":430,"Cost":221,"Date":"3/14/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":521,"Cost":432,"Date":"3/27/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":360,"Cost":213,"Date":"4/5/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":96,"Cost":68,"Date":"4/14/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":511,"Cost":335,"Date":"5/3/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":244,"Cost":166,"Date":"5/9/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":301,"Cost":229,"Date":"5/15/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":889,"Cost":761,"Date":"5/25/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":846,"Cost":756,"Date":"5/26/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":448,"Cost":352,"Date":"5/31/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":136,"Cost":91,"Date":"7/27/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":696,"Cost":530,"Date":"9/17/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":178,"Cost":160,"Date":"10/6/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":374,"Cost":239,"Date":"10/8/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":789,"Cost":426,"Date":"10/26/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":389,"Cost":331,"Date":"11/16/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":527,"Cost":281,"Date":"11/18/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM","Country":"Bulgaria","Sale":728,"Cost":415,"Date":"12/1/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":521,"Cost":364,"Date":"2/9/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":82,"Cost":76,"Date":"2/11/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":995,"Cost":807,"Date":"3/10/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":333,"Cost":209,"Date":"3/16/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":383,"Cost":229,"Date":"3/18/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":93,"Cost":77,"Date":"3/20/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":10,"Cost":10,"Date":"3/26/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":961,"Cost":634,"Date":"6/2/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":186,"Cost":96,"Date":"6/10/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":334,"Cost":249,"Date":"6/16/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":77,"Cost":69,"Date":"6/25/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":625,"Cost":566,"Date":"7/19/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":547,"Cost":408,"Date":"7/21/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":957,"Cost":813,"Date":"7/25/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":171,"Cost":102,"Date":"8/4/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":355,"Cost":259,"Date":"9/2/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":976,"Cost":544,"Date":"9/4/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":824,"Cost":778,"Date":"9/19/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":374,"Cost":289,"Date":"9/29/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":954,"Cost":880,"Date":"10/2/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":849,"Cost":434,"Date":"10/15/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":919,"Cost":606,"Date":"10/30/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":124,"Cost":109,"Date":"11/9/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":328,"Cost":256,"Date":"11/23/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":660,"Cost":332,"Date":"11/30/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":766,"Cost":574,"Date":"12/8/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":855,"Cost":558,"Date":"12/11/2018"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":84,"Cost":63,"Date":"1/15/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":956,"Cost":849,"Date":"1/24/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":455,"Cost":294,"Date":"2/3/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":206,"Cost":127,"Date":"2/4/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":561,"Cost":434,"Date":"3/9/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":103,"Cost":61,"Date":"3/12/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":70,"Cost":65,"Date":"4/19/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":136,"Cost":94,"Date":"5/3/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":807,"Cost":476,"Date":"5/4/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":148,"Cost":86,"Date":"6/8/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":102,"Cost":54,"Date":"6/26/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":750,"Cost":487,"Date":"7/4/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":607,"Cost":442,"Date":"7/13/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":768,"Cost":478,"Date":"8/8/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":54,"Cost":49,"Date":"8/26/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":836,"Cost":517,"Date":"9/2/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":263,"Cost":177,"Date":"9/29/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":651,"Cost":587,"Date":"10/12/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":656,"Cost":496,"Date":"11/2/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":521,"Cost":382,"Date":"11/4/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":102,"Cost":53,"Date":"11/7/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":473,"Cost":413,"Date":"12/1/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":311,"Cost":188,"Date":"12/4/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":998,"Cost":706,"Date":"12/7/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":835,"Cost":623,"Date":"12/18/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":931,"Cost":477,"Date":"12/20/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":101,"Cost":91,"Date":"12/20/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":470,"Cost":318,"Date":"12/21/2019"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":766,"Cost":652,"Date":"1/9/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":591,"Cost":556,"Date":"2/5/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":279,"Cost":237,"Date":"2/16/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":678,"Cost":570,"Date":"2/16/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":749,"Cost":634,"Date":"2/18/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":544,"Cost":380,"Date":"2/22/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":709,"Cost":382,"Date":"2/25/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":737,"Cost":384,"Date":"3/8/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":526,"Cost":456,"Date":"4/2/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":479,"Cost":303,"Date":"4/3/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":343,"Cost":313,"Date":"4/9/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":137,"Cost":118,"Date":"4/10/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":911,"Cost":728,"Date":"4/19/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":798,"Cost":545,"Date":"5/17/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":149,"Cost":90,"Date":"5/22/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":37,"Cost":33,"Date":"6/20/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":386,"Cost":241,"Date":"7/1/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":549,"Cost":491,"Date":"7/4/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":843,"Cost":770,"Date":"7/8/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":187,"Cost":166,"Date":"7/9/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":811,"Cost":569,"Date":"7/14/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":854,"Cost":761,"Date":"7/19/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":239,"Cost":205,"Date":"8/1/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":200,"Cost":164,"Date":"8/6/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":657,"Cost":430,"Date":"8/7/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":655,"Cost":423,"Date":"8/22/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":952,"Cost":898,"Date":"8/31/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":750,"Cost":514,"Date":"9/1/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":587,"Cost":340,"Date":"9/1/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":540,"Cost":431,"Date":"9/17/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":420,"Cost":308,"Date":"9/29/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":314,"Cost":173,"Date":"11/7/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":64,"Cost":45,"Date":"11/26/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":491,"Cost":267,"Date":"11/27/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":381,"Cost":253,"Date":"12/5/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":69,"Cost":36,"Date":"12/26/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":758,"Cost":490,"Date":"12/31/2020"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":134,"Cost":102,"Date":"1/20/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":439,"Cost":370,"Date":"2/2/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":238,"Cost":128,"Date":"2/8/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":810,"Cost":420,"Date":"2/27/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":390,"Cost":313,"Date":"3/1/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":646,"Cost":519,"Date":"3/1/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":65,"Cost":48,"Date":"3/19/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":64,"Cost":59,"Date":"3/28/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":424,"Cost":322,"Date":"5/21/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":968,"Cost":686,"Date":"7/21/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":648,"Cost":551,"Date":"8/5/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":42,"Cost":27,"Date":"8/12/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":147,"Cost":136,"Date":"8/21/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":998,"Cost":559,"Date":"8/23/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":806,"Cost":498,"Date":"9/3/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":31,"Cost":23,"Date":"9/5/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":791,"Cost":457,"Date":"10/6/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":142,"Cost":72,"Date":"10/19/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":606,"Cost":536,"Date":"11/15/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":638,"Cost":606,"Date":"12/8/2021"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":833,"Cost":569,"Date":"1/8/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":534,"Cost":507,"Date":"1/14/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":856,"Cost":652,"Date":"1/19/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":94,"Cost":75,"Date":"1/28/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":633,"Cost":482,"Date":"1/31/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":974,"Cost":843,"Date":"3/27/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":574,"Cost":519,"Date":"4/20/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":520,"Cost":368,"Date":"4/24/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":504,"Cost":255,"Date":"4/28/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":444,"Cost":302,"Date":"5/15/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":388,"Cost":310,"Date":"5/16/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":755,"Cost":574,"Date":"5/18/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":624,"Cost":469,"Date":"6/2/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":859,"Cost":711,"Date":"6/3/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":668,"Cost":530,"Date":"6/5/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":518,"Cost":442,"Date":"6/7/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":401,"Cost":216,"Date":"6/14/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":793,"Cost":650,"Date":"6/20/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":961,"Cost":780,"Date":"6/24/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":10,"Cost":10,"Date":"7/4/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":725,"Cost":672,"Date":"7/9/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":446,"Cost":282,"Date":"7/12/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":543,"Cost":292,"Date":"8/14/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":775,"Cost":556,"Date":"8/16/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":138,"Cost":100,"Date":"8/23/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":232,"Cost":138,"Date":"9/2/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":616,"Cost":391,"Date":"9/3/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":535,"Cost":473,"Date":"9/16/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":900,"Cost":759,"Date":"10/4/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":864,"Cost":470,"Date":"11/1/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":927,"Cost":755,"Date":"11/2/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":745,"Cost":577,"Date":"12/17/2022"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":361,"Cost":262,"Date":"2/10/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":472,"Cost":261,"Date":"2/28/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":576,"Cost":419,"Date":"3/4/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":529,"Cost":295,"Date":"3/9/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":645,"Cost":506,"Date":"3/9/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":989,"Cost":771,"Date":"3/11/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":494,"Cost":378,"Date":"3/17/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":402,"Cost":369,"Date":"3/17/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":515,"Cost":281,"Date":"3/23/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":781,"Cost":674,"Date":"4/1/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":378,"Cost":345,"Date":"5/7/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":313,"Cost":211,"Date":"5/10/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":299,"Cost":273,"Date":"5/20/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":477,"Cost":320,"Date":"6/2/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":992,"Cost":918,"Date":"6/11/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":709,"Cost":370,"Date":"6/16/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":46,"Cost":30,"Date":"6/16/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":726,"Cost":604,"Date":"7/10/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":512,"Cost":285,"Date":"7/11/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":279,"Cost":160,"Date":"8/28/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":878,"Cost":617,"Date":"8/29/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":964,"Cost":808,"Date":"8/31/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":856,"Cost":631,"Date":"9/8/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":829,"Cost":743,"Date":"9/13/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":544,"Cost":391,"Date":"9/14/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":783,"Cost":466,"Date":"9/19/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":513,"Cost":314,"Date":"9/25/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":69,"Cost":41,"Date":"10/4/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":24,"Cost":22,"Date":"10/10/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":124,"Cost":80,"Date":"10/17/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":519,"Cost":412,"Date":"10/28/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":284,"Cost":148,"Date":"10/30/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":991,"Cost":543,"Date":"11/1/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":681,"Cost":591,"Date":"11/15/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":423,"Cost":223,"Date":"11/25/2023"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":605,"Cost":566,"Date":"1/10/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":707,"Cost":402,"Date":"1/14/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":332,"Cost":314,"Date":"1/20/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":457,"Cost":313,"Date":"2/8/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":250,"Cost":136,"Date":"2/25/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":9,"Cost":7,"Date":"3/7/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":158,"Cost":81,"Date":"3/14/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":533,"Cost":343,"Date":"3/27/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":211,"Cost":172,"Date":"4/5/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":167,"Cost":126,"Date":"4/14/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":127,"Cost":101,"Date":"5/3/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":802,"Cost":457,"Date":"5/9/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":919,"Cost":822,"Date":"5/15/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":440,"Cost":230,"Date":"5/25/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":313,"Cost":226,"Date":"5/26/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":735,"Cost":498,"Date":"5/31/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":175,"Cost":107,"Date":"7/27/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":299,"Cost":241,"Date":"9/17/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":415,"Cost":288,"Date":"10/6/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":685,"Cost":607,"Date":"10/8/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":82,"Cost":76,"Date":"10/26/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":45,"Cost":30,"Date":"11/16/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":276,"Cost":192,"Date":"11/18/2024"},{"Store":"Paradise Center, Sofia","Brand":"HM Home","Country":"Bulgaria","Sale":446,"Cost":239,"Date":"12/1/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":929,"Cost":501,"Date":"2/9/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":328,"Cost":183,"Date":"2/11/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":303,"Cost":269,"Date":"3/10/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":621,"Cost":481,"Date":"3/16/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":743,"Cost":512,"Date":"3/18/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":540,"Cost":331,"Date":"3/20/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":235,"Cost":162,"Date":"3/26/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":444,"Cost":261,"Date":"6/2/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":297,"Cost":246,"Date":"6/10/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":978,"Cost":798,"Date":"6/16/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":64,"Cost":59,"Date":"6/25/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":416,"Cost":260,"Date":"7/19/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":544,"Cost":437,"Date":"7/21/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":608,"Cost":439,"Date":"7/25/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":160,"Cost":110,"Date":"8/4/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":637,"Cost":540,"Date":"9/2/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":136,"Cost":74,"Date":"9/4/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":716,"Cost":383,"Date":"9/19/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":962,"Cost":592,"Date":"9/29/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":896,"Cost":682,"Date":"10/2/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":301,"Cost":153,"Date":"10/15/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":647,"Cost":510,"Date":"10/30/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":749,"Cost":459,"Date":"11/9/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":468,"Cost":302,"Date":"11/23/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":693,"Cost":573,"Date":"11/30/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":32,"Cost":26,"Date":"12/8/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":583,"Cost":374,"Date":"12/11/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":291,"Cost":272,"Date":"1/15/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":139,"Cost":74,"Date":"1/24/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":681,"Cost":449,"Date":"2/3/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":957,"Cost":495,"Date":"2/4/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":628,"Cost":565,"Date":"3/9/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":846,"Cost":765,"Date":"3/12/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":776,"Cost":525,"Date":"4/19/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":317,"Cost":285,"Date":"5/3/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":224,"Cost":212,"Date":"5/4/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":459,"Cost":303,"Date":"6/8/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":778,"Cost":549,"Date":"6/26/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":245,"Cost":170,"Date":"7/4/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":618,"Cost":348,"Date":"7/13/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":169,"Cost":104,"Date":"8/8/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":393,"Cost":341,"Date":"8/26/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":623,"Cost":360,"Date":"9/2/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":762,"Cost":625,"Date":"9/29/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":917,"Cost":691,"Date":"10/12/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":459,"Cost":397,"Date":"11/2/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":618,"Cost":505,"Date":"11/4/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":616,"Cost":361,"Date":"11/7/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":861,"Cost":714,"Date":"12/1/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":591,"Cost":390,"Date":"12/4/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":478,"Cost":242,"Date":"12/7/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":634,"Cost":523,"Date":"12/18/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":46,"Cost":25,"Date":"12/20/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":371,"Cost":323,"Date":"12/20/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":525,"Cost":342,"Date":"12/21/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":123,"Cost":84,"Date":"1/9/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":922,"Cost":793,"Date":"2/5/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":518,"Cost":262,"Date":"2/16/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":518,"Cost":439,"Date":"2/16/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":949,"Cost":592,"Date":"2/18/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":836,"Cost":495,"Date":"2/22/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":893,"Cost":757,"Date":"2/25/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":721,"Cost":385,"Date":"3/8/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":572,"Cost":514,"Date":"4/2/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":723,"Cost":472,"Date":"4/3/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":217,"Cost":125,"Date":"4/9/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":648,"Cost":555,"Date":"4/10/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":692,"Cost":552,"Date":"4/19/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":329,"Cost":265,"Date":"5/17/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":120,"Cost":100,"Date":"5/22/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":795,"Cost":679,"Date":"6/20/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":305,"Cost":230,"Date":"7/1/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":195,"Cost":102,"Date":"7/4/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":733,"Cost":654,"Date":"7/8/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":441,"Cost":406,"Date":"7/9/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":13,"Cost":9,"Date":"7/14/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":391,"Cost":367,"Date":"7/19/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":427,"Cost":303,"Date":"8/1/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":512,"Cost":481,"Date":"8/6/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":564,"Cost":299,"Date":"8/7/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":445,"Cost":242,"Date":"8/22/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":360,"Cost":188,"Date":"8/31/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":767,"Cost":727,"Date":"9/1/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":910,"Cost":498,"Date":"9/1/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":782,"Cost":605,"Date":"9/17/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":561,"Cost":392,"Date":"9/29/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":631,"Cost":433,"Date":"11/7/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":52,"Cost":41,"Date":"11/26/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":755,"Cost":435,"Date":"11/27/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":281,"Cost":168,"Date":"12/5/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":248,"Cost":205,"Date":"12/26/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":348,"Cost":208,"Date":"12/31/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":519,"Cost":409,"Date":"1/20/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":498,"Cost":376,"Date":"2/2/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":124,"Cost":62,"Date":"2/8/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":460,"Cost":348,"Date":"2/27/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":248,"Cost":168,"Date":"3/1/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":490,"Cost":312,"Date":"3/1/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":874,"Cost":491,"Date":"3/19/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":601,"Cost":396,"Date":"3/28/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":871,"Cost":720,"Date":"5/21/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":716,"Cost":541,"Date":"7/21/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":487,"Cost":425,"Date":"8/5/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":499,"Cost":352,"Date":"8/12/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":929,"Cost":574,"Date":"8/21/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":162,"Cost":124,"Date":"8/23/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":256,"Cost":147,"Date":"9/3/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":898,"Cost":489,"Date":"9/5/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":754,"Cost":542,"Date":"10/6/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":705,"Cost":355,"Date":"10/19/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":421,"Cost":393,"Date":"11/15/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":91,"Cost":79,"Date":"12/8/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":115,"Cost":67,"Date":"1/8/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":26,"Cost":13,"Date":"1/14/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":75,"Cost":67,"Date":"1/19/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":749,"Cost":389,"Date":"1/28/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":566,"Cost":485,"Date":"1/31/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":466,"Cost":323,"Date":"3/27/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":847,"Cost":466,"Date":"4/20/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":874,"Cost":710,"Date":"4/24/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":813,"Cost":596,"Date":"4/28/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":899,"Cost":675,"Date":"5/15/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":276,"Cost":227,"Date":"5/16/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":434,"Cost":340,"Date":"5/18/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":329,"Cost":231,"Date":"6/2/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":945,"Cost":532,"Date":"6/3/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":368,"Cost":256,"Date":"6/5/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":390,"Cost":298,"Date":"6/7/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":540,"Cost":317,"Date":"6/14/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":638,"Cost":504,"Date":"6/20/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":930,"Cost":606,"Date":"6/24/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":52,"Cost":43,"Date":"7/4/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":747,"Cost":632,"Date":"7/9/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":379,"Cost":261,"Date":"7/12/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":760,"Cost":553,"Date":"8/14/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":419,"Cost":344,"Date":"8/16/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":369,"Cost":232,"Date":"8/23/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":46,"Cost":35,"Date":"9/2/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":108,"Cost":87,"Date":"9/3/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":481,"Cost":289,"Date":"9/16/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":920,"Cost":488,"Date":"10/4/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":729,"Cost":486,"Date":"11/1/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":72,"Cost":37,"Date":"11/2/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":48,"Cost":30,"Date":"12/17/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":560,"Cost":454,"Date":"2/10/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":116,"Cost":86,"Date":"2/28/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":277,"Cost":235,"Date":"3/4/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":63,"Cost":37,"Date":"3/9/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":32,"Cost":18,"Date":"3/9/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":783,"Cost":393,"Date":"3/11/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":393,"Cost":260,"Date":"3/17/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":452,"Cost":337,"Date":"3/17/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":877,"Cost":756,"Date":"3/23/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":920,"Cost":638,"Date":"4/1/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":217,"Cost":113,"Date":"5/7/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":265,"Cost":246,"Date":"5/10/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":573,"Cost":344,"Date":"5/20/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":413,"Cost":234,"Date":"6/2/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":424,"Cost":368,"Date":"6/11/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":583,"Cost":298,"Date":"6/16/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":478,"Cost":350,"Date":"6/16/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":237,"Cost":141,"Date":"7/10/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":192,"Cost":177,"Date":"7/11/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":701,"Cost":637,"Date":"8/28/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":414,"Cost":346,"Date":"8/29/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":60,"Cost":46,"Date":"8/31/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":486,"Cost":390,"Date":"9/8/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":549,"Cost":337,"Date":"9/13/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":710,"Cost":569,"Date":"9/14/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":78,"Cost":70,"Date":"9/19/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":551,"Cost":372,"Date":"9/25/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":988,"Cost":688,"Date":"10/4/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":653,"Cost":527,"Date":"10/10/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":321,"Cost":165,"Date":"10/17/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":549,"Cost":385,"Date":"10/28/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":916,"Cost":634,"Date":"10/30/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":294,"Cost":178,"Date":"11/1/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":339,"Cost":211,"Date":"11/15/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":890,"Cost":499,"Date":"11/25/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":98,"Cost":51,"Date":"1/10/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":402,"Cost":309,"Date":"1/14/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":779,"Cost":617,"Date":"1/20/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":715,"Cost":637,"Date":"2/8/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":924,"Cost":850,"Date":"2/25/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":382,"Cost":248,"Date":"3/7/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":72,"Cost":48,"Date":"3/14/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":94,"Cost":79,"Date":"3/27/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":813,"Cost":703,"Date":"4/5/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":405,"Cost":335,"Date":"4/14/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":401,"Cost":282,"Date":"5/3/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":884,"Cost":820,"Date":"5/9/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":300,"Cost":229,"Date":"5/15/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":438,"Cost":364,"Date":"5/25/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":471,"Cost":258,"Date":"5/26/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":357,"Cost":180,"Date":"5/31/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":605,"Cost":457,"Date":"7/27/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":140,"Cost":80,"Date":"9/17/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":195,"Cost":178,"Date":"10/6/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":49,"Cost":39,"Date":"10/8/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":30,"Cost":19,"Date":"10/26/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":725,"Cost":416,"Date":"11/16/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":215,"Cost":139,"Date":"11/18/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":363,"Cost":253,"Date":"12/1/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":320,"Cost":263,"Date":"2/9/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":821,"Cost":515,"Date":"2/11/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":76,"Cost":42,"Date":"3/10/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":513,"Cost":458,"Date":"3/16/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":414,"Cost":279,"Date":"3/18/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":737,"Cost":659,"Date":"3/20/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":729,"Cost":372,"Date":"3/26/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":516,"Cost":387,"Date":"6/2/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":712,"Cost":649,"Date":"6/10/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":618,"Cost":481,"Date":"6/16/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":26,"Cost":18,"Date":"6/25/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":478,"Cost":429,"Date":"7/19/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":271,"Cost":149,"Date":"7/21/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":577,"Cost":335,"Date":"7/25/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":160,"Cost":141,"Date":"8/4/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":484,"Cost":308,"Date":"9/2/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":125,"Cost":100,"Date":"9/4/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":772,"Cost":694,"Date":"9/19/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":6,"Cost":3,"Date":"9/29/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":20,"Cost":12,"Date":"10/2/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":34,"Cost":27,"Date":"10/15/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":132,"Cost":74,"Date":"10/30/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":288,"Cost":267,"Date":"11/9/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":502,"Cost":439,"Date":"11/23/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":531,"Cost":266,"Date":"11/30/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":549,"Cost":278,"Date":"12/8/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":958,"Cost":705,"Date":"12/11/2018"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":341,"Cost":269,"Date":"1/15/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":1000,"Cost":876,"Date":"1/24/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":89,"Cost":72,"Date":"2/3/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":607,"Cost":475,"Date":"2/4/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":96,"Cost":65,"Date":"3/9/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":634,"Cost":567,"Date":"3/12/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":651,"Cost":566,"Date":"4/19/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":788,"Cost":575,"Date":"5/3/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":607,"Cost":339,"Date":"5/4/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":732,"Cost":381,"Date":"6/8/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":66,"Cost":50,"Date":"6/26/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":997,"Cost":522,"Date":"7/4/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":465,"Cost":244,"Date":"7/13/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":756,"Cost":474,"Date":"8/8/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":115,"Cost":105,"Date":"8/26/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":226,"Cost":204,"Date":"9/2/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":682,"Cost":435,"Date":"9/29/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":396,"Cost":220,"Date":"10/12/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":64,"Cost":46,"Date":"11/2/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":555,"Cost":497,"Date":"11/4/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":556,"Cost":422,"Date":"11/7/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":769,"Cost":451,"Date":"12/1/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":358,"Cost":298,"Date":"12/4/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":566,"Cost":338,"Date":"12/7/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":654,"Cost":437,"Date":"12/18/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":330,"Cost":175,"Date":"12/20/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":564,"Cost":530,"Date":"12/20/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":837,"Cost":473,"Date":"12/21/2019"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":159,"Cost":94,"Date":"1/9/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":977,"Cost":895,"Date":"2/5/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":626,"Cost":355,"Date":"2/16/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":865,"Cost":449,"Date":"2/16/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":886,"Cost":682,"Date":"2/18/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":80,"Cost":65,"Date":"2/22/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":664,"Cost":501,"Date":"2/25/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":786,"Cost":425,"Date":"3/8/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":721,"Cost":418,"Date":"4/2/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":892,"Cost":531,"Date":"4/3/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":774,"Cost":576,"Date":"4/9/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":576,"Cost":533,"Date":"4/10/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":594,"Cost":519,"Date":"4/19/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":369,"Cost":275,"Date":"5/17/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":309,"Cost":201,"Date":"5/22/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":720,"Cost":397,"Date":"6/20/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":231,"Cost":183,"Date":"7/1/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":317,"Cost":163,"Date":"7/4/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":879,"Cost":824,"Date":"7/8/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":381,"Cost":285,"Date":"7/9/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":984,"Cost":612,"Date":"7/14/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":783,"Cost":716,"Date":"7/19/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":898,"Cost":569,"Date":"8/1/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":774,"Cost":667,"Date":"8/6/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":537,"Cost":341,"Date":"8/7/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":18,"Cost":16,"Date":"8/22/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":33,"Cost":19,"Date":"8/31/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":541,"Cost":478,"Date":"9/1/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":254,"Cost":205,"Date":"9/1/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":757,"Cost":546,"Date":"9/17/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":513,"Cost":352,"Date":"9/29/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":992,"Cost":604,"Date":"11/7/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":150,"Cost":123,"Date":"11/26/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":106,"Cost":61,"Date":"11/27/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":972,"Cost":735,"Date":"12/5/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":113,"Cost":84,"Date":"12/26/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":757,"Cost":467,"Date":"12/31/2020"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":894,"Cost":614,"Date":"1/20/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":420,"Cost":386,"Date":"2/2/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":587,"Cost":326,"Date":"2/8/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":306,"Cost":231,"Date":"2/27/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":972,"Cost":679,"Date":"3/1/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":320,"Cost":244,"Date":"3/1/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":921,"Cost":767,"Date":"3/19/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":181,"Cost":152,"Date":"3/28/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":43,"Cost":27,"Date":"5/21/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":960,"Cost":756,"Date":"7/21/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":844,"Cost":755,"Date":"8/5/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":928,"Cost":717,"Date":"8/12/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":290,"Cost":171,"Date":"8/21/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":587,"Cost":423,"Date":"8/23/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":463,"Cost":312,"Date":"9/3/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":439,"Cost":363,"Date":"9/5/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":288,"Cost":257,"Date":"10/6/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":811,"Cost":714,"Date":"10/19/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":821,"Cost":713,"Date":"11/15/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":62,"Cost":43,"Date":"12/8/2021"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":963,"Cost":561,"Date":"1/8/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":99,"Cost":67,"Date":"1/14/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":93,"Cost":81,"Date":"1/19/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":616,"Cost":564,"Date":"1/28/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":177,"Cost":114,"Date":"1/31/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":651,"Cost":416,"Date":"3/27/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":965,"Cost":786,"Date":"4/20/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":326,"Cost":293,"Date":"4/24/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":489,"Cost":391,"Date":"4/28/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":906,"Cost":709,"Date":"5/15/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":229,"Cost":174,"Date":"5/16/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":151,"Cost":80,"Date":"5/18/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":535,"Cost":420,"Date":"6/2/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":253,"Cost":232,"Date":"6/3/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":959,"Cost":905,"Date":"6/5/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":835,"Cost":782,"Date":"6/7/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":648,"Cost":563,"Date":"6/14/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":259,"Cost":166,"Date":"6/20/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":854,"Cost":513,"Date":"6/24/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":788,"Cost":681,"Date":"7/4/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":750,"Cost":614,"Date":"7/9/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":65,"Cost":50,"Date":"7/12/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":398,"Cost":281,"Date":"8/14/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":809,"Cost":746,"Date":"8/16/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":777,"Cost":516,"Date":"8/23/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":569,"Cost":352,"Date":"9/2/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":147,"Cost":94,"Date":"9/3/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":599,"Cost":488,"Date":"9/16/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":299,"Cost":176,"Date":"10/4/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":379,"Cost":310,"Date":"11/1/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":605,"Cost":307,"Date":"11/2/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":486,"Cost":304,"Date":"12/17/2022"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":908,"Cost":455,"Date":"2/10/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":863,"Cost":744,"Date":"2/28/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":718,"Cost":470,"Date":"3/4/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":323,"Cost":235,"Date":"3/9/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":403,"Cost":292,"Date":"3/9/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":899,"Cost":618,"Date":"3/11/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":237,"Cost":181,"Date":"3/17/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":379,"Cost":192,"Date":"3/17/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":763,"Cost":412,"Date":"3/23/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":271,"Cost":210,"Date":"4/1/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":809,"Cost":641,"Date":"5/7/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":86,"Cost":62,"Date":"5/10/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":343,"Cost":285,"Date":"5/20/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":302,"Cost":164,"Date":"6/2/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":723,"Cost":587,"Date":"6/11/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":775,"Cost":415,"Date":"6/16/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":663,"Cost":368,"Date":"6/16/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":838,"Cost":732,"Date":"7/10/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":976,"Cost":670,"Date":"7/11/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":397,"Cost":261,"Date":"8/28/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":796,"Cost":600,"Date":"8/29/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":736,"Cost":621,"Date":"8/31/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":510,"Cost":382,"Date":"9/8/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":812,"Cost":674,"Date":"9/13/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":421,"Cost":227,"Date":"9/14/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":400,"Cost":379,"Date":"9/19/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":221,"Cost":144,"Date":"9/25/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":920,"Cost":827,"Date":"10/4/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":589,"Cost":424,"Date":"10/10/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":840,"Cost":556,"Date":"10/17/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":309,"Cost":266,"Date":"10/28/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":695,"Cost":392,"Date":"10/30/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":66,"Cost":33,"Date":"11/1/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":332,"Cost":247,"Date":"11/15/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":2,"Cost":1,"Date":"11/25/2023"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":730,"Cost":374,"Date":"1/10/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":777,"Cost":591,"Date":"1/14/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":921,"Cost":587,"Date":"1/20/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":559,"Cost":510,"Date":"2/8/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":296,"Cost":247,"Date":"2/25/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":510,"Cost":276,"Date":"3/7/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":179,"Cost":113,"Date":"3/14/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":339,"Cost":215,"Date":"3/27/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":104,"Cost":86,"Date":"4/5/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":753,"Cost":457,"Date":"4/14/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":61,"Cost":30,"Date":"5/3/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":875,"Cost":826,"Date":"5/9/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":419,"Cost":284,"Date":"5/15/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":369,"Cost":275,"Date":"5/25/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":68,"Cost":61,"Date":"5/26/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":77,"Cost":53,"Date":"5/31/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":671,"Cost":438,"Date":"7/27/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":451,"Cost":292,"Date":"9/17/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":547,"Cost":474,"Date":"10/6/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":931,"Cost":849,"Date":"10/8/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":786,"Cost":397,"Date":"10/26/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":718,"Cost":398,"Date":"11/16/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":85,"Cost":50,"Date":"11/18/2024"},{"Store":"Mall of Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":542,"Cost":389,"Date":"12/1/2024"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":315,"Cost":213,"Date":"2/9/2018"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":957,"Cost":848,"Date":"2/11/2018"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":112,"Cost":104,"Date":"3/10/2018"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":661,"Cost":480,"Date":"3/16/2018"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":89,"Cost":60,"Date":"3/18/2018"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":704,"Cost":579,"Date":"3/20/2018"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":895,"Cost":550,"Date":"3/26/2018"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":312,"Cost":173,"Date":"6/2/2018"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":184,"Cost":101,"Date":"6/10/2018"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":404,"Cost":363,"Date":"6/16/2018"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":493,"Cost":419,"Date":"6/25/2018"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":261,"Cost":142,"Date":"7/19/2018"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":874,"Cost":453,"Date":"7/21/2018"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":930,"Cost":670,"Date":"7/25/2018"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":16,"Cost":8,"Date":"8/4/2018"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":938,"Cost":859,"Date":"9/2/2018"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":985,"Cost":547,"Date":"9/4/2018"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":547,"Cost":433,"Date":"9/19/2018"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":735,"Cost":376,"Date":"9/29/2018"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":333,"Cost":195,"Date":"10/2/2018"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":393,"Cost":196,"Date":"10/15/2018"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":776,"Cost":546,"Date":"10/30/2018"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":914,"Cost":605,"Date":"11/9/2018"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":567,"Cost":469,"Date":"11/23/2018"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":922,"Cost":521,"Date":"11/30/2018"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":921,"Cost":655,"Date":"12/8/2018"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":229,"Cost":179,"Date":"12/11/2018"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":507,"Cost":280,"Date":"1/15/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":387,"Cost":205,"Date":"1/24/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":269,"Cost":243,"Date":"2/3/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":922,"Cost":524,"Date":"2/4/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":214,"Cost":197,"Date":"3/9/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":903,"Cost":728,"Date":"3/12/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":829,"Cost":579,"Date":"4/19/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":477,"Cost":452,"Date":"5/3/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":803,"Cost":527,"Date":"5/4/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":34,"Cost":27,"Date":"6/8/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":753,"Cost":408,"Date":"6/26/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":884,"Cost":615,"Date":"7/4/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":731,"Cost":373,"Date":"7/13/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":146,"Cost":81,"Date":"8/8/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":701,"Cost":449,"Date":"8/26/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":709,"Cost":633,"Date":"9/2/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":325,"Cost":274,"Date":"9/29/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":847,"Cost":666,"Date":"10/12/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":464,"Cost":313,"Date":"11/2/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":358,"Cost":335,"Date":"11/4/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":66,"Cost":40,"Date":"11/7/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":459,"Cost":400,"Date":"12/1/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":147,"Cost":97,"Date":"12/4/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":989,"Cost":658,"Date":"12/7/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":970,"Cost":812,"Date":"12/18/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":513,"Cost":397,"Date":"12/20/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":792,"Cost":473,"Date":"12/20/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":319,"Cost":263,"Date":"12/21/2019"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":552,"Cost":445,"Date":"1/9/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":572,"Cost":457,"Date":"2/5/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":83,"Cost":73,"Date":"2/16/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":268,"Cost":208,"Date":"2/16/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":533,"Cost":303,"Date":"2/18/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":205,"Cost":123,"Date":"2/22/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":371,"Cost":328,"Date":"2/25/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":723,"Cost":583,"Date":"3/8/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":413,"Cost":372,"Date":"4/2/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":336,"Cost":218,"Date":"4/3/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":663,"Cost":619,"Date":"4/9/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":870,"Cost":591,"Date":"4/10/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":977,"Cost":494,"Date":"4/19/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":372,"Cost":190,"Date":"5/17/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":355,"Cost":300,"Date":"5/22/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":657,"Cost":408,"Date":"6/20/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":163,"Cost":104,"Date":"7/1/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":161,"Cost":99,"Date":"7/4/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":606,"Cost":553,"Date":"7/8/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":772,"Cost":496,"Date":"7/9/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":233,"Cost":194,"Date":"7/14/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":37,"Cost":34,"Date":"7/19/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":737,"Cost":604,"Date":"8/1/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":207,"Cost":187,"Date":"8/6/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":136,"Cost":130,"Date":"8/7/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":944,"Cost":814,"Date":"8/22/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":108,"Cost":74,"Date":"8/31/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":397,"Cost":218,"Date":"9/1/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":399,"Cost":297,"Date":"9/1/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":826,"Cost":567,"Date":"9/17/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":238,"Cost":169,"Date":"9/29/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":740,"Cost":600,"Date":"11/7/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":666,"Cost":447,"Date":"11/26/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":467,"Cost":393,"Date":"11/27/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":204,"Cost":122,"Date":"12/5/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":298,"Cost":182,"Date":"12/26/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":828,"Cost":546,"Date":"12/31/2020"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":853,"Cost":740,"Date":"1/20/2021"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":450,"Cost":247,"Date":"2/2/2021"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":200,"Cost":132,"Date":"2/8/2021"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":539,"Cost":398,"Date":"2/27/2021"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":598,"Cost":321,"Date":"3/1/2021"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":449,"Cost":325,"Date":"3/1/2021"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":900,"Cost":740,"Date":"3/19/2021"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":850,"Cost":715,"Date":"3/28/2021"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":194,"Cost":133,"Date":"5/21/2021"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":549,"Cost":313,"Date":"7/21/2021"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":571,"Cost":365,"Date":"8/5/2021"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":622,"Cost":571,"Date":"8/12/2021"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":567,"Cost":506,"Date":"8/21/2021"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":439,"Cost":360,"Date":"8/23/2021"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":737,"Cost":481,"Date":"9/3/2021"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":145,"Cost":88,"Date":"9/5/2021"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":770,"Cost":456,"Date":"10/6/2021"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":293,"Cost":161,"Date":"10/19/2021"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":859,"Cost":445,"Date":"11/15/2021"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":912,"Cost":473,"Date":"12/8/2021"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":808,"Cost":637,"Date":"1/8/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":408,"Cost":276,"Date":"1/14/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":259,"Cost":162,"Date":"1/19/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":271,"Cost":164,"Date":"1/28/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":226,"Cost":130,"Date":"1/31/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":875,"Cost":552,"Date":"3/27/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":735,"Cost":636,"Date":"4/20/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":258,"Cost":145,"Date":"4/24/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":552,"Cost":357,"Date":"4/28/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":185,"Cost":130,"Date":"5/15/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":63,"Cost":56,"Date":"5/16/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":291,"Cost":223,"Date":"5/18/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":494,"Cost":297,"Date":"6/2/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":653,"Cost":581,"Date":"6/3/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":745,"Cost":579,"Date":"6/5/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":987,"Cost":724,"Date":"6/7/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":500,"Cost":289,"Date":"6/14/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":867,"Cost":794,"Date":"6/20/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":8,"Cost":6,"Date":"6/24/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":269,"Cost":165,"Date":"7/4/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":101,"Cost":91,"Date":"7/9/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":755,"Cost":712,"Date":"7/12/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":521,"Cost":479,"Date":"8/14/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":540,"Cost":511,"Date":"8/16/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":864,"Cost":540,"Date":"8/23/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":57,"Cost":36,"Date":"9/2/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":320,"Cost":258,"Date":"9/3/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":887,"Cost":496,"Date":"9/16/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":943,"Cost":668,"Date":"10/4/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":398,"Cost":224,"Date":"11/1/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":840,"Cost":484,"Date":"11/2/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":122,"Cost":90,"Date":"12/17/2022"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":690,"Cost":504,"Date":"2/10/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":407,"Cost":239,"Date":"2/28/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":383,"Cost":324,"Date":"3/4/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":681,"Cost":634,"Date":"3/9/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":492,"Cost":468,"Date":"3/9/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":393,"Cost":373,"Date":"3/11/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":891,"Cost":591,"Date":"3/17/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":757,"Cost":718,"Date":"3/17/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":785,"Cost":622,"Date":"3/23/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":666,"Cost":350,"Date":"4/1/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":78,"Cost":74,"Date":"5/7/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":345,"Cost":286,"Date":"5/10/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":265,"Cost":249,"Date":"5/20/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":747,"Cost":474,"Date":"6/2/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":237,"Cost":172,"Date":"6/11/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":621,"Cost":423,"Date":"6/16/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":374,"Cost":297,"Date":"6/16/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":990,"Cost":581,"Date":"7/10/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":972,"Cost":696,"Date":"7/11/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":86,"Cost":73,"Date":"8/28/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":869,"Cost":564,"Date":"8/29/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":12,"Cost":12,"Date":"8/31/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":875,"Cost":600,"Date":"9/8/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":143,"Cost":124,"Date":"9/13/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":340,"Cost":266,"Date":"9/14/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":21,"Cost":13,"Date":"9/19/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":634,"Cost":440,"Date":"9/25/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":19,"Cost":11,"Date":"10/4/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":460,"Cost":243,"Date":"10/10/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":340,"Cost":173,"Date":"10/17/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":117,"Cost":109,"Date":"10/28/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":975,"Cost":874,"Date":"10/30/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":596,"Cost":329,"Date":"11/1/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":416,"Cost":315,"Date":"11/15/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":646,"Cost":549,"Date":"11/25/2023"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":157,"Cost":142,"Date":"1/10/2024"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":248,"Cost":172,"Date":"1/14/2024"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":187,"Cost":164,"Date":"1/20/2024"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":946,"Cost":786,"Date":"2/8/2024"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":116,"Cost":60,"Date":"2/25/2024"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":244,"Cost":192,"Date":"3/7/2024"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":212,"Cost":113,"Date":"3/14/2024"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":292,"Cost":255,"Date":"3/27/2024"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":178,"Cost":156,"Date":"4/5/2024"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":476,"Cost":307,"Date":"4/14/2024"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":397,"Cost":286,"Date":"5/3/2024"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":564,"Cost":509,"Date":"5/9/2024"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":107,"Cost":73,"Date":"5/15/2024"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":722,"Cost":418,"Date":"5/25/2024"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":674,"Cost":633,"Date":"5/26/2024"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":616,"Cost":421,"Date":"5/31/2024"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":668,"Cost":452,"Date":"7/27/2024"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":818,"Cost":537,"Date":"9/17/2024"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":554,"Cost":416,"Date":"10/6/2024"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":258,"Cost":236,"Date":"10/8/2024"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":971,"Cost":804,"Date":"10/26/2024"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":824,"Cost":606,"Date":"11/16/2024"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":575,"Cost":380,"Date":"11/18/2024"},{"Store":"Mall of Sofia","Brand":"HM","Country":"Bulgaria","Sale":533,"Cost":438,"Date":"12/1/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":689,"Cost":458,"Date":"2/9/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":877,"Cost":503,"Date":"2/11/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":816,"Cost":435,"Date":"3/10/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":900,"Cost":725,"Date":"3/16/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":153,"Cost":87,"Date":"3/18/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":558,"Cost":319,"Date":"3/20/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":115,"Cost":104,"Date":"3/26/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":194,"Cost":141,"Date":"6/2/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":68,"Cost":48,"Date":"6/10/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":355,"Cost":178,"Date":"6/16/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":623,"Cost":561,"Date":"6/25/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":870,"Cost":485,"Date":"7/19/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":532,"Cost":499,"Date":"7/21/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":179,"Cost":136,"Date":"7/25/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":444,"Cost":320,"Date":"8/4/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":825,"Cost":569,"Date":"9/2/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":182,"Cost":94,"Date":"9/4/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":383,"Cost":340,"Date":"9/19/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":649,"Cost":514,"Date":"9/29/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":499,"Cost":405,"Date":"10/2/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":842,"Cost":589,"Date":"10/15/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":322,"Cost":300,"Date":"10/30/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":468,"Cost":277,"Date":"11/9/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":217,"Cost":161,"Date":"11/23/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":808,"Cost":633,"Date":"11/30/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":551,"Cost":520,"Date":"12/8/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":848,"Cost":606,"Date":"12/11/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":47,"Cost":32,"Date":"1/15/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":435,"Cost":355,"Date":"1/24/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":908,"Cost":460,"Date":"2/3/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":381,"Cost":254,"Date":"2/4/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":303,"Cost":221,"Date":"3/9/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":386,"Cost":270,"Date":"3/12/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":978,"Cost":840,"Date":"4/19/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":576,"Cost":362,"Date":"5/3/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":679,"Cost":445,"Date":"5/4/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":955,"Cost":743,"Date":"6/8/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":882,"Cost":682,"Date":"6/26/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":643,"Cost":439,"Date":"7/4/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":313,"Cost":224,"Date":"7/13/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":345,"Cost":225,"Date":"8/8/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":602,"Cost":381,"Date":"8/26/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":913,"Cost":474,"Date":"9/2/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":508,"Cost":313,"Date":"9/29/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":428,"Cost":221,"Date":"10/12/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":803,"Cost":719,"Date":"11/2/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":208,"Cost":162,"Date":"11/4/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":677,"Cost":378,"Date":"11/7/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":122,"Cost":89,"Date":"12/1/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":377,"Cost":228,"Date":"12/4/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":589,"Cost":320,"Date":"12/7/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":509,"Cost":482,"Date":"12/18/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":326,"Cost":307,"Date":"12/20/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":964,"Cost":858,"Date":"12/20/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":497,"Cost":309,"Date":"12/21/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":143,"Cost":84,"Date":"1/9/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":650,"Cost":382,"Date":"2/5/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":458,"Cost":381,"Date":"2/16/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":236,"Cost":199,"Date":"2/16/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":310,"Cost":225,"Date":"2/18/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":371,"Cost":231,"Date":"2/22/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":157,"Cost":149,"Date":"2/25/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":530,"Cost":373,"Date":"3/8/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":673,"Cost":411,"Date":"4/2/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":635,"Cost":336,"Date":"4/3/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":558,"Cost":311,"Date":"4/9/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":386,"Cost":193,"Date":"4/10/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":308,"Cost":221,"Date":"4/19/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":475,"Cost":422,"Date":"5/17/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":821,"Cost":664,"Date":"5/22/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":533,"Cost":337,"Date":"6/20/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":507,"Cost":423,"Date":"7/1/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":229,"Cost":177,"Date":"7/4/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":659,"Cost":388,"Date":"7/8/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":76,"Cost":68,"Date":"7/9/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":221,"Cost":190,"Date":"7/14/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":443,"Cost":393,"Date":"7/19/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":240,"Cost":170,"Date":"8/1/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":132,"Cost":119,"Date":"8/6/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":811,"Cost":490,"Date":"8/7/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":770,"Cost":647,"Date":"8/22/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":712,"Cost":616,"Date":"8/31/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":41,"Cost":26,"Date":"9/1/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":370,"Cost":299,"Date":"9/1/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":323,"Cost":178,"Date":"9/17/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":270,"Cost":250,"Date":"9/29/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":127,"Cost":98,"Date":"11/7/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":495,"Cost":437,"Date":"11/26/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":266,"Cost":235,"Date":"11/27/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":341,"Cost":252,"Date":"12/5/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":858,"Cost":611,"Date":"12/26/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":8,"Cost":4,"Date":"12/31/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":767,"Cost":506,"Date":"1/20/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":891,"Cost":769,"Date":"2/2/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":864,"Cost":453,"Date":"2/8/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":737,"Cost":664,"Date":"2/27/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":183,"Cost":114,"Date":"3/1/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":588,"Cost":463,"Date":"3/1/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":338,"Cost":226,"Date":"3/19/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":283,"Cost":157,"Date":"3/28/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":338,"Cost":259,"Date":"5/21/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":324,"Cost":258,"Date":"7/21/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":85,"Cost":79,"Date":"8/5/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":164,"Cost":101,"Date":"8/12/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":833,"Cost":693,"Date":"8/21/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":717,"Cost":552,"Date":"8/23/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":940,"Cost":854,"Date":"9/3/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":671,"Cost":613,"Date":"9/5/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":788,"Cost":691,"Date":"10/6/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":211,"Cost":179,"Date":"10/19/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":971,"Cost":490,"Date":"11/15/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":83,"Cost":68,"Date":"12/8/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":641,"Cost":573,"Date":"1/8/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":403,"Cost":294,"Date":"1/14/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":716,"Cost":556,"Date":"1/19/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":760,"Cost":658,"Date":"1/28/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":31,"Cost":21,"Date":"1/31/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":138,"Cost":123,"Date":"3/27/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":131,"Cost":67,"Date":"4/20/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":934,"Cost":732,"Date":"4/24/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":728,"Cost":391,"Date":"4/28/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":760,"Cost":660,"Date":"5/15/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":524,"Cost":420,"Date":"5/16/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":386,"Cost":303,"Date":"5/18/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":527,"Cost":313,"Date":"6/2/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":701,"Cost":382,"Date":"6/3/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":443,"Cost":386,"Date":"6/5/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":910,"Cost":771,"Date":"6/7/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":533,"Cost":313,"Date":"6/14/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":499,"Cost":368,"Date":"6/20/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":443,"Cost":271,"Date":"6/24/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":224,"Cost":171,"Date":"7/4/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":855,"Cost":704,"Date":"7/9/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":26,"Cost":16,"Date":"7/12/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":224,"Cost":120,"Date":"8/14/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":205,"Cost":137,"Date":"8/16/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":8,"Cost":4,"Date":"8/23/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":806,"Cost":697,"Date":"9/2/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":693,"Cost":521,"Date":"9/3/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":687,"Cost":533,"Date":"9/16/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":300,"Cost":226,"Date":"10/4/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":213,"Cost":194,"Date":"11/1/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":432,"Cost":330,"Date":"11/2/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":474,"Cost":308,"Date":"12/17/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":468,"Cost":430,"Date":"2/10/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":75,"Cost":60,"Date":"2/28/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":729,"Cost":403,"Date":"3/4/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":453,"Cost":303,"Date":"3/9/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":514,"Cost":434,"Date":"3/9/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":835,"Cost":781,"Date":"3/11/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":373,"Cost":201,"Date":"3/17/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":843,"Cost":799,"Date":"3/17/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":169,"Cost":117,"Date":"3/23/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":277,"Cost":181,"Date":"4/1/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":91,"Cost":85,"Date":"5/7/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":515,"Cost":482,"Date":"5/10/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":93,"Cost":64,"Date":"5/20/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":666,"Cost":500,"Date":"6/2/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":893,"Cost":520,"Date":"6/11/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":964,"Cost":490,"Date":"6/16/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":449,"Cost":314,"Date":"6/16/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":501,"Cost":270,"Date":"7/10/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":807,"Cost":452,"Date":"7/11/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":450,"Cost":260,"Date":"8/28/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":826,"Cost":586,"Date":"8/29/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":4,"Cost":3,"Date":"8/31/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":255,"Cost":222,"Date":"9/8/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":925,"Cost":876,"Date":"9/13/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":401,"Cost":329,"Date":"9/14/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":81,"Cost":44,"Date":"9/19/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":856,"Cost":473,"Date":"9/25/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":14,"Cost":12,"Date":"10/4/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":37,"Cost":29,"Date":"10/10/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":882,"Cost":754,"Date":"10/17/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":992,"Cost":512,"Date":"10/28/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":120,"Cost":107,"Date":"10/30/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":659,"Cost":621,"Date":"11/1/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":436,"Cost":237,"Date":"11/15/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":191,"Cost":159,"Date":"11/25/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":538,"Cost":283,"Date":"1/10/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":146,"Cost":115,"Date":"1/14/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":391,"Cost":324,"Date":"1/20/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":496,"Cost":375,"Date":"2/8/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":541,"Cost":394,"Date":"2/25/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":758,"Cost":498,"Date":"3/7/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":153,"Cost":126,"Date":"3/14/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":296,"Cost":187,"Date":"3/27/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":698,"Cost":522,"Date":"4/5/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":968,"Cost":771,"Date":"4/14/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":704,"Cost":381,"Date":"5/3/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":369,"Cost":327,"Date":"5/9/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":646,"Cost":567,"Date":"5/15/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":634,"Cost":542,"Date":"5/25/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":495,"Cost":383,"Date":"5/26/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":299,"Cost":168,"Date":"5/31/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":132,"Cost":70,"Date":"7/27/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":670,"Cost":620,"Date":"9/17/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":192,"Cost":129,"Date":"10/6/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":207,"Cost":158,"Date":"10/8/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":373,"Cost":227,"Date":"10/26/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":596,"Cost":476,"Date":"11/16/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":762,"Cost":587,"Date":"11/18/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":128,"Cost":121,"Date":"12/1/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":120,"Cost":102,"Date":"2/9/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":240,"Cost":194,"Date":"2/11/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":792,"Cost":527,"Date":"3/10/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":140,"Cost":80,"Date":"3/16/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":269,"Cost":231,"Date":"3/18/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":977,"Cost":816,"Date":"3/20/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":188,"Cost":124,"Date":"3/26/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":662,"Cost":460,"Date":"6/2/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":483,"Cost":414,"Date":"6/10/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":902,"Cost":633,"Date":"6/16/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":347,"Cost":278,"Date":"6/25/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":777,"Cost":699,"Date":"7/19/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":454,"Cost":423,"Date":"7/21/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":989,"Cost":775,"Date":"7/25/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":654,"Cost":380,"Date":"8/4/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":896,"Cost":453,"Date":"9/2/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":628,"Cost":476,"Date":"9/4/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":616,"Cost":510,"Date":"9/19/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":356,"Cost":251,"Date":"9/29/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":82,"Cost":41,"Date":"10/2/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":112,"Cost":86,"Date":"10/15/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":429,"Cost":264,"Date":"10/30/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":599,"Cost":452,"Date":"11/9/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":42,"Cost":33,"Date":"11/23/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":584,"Cost":409,"Date":"11/30/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":274,"Cost":224,"Date":"12/8/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":818,"Cost":551,"Date":"12/11/2018"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":916,"Cost":617,"Date":"1/15/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":22,"Cost":16,"Date":"1/24/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":143,"Cost":114,"Date":"2/3/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":161,"Cost":83,"Date":"2/4/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":941,"Cost":654,"Date":"3/9/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":261,"Cost":233,"Date":"3/12/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":32,"Cost":29,"Date":"4/19/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":381,"Cost":289,"Date":"5/3/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":27,"Cost":16,"Date":"5/4/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":649,"Cost":507,"Date":"6/8/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":1000,"Cost":745,"Date":"6/26/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":60,"Cost":33,"Date":"7/4/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":93,"Cost":76,"Date":"7/13/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":412,"Cost":315,"Date":"8/8/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":78,"Cost":46,"Date":"8/26/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":727,"Cost":442,"Date":"9/2/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":234,"Cost":131,"Date":"9/29/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":502,"Cost":281,"Date":"10/12/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":437,"Cost":218,"Date":"11/2/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":793,"Cost":539,"Date":"11/4/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":200,"Cost":167,"Date":"11/7/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":982,"Cost":668,"Date":"12/1/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":454,"Cost":414,"Date":"12/4/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":816,"Cost":770,"Date":"12/7/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":850,"Cost":447,"Date":"12/18/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":224,"Cost":177,"Date":"12/20/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":492,"Cost":462,"Date":"12/20/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":73,"Cost":51,"Date":"12/21/2019"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":506,"Cost":395,"Date":"1/9/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":470,"Cost":339,"Date":"2/5/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":315,"Cost":170,"Date":"2/16/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":701,"Cost":588,"Date":"2/16/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":845,"Cost":767,"Date":"2/18/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":113,"Cost":96,"Date":"2/22/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":783,"Cost":595,"Date":"2/25/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":729,"Cost":393,"Date":"3/8/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":396,"Cost":255,"Date":"4/2/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":482,"Cost":324,"Date":"4/3/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":268,"Cost":185,"Date":"4/9/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":690,"Cost":509,"Date":"4/10/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":559,"Cost":439,"Date":"4/19/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":175,"Cost":115,"Date":"5/17/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":818,"Cost":559,"Date":"5/22/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":139,"Cost":97,"Date":"6/20/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":72,"Cost":53,"Date":"7/1/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":670,"Cost":631,"Date":"7/4/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":75,"Cost":48,"Date":"7/8/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":888,"Cost":719,"Date":"7/9/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":181,"Cost":126,"Date":"7/14/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":79,"Cost":53,"Date":"7/19/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":291,"Cost":230,"Date":"8/1/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":449,"Cost":382,"Date":"8/6/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":411,"Cost":323,"Date":"8/7/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":626,"Cost":404,"Date":"8/22/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":321,"Cost":247,"Date":"8/31/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":708,"Cost":458,"Date":"9/1/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":595,"Cost":477,"Date":"9/1/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":835,"Cost":478,"Date":"9/17/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":956,"Cost":542,"Date":"9/29/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":621,"Cost":327,"Date":"11/7/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":714,"Cost":551,"Date":"11/26/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":842,"Cost":689,"Date":"11/27/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":39,"Cost":32,"Date":"12/5/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":92,"Cost":74,"Date":"12/26/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":801,"Cost":630,"Date":"12/31/2020"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":396,"Cost":268,"Date":"1/20/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":477,"Cost":321,"Date":"2/2/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":525,"Cost":343,"Date":"2/8/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":613,"Cost":423,"Date":"2/27/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":35,"Cost":28,"Date":"3/1/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":624,"Cost":401,"Date":"3/1/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":932,"Cost":609,"Date":"3/19/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":968,"Cost":894,"Date":"3/28/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":702,"Cost":361,"Date":"5/21/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":332,"Cost":175,"Date":"7/21/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":723,"Cost":448,"Date":"8/5/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":137,"Cost":83,"Date":"8/12/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":576,"Cost":501,"Date":"8/21/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":337,"Cost":188,"Date":"8/23/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":647,"Cost":472,"Date":"9/3/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":640,"Cost":381,"Date":"9/5/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":635,"Cost":397,"Date":"10/6/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":956,"Cost":660,"Date":"10/19/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":291,"Cost":223,"Date":"11/15/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":973,"Cost":505,"Date":"12/8/2021"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":973,"Cost":775,"Date":"1/8/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":661,"Cost":525,"Date":"1/14/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":494,"Cost":340,"Date":"1/19/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":426,"Cost":224,"Date":"1/28/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":995,"Cost":582,"Date":"1/31/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":624,"Cost":536,"Date":"3/27/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":451,"Cost":272,"Date":"4/20/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":839,"Cost":467,"Date":"4/24/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":811,"Cost":701,"Date":"4/28/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":57,"Cost":39,"Date":"5/15/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":864,"Cost":485,"Date":"5/16/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":618,"Cost":412,"Date":"5/18/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":745,"Cost":457,"Date":"6/2/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":934,"Cost":484,"Date":"6/3/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":693,"Cost":506,"Date":"6/5/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":881,"Cost":782,"Date":"6/7/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":798,"Cost":717,"Date":"6/14/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":866,"Cost":786,"Date":"6/20/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":156,"Cost":144,"Date":"6/24/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":823,"Cost":737,"Date":"7/4/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":102,"Cost":66,"Date":"7/9/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":227,"Cost":139,"Date":"7/12/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":201,"Cost":114,"Date":"8/14/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":848,"Cost":797,"Date":"8/16/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":522,"Cost":429,"Date":"8/23/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":622,"Cost":565,"Date":"9/2/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":537,"Cost":312,"Date":"9/3/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":384,"Cost":219,"Date":"9/16/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":547,"Cost":480,"Date":"10/4/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":762,"Cost":670,"Date":"11/1/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":425,"Cost":333,"Date":"11/2/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":949,"Cost":791,"Date":"12/17/2022"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":466,"Cost":271,"Date":"2/10/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":564,"Cost":460,"Date":"2/28/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":485,"Cost":316,"Date":"3/4/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":314,"Cost":286,"Date":"3/9/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":757,"Cost":668,"Date":"3/9/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":48,"Cost":41,"Date":"3/11/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":200,"Cost":149,"Date":"3/17/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":129,"Cost":83,"Date":"3/17/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":331,"Cost":262,"Date":"3/23/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":573,"Cost":407,"Date":"4/1/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":334,"Cost":169,"Date":"5/7/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":399,"Cost":314,"Date":"5/10/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":713,"Cost":569,"Date":"5/20/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":804,"Cost":631,"Date":"6/2/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":801,"Cost":556,"Date":"6/11/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":638,"Cost":509,"Date":"6/16/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":402,"Cost":222,"Date":"6/16/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":171,"Cost":118,"Date":"7/10/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":278,"Cost":194,"Date":"7/11/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":493,"Cost":405,"Date":"8/28/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":468,"Cost":435,"Date":"8/29/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":511,"Cost":318,"Date":"8/31/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":910,"Cost":776,"Date":"9/8/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":983,"Cost":790,"Date":"9/13/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":461,"Cost":266,"Date":"9/14/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":980,"Cost":846,"Date":"9/19/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":528,"Cost":307,"Date":"9/25/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":64,"Cost":38,"Date":"10/4/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":485,"Cost":436,"Date":"10/10/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":927,"Cost":850,"Date":"10/17/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":850,"Cost":570,"Date":"10/28/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":10,"Cost":6,"Date":"10/30/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":875,"Cost":780,"Date":"11/1/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":703,"Cost":596,"Date":"11/15/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":241,"Cost":163,"Date":"11/25/2023"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":12,"Cost":9,"Date":"1/10/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":86,"Cost":50,"Date":"1/14/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":839,"Cost":651,"Date":"1/20/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":494,"Cost":283,"Date":"2/8/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":394,"Cost":239,"Date":"2/25/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":907,"Cost":742,"Date":"3/7/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":17,"Cost":15,"Date":"3/14/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":472,"Cost":349,"Date":"3/27/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":183,"Cost":173,"Date":"4/5/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":577,"Cost":382,"Date":"4/14/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":260,"Cost":183,"Date":"5/3/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":238,"Cost":126,"Date":"5/9/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":571,"Cost":408,"Date":"5/15/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":500,"Cost":436,"Date":"5/25/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":60,"Cost":33,"Date":"5/26/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":444,"Cost":288,"Date":"5/31/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":183,"Cost":119,"Date":"7/27/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":908,"Cost":509,"Date":"9/17/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":166,"Cost":132,"Date":"10/6/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":695,"Cost":429,"Date":"10/8/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":818,"Cost":755,"Date":"10/26/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":730,"Cost":386,"Date":"11/16/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":768,"Cost":397,"Date":"11/18/2024"},{"Store":"Serdika Center, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":924,"Cost":709,"Date":"12/1/2024"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":357,"Cost":243,"Date":"2/9/2018"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":813,"Cost":411,"Date":"2/11/2018"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":735,"Cost":662,"Date":"3/10/2018"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":955,"Cost":649,"Date":"3/16/2018"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":745,"Cost":627,"Date":"3/18/2018"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":756,"Cost":626,"Date":"3/20/2018"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":945,"Cost":519,"Date":"3/26/2018"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":225,"Cost":142,"Date":"6/2/2018"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":857,"Cost":602,"Date":"6/10/2018"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":28,"Cost":25,"Date":"6/16/2018"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":18,"Cost":10,"Date":"6/25/2018"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":565,"Cost":460,"Date":"7/19/2018"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":117,"Cost":97,"Date":"7/21/2018"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":673,"Cost":449,"Date":"7/25/2018"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":827,"Cost":435,"Date":"8/4/2018"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":696,"Cost":535,"Date":"9/2/2018"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":543,"Cost":340,"Date":"9/4/2018"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":569,"Cost":405,"Date":"9/19/2018"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":291,"Cost":197,"Date":"9/29/2018"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":449,"Cost":335,"Date":"10/2/2018"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":613,"Cost":500,"Date":"10/15/2018"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":928,"Cost":836,"Date":"10/30/2018"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":933,"Cost":860,"Date":"11/9/2018"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":181,"Cost":128,"Date":"11/23/2018"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":593,"Cost":555,"Date":"11/30/2018"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":686,"Cost":478,"Date":"12/8/2018"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":949,"Cost":708,"Date":"12/11/2018"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":721,"Cost":416,"Date":"1/15/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":317,"Cost":211,"Date":"1/24/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":751,"Cost":494,"Date":"2/3/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":941,"Cost":531,"Date":"2/4/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":426,"Cost":261,"Date":"3/9/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":93,"Cost":61,"Date":"3/12/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":345,"Cost":281,"Date":"4/19/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":530,"Cost":282,"Date":"5/3/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":709,"Cost":648,"Date":"5/4/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":838,"Cost":474,"Date":"6/8/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":531,"Cost":469,"Date":"6/26/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":129,"Cost":101,"Date":"7/4/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":936,"Cost":868,"Date":"7/13/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":625,"Cost":443,"Date":"8/8/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":729,"Cost":422,"Date":"8/26/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":883,"Cost":781,"Date":"9/2/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":863,"Cost":804,"Date":"9/29/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":502,"Cost":317,"Date":"10/12/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":208,"Cost":129,"Date":"11/2/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":525,"Cost":489,"Date":"11/4/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":560,"Cost":363,"Date":"11/7/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":440,"Cost":399,"Date":"12/1/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":634,"Cost":420,"Date":"12/4/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":738,"Cost":504,"Date":"12/7/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":984,"Cost":864,"Date":"12/18/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":601,"Cost":452,"Date":"12/20/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":663,"Cost":496,"Date":"12/20/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":480,"Cost":389,"Date":"12/21/2019"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":203,"Cost":109,"Date":"1/9/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":732,"Cost":559,"Date":"2/5/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":421,"Cost":353,"Date":"2/16/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":145,"Cost":110,"Date":"2/16/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":625,"Cost":478,"Date":"2/18/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":75,"Cost":48,"Date":"2/22/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":278,"Cost":172,"Date":"2/25/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":600,"Cost":302,"Date":"3/8/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":266,"Cost":221,"Date":"4/2/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":776,"Cost":524,"Date":"4/3/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":90,"Cost":80,"Date":"4/9/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":535,"Cost":299,"Date":"4/10/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":451,"Cost":371,"Date":"4/19/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":624,"Cost":478,"Date":"5/17/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":771,"Cost":479,"Date":"5/22/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":419,"Cost":392,"Date":"6/20/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":625,"Cost":521,"Date":"7/1/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":529,"Cost":383,"Date":"7/4/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":625,"Cost":315,"Date":"7/8/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":471,"Cost":363,"Date":"7/9/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":529,"Cost":331,"Date":"7/14/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":675,"Cost":638,"Date":"7/19/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":534,"Cost":401,"Date":"8/1/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":53,"Cost":38,"Date":"8/6/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":401,"Cost":277,"Date":"8/7/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":194,"Cost":172,"Date":"8/22/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":460,"Cost":362,"Date":"8/31/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":736,"Cost":457,"Date":"9/1/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":853,"Cost":724,"Date":"9/1/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":222,"Cost":200,"Date":"9/17/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":405,"Cost":266,"Date":"9/29/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":234,"Cost":208,"Date":"11/7/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":174,"Cost":132,"Date":"11/26/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":499,"Cost":323,"Date":"11/27/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":161,"Cost":118,"Date":"12/5/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":79,"Cost":49,"Date":"12/26/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":449,"Cost":244,"Date":"12/31/2020"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":290,"Cost":216,"Date":"1/20/2021"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":194,"Cost":118,"Date":"2/2/2021"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":489,"Cost":297,"Date":"2/8/2021"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":271,"Cost":149,"Date":"2/27/2021"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":277,"Cost":162,"Date":"3/1/2021"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":779,"Cost":563,"Date":"3/1/2021"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":608,"Cost":357,"Date":"3/19/2021"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":47,"Cost":33,"Date":"3/28/2021"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":176,"Cost":118,"Date":"5/21/2021"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":827,"Cost":720,"Date":"7/21/2021"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":488,"Cost":302,"Date":"8/5/2021"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":438,"Cost":415,"Date":"8/12/2021"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":869,"Cost":787,"Date":"8/21/2021"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":723,"Cost":679,"Date":"8/23/2021"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":83,"Cost":58,"Date":"9/3/2021"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":182,"Cost":101,"Date":"9/5/2021"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":725,"Cost":508,"Date":"10/6/2021"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":856,"Cost":812,"Date":"10/19/2021"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":47,"Cost":31,"Date":"11/15/2021"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":140,"Cost":82,"Date":"12/8/2021"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":752,"Cost":619,"Date":"1/8/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":963,"Cost":715,"Date":"1/14/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":926,"Cost":539,"Date":"1/19/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":702,"Cost":441,"Date":"1/28/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":979,"Cost":758,"Date":"1/31/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":413,"Cost":207,"Date":"3/27/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":77,"Cost":67,"Date":"4/20/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":628,"Cost":516,"Date":"4/24/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":481,"Cost":449,"Date":"4/28/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":294,"Cost":222,"Date":"5/15/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":463,"Cost":360,"Date":"5/16/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":374,"Cost":230,"Date":"5/18/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":825,"Cost":629,"Date":"6/2/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":323,"Cost":252,"Date":"6/3/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":518,"Cost":347,"Date":"6/5/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":546,"Cost":471,"Date":"6/7/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":106,"Cost":75,"Date":"6/14/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":4,"Cost":2,"Date":"6/20/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":430,"Cost":369,"Date":"6/24/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":137,"Cost":109,"Date":"7/4/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":95,"Cost":65,"Date":"7/9/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":662,"Cost":628,"Date":"7/12/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":987,"Cost":535,"Date":"8/14/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":919,"Cost":823,"Date":"8/16/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":855,"Cost":711,"Date":"8/23/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":979,"Cost":581,"Date":"9/2/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":318,"Cost":194,"Date":"9/3/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":372,"Cost":192,"Date":"9/16/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":8,"Cost":7,"Date":"10/4/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":318,"Cost":162,"Date":"11/1/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":312,"Cost":182,"Date":"11/2/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":448,"Cost":289,"Date":"12/17/2022"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":992,"Cost":587,"Date":"2/10/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":373,"Cost":243,"Date":"2/28/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":425,"Cost":260,"Date":"3/4/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":950,"Cost":727,"Date":"3/9/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":216,"Cost":135,"Date":"3/9/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":545,"Cost":415,"Date":"3/11/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":202,"Cost":146,"Date":"3/17/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":263,"Cost":187,"Date":"3/17/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":401,"Cost":331,"Date":"3/23/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":948,"Cost":563,"Date":"4/1/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":988,"Cost":512,"Date":"5/7/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":588,"Cost":543,"Date":"5/10/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":252,"Cost":229,"Date":"5/20/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":222,"Cost":180,"Date":"6/2/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":339,"Cost":240,"Date":"6/11/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":647,"Cost":370,"Date":"6/16/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":657,"Cost":430,"Date":"6/16/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":925,"Cost":781,"Date":"7/10/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":149,"Cost":141,"Date":"7/11/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":570,"Cost":513,"Date":"8/28/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":717,"Cost":437,"Date":"8/29/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":255,"Cost":238,"Date":"8/31/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":955,"Cost":685,"Date":"9/8/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":666,"Cost":541,"Date":"9/13/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":319,"Cost":242,"Date":"9/14/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":663,"Cost":354,"Date":"9/19/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":351,"Cost":210,"Date":"9/25/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":476,"Cost":442,"Date":"10/4/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":169,"Cost":128,"Date":"10/10/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":688,"Cost":356,"Date":"10/17/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":450,"Cost":279,"Date":"10/28/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":435,"Cost":356,"Date":"10/30/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":146,"Cost":138,"Date":"11/1/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":735,"Cost":376,"Date":"11/15/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":879,"Cost":516,"Date":"11/25/2023"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":761,"Cost":406,"Date":"1/10/2024"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":59,"Cost":45,"Date":"1/14/2024"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":663,"Cost":354,"Date":"1/20/2024"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":314,"Cost":177,"Date":"2/8/2024"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":52,"Cost":40,"Date":"2/25/2024"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":375,"Cost":354,"Date":"3/7/2024"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":736,"Cost":474,"Date":"3/14/2024"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":616,"Cost":409,"Date":"3/27/2024"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":832,"Cost":608,"Date":"4/5/2024"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":113,"Cost":79,"Date":"4/14/2024"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":533,"Cost":504,"Date":"5/3/2024"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":158,"Cost":89,"Date":"5/9/2024"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":926,"Cost":805,"Date":"5/15/2024"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":998,"Cost":602,"Date":"5/25/2024"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":252,"Cost":174,"Date":"5/26/2024"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":407,"Cost":296,"Date":"5/31/2024"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":939,"Cost":536,"Date":"7/27/2024"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":381,"Cost":287,"Date":"9/17/2024"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":461,"Cost":401,"Date":"10/6/2024"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":173,"Cost":152,"Date":"10/8/2024"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":100,"Cost":94,"Date":"10/26/2024"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":382,"Cost":271,"Date":"11/16/2024"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":606,"Cost":479,"Date":"11/18/2024"},{"Store":"Serdika Center, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":879,"Cost":530,"Date":"12/1/2024"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":621,"Cost":507,"Date":"2/9/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":624,"Cost":379,"Date":"2/11/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":537,"Cost":358,"Date":"3/10/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":67,"Cost":42,"Date":"3/16/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":57,"Cost":46,"Date":"3/18/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":92,"Cost":84,"Date":"3/20/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":137,"Cost":91,"Date":"3/26/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":372,"Cost":298,"Date":"6/2/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":882,"Cost":661,"Date":"6/10/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":438,"Cost":334,"Date":"6/16/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":119,"Cost":75,"Date":"6/25/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":240,"Cost":133,"Date":"7/19/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":637,"Cost":441,"Date":"7/21/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":410,"Cost":229,"Date":"7/25/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":180,"Cost":169,"Date":"8/4/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":680,"Cost":513,"Date":"9/2/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":728,"Cost":374,"Date":"9/4/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":93,"Cost":46,"Date":"9/19/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":257,"Cost":168,"Date":"9/29/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":672,"Cost":409,"Date":"10/2/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":403,"Cost":368,"Date":"10/15/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":248,"Cost":124,"Date":"10/30/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":848,"Cost":743,"Date":"11/9/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":117,"Cost":64,"Date":"11/23/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":676,"Cost":632,"Date":"11/30/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":34,"Cost":31,"Date":"12/8/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":898,"Cost":796,"Date":"12/11/2018"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":336,"Cost":189,"Date":"1/15/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":256,"Cost":236,"Date":"1/24/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":270,"Cost":199,"Date":"2/3/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":964,"Cost":760,"Date":"2/4/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":532,"Cost":356,"Date":"3/9/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":833,"Cost":643,"Date":"3/12/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":714,"Cost":400,"Date":"4/19/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":946,"Cost":731,"Date":"5/3/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":601,"Cost":546,"Date":"5/4/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":562,"Cost":414,"Date":"6/8/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":770,"Cost":610,"Date":"6/26/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":352,"Cost":270,"Date":"7/4/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":820,"Cost":461,"Date":"7/13/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":951,"Cost":646,"Date":"8/8/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":510,"Cost":381,"Date":"8/26/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":804,"Cost":755,"Date":"9/2/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":103,"Cost":98,"Date":"9/29/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":152,"Cost":117,"Date":"10/12/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":258,"Cost":144,"Date":"11/2/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":447,"Cost":425,"Date":"11/4/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":900,"Cost":704,"Date":"11/7/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":527,"Cost":364,"Date":"12/1/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":584,"Cost":292,"Date":"12/4/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":867,"Cost":557,"Date":"12/7/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":58,"Cost":41,"Date":"12/18/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":296,"Cost":266,"Date":"12/20/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":872,"Cost":516,"Date":"12/20/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":138,"Cost":95,"Date":"12/21/2019"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":441,"Cost":394,"Date":"1/9/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":456,"Cost":305,"Date":"2/5/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":712,"Cost":454,"Date":"2/16/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":616,"Cost":314,"Date":"2/16/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":684,"Cost":633,"Date":"2/18/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":319,"Cost":161,"Date":"2/22/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":205,"Cost":191,"Date":"2/25/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":170,"Cost":153,"Date":"3/8/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":778,"Cost":525,"Date":"4/2/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":105,"Cost":72,"Date":"4/3/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":742,"Cost":561,"Date":"4/9/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":438,"Cost":306,"Date":"4/10/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":94,"Cost":55,"Date":"4/19/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":458,"Cost":410,"Date":"5/17/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":728,"Cost":561,"Date":"5/22/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":63,"Cost":60,"Date":"6/20/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":744,"Cost":592,"Date":"7/1/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":781,"Cost":425,"Date":"7/4/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":54,"Cost":37,"Date":"7/8/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":686,"Cost":453,"Date":"7/9/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":339,"Cost":216,"Date":"7/14/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":224,"Cost":150,"Date":"7/19/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":699,"Cost":479,"Date":"8/1/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":727,"Cost":590,"Date":"8/6/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":906,"Cost":651,"Date":"8/7/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":296,"Cost":189,"Date":"8/22/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":23,"Cost":20,"Date":"8/31/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":353,"Cost":203,"Date":"9/1/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":519,"Cost":364,"Date":"9/1/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":308,"Cost":247,"Date":"9/17/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":570,"Cost":486,"Date":"9/29/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":653,"Cost":603,"Date":"11/7/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":126,"Cost":85,"Date":"11/26/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":140,"Cost":81,"Date":"11/27/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":602,"Cost":381,"Date":"12/5/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":344,"Cost":187,"Date":"12/26/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":823,"Cost":539,"Date":"12/31/2020"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":946,"Cost":749,"Date":"1/20/2021"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":681,"Cost":453,"Date":"2/2/2021"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":134,"Cost":126,"Date":"2/8/2021"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":52,"Cost":45,"Date":"2/27/2021"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":244,"Cost":221,"Date":"3/1/2021"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":312,"Cost":244,"Date":"3/1/2021"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":768,"Cost":705,"Date":"3/19/2021"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":768,"Cost":430,"Date":"3/28/2021"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":862,"Cost":486,"Date":"5/21/2021"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":939,"Cost":829,"Date":"7/21/2021"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":351,"Cost":260,"Date":"8/5/2021"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":947,"Cost":786,"Date":"8/12/2021"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":964,"Cost":718,"Date":"8/21/2021"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":843,"Cost":442,"Date":"8/23/2021"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":106,"Cost":74,"Date":"9/3/2021"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":199,"Cost":125,"Date":"9/5/2021"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":865,"Cost":469,"Date":"10/6/2021"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":300,"Cost":205,"Date":"10/19/2021"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":420,"Cost":220,"Date":"11/15/2021"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":540,"Cost":380,"Date":"12/8/2021"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":257,"Cost":202,"Date":"1/8/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":910,"Cost":483,"Date":"1/14/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":366,"Cost":286,"Date":"1/19/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":907,"Cost":781,"Date":"1/28/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":570,"Cost":287,"Date":"1/31/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":827,"Cost":478,"Date":"3/27/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":377,"Cost":250,"Date":"4/20/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":887,"Cost":809,"Date":"4/24/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":179,"Cost":109,"Date":"4/28/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":141,"Cost":134,"Date":"5/15/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":978,"Cost":763,"Date":"5/16/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":744,"Cost":428,"Date":"5/18/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":524,"Cost":263,"Date":"6/2/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":842,"Cost":631,"Date":"6/3/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":287,"Cost":176,"Date":"6/5/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":161,"Cost":117,"Date":"6/7/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":407,"Cost":243,"Date":"6/14/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":627,"Cost":349,"Date":"6/20/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":579,"Cost":511,"Date":"6/24/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":906,"Cost":684,"Date":"7/4/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":698,"Cost":365,"Date":"7/9/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":81,"Cost":67,"Date":"7/12/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":992,"Cost":645,"Date":"8/14/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":128,"Cost":91,"Date":"8/16/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":603,"Cost":392,"Date":"8/23/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":766,"Cost":578,"Date":"9/2/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":855,"Cost":440,"Date":"9/3/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":606,"Cost":478,"Date":"9/16/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":862,"Cost":757,"Date":"10/4/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":909,"Cost":647,"Date":"11/1/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":707,"Cost":494,"Date":"11/2/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":138,"Cost":80,"Date":"12/17/2022"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":107,"Cost":90,"Date":"2/10/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":739,"Cost":453,"Date":"2/28/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":995,"Cost":906,"Date":"3/4/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":755,"Cost":396,"Date":"3/9/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":577,"Cost":319,"Date":"3/9/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":536,"Cost":319,"Date":"3/11/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":307,"Cost":208,"Date":"3/17/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":48,"Cost":38,"Date":"3/17/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":344,"Cost":208,"Date":"3/23/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":35,"Cost":32,"Date":"4/1/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":657,"Cost":604,"Date":"5/7/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":692,"Cost":469,"Date":"5/10/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":392,"Cost":327,"Date":"5/20/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":958,"Cost":700,"Date":"6/2/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":341,"Cost":200,"Date":"6/11/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":911,"Cost":701,"Date":"6/16/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":353,"Cost":278,"Date":"6/16/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":952,"Cost":555,"Date":"7/10/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":975,"Cost":696,"Date":"7/11/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":326,"Cost":238,"Date":"8/28/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":321,"Cost":240,"Date":"8/29/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":899,"Cost":639,"Date":"8/31/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":217,"Cost":196,"Date":"9/8/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":885,"Cost":612,"Date":"9/13/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":104,"Cost":63,"Date":"9/14/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":894,"Cost":772,"Date":"9/19/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":144,"Cost":117,"Date":"9/25/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":498,"Cost":294,"Date":"10/4/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":763,"Cost":643,"Date":"10/10/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":359,"Cost":192,"Date":"10/17/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":821,"Cost":531,"Date":"10/28/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":934,"Cost":533,"Date":"10/30/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":83,"Cost":74,"Date":"11/1/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":768,"Cost":545,"Date":"11/15/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":598,"Cost":311,"Date":"11/25/2023"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":423,"Cost":381,"Date":"1/10/2024"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":277,"Cost":155,"Date":"1/14/2024"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":428,"Cost":332,"Date":"1/20/2024"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":424,"Cost":354,"Date":"2/8/2024"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":475,"Cost":340,"Date":"2/25/2024"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":127,"Cost":116,"Date":"3/7/2024"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":24,"Cost":12,"Date":"3/14/2024"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":527,"Cost":436,"Date":"3/27/2024"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":409,"Cost":318,"Date":"4/5/2024"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":105,"Cost":91,"Date":"4/14/2024"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":179,"Cost":113,"Date":"5/3/2024"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":153,"Cost":146,"Date":"5/9/2024"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":697,"Cost":598,"Date":"5/15/2024"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":132,"Cost":91,"Date":"5/25/2024"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":526,"Cost":303,"Date":"5/26/2024"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":185,"Cost":112,"Date":"5/31/2024"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":408,"Cost":326,"Date":"7/27/2024"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":966,"Cost":773,"Date":"9/17/2024"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":40,"Cost":21,"Date":"10/6/2024"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":905,"Cost":748,"Date":"10/8/2024"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":349,"Cost":225,"Date":"10/26/2024"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":402,"Cost":258,"Date":"11/16/2024"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":964,"Cost":818,"Date":"11/18/2024"},{"Store":"The Mall, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":752,"Cost":499,"Date":"12/1/2024"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":231,"Cost":145,"Date":"2/9/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":963,"Cost":849,"Date":"2/11/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":234,"Cost":129,"Date":"3/10/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":660,"Cost":507,"Date":"3/16/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":911,"Cost":523,"Date":"3/18/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":398,"Cost":237,"Date":"3/20/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":722,"Cost":593,"Date":"3/26/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":481,"Cost":342,"Date":"6/2/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":182,"Cost":138,"Date":"6/10/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":653,"Cost":500,"Date":"6/16/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":667,"Cost":557,"Date":"6/25/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":122,"Cost":95,"Date":"7/19/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":407,"Cost":339,"Date":"7/21/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":261,"Cost":198,"Date":"7/25/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":239,"Cost":159,"Date":"8/4/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":59,"Cost":33,"Date":"9/2/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":108,"Cost":67,"Date":"9/4/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":712,"Cost":627,"Date":"9/19/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":12,"Cost":8,"Date":"9/29/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":31,"Cost":16,"Date":"10/2/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":498,"Cost":365,"Date":"10/15/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":2,"Cost":1,"Date":"10/30/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":26,"Cost":15,"Date":"11/9/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":378,"Cost":235,"Date":"11/23/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":182,"Cost":126,"Date":"11/30/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":983,"Cost":779,"Date":"12/8/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":293,"Cost":277,"Date":"12/11/2018"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":807,"Cost":501,"Date":"1/15/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":265,"Cost":201,"Date":"1/24/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":492,"Cost":369,"Date":"2/3/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":321,"Cost":284,"Date":"2/4/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":915,"Cost":570,"Date":"3/9/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":635,"Cost":364,"Date":"3/12/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":981,"Cost":708,"Date":"4/19/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":715,"Cost":493,"Date":"5/3/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":847,"Cost":453,"Date":"5/4/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":310,"Cost":159,"Date":"6/8/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":236,"Cost":122,"Date":"6/26/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":332,"Cost":203,"Date":"7/4/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":621,"Cost":419,"Date":"7/13/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":83,"Cost":44,"Date":"8/8/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":492,"Cost":440,"Date":"8/26/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":402,"Cost":252,"Date":"9/2/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":382,"Cost":208,"Date":"9/29/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":143,"Cost":105,"Date":"10/12/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":148,"Cost":98,"Date":"11/2/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":639,"Cost":425,"Date":"11/4/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":221,"Cost":117,"Date":"11/7/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":504,"Cost":339,"Date":"12/1/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":670,"Cost":528,"Date":"12/4/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":512,"Cost":269,"Date":"12/7/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":21,"Cost":10,"Date":"12/18/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":736,"Cost":595,"Date":"12/20/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":790,"Cost":400,"Date":"12/20/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":752,"Cost":653,"Date":"12/21/2019"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":150,"Cost":129,"Date":"1/9/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":819,"Cost":681,"Date":"2/5/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":445,"Cost":271,"Date":"2/16/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":851,"Cost":523,"Date":"2/16/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":999,"Cost":894,"Date":"2/18/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":333,"Cost":197,"Date":"2/22/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":564,"Cost":440,"Date":"2/25/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":318,"Cost":231,"Date":"3/8/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":960,"Cost":548,"Date":"4/2/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":965,"Cost":535,"Date":"4/3/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":867,"Cost":483,"Date":"4/9/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":379,"Cost":271,"Date":"4/10/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":540,"Cost":455,"Date":"4/19/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":973,"Cost":763,"Date":"5/17/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":197,"Cost":141,"Date":"5/22/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":379,"Cost":333,"Date":"6/20/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":52,"Cost":37,"Date":"7/1/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":514,"Cost":460,"Date":"7/4/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":571,"Cost":418,"Date":"7/8/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":199,"Cost":182,"Date":"7/9/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":3,"Cost":2,"Date":"7/14/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":254,"Cost":225,"Date":"7/19/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":524,"Cost":437,"Date":"8/1/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":139,"Cost":70,"Date":"8/6/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":838,"Cost":584,"Date":"8/7/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":1,"Cost":0,"Date":"8/22/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":360,"Cost":193,"Date":"8/31/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":825,"Cost":595,"Date":"9/1/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":47,"Cost":43,"Date":"9/1/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":965,"Cost":583,"Date":"9/17/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":952,"Cost":607,"Date":"9/29/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":168,"Cost":90,"Date":"11/7/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":280,"Cost":230,"Date":"11/26/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":972,"Cost":760,"Date":"11/27/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":467,"Cost":329,"Date":"12/5/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":877,"Cost":714,"Date":"12/26/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":75,"Cost":41,"Date":"12/31/2020"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":915,"Cost":791,"Date":"1/20/2021"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":803,"Cost":414,"Date":"2/2/2021"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":257,"Cost":223,"Date":"2/8/2021"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":127,"Cost":84,"Date":"2/27/2021"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":323,"Cost":304,"Date":"3/1/2021"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":483,"Cost":453,"Date":"3/1/2021"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":137,"Cost":75,"Date":"3/19/2021"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":184,"Cost":101,"Date":"3/28/2021"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":953,"Cost":667,"Date":"5/21/2021"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":34,"Cost":19,"Date":"7/21/2021"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":162,"Cost":81,"Date":"8/5/2021"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":194,"Cost":120,"Date":"8/12/2021"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":520,"Cost":345,"Date":"8/21/2021"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":472,"Cost":253,"Date":"8/23/2021"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":769,"Cost":478,"Date":"9/3/2021"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":64,"Cost":38,"Date":"9/5/2021"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":304,"Cost":159,"Date":"10/6/2021"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":557,"Cost":469,"Date":"10/19/2021"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":811,"Cost":633,"Date":"11/15/2021"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":591,"Cost":430,"Date":"12/8/2021"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":580,"Cost":511,"Date":"1/8/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":183,"Cost":103,"Date":"1/14/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":745,"Cost":550,"Date":"1/19/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":789,"Cost":729,"Date":"1/28/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":751,"Cost":392,"Date":"1/31/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":509,"Cost":412,"Date":"3/27/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":565,"Cost":471,"Date":"4/20/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":624,"Cost":314,"Date":"4/24/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":675,"Cost":504,"Date":"4/28/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":359,"Cost":310,"Date":"5/15/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":194,"Cost":176,"Date":"5/16/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":740,"Cost":606,"Date":"5/18/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":767,"Cost":642,"Date":"6/2/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":977,"Cost":509,"Date":"6/3/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":446,"Cost":238,"Date":"6/5/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":592,"Cost":409,"Date":"6/7/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":713,"Cost":585,"Date":"6/14/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":964,"Cost":506,"Date":"6/20/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":203,"Cost":161,"Date":"6/24/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":298,"Cost":278,"Date":"7/4/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":622,"Cost":341,"Date":"7/9/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":5,"Cost":3,"Date":"7/12/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":150,"Cost":78,"Date":"8/14/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":784,"Cost":531,"Date":"8/16/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":830,"Cost":479,"Date":"8/23/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":222,"Cost":135,"Date":"9/2/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":473,"Cost":400,"Date":"9/3/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":520,"Cost":381,"Date":"9/16/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":16,"Cost":16,"Date":"10/4/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":884,"Cost":624,"Date":"11/1/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":569,"Cost":533,"Date":"11/2/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":252,"Cost":195,"Date":"12/17/2022"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":778,"Cost":461,"Date":"2/10/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":997,"Cost":517,"Date":"2/28/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":29,"Cost":21,"Date":"3/4/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":840,"Cost":645,"Date":"3/9/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":606,"Cost":543,"Date":"3/9/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":599,"Cost":458,"Date":"3/11/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":55,"Cost":32,"Date":"3/17/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":864,"Cost":816,"Date":"3/17/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":145,"Cost":88,"Date":"3/23/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":528,"Cost":338,"Date":"4/1/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":232,"Cost":188,"Date":"5/7/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":558,"Cost":378,"Date":"5/10/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":175,"Cost":166,"Date":"5/20/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":513,"Cost":273,"Date":"6/2/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":771,"Cost":631,"Date":"6/11/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":837,"Cost":644,"Date":"6/16/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":984,"Cost":605,"Date":"6/16/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":287,"Cost":224,"Date":"7/10/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":532,"Cost":392,"Date":"7/11/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":263,"Cost":158,"Date":"8/28/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":520,"Cost":309,"Date":"8/29/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":759,"Cost":465,"Date":"8/31/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":673,"Cost":607,"Date":"9/8/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":666,"Cost":385,"Date":"9/13/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":40,"Cost":33,"Date":"9/14/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":660,"Cost":597,"Date":"9/19/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":238,"Cost":217,"Date":"9/25/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":892,"Cost":757,"Date":"10/4/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":103,"Cost":88,"Date":"10/10/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":835,"Cost":434,"Date":"10/17/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":226,"Cost":178,"Date":"10/28/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":614,"Cost":557,"Date":"10/30/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":890,"Cost":711,"Date":"11/1/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":853,"Cost":534,"Date":"11/15/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":80,"Cost":52,"Date":"11/25/2023"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":388,"Cost":262,"Date":"1/10/2024"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":72,"Cost":68,"Date":"1/14/2024"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":78,"Cost":66,"Date":"1/20/2024"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":645,"Cost":610,"Date":"2/8/2024"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":263,"Cost":243,"Date":"2/25/2024"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":608,"Cost":468,"Date":"3/7/2024"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":851,"Cost":674,"Date":"3/14/2024"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":861,"Cost":595,"Date":"3/27/2024"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":334,"Cost":259,"Date":"4/5/2024"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":749,"Cost":631,"Date":"4/14/2024"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":376,"Cost":201,"Date":"5/3/2024"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":825,"Cost":559,"Date":"5/9/2024"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":234,"Cost":214,"Date":"5/15/2024"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":658,"Cost":617,"Date":"5/25/2024"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":836,"Cost":762,"Date":"5/26/2024"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":498,"Cost":406,"Date":"5/31/2024"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":813,"Cost":529,"Date":"7/27/2024"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":157,"Cost":115,"Date":"9/17/2024"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":446,"Cost":270,"Date":"10/6/2024"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":137,"Cost":91,"Date":"10/8/2024"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":397,"Cost":305,"Date":"10/26/2024"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":351,"Cost":300,"Date":"11/16/2024"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":513,"Cost":424,"Date":"11/18/2024"},{"Store":"The Mall, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":197,"Cost":99,"Date":"12/1/2024"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":445,"Cost":395,"Date":"2/9/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":186,"Cost":152,"Date":"2/11/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":157,"Cost":100,"Date":"3/10/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":348,"Cost":323,"Date":"3/16/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":284,"Cost":239,"Date":"3/18/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":37,"Cost":31,"Date":"3/20/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":985,"Cost":864,"Date":"3/26/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":955,"Cost":652,"Date":"6/2/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":250,"Cost":175,"Date":"6/10/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":439,"Cost":294,"Date":"6/16/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":557,"Cost":384,"Date":"6/25/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":797,"Cost":692,"Date":"7/19/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":671,"Cost":515,"Date":"7/21/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":486,"Cost":369,"Date":"7/25/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":735,"Cost":660,"Date":"8/4/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":323,"Cost":303,"Date":"9/2/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":785,"Cost":539,"Date":"9/4/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":706,"Cost":563,"Date":"9/19/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":354,"Cost":229,"Date":"9/29/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":722,"Cost":678,"Date":"10/2/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":132,"Cost":103,"Date":"10/15/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":522,"Cost":298,"Date":"10/30/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":400,"Cost":367,"Date":"11/9/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":861,"Cost":645,"Date":"11/23/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":927,"Cost":698,"Date":"11/30/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":714,"Cost":572,"Date":"12/8/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":244,"Cost":174,"Date":"12/11/2018"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":611,"Cost":325,"Date":"1/15/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":797,"Cost":613,"Date":"1/24/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":926,"Cost":588,"Date":"2/3/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":134,"Cost":68,"Date":"2/4/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":986,"Cost":868,"Date":"3/9/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":765,"Cost":421,"Date":"3/12/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":788,"Cost":552,"Date":"4/19/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":686,"Cost":344,"Date":"5/3/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":57,"Cost":44,"Date":"5/4/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":401,"Cost":221,"Date":"6/8/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":471,"Cost":306,"Date":"6/26/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":787,"Cost":520,"Date":"7/4/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":409,"Cost":344,"Date":"7/13/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":955,"Cost":766,"Date":"8/8/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":615,"Cost":480,"Date":"8/26/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":616,"Cost":538,"Date":"9/2/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":575,"Cost":529,"Date":"9/29/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":142,"Cost":128,"Date":"10/12/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":260,"Cost":172,"Date":"11/2/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":934,"Cost":671,"Date":"11/4/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":62,"Cost":46,"Date":"11/7/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":943,"Cost":782,"Date":"12/1/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":243,"Cost":176,"Date":"12/4/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":780,"Cost":642,"Date":"12/7/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":128,"Cost":108,"Date":"12/18/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":973,"Cost":528,"Date":"12/20/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":244,"Cost":218,"Date":"12/20/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":83,"Cost":61,"Date":"12/21/2019"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":776,"Cost":720,"Date":"1/9/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":677,"Cost":392,"Date":"2/5/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":212,"Cost":173,"Date":"2/16/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":471,"Cost":444,"Date":"2/16/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":719,"Cost":408,"Date":"2/18/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":77,"Cost":43,"Date":"2/22/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":481,"Cost":340,"Date":"2/25/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":663,"Cost":576,"Date":"3/8/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":675,"Cost":580,"Date":"4/2/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":56,"Cost":38,"Date":"4/3/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":814,"Cost":613,"Date":"4/9/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":858,"Cost":718,"Date":"4/10/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":428,"Cost":326,"Date":"4/19/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":381,"Cost":217,"Date":"5/17/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":515,"Cost":272,"Date":"5/22/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":306,"Cost":287,"Date":"6/20/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":813,"Cost":742,"Date":"7/1/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":783,"Cost":404,"Date":"7/4/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":980,"Cost":799,"Date":"7/8/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":835,"Cost":430,"Date":"7/9/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":284,"Cost":181,"Date":"7/14/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":553,"Cost":343,"Date":"7/19/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":608,"Cost":325,"Date":"8/1/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":79,"Cost":60,"Date":"8/6/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":582,"Cost":518,"Date":"8/7/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":661,"Cost":402,"Date":"8/22/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":228,"Cost":147,"Date":"8/31/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":283,"Cost":227,"Date":"9/1/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":646,"Cost":610,"Date":"9/1/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":192,"Cost":171,"Date":"9/17/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":912,"Cost":849,"Date":"9/29/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":601,"Cost":501,"Date":"11/7/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":317,"Cost":286,"Date":"11/26/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":418,"Cost":289,"Date":"11/27/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":335,"Cost":257,"Date":"12/5/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":836,"Cost":507,"Date":"12/26/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":283,"Cost":249,"Date":"12/31/2020"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":862,"Cost":684,"Date":"1/20/2021"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":667,"Cost":393,"Date":"2/2/2021"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":33,"Cost":25,"Date":"2/8/2021"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":456,"Cost":355,"Date":"2/27/2021"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":963,"Cost":554,"Date":"3/1/2021"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":514,"Cost":462,"Date":"3/1/2021"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":629,"Cost":538,"Date":"3/19/2021"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":411,"Cost":377,"Date":"3/28/2021"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":114,"Cost":100,"Date":"5/21/2021"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":601,"Cost":496,"Date":"7/21/2021"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":944,"Cost":789,"Date":"8/5/2021"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":808,"Cost":631,"Date":"8/12/2021"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":971,"Cost":654,"Date":"8/21/2021"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":232,"Cost":187,"Date":"8/23/2021"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":545,"Cost":359,"Date":"9/3/2021"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":164,"Cost":106,"Date":"9/5/2021"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":302,"Cost":274,"Date":"10/6/2021"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":513,"Cost":456,"Date":"10/19/2021"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":811,"Cost":480,"Date":"11/15/2021"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":207,"Cost":140,"Date":"12/8/2021"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":489,"Cost":249,"Date":"1/8/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":501,"Cost":291,"Date":"1/14/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":947,"Cost":728,"Date":"1/19/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":866,"Cost":612,"Date":"1/28/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":839,"Cost":463,"Date":"1/31/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":218,"Cost":142,"Date":"3/27/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":237,"Cost":155,"Date":"4/20/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":65,"Cost":43,"Date":"4/24/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":964,"Cost":804,"Date":"4/28/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":902,"Cost":464,"Date":"5/15/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":73,"Cost":65,"Date":"5/16/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":869,"Cost":549,"Date":"5/18/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":59,"Cost":36,"Date":"6/2/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":860,"Cost":661,"Date":"6/3/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":853,"Cost":565,"Date":"6/5/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":806,"Cost":534,"Date":"6/7/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":153,"Cost":116,"Date":"6/14/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":347,"Cost":324,"Date":"6/20/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":446,"Cost":407,"Date":"6/24/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":141,"Cost":120,"Date":"7/4/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":750,"Cost":662,"Date":"7/9/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":710,"Cost":535,"Date":"7/12/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":322,"Cost":233,"Date":"8/14/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":45,"Cost":23,"Date":"8/16/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":734,"Cost":645,"Date":"8/23/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":697,"Cost":365,"Date":"9/2/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":691,"Cost":550,"Date":"9/3/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":469,"Cost":390,"Date":"9/16/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":991,"Cost":529,"Date":"10/4/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":832,"Cost":430,"Date":"11/1/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":39,"Cost":36,"Date":"11/2/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":38,"Cost":20,"Date":"12/17/2022"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":605,"Cost":465,"Date":"2/10/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":607,"Cost":328,"Date":"2/28/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":916,"Cost":503,"Date":"3/4/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":764,"Cost":409,"Date":"3/9/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":863,"Cost":518,"Date":"3/9/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":106,"Cost":54,"Date":"3/11/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":599,"Cost":347,"Date":"3/17/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":464,"Cost":307,"Date":"3/17/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":619,"Cost":375,"Date":"3/23/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":840,"Cost":506,"Date":"4/1/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":858,"Cost":571,"Date":"5/7/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":655,"Cost":335,"Date":"5/10/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":608,"Cost":516,"Date":"5/20/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":475,"Cost":323,"Date":"6/2/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":978,"Cost":842,"Date":"6/11/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":246,"Cost":160,"Date":"6/16/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":545,"Cost":357,"Date":"6/16/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":100,"Cost":94,"Date":"7/10/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":363,"Cost":335,"Date":"7/11/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":602,"Cost":345,"Date":"8/28/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":66,"Cost":36,"Date":"8/29/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":879,"Cost":471,"Date":"8/31/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":9,"Cost":6,"Date":"9/8/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":258,"Cost":146,"Date":"9/13/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":823,"Cost":748,"Date":"9/14/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":857,"Cost":647,"Date":"9/19/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":816,"Cost":491,"Date":"9/25/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":491,"Cost":466,"Date":"10/4/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":358,"Cost":231,"Date":"10/10/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":912,"Cost":624,"Date":"10/17/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":109,"Cost":99,"Date":"10/28/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":687,"Cost":360,"Date":"10/30/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":917,"Cost":858,"Date":"11/1/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":108,"Cost":75,"Date":"11/15/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":845,"Cost":737,"Date":"11/25/2023"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":492,"Cost":305,"Date":"1/10/2024"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":907,"Cost":553,"Date":"1/14/2024"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":340,"Cost":296,"Date":"1/20/2024"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":203,"Cost":148,"Date":"2/8/2024"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":789,"Cost":641,"Date":"2/25/2024"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":946,"Cost":773,"Date":"3/7/2024"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":33,"Cost":23,"Date":"3/14/2024"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":656,"Cost":522,"Date":"3/27/2024"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":874,"Cost":636,"Date":"4/5/2024"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":354,"Cost":320,"Date":"4/14/2024"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":312,"Cost":178,"Date":"5/3/2024"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":752,"Cost":409,"Date":"5/9/2024"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":103,"Cost":62,"Date":"5/15/2024"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":647,"Cost":547,"Date":"5/25/2024"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":538,"Cost":449,"Date":"5/26/2024"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":832,"Cost":556,"Date":"5/31/2024"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":566,"Cost":367,"Date":"7/27/2024"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":415,"Cost":267,"Date":"9/17/2024"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":534,"Cost":375,"Date":"10/6/2024"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":162,"Cost":140,"Date":"10/8/2024"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":444,"Cost":384,"Date":"10/26/2024"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":684,"Cost":536,"Date":"11/16/2024"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":718,"Cost":430,"Date":"11/18/2024"},{"Store":"The Mall, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":210,"Cost":166,"Date":"12/1/2024"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":667,"Cost":474,"Date":"2/9/2018"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":743,"Cost":601,"Date":"2/11/2018"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":19,"Cost":15,"Date":"3/10/2018"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":452,"Cost":351,"Date":"3/16/2018"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":836,"Cost":785,"Date":"3/18/2018"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":942,"Cost":623,"Date":"3/20/2018"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":39,"Cost":24,"Date":"3/26/2018"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":730,"Cost":423,"Date":"6/2/2018"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":608,"Cost":554,"Date":"6/10/2018"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":747,"Cost":665,"Date":"6/16/2018"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":617,"Cost":333,"Date":"6/25/2018"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":494,"Cost":293,"Date":"7/19/2018"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":107,"Cost":73,"Date":"7/21/2018"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":317,"Cost":231,"Date":"7/25/2018"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":911,"Cost":611,"Date":"8/4/2018"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":262,"Cost":223,"Date":"9/2/2018"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":157,"Cost":144,"Date":"9/4/2018"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":880,"Cost":589,"Date":"9/19/2018"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":6,"Cost":3,"Date":"9/29/2018"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":541,"Cost":372,"Date":"10/2/2018"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":838,"Cost":717,"Date":"10/15/2018"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":857,"Cost":705,"Date":"10/30/2018"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":85,"Cost":48,"Date":"11/9/2018"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":713,"Cost":559,"Date":"11/23/2018"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":786,"Cost":703,"Date":"11/30/2018"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":205,"Cost":115,"Date":"12/8/2018"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":234,"Cost":135,"Date":"12/11/2018"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":644,"Cost":378,"Date":"1/15/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":306,"Cost":228,"Date":"1/24/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":266,"Cost":162,"Date":"2/3/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":663,"Cost":629,"Date":"2/4/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":1000,"Cost":910,"Date":"3/9/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":347,"Cost":326,"Date":"3/12/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":414,"Cost":382,"Date":"4/19/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":518,"Cost":313,"Date":"5/3/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":869,"Cost":645,"Date":"5/4/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":624,"Cost":394,"Date":"6/8/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":354,"Cost":309,"Date":"6/26/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":499,"Cost":402,"Date":"7/4/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":834,"Cost":683,"Date":"7/13/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":954,"Cost":902,"Date":"8/8/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":874,"Cost":824,"Date":"8/26/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":550,"Cost":443,"Date":"9/2/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":538,"Cost":471,"Date":"9/29/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":10,"Cost":6,"Date":"10/12/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":726,"Cost":548,"Date":"11/2/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":883,"Cost":805,"Date":"11/4/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":796,"Cost":426,"Date":"11/7/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":653,"Cost":562,"Date":"12/1/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":11,"Cost":10,"Date":"12/4/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":464,"Cost":254,"Date":"12/7/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":824,"Cost":627,"Date":"12/18/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":922,"Cost":470,"Date":"12/20/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":606,"Cost":370,"Date":"12/20/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":75,"Cost":58,"Date":"12/21/2019"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":351,"Cost":292,"Date":"1/9/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":737,"Cost":510,"Date":"2/5/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":923,"Cost":824,"Date":"2/16/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":240,"Cost":164,"Date":"2/16/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":308,"Cost":244,"Date":"2/18/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":806,"Cost":560,"Date":"2/22/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":639,"Cost":551,"Date":"2/25/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":919,"Cost":783,"Date":"3/8/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":930,"Cost":878,"Date":"4/2/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":850,"Cost":688,"Date":"4/3/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":268,"Cost":168,"Date":"4/9/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":843,"Cost":782,"Date":"4/10/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":797,"Cost":531,"Date":"4/19/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":713,"Cost":446,"Date":"5/17/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":766,"Cost":581,"Date":"5/22/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":918,"Cost":613,"Date":"6/20/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":483,"Cost":398,"Date":"7/1/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":712,"Cost":484,"Date":"7/4/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":210,"Cost":140,"Date":"7/8/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":775,"Cost":533,"Date":"7/9/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":883,"Cost":703,"Date":"7/14/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":948,"Cost":601,"Date":"7/19/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":478,"Cost":282,"Date":"8/1/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":619,"Cost":542,"Date":"8/6/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":770,"Cost":546,"Date":"8/7/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":181,"Cost":115,"Date":"8/22/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":752,"Cost":574,"Date":"8/31/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":44,"Cost":33,"Date":"9/1/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":513,"Cost":312,"Date":"9/1/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":585,"Cost":374,"Date":"9/17/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":183,"Cost":128,"Date":"9/29/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":500,"Cost":443,"Date":"11/7/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":220,"Cost":137,"Date":"11/26/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":871,"Cost":461,"Date":"11/27/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":485,"Cost":374,"Date":"12/5/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":586,"Cost":427,"Date":"12/26/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":235,"Cost":172,"Date":"12/31/2020"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":543,"Cost":449,"Date":"1/20/2021"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":340,"Cost":214,"Date":"2/2/2021"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":952,"Cost":607,"Date":"2/8/2021"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":521,"Cost":353,"Date":"2/27/2021"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":934,"Cost":729,"Date":"3/1/2021"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":478,"Cost":397,"Date":"3/1/2021"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":593,"Cost":398,"Date":"3/19/2021"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":720,"Cost":659,"Date":"3/28/2021"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":889,"Cost":644,"Date":"5/21/2021"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":889,"Cost":704,"Date":"7/21/2021"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":212,"Cost":169,"Date":"8/5/2021"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":570,"Cost":372,"Date":"8/12/2021"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":891,"Cost":605,"Date":"8/21/2021"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":506,"Cost":270,"Date":"8/23/2021"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":245,"Cost":154,"Date":"9/3/2021"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":659,"Cost":392,"Date":"9/5/2021"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":481,"Cost":377,"Date":"10/6/2021"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":728,"Cost":563,"Date":"10/19/2021"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":821,"Cost":598,"Date":"11/15/2021"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":332,"Cost":244,"Date":"12/8/2021"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":707,"Cost":498,"Date":"1/8/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":433,"Cost":252,"Date":"1/14/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":245,"Cost":164,"Date":"1/19/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":545,"Cost":387,"Date":"1/28/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":758,"Cost":615,"Date":"1/31/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":802,"Cost":437,"Date":"3/27/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":808,"Cost":563,"Date":"4/20/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":674,"Cost":455,"Date":"4/24/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":479,"Cost":361,"Date":"4/28/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":782,"Cost":639,"Date":"5/15/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":92,"Cost":74,"Date":"5/16/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":319,"Cost":275,"Date":"5/18/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":983,"Cost":921,"Date":"6/2/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":77,"Cost":54,"Date":"6/3/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":815,"Cost":635,"Date":"6/5/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":211,"Cost":162,"Date":"6/7/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":404,"Cost":230,"Date":"6/14/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":339,"Cost":205,"Date":"6/20/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":302,"Cost":169,"Date":"6/24/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":782,"Cost":413,"Date":"7/4/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":136,"Cost":108,"Date":"7/9/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":48,"Cost":29,"Date":"7/12/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":797,"Cost":446,"Date":"8/14/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":408,"Cost":206,"Date":"8/16/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":261,"Cost":248,"Date":"8/23/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":876,"Cost":821,"Date":"9/2/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":408,"Cost":377,"Date":"9/3/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":591,"Cost":488,"Date":"9/16/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":654,"Cost":558,"Date":"10/4/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":185,"Cost":146,"Date":"11/1/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":197,"Cost":169,"Date":"11/2/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":35,"Cost":19,"Date":"12/17/2022"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":184,"Cost":133,"Date":"2/10/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":858,"Cost":725,"Date":"2/28/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":321,"Cost":172,"Date":"3/4/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":359,"Cost":232,"Date":"3/9/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":80,"Cost":61,"Date":"3/9/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":961,"Cost":663,"Date":"3/11/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":974,"Cost":900,"Date":"3/17/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":439,"Cost":237,"Date":"3/17/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":534,"Cost":281,"Date":"3/23/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":680,"Cost":431,"Date":"4/1/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":300,"Cost":217,"Date":"5/7/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":292,"Cost":277,"Date":"5/10/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":563,"Cost":528,"Date":"5/20/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":591,"Cost":397,"Date":"6/2/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":450,"Cost":322,"Date":"6/11/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":320,"Cost":189,"Date":"6/16/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":970,"Cost":915,"Date":"6/16/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":29,"Cost":27,"Date":"7/10/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":655,"Cost":553,"Date":"7/11/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":322,"Cost":191,"Date":"8/28/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":354,"Cost":292,"Date":"8/29/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":161,"Cost":127,"Date":"8/31/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":515,"Cost":362,"Date":"9/8/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":3,"Cost":2,"Date":"9/13/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":535,"Cost":445,"Date":"9/14/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":193,"Cost":178,"Date":"9/19/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":613,"Cost":369,"Date":"9/25/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":192,"Cost":141,"Date":"10/4/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":621,"Cost":354,"Date":"10/10/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":417,"Cost":315,"Date":"10/17/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":62,"Cost":42,"Date":"10/28/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":79,"Cost":55,"Date":"10/30/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":793,"Cost":468,"Date":"11/1/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":176,"Cost":155,"Date":"11/15/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":63,"Cost":36,"Date":"11/25/2023"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":153,"Cost":144,"Date":"1/10/2024"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":364,"Cost":231,"Date":"1/14/2024"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":267,"Cost":239,"Date":"1/20/2024"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":884,"Cost":733,"Date":"2/8/2024"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":253,"Cost":226,"Date":"2/25/2024"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":110,"Cost":66,"Date":"3/7/2024"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":879,"Cost":715,"Date":"3/14/2024"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":984,"Cost":668,"Date":"3/27/2024"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":566,"Cost":404,"Date":"4/5/2024"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":301,"Cost":247,"Date":"4/14/2024"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":96,"Cost":70,"Date":"5/3/2024"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":391,"Cost":369,"Date":"5/9/2024"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":640,"Cost":579,"Date":"5/15/2024"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":344,"Cost":251,"Date":"5/25/2024"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":400,"Cost":297,"Date":"5/26/2024"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":74,"Cost":55,"Date":"5/31/2024"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":185,"Cost":109,"Date":"7/27/2024"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":615,"Cost":449,"Date":"9/17/2024"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":146,"Cost":137,"Date":"10/6/2024"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":621,"Cost":454,"Date":"10/8/2024"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":397,"Cost":223,"Date":"10/26/2024"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":434,"Cost":246,"Date":"11/16/2024"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":853,"Cost":449,"Date":"11/18/2024"},{"Store":"Sofia Ring Mall","Brand":"HM","Country":"Bulgaria","Sale":685,"Cost":636,"Date":"12/1/2024"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":886,"Cost":717,"Date":"2/9/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":49,"Cost":41,"Date":"2/11/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":68,"Cost":36,"Date":"3/10/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":414,"Cost":357,"Date":"3/16/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":219,"Cost":168,"Date":"3/18/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":169,"Cost":103,"Date":"3/20/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":586,"Cost":524,"Date":"3/26/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":476,"Cost":275,"Date":"6/2/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":582,"Cost":323,"Date":"6/10/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":520,"Cost":438,"Date":"6/16/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":852,"Cost":536,"Date":"6/25/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":263,"Cost":209,"Date":"7/19/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":443,"Cost":389,"Date":"7/21/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":562,"Cost":486,"Date":"7/25/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":73,"Cost":58,"Date":"8/4/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":333,"Cost":197,"Date":"9/2/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":146,"Cost":97,"Date":"9/4/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":450,"Cost":274,"Date":"9/19/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":450,"Cost":258,"Date":"9/29/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":572,"Cost":330,"Date":"10/2/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":439,"Cost":248,"Date":"10/15/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":66,"Cost":60,"Date":"10/30/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":617,"Cost":358,"Date":"11/9/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":473,"Cost":278,"Date":"11/23/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":400,"Cost":247,"Date":"11/30/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":556,"Cost":451,"Date":"12/8/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":900,"Cost":747,"Date":"12/11/2018"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":566,"Cost":415,"Date":"1/15/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":502,"Cost":270,"Date":"1/24/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":841,"Cost":776,"Date":"2/3/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":111,"Cost":70,"Date":"2/4/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":392,"Cost":219,"Date":"3/9/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":30,"Cost":20,"Date":"3/12/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":189,"Cost":123,"Date":"4/19/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":173,"Cost":121,"Date":"5/3/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":692,"Cost":518,"Date":"5/4/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":816,"Cost":433,"Date":"6/8/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":677,"Cost":350,"Date":"6/26/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":384,"Cost":199,"Date":"7/4/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":759,"Cost":476,"Date":"7/13/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":258,"Cost":191,"Date":"8/8/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":426,"Cost":223,"Date":"8/26/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":903,"Cost":508,"Date":"9/2/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":273,"Cost":196,"Date":"9/29/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":483,"Cost":400,"Date":"10/12/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":143,"Cost":116,"Date":"11/2/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":880,"Cost":615,"Date":"11/4/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":511,"Cost":415,"Date":"11/7/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":36,"Cost":29,"Date":"12/1/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":539,"Cost":316,"Date":"12/4/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":109,"Cost":94,"Date":"12/7/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":357,"Cost":286,"Date":"12/18/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":818,"Cost":548,"Date":"12/20/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":255,"Cost":131,"Date":"12/20/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":671,"Cost":475,"Date":"12/21/2019"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":393,"Cost":373,"Date":"1/9/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":954,"Cost":710,"Date":"2/5/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":437,"Cost":320,"Date":"2/16/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":65,"Cost":48,"Date":"2/16/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":641,"Cost":350,"Date":"2/18/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":92,"Cost":68,"Date":"2/22/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":993,"Cost":908,"Date":"2/25/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":426,"Cost":352,"Date":"3/8/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":967,"Cost":704,"Date":"4/2/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":888,"Cost":534,"Date":"4/3/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":225,"Cost":212,"Date":"4/9/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":227,"Cost":114,"Date":"4/10/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":536,"Cost":358,"Date":"4/19/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":656,"Cost":582,"Date":"5/17/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":968,"Cost":743,"Date":"5/22/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":765,"Cost":547,"Date":"6/20/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":349,"Cost":185,"Date":"7/1/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":715,"Cost":477,"Date":"7/4/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":780,"Cost":593,"Date":"7/8/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":92,"Cost":61,"Date":"7/9/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":998,"Cost":921,"Date":"7/14/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":677,"Cost":468,"Date":"7/19/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":628,"Cost":583,"Date":"8/1/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":834,"Cost":630,"Date":"8/6/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":257,"Cost":180,"Date":"8/7/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":268,"Cost":188,"Date":"8/22/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":973,"Cost":761,"Date":"8/31/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":73,"Cost":45,"Date":"9/1/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":12,"Cost":9,"Date":"9/1/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":214,"Cost":141,"Date":"9/17/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":976,"Cost":775,"Date":"9/29/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":59,"Cost":39,"Date":"11/7/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":746,"Cost":416,"Date":"11/26/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":543,"Cost":351,"Date":"11/27/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":116,"Cost":85,"Date":"12/5/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":292,"Cost":179,"Date":"12/26/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":211,"Cost":162,"Date":"12/31/2020"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":414,"Cost":368,"Date":"1/20/2021"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":99,"Cost":63,"Date":"2/2/2021"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":124,"Cost":62,"Date":"2/8/2021"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":223,"Cost":152,"Date":"2/27/2021"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":124,"Cost":97,"Date":"3/1/2021"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":568,"Cost":388,"Date":"3/1/2021"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":544,"Cost":488,"Date":"3/19/2021"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":815,"Cost":481,"Date":"3/28/2021"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":179,"Cost":124,"Date":"5/21/2021"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":36,"Cost":19,"Date":"7/21/2021"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":329,"Cost":305,"Date":"8/5/2021"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":404,"Cost":221,"Date":"8/12/2021"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":380,"Cost":359,"Date":"8/21/2021"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":996,"Cost":533,"Date":"8/23/2021"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":261,"Cost":140,"Date":"9/3/2021"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":882,"Cost":781,"Date":"9/5/2021"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":421,"Cost":311,"Date":"10/6/2021"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":176,"Cost":150,"Date":"10/19/2021"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":238,"Cost":174,"Date":"11/15/2021"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":497,"Cost":435,"Date":"12/8/2021"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":601,"Cost":518,"Date":"1/8/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":923,"Cost":517,"Date":"1/14/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":708,"Cost":454,"Date":"1/19/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":191,"Cost":123,"Date":"1/28/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":820,"Cost":490,"Date":"1/31/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":647,"Cost":527,"Date":"3/27/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":480,"Cost":442,"Date":"4/20/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":292,"Cost":193,"Date":"4/24/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":501,"Cost":465,"Date":"4/28/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":633,"Cost":582,"Date":"5/15/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":212,"Cost":181,"Date":"5/16/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":494,"Cost":399,"Date":"5/18/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":343,"Cost":199,"Date":"6/2/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":131,"Cost":101,"Date":"6/3/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":445,"Cost":361,"Date":"6/5/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":933,"Cost":490,"Date":"6/7/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":783,"Cost":471,"Date":"6/14/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":276,"Cost":252,"Date":"6/20/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":610,"Cost":411,"Date":"6/24/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":934,"Cost":862,"Date":"7/4/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":699,"Cost":539,"Date":"7/9/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":873,"Cost":652,"Date":"7/12/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":664,"Cost":505,"Date":"8/14/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":381,"Cost":336,"Date":"8/16/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":710,"Cost":475,"Date":"8/23/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":537,"Cost":479,"Date":"9/2/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":798,"Cost":419,"Date":"9/3/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":849,"Cost":491,"Date":"9/16/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":377,"Cost":322,"Date":"10/4/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":439,"Cost":410,"Date":"11/1/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":407,"Cost":209,"Date":"11/2/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":148,"Cost":100,"Date":"12/17/2022"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":627,"Cost":416,"Date":"2/10/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":201,"Cost":176,"Date":"2/28/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":540,"Cost":474,"Date":"3/4/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":460,"Cost":418,"Date":"3/9/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":128,"Cost":66,"Date":"3/9/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":878,"Cost":584,"Date":"3/11/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":38,"Cost":31,"Date":"3/17/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":844,"Cost":617,"Date":"3/17/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":789,"Cost":450,"Date":"3/23/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":535,"Cost":473,"Date":"4/1/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":497,"Cost":413,"Date":"5/7/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":207,"Cost":106,"Date":"5/10/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":438,"Cost":321,"Date":"5/20/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":488,"Cost":366,"Date":"6/2/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":730,"Cost":657,"Date":"6/11/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":224,"Cost":169,"Date":"6/16/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":127,"Cost":89,"Date":"6/16/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":170,"Cost":135,"Date":"7/10/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":974,"Cost":794,"Date":"7/11/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":1,"Cost":1,"Date":"8/28/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":673,"Cost":498,"Date":"8/29/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":540,"Cost":468,"Date":"8/31/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":470,"Cost":418,"Date":"9/8/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":245,"Cost":129,"Date":"9/13/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":60,"Cost":36,"Date":"9/14/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":549,"Cost":438,"Date":"9/19/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":457,"Cost":242,"Date":"9/25/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":633,"Cost":578,"Date":"10/4/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":650,"Cost":586,"Date":"10/10/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":600,"Cost":548,"Date":"10/17/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":820,"Cost":497,"Date":"10/28/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":162,"Cost":109,"Date":"10/30/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":576,"Cost":363,"Date":"11/1/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":531,"Cost":349,"Date":"11/15/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":280,"Cost":230,"Date":"11/25/2023"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":742,"Cost":585,"Date":"1/10/2024"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":549,"Cost":346,"Date":"1/14/2024"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":752,"Cost":387,"Date":"1/20/2024"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":154,"Cost":109,"Date":"2/8/2024"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":706,"Cost":495,"Date":"2/25/2024"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":244,"Cost":222,"Date":"3/7/2024"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":131,"Cost":123,"Date":"3/14/2024"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":659,"Cost":340,"Date":"3/27/2024"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":133,"Cost":124,"Date":"4/5/2024"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":493,"Cost":463,"Date":"4/14/2024"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":221,"Cost":168,"Date":"5/3/2024"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":888,"Cost":819,"Date":"5/9/2024"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":806,"Cost":744,"Date":"5/15/2024"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":593,"Cost":316,"Date":"5/25/2024"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":370,"Cost":246,"Date":"5/26/2024"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":908,"Cost":628,"Date":"5/31/2024"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":666,"Cost":346,"Date":"7/27/2024"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":341,"Cost":266,"Date":"9/17/2024"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":634,"Cost":541,"Date":"10/6/2024"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":899,"Cost":762,"Date":"10/8/2024"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":690,"Cost":445,"Date":"10/26/2024"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":413,"Cost":357,"Date":"11/16/2024"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":407,"Cost":262,"Date":"11/18/2024"},{"Store":"Sofia Ring Mall","Brand":"COS","Country":"Bulgaria","Sale":224,"Cost":149,"Date":"12/1/2024"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":316,"Cost":191,"Date":"2/9/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":412,"Cost":339,"Date":"2/11/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":454,"Cost":341,"Date":"3/10/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":747,"Cost":630,"Date":"3/16/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":566,"Cost":400,"Date":"3/18/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":903,"Cost":683,"Date":"3/20/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":948,"Cost":524,"Date":"3/26/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":482,"Cost":320,"Date":"6/2/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":999,"Cost":542,"Date":"6/10/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":634,"Cost":534,"Date":"6/16/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":513,"Cost":336,"Date":"6/25/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":626,"Cost":549,"Date":"7/19/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":71,"Cost":65,"Date":"7/21/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":109,"Cost":90,"Date":"7/25/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":912,"Cost":852,"Date":"8/4/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":835,"Cost":552,"Date":"9/2/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":382,"Cost":295,"Date":"9/4/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":35,"Cost":28,"Date":"9/19/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":40,"Cost":24,"Date":"9/29/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":823,"Cost":667,"Date":"10/2/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":977,"Cost":786,"Date":"10/15/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":955,"Cost":554,"Date":"10/30/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":252,"Cost":186,"Date":"11/9/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":439,"Cost":256,"Date":"11/23/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":259,"Cost":149,"Date":"11/30/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":83,"Cost":62,"Date":"12/8/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":623,"Cost":315,"Date":"12/11/2018"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":582,"Cost":491,"Date":"1/15/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":800,"Cost":553,"Date":"1/24/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":357,"Cost":337,"Date":"2/3/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":949,"Cost":705,"Date":"2/4/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":910,"Cost":817,"Date":"3/9/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":858,"Cost":531,"Date":"3/12/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":154,"Cost":117,"Date":"4/19/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":389,"Cost":218,"Date":"5/3/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":849,"Cost":582,"Date":"5/4/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":684,"Cost":543,"Date":"6/8/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":187,"Cost":154,"Date":"6/26/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":709,"Cost":437,"Date":"7/4/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":617,"Cost":417,"Date":"7/13/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":21,"Cost":16,"Date":"8/8/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":823,"Cost":678,"Date":"8/26/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":517,"Cost":410,"Date":"9/2/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":49,"Cost":39,"Date":"9/29/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":971,"Cost":538,"Date":"10/12/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":532,"Cost":362,"Date":"11/2/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":405,"Cost":254,"Date":"11/4/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":339,"Cost":219,"Date":"11/7/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":705,"Cost":389,"Date":"12/1/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":102,"Cost":97,"Date":"12/4/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":366,"Cost":271,"Date":"12/7/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":429,"Cost":321,"Date":"12/18/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":560,"Cost":505,"Date":"12/20/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":213,"Cost":149,"Date":"12/20/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":166,"Cost":83,"Date":"12/21/2019"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":177,"Cost":111,"Date":"1/9/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":798,"Cost":498,"Date":"2/5/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":626,"Cost":362,"Date":"2/16/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":197,"Cost":159,"Date":"2/16/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":72,"Cost":45,"Date":"2/18/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":77,"Cost":54,"Date":"2/22/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":167,"Cost":84,"Date":"2/25/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":801,"Cost":663,"Date":"3/8/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":99,"Cost":77,"Date":"4/2/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":857,"Cost":607,"Date":"4/3/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":989,"Cost":539,"Date":"4/9/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":866,"Cost":717,"Date":"4/10/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":8,"Cost":5,"Date":"4/19/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":654,"Cost":570,"Date":"5/17/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":287,"Cost":144,"Date":"5/22/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":155,"Cost":144,"Date":"6/20/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":712,"Cost":480,"Date":"7/1/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":300,"Cost":169,"Date":"7/4/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":438,"Cost":357,"Date":"7/8/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":538,"Cost":410,"Date":"7/9/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":459,"Cost":295,"Date":"7/14/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":332,"Cost":219,"Date":"7/19/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":57,"Cost":29,"Date":"8/1/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":703,"Cost":466,"Date":"8/6/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":922,"Cost":559,"Date":"8/7/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":755,"Cost":548,"Date":"8/22/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":775,"Cost":594,"Date":"8/31/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":330,"Cost":264,"Date":"9/1/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":935,"Cost":861,"Date":"9/1/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":311,"Cost":175,"Date":"9/17/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":888,"Cost":737,"Date":"9/29/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":618,"Cost":338,"Date":"11/7/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":616,"Cost":358,"Date":"11/26/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":398,"Cost":238,"Date":"11/27/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":106,"Cost":74,"Date":"12/5/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":348,"Cost":217,"Date":"12/26/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":629,"Cost":527,"Date":"12/31/2020"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":952,"Cost":797,"Date":"1/20/2021"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":996,"Cost":859,"Date":"2/2/2021"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":299,"Cost":234,"Date":"2/8/2021"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":513,"Cost":302,"Date":"2/27/2021"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":393,"Cost":357,"Date":"3/1/2021"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":415,"Cost":356,"Date":"3/1/2021"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":582,"Cost":452,"Date":"3/19/2021"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":749,"Cost":589,"Date":"3/28/2021"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":927,"Cost":569,"Date":"5/21/2021"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":544,"Cost":272,"Date":"7/21/2021"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":1,"Cost":1,"Date":"8/5/2021"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":518,"Cost":281,"Date":"8/12/2021"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":906,"Cost":653,"Date":"8/21/2021"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":750,"Cost":481,"Date":"8/23/2021"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":571,"Cost":316,"Date":"9/3/2021"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":584,"Cost":350,"Date":"9/5/2021"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":189,"Cost":158,"Date":"10/6/2021"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":12,"Cost":9,"Date":"10/19/2021"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":133,"Cost":98,"Date":"11/15/2021"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":926,"Cost":498,"Date":"12/8/2021"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":402,"Cost":203,"Date":"1/8/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":357,"Cost":283,"Date":"1/14/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":184,"Cost":120,"Date":"1/19/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":719,"Cost":374,"Date":"1/28/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":371,"Cost":309,"Date":"1/31/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":890,"Cost":733,"Date":"3/27/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":317,"Cost":178,"Date":"4/20/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":467,"Cost":251,"Date":"4/24/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":27,"Cost":19,"Date":"4/28/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":800,"Cost":645,"Date":"5/15/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":330,"Cost":207,"Date":"5/16/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":64,"Cost":44,"Date":"5/18/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":240,"Cost":199,"Date":"6/2/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":656,"Cost":531,"Date":"6/3/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":975,"Cost":532,"Date":"6/5/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":92,"Cost":68,"Date":"6/7/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":805,"Cost":428,"Date":"6/14/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":67,"Cost":45,"Date":"6/20/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":207,"Cost":106,"Date":"6/24/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":113,"Cost":76,"Date":"7/4/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":462,"Cost":402,"Date":"7/9/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":338,"Cost":181,"Date":"7/12/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":486,"Cost":372,"Date":"8/14/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":937,"Cost":789,"Date":"8/16/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":143,"Cost":115,"Date":"8/23/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":33,"Cost":28,"Date":"9/2/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":212,"Cost":167,"Date":"9/3/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":28,"Cost":21,"Date":"9/16/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":500,"Cost":437,"Date":"10/4/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":786,"Cost":747,"Date":"11/1/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":436,"Cost":262,"Date":"11/2/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":255,"Cost":202,"Date":"12/17/2022"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":26,"Cost":15,"Date":"2/10/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":420,"Cost":247,"Date":"2/28/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":924,"Cost":564,"Date":"3/4/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":942,"Cost":483,"Date":"3/9/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":484,"Cost":410,"Date":"3/9/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":872,"Cost":622,"Date":"3/11/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":285,"Cost":248,"Date":"3/17/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":946,"Cost":669,"Date":"3/17/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":542,"Cost":498,"Date":"3/23/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":686,"Cost":345,"Date":"4/1/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":561,"Cost":473,"Date":"5/7/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":845,"Cost":756,"Date":"5/10/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":185,"Cost":123,"Date":"5/20/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":854,"Cost":720,"Date":"6/2/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":264,"Cost":171,"Date":"6/11/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":901,"Cost":746,"Date":"6/16/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":810,"Cost":518,"Date":"6/16/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":202,"Cost":165,"Date":"7/10/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":942,"Cost":524,"Date":"7/11/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":597,"Cost":516,"Date":"8/28/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":740,"Cost":472,"Date":"8/29/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":378,"Cost":271,"Date":"8/31/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":991,"Cost":930,"Date":"9/8/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":672,"Cost":374,"Date":"9/13/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":781,"Cost":693,"Date":"9/14/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":918,"Cost":542,"Date":"9/19/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":376,"Cost":317,"Date":"9/25/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":618,"Cost":316,"Date":"10/4/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":673,"Cost":411,"Date":"10/10/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":973,"Cost":553,"Date":"10/17/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":486,"Cost":258,"Date":"10/28/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":670,"Cost":463,"Date":"10/30/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":960,"Cost":594,"Date":"11/1/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":119,"Cost":104,"Date":"11/15/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":804,"Cost":459,"Date":"11/25/2023"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":924,"Cost":536,"Date":"1/10/2024"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":822,"Cost":764,"Date":"1/14/2024"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":1,"Cost":1,"Date":"1/20/2024"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":735,"Cost":469,"Date":"2/8/2024"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":452,"Cost":375,"Date":"2/25/2024"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":6,"Cost":5,"Date":"3/7/2024"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":838,"Cost":443,"Date":"3/14/2024"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":767,"Cost":426,"Date":"3/27/2024"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":910,"Cost":672,"Date":"4/5/2024"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":114,"Cost":78,"Date":"4/14/2024"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":835,"Cost":644,"Date":"5/3/2024"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":599,"Cost":518,"Date":"5/9/2024"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":939,"Cost":723,"Date":"5/15/2024"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":828,"Cost":505,"Date":"5/25/2024"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":679,"Cost":529,"Date":"5/26/2024"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":997,"Cost":693,"Date":"5/31/2024"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":605,"Cost":362,"Date":"7/27/2024"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":804,"Cost":722,"Date":"9/17/2024"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":493,"Cost":317,"Date":"10/6/2024"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":218,"Cost":187,"Date":"10/8/2024"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":646,"Cost":396,"Date":"10/26/2024"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":269,"Cost":208,"Date":"11/16/2024"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":59,"Cost":31,"Date":"11/18/2024"},{"Store":"Sofia Ring Mall","Brand":"Nova","Country":"Bulgaria","Sale":41,"Cost":39,"Date":"12/1/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":940,"Cost":647,"Date":"2/9/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":318,"Cost":177,"Date":"2/11/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":151,"Cost":106,"Date":"3/10/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":491,"Cost":254,"Date":"3/16/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":796,"Cost":675,"Date":"3/18/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":342,"Cost":305,"Date":"3/20/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":681,"Cost":643,"Date":"3/26/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":695,"Cost":466,"Date":"6/2/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":896,"Cost":781,"Date":"6/10/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":50,"Cost":31,"Date":"6/16/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":537,"Cost":268,"Date":"6/25/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":543,"Cost":332,"Date":"7/19/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":339,"Cost":319,"Date":"7/21/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":795,"Cost":693,"Date":"7/25/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":253,"Cost":150,"Date":"8/4/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":901,"Cost":577,"Date":"9/2/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":482,"Cost":278,"Date":"9/4/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":922,"Cost":509,"Date":"9/19/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":639,"Cost":335,"Date":"9/29/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":230,"Cost":157,"Date":"10/2/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":621,"Cost":485,"Date":"10/15/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":29,"Cost":23,"Date":"10/30/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":456,"Cost":236,"Date":"11/9/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":49,"Cost":42,"Date":"11/23/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":733,"Cost":648,"Date":"11/30/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":164,"Cost":149,"Date":"12/8/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":358,"Cost":327,"Date":"12/11/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":188,"Cost":175,"Date":"1/15/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":221,"Cost":163,"Date":"1/24/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":153,"Cost":103,"Date":"2/3/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":666,"Cost":387,"Date":"2/4/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":964,"Cost":883,"Date":"3/9/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":744,"Cost":668,"Date":"3/12/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":193,"Cost":176,"Date":"4/19/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":765,"Cost":677,"Date":"5/3/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":287,"Cost":253,"Date":"5/4/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":751,"Cost":598,"Date":"6/8/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":243,"Cost":122,"Date":"6/26/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":572,"Cost":538,"Date":"7/4/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":151,"Cost":125,"Date":"7/13/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":451,"Cost":241,"Date":"8/8/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":646,"Cost":341,"Date":"8/26/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":500,"Cost":350,"Date":"9/2/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":911,"Cost":564,"Date":"9/29/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":498,"Cost":420,"Date":"10/12/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":592,"Cost":387,"Date":"11/2/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":282,"Cost":200,"Date":"11/4/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":671,"Cost":436,"Date":"11/7/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":36,"Cost":26,"Date":"12/1/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":665,"Cost":435,"Date":"12/4/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":195,"Cost":139,"Date":"12/7/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":702,"Cost":609,"Date":"12/18/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":63,"Cost":48,"Date":"12/20/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":526,"Cost":406,"Date":"12/20/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":538,"Cost":372,"Date":"12/21/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":1,"Cost":1,"Date":"1/9/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":261,"Cost":243,"Date":"2/5/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":637,"Cost":596,"Date":"2/16/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":804,"Cost":699,"Date":"2/16/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":693,"Cost":426,"Date":"2/18/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":212,"Cost":188,"Date":"2/22/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":617,"Cost":422,"Date":"2/25/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":492,"Cost":399,"Date":"3/8/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":370,"Cost":309,"Date":"4/2/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":946,"Cost":798,"Date":"4/3/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":63,"Cost":58,"Date":"4/9/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":159,"Cost":83,"Date":"4/10/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":913,"Cost":689,"Date":"4/19/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":93,"Cost":54,"Date":"5/17/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":12,"Cost":9,"Date":"5/22/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":566,"Cost":465,"Date":"6/20/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":270,"Cost":172,"Date":"7/1/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":932,"Cost":517,"Date":"7/4/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":807,"Cost":600,"Date":"7/8/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":51,"Cost":41,"Date":"7/9/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":865,"Cost":806,"Date":"7/14/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":144,"Cost":95,"Date":"7/19/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":964,"Cost":572,"Date":"8/1/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":117,"Cost":104,"Date":"8/6/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":30,"Cost":22,"Date":"8/7/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":235,"Cost":176,"Date":"8/22/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":287,"Cost":191,"Date":"8/31/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":805,"Cost":548,"Date":"9/1/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":205,"Cost":174,"Date":"9/1/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":196,"Cost":181,"Date":"9/17/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":332,"Cost":269,"Date":"9/29/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":287,"Cost":245,"Date":"11/7/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":295,"Cost":215,"Date":"11/26/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":728,"Cost":688,"Date":"11/27/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":937,"Cost":669,"Date":"12/5/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":927,"Cost":806,"Date":"12/26/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":949,"Cost":666,"Date":"12/31/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":861,"Cost":777,"Date":"1/20/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":180,"Cost":168,"Date":"2/2/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":983,"Cost":746,"Date":"2/8/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":300,"Cost":254,"Date":"2/27/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":229,"Cost":182,"Date":"3/1/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":491,"Cost":342,"Date":"3/1/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":723,"Cost":435,"Date":"3/19/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":133,"Cost":80,"Date":"3/28/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":955,"Cost":695,"Date":"5/21/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":707,"Cost":544,"Date":"7/21/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":81,"Cost":65,"Date":"8/5/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":756,"Cost":411,"Date":"8/12/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":330,"Cost":222,"Date":"8/21/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":689,"Cost":581,"Date":"8/23/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":404,"Cost":213,"Date":"9/3/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":358,"Cost":320,"Date":"9/5/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":10,"Cost":6,"Date":"10/6/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":671,"Cost":392,"Date":"10/19/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":843,"Cost":699,"Date":"11/15/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":99,"Cost":81,"Date":"12/8/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":371,"Cost":304,"Date":"1/8/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":259,"Cost":188,"Date":"1/14/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":402,"Cost":259,"Date":"1/19/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":982,"Cost":491,"Date":"1/28/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":567,"Cost":517,"Date":"1/31/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":424,"Cost":350,"Date":"3/27/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":768,"Cost":560,"Date":"4/20/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":606,"Cost":307,"Date":"4/24/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":335,"Cost":246,"Date":"4/28/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":238,"Cost":133,"Date":"5/15/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":620,"Cost":432,"Date":"5/16/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":559,"Cost":301,"Date":"5/18/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":922,"Cost":505,"Date":"6/2/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":161,"Cost":115,"Date":"6/3/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":869,"Cost":493,"Date":"6/5/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":770,"Cost":589,"Date":"6/7/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":848,"Cost":657,"Date":"6/14/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":498,"Cost":282,"Date":"6/20/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":73,"Cost":49,"Date":"6/24/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":128,"Cost":85,"Date":"7/4/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":900,"Cost":471,"Date":"7/9/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":760,"Cost":512,"Date":"7/12/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":137,"Cost":94,"Date":"8/14/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":587,"Cost":390,"Date":"8/16/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":97,"Cost":89,"Date":"8/23/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":397,"Cost":372,"Date":"9/2/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":266,"Cost":189,"Date":"9/3/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":534,"Cost":472,"Date":"9/16/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":484,"Cost":433,"Date":"10/4/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":360,"Cost":220,"Date":"11/1/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":650,"Cost":572,"Date":"11/2/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":999,"Cost":601,"Date":"12/17/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":354,"Cost":329,"Date":"2/10/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":393,"Cost":204,"Date":"2/28/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":989,"Cost":792,"Date":"3/4/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":369,"Cost":248,"Date":"3/9/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":339,"Cost":223,"Date":"3/9/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":472,"Cost":238,"Date":"3/11/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":388,"Cost":272,"Date":"3/17/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":118,"Cost":110,"Date":"3/17/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":790,"Cost":502,"Date":"3/23/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":268,"Cost":195,"Date":"4/1/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":468,"Cost":239,"Date":"5/7/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":504,"Cost":323,"Date":"5/10/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":754,"Cost":477,"Date":"5/20/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":384,"Cost":263,"Date":"6/2/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":950,"Cost":843,"Date":"6/11/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":278,"Cost":238,"Date":"6/16/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":375,"Cost":278,"Date":"6/16/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":941,"Cost":515,"Date":"7/10/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":365,"Cost":183,"Date":"7/11/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":766,"Cost":655,"Date":"8/28/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":146,"Cost":135,"Date":"8/29/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":495,"Cost":324,"Date":"8/31/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":177,"Cost":94,"Date":"9/8/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":509,"Cost":313,"Date":"9/13/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":740,"Cost":487,"Date":"9/14/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":557,"Cost":412,"Date":"9/19/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":239,"Cost":120,"Date":"9/25/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":873,"Cost":775,"Date":"10/4/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":504,"Cost":471,"Date":"10/10/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":483,"Cost":245,"Date":"10/17/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":216,"Cost":185,"Date":"10/28/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":583,"Cost":359,"Date":"10/30/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":689,"Cost":407,"Date":"11/1/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":633,"Cost":345,"Date":"11/15/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":673,"Cost":423,"Date":"11/25/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":898,"Cost":669,"Date":"1/10/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":522,"Cost":401,"Date":"1/14/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":182,"Cost":170,"Date":"1/20/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":911,"Cost":646,"Date":"2/8/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":904,"Cost":790,"Date":"2/25/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":463,"Cost":347,"Date":"3/7/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":225,"Cost":139,"Date":"3/14/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":95,"Cost":66,"Date":"3/27/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":868,"Cost":627,"Date":"4/5/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":379,"Cost":302,"Date":"4/14/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":839,"Cost":648,"Date":"5/3/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":806,"Cost":738,"Date":"5/9/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":484,"Cost":434,"Date":"5/15/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":760,"Cost":388,"Date":"5/25/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":25,"Cost":22,"Date":"5/26/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":368,"Cost":223,"Date":"5/31/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":719,"Cost":504,"Date":"7/27/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":520,"Cost":302,"Date":"9/17/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":263,"Cost":205,"Date":"10/6/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":112,"Cost":104,"Date":"10/8/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":488,"Cost":415,"Date":"10/26/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":467,"Cost":288,"Date":"11/16/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":97,"Cost":88,"Date":"11/18/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":758,"Cost":621,"Date":"12/1/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":249,"Cost":224,"Date":"2/9/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":164,"Cost":126,"Date":"2/11/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":84,"Cost":59,"Date":"3/10/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":795,"Cost":594,"Date":"3/16/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":363,"Cost":281,"Date":"3/18/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":394,"Cost":222,"Date":"3/20/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":788,"Cost":395,"Date":"3/26/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":705,"Cost":409,"Date":"6/2/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":363,"Cost":190,"Date":"6/10/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":274,"Cost":162,"Date":"6/16/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":842,"Cost":594,"Date":"6/25/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":961,"Cost":797,"Date":"7/19/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":132,"Cost":106,"Date":"7/21/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":606,"Cost":366,"Date":"7/25/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":657,"Cost":427,"Date":"8/4/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":466,"Cost":389,"Date":"9/2/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":400,"Cost":243,"Date":"9/4/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":70,"Cost":54,"Date":"9/19/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":915,"Cost":499,"Date":"9/29/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":198,"Cost":114,"Date":"10/2/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":564,"Cost":339,"Date":"10/15/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":228,"Cost":182,"Date":"10/30/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":837,"Cost":664,"Date":"11/9/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":286,"Cost":203,"Date":"11/23/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":897,"Cost":710,"Date":"11/30/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":239,"Cost":193,"Date":"12/8/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":467,"Cost":391,"Date":"12/11/2018"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":841,"Cost":558,"Date":"1/15/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":154,"Cost":135,"Date":"1/24/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":42,"Cost":33,"Date":"2/3/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":533,"Cost":366,"Date":"2/4/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":977,"Cost":770,"Date":"3/9/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":63,"Cost":49,"Date":"3/12/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":357,"Cost":329,"Date":"4/19/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":250,"Cost":125,"Date":"5/3/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":240,"Cost":209,"Date":"5/4/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":597,"Cost":424,"Date":"6/8/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":677,"Cost":389,"Date":"6/26/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":493,"Cost":253,"Date":"7/4/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":515,"Cost":278,"Date":"7/13/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":979,"Cost":695,"Date":"8/8/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":315,"Cost":212,"Date":"8/26/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":493,"Cost":349,"Date":"9/2/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":892,"Cost":582,"Date":"9/29/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":954,"Cost":682,"Date":"10/12/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":973,"Cost":670,"Date":"11/2/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":659,"Cost":470,"Date":"11/4/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":356,"Cost":245,"Date":"11/7/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":477,"Cost":410,"Date":"12/1/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":395,"Cost":219,"Date":"12/4/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":678,"Cost":591,"Date":"12/7/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":614,"Cost":332,"Date":"12/18/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":669,"Cost":568,"Date":"12/20/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":178,"Cost":165,"Date":"12/20/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":891,"Cost":446,"Date":"12/21/2019"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":971,"Cost":679,"Date":"1/9/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":395,"Cost":342,"Date":"2/5/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":975,"Cost":912,"Date":"2/16/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":372,"Cost":299,"Date":"2/16/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":228,"Cost":130,"Date":"2/18/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":671,"Cost":372,"Date":"2/22/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":941,"Cost":593,"Date":"2/25/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":245,"Cost":126,"Date":"3/8/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":998,"Cost":683,"Date":"4/2/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":497,"Cost":385,"Date":"4/3/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":432,"Cost":329,"Date":"4/9/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":714,"Cost":623,"Date":"4/10/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":624,"Cost":367,"Date":"4/19/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":714,"Cost":477,"Date":"5/17/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":93,"Cost":65,"Date":"5/22/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":156,"Cost":148,"Date":"6/20/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":211,"Cost":190,"Date":"7/1/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":904,"Cost":549,"Date":"7/4/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":413,"Cost":268,"Date":"7/8/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":654,"Cost":462,"Date":"7/9/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":49,"Cost":34,"Date":"7/14/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":747,"Cost":532,"Date":"7/19/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":476,"Cost":408,"Date":"8/1/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":473,"Cost":375,"Date":"8/6/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":290,"Cost":213,"Date":"8/7/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":101,"Cost":88,"Date":"8/22/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":206,"Cost":157,"Date":"8/31/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":373,"Cost":286,"Date":"9/1/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":276,"Cost":202,"Date":"9/1/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":424,"Cost":351,"Date":"9/17/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":401,"Cost":278,"Date":"9/29/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":607,"Cost":436,"Date":"11/7/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":610,"Cost":566,"Date":"11/26/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":857,"Cost":491,"Date":"11/27/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":895,"Cost":504,"Date":"12/5/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":591,"Cost":419,"Date":"12/26/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":254,"Cost":191,"Date":"12/31/2020"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":681,"Cost":430,"Date":"1/20/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":639,"Cost":563,"Date":"2/2/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":202,"Cost":181,"Date":"2/8/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":525,"Cost":494,"Date":"2/27/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":291,"Cost":201,"Date":"3/1/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":538,"Cost":461,"Date":"3/1/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":823,"Cost":455,"Date":"3/19/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":9,"Cost":6,"Date":"3/28/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":622,"Cost":543,"Date":"5/21/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":362,"Cost":205,"Date":"7/21/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":632,"Cost":524,"Date":"8/5/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":573,"Cost":526,"Date":"8/12/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":111,"Cost":66,"Date":"8/21/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":127,"Cost":64,"Date":"8/23/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":344,"Cost":280,"Date":"9/3/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":748,"Cost":513,"Date":"9/5/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":612,"Cost":317,"Date":"10/6/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":164,"Cost":116,"Date":"10/19/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":262,"Cost":215,"Date":"11/15/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":519,"Cost":351,"Date":"12/8/2021"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":627,"Cost":355,"Date":"1/8/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":762,"Cost":544,"Date":"1/14/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":806,"Cost":746,"Date":"1/19/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":445,"Cost":379,"Date":"1/28/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":659,"Cost":566,"Date":"1/31/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":984,"Cost":575,"Date":"3/27/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":869,"Cost":582,"Date":"4/20/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":570,"Cost":290,"Date":"4/24/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":504,"Cost":280,"Date":"4/28/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":543,"Cost":384,"Date":"5/15/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":973,"Cost":684,"Date":"5/16/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":191,"Cost":179,"Date":"5/18/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":397,"Cost":220,"Date":"6/2/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":331,"Cost":244,"Date":"6/3/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":999,"Cost":508,"Date":"6/5/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":126,"Cost":74,"Date":"6/7/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":842,"Cost":674,"Date":"6/14/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":130,"Cost":93,"Date":"6/20/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":212,"Cost":145,"Date":"6/24/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":231,"Cost":131,"Date":"7/4/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":266,"Cost":208,"Date":"7/9/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":85,"Cost":74,"Date":"7/12/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":76,"Cost":56,"Date":"8/14/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":797,"Cost":658,"Date":"8/16/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":568,"Cost":371,"Date":"8/23/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":837,"Cost":563,"Date":"9/2/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":218,"Cost":195,"Date":"9/3/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":917,"Cost":618,"Date":"9/16/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":401,"Cost":301,"Date":"10/4/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":329,"Cost":271,"Date":"11/1/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":791,"Cost":715,"Date":"11/2/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":592,"Cost":557,"Date":"12/17/2022"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":974,"Cost":712,"Date":"2/10/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":237,"Cost":155,"Date":"2/28/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":29,"Cost":17,"Date":"3/4/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":756,"Cost":512,"Date":"3/9/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":588,"Cost":543,"Date":"3/9/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":21,"Cost":17,"Date":"3/11/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":338,"Cost":234,"Date":"3/17/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":735,"Cost":370,"Date":"3/17/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":128,"Cost":93,"Date":"3/23/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":299,"Cost":252,"Date":"4/1/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":606,"Cost":532,"Date":"5/7/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":597,"Cost":421,"Date":"5/10/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":985,"Cost":533,"Date":"5/20/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":154,"Cost":109,"Date":"6/2/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":918,"Cost":746,"Date":"6/11/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":9,"Cost":5,"Date":"6/16/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":932,"Cost":705,"Date":"6/16/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":843,"Cost":756,"Date":"7/10/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":640,"Cost":486,"Date":"7/11/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":329,"Cost":195,"Date":"8/28/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":866,"Cost":509,"Date":"8/29/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":845,"Cost":683,"Date":"8/31/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":841,"Cost":691,"Date":"9/8/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":144,"Cost":125,"Date":"9/13/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":564,"Cost":343,"Date":"9/14/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":162,"Cost":121,"Date":"9/19/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":196,"Cost":102,"Date":"9/25/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":726,"Cost":618,"Date":"10/4/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":173,"Cost":163,"Date":"10/10/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":876,"Cost":683,"Date":"10/17/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":46,"Cost":23,"Date":"10/28/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":374,"Cost":282,"Date":"10/30/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":486,"Cost":293,"Date":"11/1/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":135,"Cost":97,"Date":"11/15/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":269,"Cost":162,"Date":"11/25/2023"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":680,"Cost":533,"Date":"1/10/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":266,"Cost":156,"Date":"1/14/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":653,"Cost":462,"Date":"1/20/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":69,"Cost":52,"Date":"2/8/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":983,"Cost":632,"Date":"2/25/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":30,"Cost":21,"Date":"3/7/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":512,"Cost":373,"Date":"3/14/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":668,"Cost":552,"Date":"3/27/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":867,"Cost":691,"Date":"4/5/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":652,"Cost":439,"Date":"4/14/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":789,"Cost":571,"Date":"5/3/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":167,"Cost":148,"Date":"5/9/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":773,"Cost":395,"Date":"5/15/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":580,"Cost":330,"Date":"5/25/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":549,"Cost":371,"Date":"5/26/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":423,"Cost":378,"Date":"5/31/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":565,"Cost":385,"Date":"7/27/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":995,"Cost":592,"Date":"9/17/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":433,"Cost":408,"Date":"10/6/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":580,"Cost":528,"Date":"10/8/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":626,"Cost":391,"Date":"10/26/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":421,"Cost":379,"Date":"11/16/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":20,"Cost":16,"Date":"11/18/2024"},{"Store":"Zara Plaza, Sofia","Brand":"Jeans","Country":"Bulgaria","Sale":207,"Cost":147,"Date":"12/1/2024"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":503,"Cost":296,"Date":"2/9/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":61,"Cost":44,"Date":"2/11/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":817,"Cost":511,"Date":"3/10/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":89,"Cost":48,"Date":"3/16/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":308,"Cost":159,"Date":"3/18/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":74,"Cost":60,"Date":"3/20/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":283,"Cost":237,"Date":"3/26/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":155,"Cost":89,"Date":"6/2/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":422,"Cost":376,"Date":"6/10/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":971,"Cost":722,"Date":"6/16/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":14,"Cost":8,"Date":"6/25/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":870,"Cost":491,"Date":"7/19/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":384,"Cost":355,"Date":"7/21/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":936,"Cost":794,"Date":"7/25/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":203,"Cost":151,"Date":"8/4/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":187,"Cost":111,"Date":"9/2/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":436,"Cost":350,"Date":"9/4/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":450,"Cost":310,"Date":"9/19/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":384,"Cost":302,"Date":"9/29/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":420,"Cost":265,"Date":"10/2/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":968,"Cost":594,"Date":"10/15/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":789,"Cost":586,"Date":"10/30/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":781,"Cost":506,"Date":"11/9/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":708,"Cost":597,"Date":"11/23/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":698,"Cost":499,"Date":"11/30/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":706,"Cost":522,"Date":"12/8/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":315,"Cost":158,"Date":"12/11/2018"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":954,"Cost":607,"Date":"1/15/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":424,"Cost":230,"Date":"1/24/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":190,"Cost":174,"Date":"2/3/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":515,"Cost":483,"Date":"2/4/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":445,"Cost":331,"Date":"3/9/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":579,"Cost":470,"Date":"3/12/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":234,"Cost":189,"Date":"4/19/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":672,"Cost":542,"Date":"5/3/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":290,"Cost":248,"Date":"5/4/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":916,"Cost":753,"Date":"6/8/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":434,"Cost":368,"Date":"6/26/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":14,"Cost":13,"Date":"7/4/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":739,"Cost":508,"Date":"7/13/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":700,"Cost":407,"Date":"8/8/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":377,"Cost":223,"Date":"8/26/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":876,"Cost":629,"Date":"9/2/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":294,"Cost":241,"Date":"9/29/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":427,"Cost":240,"Date":"10/12/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":951,"Cost":695,"Date":"11/2/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":700,"Cost":624,"Date":"11/4/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":45,"Cost":37,"Date":"11/7/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":143,"Cost":85,"Date":"12/1/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":506,"Cost":461,"Date":"12/4/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":348,"Cost":321,"Date":"12/7/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":950,"Cost":667,"Date":"12/18/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":804,"Cost":486,"Date":"12/20/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":175,"Cost":112,"Date":"12/20/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":348,"Cost":266,"Date":"12/21/2019"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":407,"Cost":329,"Date":"1/9/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":616,"Cost":371,"Date":"2/5/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":552,"Cost":414,"Date":"2/16/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":839,"Cost":480,"Date":"2/16/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":303,"Cost":156,"Date":"2/18/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":217,"Cost":116,"Date":"2/22/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":739,"Cost":473,"Date":"2/25/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":624,"Cost":508,"Date":"3/8/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":62,"Cost":36,"Date":"4/2/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":76,"Cost":55,"Date":"4/3/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":823,"Cost":712,"Date":"4/9/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":952,"Cost":821,"Date":"4/10/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":298,"Cost":205,"Date":"4/19/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":546,"Cost":334,"Date":"5/17/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":33,"Cost":21,"Date":"5/22/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":328,"Cost":176,"Date":"6/20/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":660,"Cost":565,"Date":"7/1/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":452,"Cost":308,"Date":"7/4/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":824,"Cost":499,"Date":"7/8/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":703,"Cost":663,"Date":"7/9/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":360,"Cost":323,"Date":"7/14/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":770,"Cost":458,"Date":"7/19/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":220,"Cost":152,"Date":"8/1/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":400,"Cost":222,"Date":"8/6/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":28,"Cost":22,"Date":"8/7/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":237,"Cost":133,"Date":"8/22/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":69,"Cost":50,"Date":"8/31/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":380,"Cost":259,"Date":"9/1/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":61,"Cost":35,"Date":"9/1/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":167,"Cost":96,"Date":"9/17/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":875,"Cost":450,"Date":"9/29/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":193,"Cost":106,"Date":"11/7/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":786,"Cost":656,"Date":"11/26/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":668,"Cost":501,"Date":"11/27/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":495,"Cost":428,"Date":"12/5/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":176,"Cost":103,"Date":"12/26/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":900,"Cost":571,"Date":"12/31/2020"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":440,"Cost":228,"Date":"1/20/2021"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":906,"Cost":585,"Date":"2/2/2021"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":580,"Cost":335,"Date":"2/8/2021"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":566,"Cost":409,"Date":"2/27/2021"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":190,"Cost":159,"Date":"3/1/2021"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":49,"Cost":46,"Date":"3/1/2021"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":955,"Cost":635,"Date":"3/19/2021"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":923,"Cost":833,"Date":"3/28/2021"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":226,"Cost":177,"Date":"5/21/2021"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":655,"Cost":362,"Date":"7/21/2021"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":854,"Cost":687,"Date":"8/5/2021"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":486,"Cost":406,"Date":"8/12/2021"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":213,"Cost":133,"Date":"8/21/2021"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":232,"Cost":140,"Date":"8/23/2021"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":777,"Cost":406,"Date":"9/3/2021"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":397,"Cost":325,"Date":"9/5/2021"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":698,"Cost":462,"Date":"10/6/2021"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":248,"Cost":198,"Date":"10/19/2021"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":987,"Cost":687,"Date":"11/15/2021"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":40,"Cost":25,"Date":"12/8/2021"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":688,"Cost":401,"Date":"1/8/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":122,"Cost":74,"Date":"1/14/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":779,"Cost":608,"Date":"1/19/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":49,"Cost":32,"Date":"1/28/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":322,"Cost":235,"Date":"1/31/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":363,"Cost":309,"Date":"3/27/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":375,"Cost":320,"Date":"4/20/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":835,"Cost":566,"Date":"4/24/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":955,"Cost":764,"Date":"4/28/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":915,"Cost":788,"Date":"5/15/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":953,"Cost":677,"Date":"5/16/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":365,"Cost":270,"Date":"5/18/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":709,"Cost":406,"Date":"6/2/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":695,"Cost":604,"Date":"6/3/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":673,"Cost":603,"Date":"6/5/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":893,"Cost":670,"Date":"6/7/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":106,"Cost":82,"Date":"6/14/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":311,"Cost":231,"Date":"6/20/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":142,"Cost":117,"Date":"6/24/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":114,"Cost":77,"Date":"7/4/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":848,"Cost":794,"Date":"7/9/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":559,"Cost":307,"Date":"7/12/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":525,"Cost":340,"Date":"8/14/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":616,"Cost":513,"Date":"8/16/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":753,"Cost":613,"Date":"8/23/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":653,"Cost":546,"Date":"9/2/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":286,"Cost":247,"Date":"9/3/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":503,"Cost":276,"Date":"9/16/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":343,"Cost":180,"Date":"10/4/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":44,"Cost":31,"Date":"11/1/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":912,"Cost":565,"Date":"11/2/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":415,"Cost":376,"Date":"12/17/2022"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":18,"Cost":17,"Date":"2/10/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":568,"Cost":335,"Date":"2/28/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":424,"Cost":248,"Date":"3/4/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":711,"Cost":471,"Date":"3/9/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":237,"Cost":207,"Date":"3/9/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":81,"Cost":44,"Date":"3/11/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":934,"Cost":823,"Date":"3/17/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":864,"Cost":468,"Date":"3/17/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":613,"Cost":486,"Date":"3/23/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":653,"Cost":497,"Date":"4/1/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":483,"Cost":373,"Date":"5/7/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":722,"Cost":452,"Date":"5/10/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":853,"Cost":475,"Date":"5/20/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":742,"Cost":545,"Date":"6/2/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":564,"Cost":337,"Date":"6/11/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":969,"Cost":767,"Date":"6/16/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":36,"Cost":35,"Date":"6/16/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":979,"Cost":633,"Date":"7/10/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":828,"Cost":548,"Date":"7/11/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":456,"Cost":356,"Date":"8/28/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":124,"Cost":76,"Date":"8/29/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":401,"Cost":216,"Date":"8/31/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":640,"Cost":601,"Date":"9/8/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":872,"Cost":479,"Date":"9/13/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":430,"Cost":359,"Date":"9/14/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":267,"Cost":239,"Date":"9/19/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":430,"Cost":358,"Date":"9/25/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":484,"Cost":342,"Date":"10/4/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":644,"Cost":424,"Date":"10/10/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":431,"Cost":297,"Date":"10/17/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":276,"Cost":151,"Date":"10/28/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":358,"Cost":225,"Date":"10/30/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":467,"Cost":304,"Date":"11/1/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":883,"Cost":687,"Date":"11/15/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":336,"Cost":312,"Date":"11/25/2023"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":407,"Cost":282,"Date":"1/10/2024"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":625,"Cost":400,"Date":"1/14/2024"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":899,"Cost":704,"Date":"1/20/2024"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":871,"Cost":771,"Date":"2/8/2024"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":530,"Cost":438,"Date":"2/25/2024"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":916,"Cost":663,"Date":"3/7/2024"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":24,"Cost":22,"Date":"3/14/2024"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":151,"Cost":99,"Date":"3/27/2024"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":663,"Cost":401,"Date":"4/5/2024"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":903,"Cost":506,"Date":"4/14/2024"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":676,"Cost":418,"Date":"5/3/2024"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":728,"Cost":455,"Date":"5/9/2024"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":687,"Cost":460,"Date":"5/15/2024"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":775,"Cost":565,"Date":"5/25/2024"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":311,"Cost":210,"Date":"5/26/2024"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":704,"Cost":374,"Date":"5/31/2024"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":625,"Cost":478,"Date":"7/27/2024"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":220,"Cost":133,"Date":"9/17/2024"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":551,"Cost":328,"Date":"10/6/2024"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":446,"Cost":298,"Date":"10/8/2024"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":702,"Cost":622,"Date":"10/26/2024"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":863,"Cost":705,"Date":"11/16/2024"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":957,"Cost":626,"Date":"11/18/2024"},{"Store":"Zara Plaza, Sofia","Brand":"ARKET","Country":"Bulgaria","Sale":882,"Cost":654,"Date":"12/1/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":567,"Cost":438,"Date":"2/9/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":726,"Cost":637,"Date":"2/11/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":400,"Cost":344,"Date":"3/10/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":546,"Cost":411,"Date":"3/16/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":493,"Cost":386,"Date":"3/18/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":296,"Cost":227,"Date":"3/20/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":60,"Cost":39,"Date":"3/26/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":361,"Cost":193,"Date":"6/2/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":135,"Cost":117,"Date":"6/10/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":240,"Cost":206,"Date":"6/16/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":491,"Cost":268,"Date":"6/25/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":773,"Cost":712,"Date":"7/19/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":542,"Cost":342,"Date":"7/21/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":683,"Cost":594,"Date":"7/25/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":275,"Cost":200,"Date":"8/4/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":216,"Cost":115,"Date":"9/2/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":746,"Cost":673,"Date":"9/4/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":391,"Cost":282,"Date":"9/19/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":249,"Cost":193,"Date":"9/29/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":521,"Cost":317,"Date":"10/2/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":311,"Cost":254,"Date":"10/15/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":953,"Cost":577,"Date":"10/30/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":698,"Cost":425,"Date":"11/9/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":737,"Cost":404,"Date":"11/23/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":451,"Cost":342,"Date":"11/30/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":816,"Cost":750,"Date":"12/8/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":947,"Cost":676,"Date":"12/11/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":615,"Cost":406,"Date":"1/15/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":892,"Cost":463,"Date":"1/24/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":606,"Cost":502,"Date":"2/3/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":316,"Cost":189,"Date":"2/4/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":847,"Cost":688,"Date":"3/9/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":67,"Cost":57,"Date":"3/12/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":520,"Cost":455,"Date":"4/19/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":543,"Cost":392,"Date":"5/3/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":142,"Cost":79,"Date":"5/4/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":168,"Cost":155,"Date":"6/8/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":860,"Cost":493,"Date":"6/26/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":924,"Cost":833,"Date":"7/4/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":579,"Cost":437,"Date":"7/13/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":892,"Cost":451,"Date":"8/8/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":449,"Cost":310,"Date":"8/26/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":102,"Cost":78,"Date":"9/2/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":314,"Cost":272,"Date":"9/29/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":941,"Cost":471,"Date":"10/12/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":981,"Cost":544,"Date":"11/2/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":957,"Cost":856,"Date":"11/4/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":167,"Cost":85,"Date":"11/7/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":682,"Cost":613,"Date":"12/1/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":159,"Cost":94,"Date":"12/4/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":842,"Cost":478,"Date":"12/7/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":912,"Cost":500,"Date":"12/18/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":843,"Cost":472,"Date":"12/20/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":725,"Cost":656,"Date":"12/20/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":81,"Cost":69,"Date":"12/21/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":796,"Cost":655,"Date":"1/9/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":268,"Cost":162,"Date":"2/5/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":942,"Cost":793,"Date":"2/16/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":132,"Cost":125,"Date":"2/16/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":943,"Cost":875,"Date":"2/18/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":600,"Cost":484,"Date":"2/22/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":170,"Cost":157,"Date":"2/25/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":635,"Cost":479,"Date":"3/8/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":853,"Cost":597,"Date":"4/2/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":273,"Cost":234,"Date":"4/3/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":719,"Cost":442,"Date":"4/9/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":542,"Cost":481,"Date":"4/10/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":890,"Cost":529,"Date":"4/19/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":294,"Cost":159,"Date":"5/17/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":473,"Cost":335,"Date":"5/22/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":407,"Cost":219,"Date":"6/20/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":811,"Cost":558,"Date":"7/1/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":66,"Cost":60,"Date":"7/4/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":843,"Cost":500,"Date":"7/8/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":981,"Cost":564,"Date":"7/9/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":755,"Cost":713,"Date":"7/14/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":655,"Cost":604,"Date":"7/19/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":789,"Cost":587,"Date":"8/1/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":684,"Cost":480,"Date":"8/6/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":508,"Cost":379,"Date":"8/7/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":533,"Cost":273,"Date":"8/22/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":744,"Cost":675,"Date":"8/31/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":268,"Cost":199,"Date":"9/1/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":415,"Cost":302,"Date":"9/1/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":18,"Cost":14,"Date":"9/17/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":296,"Cost":151,"Date":"9/29/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":518,"Cost":423,"Date":"11/7/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":196,"Cost":146,"Date":"11/26/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":854,"Cost":477,"Date":"11/27/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":139,"Cost":80,"Date":"12/5/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":402,"Cost":374,"Date":"12/26/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":220,"Cost":123,"Date":"12/31/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":622,"Cost":569,"Date":"1/20/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":271,"Cost":254,"Date":"2/2/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":548,"Cost":320,"Date":"2/8/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":205,"Cost":178,"Date":"2/27/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":239,"Cost":204,"Date":"3/1/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":267,"Cost":141,"Date":"3/1/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":865,"Cost":493,"Date":"3/19/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":605,"Cost":367,"Date":"3/28/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":116,"Cost":107,"Date":"5/21/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":526,"Cost":311,"Date":"7/21/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":778,"Cost":545,"Date":"8/5/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":638,"Cost":405,"Date":"8/12/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":134,"Cost":97,"Date":"8/21/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":509,"Cost":381,"Date":"8/23/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":277,"Cost":200,"Date":"9/3/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":57,"Cost":45,"Date":"9/5/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":44,"Cost":39,"Date":"10/6/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":775,"Cost":732,"Date":"10/19/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":519,"Cost":314,"Date":"11/15/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":415,"Cost":357,"Date":"12/8/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":263,"Cost":197,"Date":"1/8/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":430,"Cost":251,"Date":"1/14/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":781,"Cost":590,"Date":"1/19/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":480,"Cost":427,"Date":"1/28/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":174,"Cost":155,"Date":"1/31/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":794,"Cost":660,"Date":"3/27/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":643,"Cost":323,"Date":"4/20/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":715,"Cost":660,"Date":"4/24/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":615,"Cost":315,"Date":"4/28/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":137,"Cost":121,"Date":"5/15/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":205,"Cost":115,"Date":"5/16/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":220,"Cost":117,"Date":"5/18/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":825,"Cost":681,"Date":"6/2/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":557,"Cost":419,"Date":"6/3/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":715,"Cost":646,"Date":"6/5/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":896,"Cost":448,"Date":"6/7/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":827,"Cost":698,"Date":"6/14/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":46,"Cost":25,"Date":"6/20/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":191,"Cost":103,"Date":"6/24/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":499,"Cost":365,"Date":"7/4/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":640,"Cost":553,"Date":"7/9/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":101,"Cost":57,"Date":"7/12/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":201,"Cost":142,"Date":"8/14/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":880,"Cost":650,"Date":"8/16/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":344,"Cost":306,"Date":"8/23/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":314,"Cost":174,"Date":"9/2/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":838,"Cost":607,"Date":"9/3/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":505,"Cost":407,"Date":"9/16/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":465,"Cost":322,"Date":"10/4/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":801,"Cost":434,"Date":"11/1/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":327,"Cost":243,"Date":"11/2/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":500,"Cost":432,"Date":"12/17/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":450,"Cost":355,"Date":"2/10/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":153,"Cost":85,"Date":"2/28/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":578,"Cost":541,"Date":"3/4/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":899,"Cost":492,"Date":"3/9/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":478,"Cost":403,"Date":"3/9/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":631,"Cost":587,"Date":"3/11/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":759,"Cost":481,"Date":"3/17/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":429,"Cost":408,"Date":"3/17/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":405,"Cost":280,"Date":"3/23/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":758,"Cost":514,"Date":"4/1/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":267,"Cost":250,"Date":"5/7/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":761,"Cost":499,"Date":"5/10/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":446,"Cost":280,"Date":"5/20/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":285,"Cost":162,"Date":"6/2/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":474,"Cost":387,"Date":"6/11/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":845,"Cost":596,"Date":"6/16/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":743,"Cost":618,"Date":"6/16/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":537,"Cost":384,"Date":"7/10/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":851,"Cost":755,"Date":"7/11/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":195,"Cost":122,"Date":"8/28/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":925,"Cost":871,"Date":"8/29/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":83,"Cost":47,"Date":"8/31/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":176,"Cost":125,"Date":"9/8/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":826,"Cost":574,"Date":"9/13/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":157,"Cost":122,"Date":"9/14/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":247,"Cost":231,"Date":"9/19/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":410,"Cost":389,"Date":"9/25/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":891,"Cost":805,"Date":"10/4/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":720,"Cost":651,"Date":"10/10/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":163,"Cost":118,"Date":"10/17/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":296,"Cost":184,"Date":"10/28/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":548,"Cost":326,"Date":"10/30/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":954,"Cost":850,"Date":"11/1/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":508,"Cost":273,"Date":"11/15/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":534,"Cost":342,"Date":"11/25/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":255,"Cost":184,"Date":"1/10/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":613,"Cost":510,"Date":"1/14/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":395,"Cost":212,"Date":"1/20/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":908,"Cost":601,"Date":"2/8/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":121,"Cost":80,"Date":"2/25/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":367,"Cost":326,"Date":"3/7/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":881,"Cost":528,"Date":"3/14/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":684,"Cost":387,"Date":"3/27/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":244,"Cost":141,"Date":"4/5/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":625,"Cost":404,"Date":"4/14/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":387,"Cost":360,"Date":"5/3/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":230,"Cost":141,"Date":"5/9/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":234,"Cost":200,"Date":"5/15/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":441,"Cost":343,"Date":"5/25/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":119,"Cost":105,"Date":"5/26/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":348,"Cost":239,"Date":"5/31/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":910,"Cost":767,"Date":"7/27/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":858,"Cost":510,"Date":"9/17/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":794,"Cost":462,"Date":"10/6/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":642,"Cost":537,"Date":"10/8/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":462,"Cost":324,"Date":"10/26/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":513,"Cost":363,"Date":"11/16/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":159,"Cost":84,"Date":"11/18/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":810,"Cost":654,"Date":"12/1/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":332,"Cost":268,"Date":"2/9/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":982,"Cost":888,"Date":"2/11/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":984,"Cost":493,"Date":"3/10/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":471,"Cost":342,"Date":"3/16/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":964,"Cost":899,"Date":"3/18/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":895,"Cost":617,"Date":"3/20/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":514,"Cost":276,"Date":"3/26/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":781,"Cost":541,"Date":"6/2/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":191,"Cost":167,"Date":"6/10/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":737,"Cost":594,"Date":"6/16/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":2,"Cost":1,"Date":"6/25/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":86,"Cost":51,"Date":"7/19/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":812,"Cost":565,"Date":"7/21/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":52,"Cost":37,"Date":"7/25/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":80,"Cost":56,"Date":"8/4/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":483,"Cost":295,"Date":"9/2/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":179,"Cost":126,"Date":"9/4/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":71,"Cost":65,"Date":"9/19/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":245,"Cost":179,"Date":"9/29/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":443,"Cost":274,"Date":"10/2/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":41,"Cost":26,"Date":"10/15/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":50,"Cost":33,"Date":"10/30/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":442,"Cost":418,"Date":"11/9/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":992,"Cost":552,"Date":"11/23/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":515,"Cost":385,"Date":"11/30/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":226,"Cost":123,"Date":"12/8/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":521,"Cost":400,"Date":"12/11/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":177,"Cost":166,"Date":"1/15/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":18,"Cost":16,"Date":"1/24/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":765,"Cost":580,"Date":"2/3/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":986,"Cost":816,"Date":"2/4/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":628,"Cost":380,"Date":"3/9/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":597,"Cost":564,"Date":"3/12/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":732,"Cost":416,"Date":"4/19/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":881,"Cost":774,"Date":"5/3/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":341,"Cost":185,"Date":"5/4/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":458,"Cost":374,"Date":"6/8/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":696,"Cost":568,"Date":"6/26/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":284,"Cost":182,"Date":"7/4/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":811,"Cost":560,"Date":"7/13/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":252,"Cost":162,"Date":"8/8/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":948,"Cost":758,"Date":"8/26/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":983,"Cost":644,"Date":"9/2/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":665,"Cost":599,"Date":"9/29/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":765,"Cost":504,"Date":"10/12/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":450,"Cost":363,"Date":"11/2/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":512,"Cost":296,"Date":"11/4/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":476,"Cost":366,"Date":"11/7/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":757,"Cost":676,"Date":"12/1/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":583,"Cost":554,"Date":"12/4/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":5,"Cost":3,"Date":"12/7/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":713,"Cost":641,"Date":"12/18/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":429,"Cost":289,"Date":"12/20/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":565,"Cost":318,"Date":"12/20/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":894,"Cost":787,"Date":"12/21/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":536,"Cost":316,"Date":"1/9/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":488,"Cost":435,"Date":"2/5/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":189,"Cost":108,"Date":"2/16/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":582,"Cost":480,"Date":"2/16/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":168,"Cost":130,"Date":"2/18/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":459,"Cost":426,"Date":"2/22/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":613,"Cost":376,"Date":"2/25/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":271,"Cost":200,"Date":"3/8/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":901,"Cost":581,"Date":"4/2/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":228,"Cost":212,"Date":"4/3/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":61,"Cost":58,"Date":"4/9/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":69,"Cost":52,"Date":"4/10/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":98,"Cost":65,"Date":"4/19/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":532,"Cost":385,"Date":"5/17/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":584,"Cost":441,"Date":"5/22/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":294,"Cost":212,"Date":"6/20/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":371,"Cost":215,"Date":"7/1/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":85,"Cost":76,"Date":"7/4/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":464,"Cost":436,"Date":"7/8/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":794,"Cost":417,"Date":"7/9/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":208,"Cost":128,"Date":"7/14/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":618,"Cost":541,"Date":"7/19/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":775,"Cost":450,"Date":"8/1/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":283,"Cost":199,"Date":"8/6/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":197,"Cost":107,"Date":"8/7/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":723,"Cost":568,"Date":"8/22/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":34,"Cost":21,"Date":"8/31/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":435,"Cost":334,"Date":"9/1/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":592,"Cost":363,"Date":"9/1/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":355,"Cost":318,"Date":"9/17/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":327,"Cost":176,"Date":"9/29/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":746,"Cost":485,"Date":"11/7/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":541,"Cost":332,"Date":"11/26/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":19,"Cost":10,"Date":"11/27/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":698,"Cost":456,"Date":"12/5/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":72,"Cost":56,"Date":"12/26/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":309,"Cost":192,"Date":"12/31/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":24,"Cost":20,"Date":"1/20/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":308,"Cost":251,"Date":"2/2/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":182,"Cost":150,"Date":"2/8/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":601,"Cost":479,"Date":"2/27/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":997,"Cost":633,"Date":"3/1/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":602,"Cost":507,"Date":"3/1/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":106,"Cost":94,"Date":"3/19/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":873,"Cost":541,"Date":"3/28/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":304,"Cost":269,"Date":"5/21/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":899,"Cost":607,"Date":"7/21/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":814,"Cost":409,"Date":"8/5/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":609,"Cost":490,"Date":"8/12/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":298,"Cost":228,"Date":"8/21/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":874,"Cost":807,"Date":"8/23/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":29,"Cost":27,"Date":"9/3/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":923,"Cost":769,"Date":"9/5/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":512,"Cost":319,"Date":"10/6/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":924,"Cost":788,"Date":"10/19/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":81,"Cost":46,"Date":"11/15/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":217,"Cost":126,"Date":"12/8/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":277,"Cost":219,"Date":"1/8/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":35,"Cost":26,"Date":"1/14/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":858,"Cost":650,"Date":"1/19/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":575,"Cost":460,"Date":"1/28/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":313,"Cost":268,"Date":"1/31/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":295,"Cost":250,"Date":"3/27/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":487,"Cost":265,"Date":"4/20/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":604,"Cost":399,"Date":"4/24/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":33,"Cost":29,"Date":"4/28/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":819,"Cost":515,"Date":"5/15/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":256,"Cost":230,"Date":"5/16/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":78,"Cost":66,"Date":"5/18/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":849,"Cost":476,"Date":"6/2/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":409,"Cost":306,"Date":"6/3/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":490,"Cost":263,"Date":"6/5/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":526,"Cost":446,"Date":"6/7/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":803,"Cost":604,"Date":"6/14/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":822,"Cost":646,"Date":"6/20/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":143,"Cost":82,"Date":"6/24/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":651,"Cost":587,"Date":"7/4/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":704,"Cost":549,"Date":"7/9/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":380,"Cost":195,"Date":"7/12/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":69,"Cost":65,"Date":"8/14/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":834,"Cost":495,"Date":"8/16/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":648,"Cost":372,"Date":"8/23/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":874,"Cost":471,"Date":"9/2/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":887,"Cost":777,"Date":"9/3/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":38,"Cost":25,"Date":"9/16/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":586,"Cost":473,"Date":"10/4/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":850,"Cost":551,"Date":"11/1/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":840,"Cost":669,"Date":"11/2/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":522,"Cost":419,"Date":"12/17/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":499,"Cost":294,"Date":"2/10/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":606,"Cost":417,"Date":"2/28/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":79,"Cost":64,"Date":"3/4/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":391,"Cost":234,"Date":"3/9/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":668,"Cost":605,"Date":"3/9/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":773,"Cost":513,"Date":"3/11/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":88,"Cost":70,"Date":"3/17/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":218,"Cost":177,"Date":"3/17/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":508,"Cost":410,"Date":"3/23/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":988,"Cost":677,"Date":"4/1/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":829,"Cost":746,"Date":"5/7/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":633,"Cost":318,"Date":"5/10/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":506,"Cost":341,"Date":"5/20/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":840,"Cost":660,"Date":"6/2/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":510,"Cost":404,"Date":"6/11/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":731,"Cost":516,"Date":"6/16/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":490,"Cost":278,"Date":"6/16/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":178,"Cost":122,"Date":"7/10/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":297,"Cost":280,"Date":"7/11/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":939,"Cost":870,"Date":"8/28/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":347,"Cost":319,"Date":"8/29/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":565,"Cost":344,"Date":"8/31/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":482,"Cost":360,"Date":"9/8/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":202,"Cost":119,"Date":"9/13/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":958,"Cost":670,"Date":"9/14/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":207,"Cost":159,"Date":"9/19/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":533,"Cost":284,"Date":"9/25/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":438,"Cost":255,"Date":"10/4/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":392,"Cost":320,"Date":"10/10/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":602,"Cost":372,"Date":"10/17/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":713,"Cost":595,"Date":"10/28/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":300,"Cost":227,"Date":"10/30/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":183,"Cost":152,"Date":"11/1/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":383,"Cost":263,"Date":"11/15/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":128,"Cost":97,"Date":"11/25/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":206,"Cost":154,"Date":"1/10/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":687,"Cost":370,"Date":"1/14/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":439,"Cost":271,"Date":"1/20/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":393,"Cost":213,"Date":"2/8/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":413,"Cost":371,"Date":"2/25/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":632,"Cost":424,"Date":"3/7/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":361,"Cost":309,"Date":"3/14/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":259,"Cost":180,"Date":"3/27/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":16,"Cost":10,"Date":"4/5/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":119,"Cost":106,"Date":"4/14/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":206,"Cost":179,"Date":"5/3/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":824,"Cost":656,"Date":"5/9/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":516,"Cost":266,"Date":"5/15/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":326,"Cost":170,"Date":"5/25/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":37,"Cost":24,"Date":"5/26/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":364,"Cost":266,"Date":"5/31/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":209,"Cost":175,"Date":"7/27/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":718,"Cost":666,"Date":"9/17/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":643,"Cost":476,"Date":"10/6/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":516,"Cost":451,"Date":"10/8/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":737,"Cost":392,"Date":"10/26/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":345,"Cost":293,"Date":"11/16/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":207,"Cost":194,"Date":"11/18/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"Nova","Country":"Bulgaria","Sale":845,"Cost":565,"Date":"12/1/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":56,"Cost":41,"Date":"2/9/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":928,"Cost":617,"Date":"2/11/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":845,"Cost":634,"Date":"3/10/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":582,"Cost":479,"Date":"3/16/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":276,"Cost":139,"Date":"3/18/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":775,"Cost":627,"Date":"3/20/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":309,"Cost":274,"Date":"3/26/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":906,"Cost":587,"Date":"6/2/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":961,"Cost":691,"Date":"6/10/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":795,"Cost":483,"Date":"6/16/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":186,"Cost":127,"Date":"6/25/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":527,"Cost":446,"Date":"7/19/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":349,"Cost":262,"Date":"7/21/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":7,"Cost":6,"Date":"7/25/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":744,"Cost":609,"Date":"8/4/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":122,"Cost":109,"Date":"9/2/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":108,"Cost":88,"Date":"9/4/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":980,"Cost":820,"Date":"9/19/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":869,"Cost":726,"Date":"9/29/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":390,"Cost":274,"Date":"10/2/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":281,"Cost":173,"Date":"10/15/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":926,"Cost":654,"Date":"10/30/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":896,"Cost":648,"Date":"11/9/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":324,"Cost":202,"Date":"11/23/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":127,"Cost":64,"Date":"11/30/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":315,"Cost":185,"Date":"12/8/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":557,"Cost":424,"Date":"12/11/2018"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":49,"Cost":32,"Date":"1/15/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":32,"Cost":23,"Date":"1/24/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":281,"Cost":192,"Date":"2/3/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":260,"Cost":199,"Date":"2/4/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":74,"Cost":46,"Date":"3/9/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":820,"Cost":748,"Date":"3/12/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":45,"Cost":35,"Date":"4/19/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":362,"Cost":227,"Date":"5/3/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":440,"Cost":259,"Date":"5/4/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":124,"Cost":77,"Date":"6/8/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":755,"Cost":634,"Date":"6/26/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":456,"Cost":357,"Date":"7/4/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":121,"Cost":85,"Date":"7/13/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":695,"Cost":535,"Date":"8/8/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":1000,"Cost":811,"Date":"8/26/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":20,"Cost":13,"Date":"9/2/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":969,"Cost":733,"Date":"9/29/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":75,"Cost":48,"Date":"10/12/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":203,"Cost":164,"Date":"11/2/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":567,"Cost":317,"Date":"11/4/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":443,"Cost":261,"Date":"11/7/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":43,"Cost":41,"Date":"12/1/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":425,"Cost":362,"Date":"12/4/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":211,"Cost":170,"Date":"12/7/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":366,"Cost":289,"Date":"12/18/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":242,"Cost":167,"Date":"12/20/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":387,"Cost":205,"Date":"12/20/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":878,"Cost":802,"Date":"12/21/2019"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":890,"Cost":803,"Date":"1/9/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":545,"Cost":274,"Date":"2/5/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":153,"Cost":95,"Date":"2/16/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":506,"Cost":476,"Date":"2/16/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":354,"Cost":209,"Date":"2/18/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":132,"Cost":77,"Date":"2/22/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":707,"Cost":483,"Date":"2/25/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":230,"Cost":189,"Date":"3/8/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":106,"Cost":54,"Date":"4/2/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":320,"Cost":261,"Date":"4/3/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":776,"Cost":618,"Date":"4/9/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":576,"Cost":306,"Date":"4/10/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":482,"Cost":389,"Date":"4/19/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":535,"Cost":367,"Date":"5/17/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":898,"Cost":817,"Date":"5/22/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":764,"Cost":537,"Date":"6/20/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":311,"Cost":283,"Date":"7/1/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":86,"Cost":80,"Date":"7/4/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":440,"Cost":313,"Date":"7/8/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":730,"Cost":450,"Date":"7/9/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":237,"Cost":144,"Date":"7/14/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":483,"Cost":267,"Date":"7/19/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":904,"Cost":628,"Date":"8/1/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":539,"Cost":445,"Date":"8/6/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":113,"Cost":81,"Date":"8/7/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":371,"Cost":303,"Date":"8/22/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":684,"Cost":383,"Date":"8/31/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":641,"Cost":377,"Date":"9/1/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":35,"Cost":18,"Date":"9/1/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":962,"Cost":710,"Date":"9/17/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":457,"Cost":382,"Date":"9/29/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":346,"Cost":182,"Date":"11/7/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":780,"Cost":543,"Date":"11/26/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":242,"Cost":165,"Date":"11/27/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":698,"Cost":390,"Date":"12/5/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":439,"Cost":230,"Date":"12/26/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":525,"Cost":410,"Date":"12/31/2020"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":856,"Cost":754,"Date":"1/20/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":618,"Cost":578,"Date":"2/2/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":348,"Cost":282,"Date":"2/8/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":965,"Cost":841,"Date":"2/27/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":847,"Cost":671,"Date":"3/1/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":578,"Cost":376,"Date":"3/1/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":735,"Cost":471,"Date":"3/19/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":922,"Cost":781,"Date":"3/28/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":771,"Cost":591,"Date":"5/21/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":979,"Cost":830,"Date":"7/21/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":7,"Cost":6,"Date":"8/5/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":531,"Cost":340,"Date":"8/12/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":295,"Cost":238,"Date":"8/21/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":411,"Cost":341,"Date":"8/23/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":145,"Cost":90,"Date":"9/3/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":183,"Cost":163,"Date":"9/5/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":577,"Cost":352,"Date":"10/6/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":206,"Cost":195,"Date":"10/19/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":861,"Cost":687,"Date":"11/15/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":687,"Cost":489,"Date":"12/8/2021"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":159,"Cost":146,"Date":"1/8/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":31,"Cost":17,"Date":"1/14/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":640,"Cost":504,"Date":"1/19/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":791,"Cost":538,"Date":"1/28/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":836,"Cost":465,"Date":"1/31/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":457,"Cost":390,"Date":"3/27/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":806,"Cost":588,"Date":"4/20/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":462,"Cost":366,"Date":"4/24/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":803,"Cost":600,"Date":"4/28/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":976,"Cost":694,"Date":"5/15/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":883,"Cost":524,"Date":"5/16/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":714,"Cost":447,"Date":"5/18/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":72,"Cost":40,"Date":"6/2/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":244,"Cost":143,"Date":"6/3/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":114,"Cost":78,"Date":"6/5/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":858,"Cost":451,"Date":"6/7/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":844,"Cost":584,"Date":"6/14/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":147,"Cost":107,"Date":"6/20/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":779,"Cost":637,"Date":"6/24/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":318,"Cost":286,"Date":"7/4/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":782,"Cost":651,"Date":"7/9/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":982,"Cost":907,"Date":"7/12/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":676,"Cost":565,"Date":"8/14/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":608,"Cost":547,"Date":"8/16/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":232,"Cost":136,"Date":"8/23/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":732,"Cost":395,"Date":"9/2/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":875,"Cost":717,"Date":"9/3/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":736,"Cost":622,"Date":"9/16/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":270,"Cost":209,"Date":"10/4/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":658,"Cost":384,"Date":"11/1/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":687,"Cost":590,"Date":"11/2/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":583,"Cost":381,"Date":"12/17/2022"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":533,"Cost":503,"Date":"2/10/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":607,"Cost":346,"Date":"2/28/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":505,"Cost":253,"Date":"3/4/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":723,"Cost":366,"Date":"3/9/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":43,"Cost":27,"Date":"3/9/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":200,"Cost":166,"Date":"3/11/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":375,"Cost":220,"Date":"3/17/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":494,"Cost":302,"Date":"3/17/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":505,"Cost":403,"Date":"3/23/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":195,"Cost":155,"Date":"4/1/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":765,"Cost":471,"Date":"5/7/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":145,"Cost":88,"Date":"5/10/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":878,"Cost":783,"Date":"5/20/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":307,"Cost":201,"Date":"6/2/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":377,"Cost":280,"Date":"6/11/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":978,"Cost":516,"Date":"6/16/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":949,"Cost":777,"Date":"6/16/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":679,"Cost":518,"Date":"7/10/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":705,"Cost":405,"Date":"7/11/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":563,"Cost":371,"Date":"8/28/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":676,"Cost":349,"Date":"8/29/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":124,"Cost":69,"Date":"8/31/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":472,"Cost":426,"Date":"9/8/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":394,"Cost":373,"Date":"9/13/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":602,"Cost":304,"Date":"9/14/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":522,"Cost":320,"Date":"9/19/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":314,"Cost":245,"Date":"9/25/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":633,"Cost":320,"Date":"10/4/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":417,"Cost":291,"Date":"10/10/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":431,"Cost":394,"Date":"10/17/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":719,"Cost":478,"Date":"10/28/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":699,"Cost":374,"Date":"10/30/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":191,"Cost":130,"Date":"11/1/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":676,"Cost":530,"Date":"11/15/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":882,"Cost":786,"Date":"11/25/2023"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":420,"Cost":267,"Date":"1/10/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":570,"Cost":291,"Date":"1/14/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":205,"Cost":134,"Date":"1/20/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":22,"Cost":18,"Date":"2/8/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":398,"Cost":341,"Date":"2/25/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":373,"Cost":348,"Date":"3/7/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":791,"Cost":556,"Date":"3/14/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":390,"Cost":215,"Date":"3/27/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":305,"Cost":231,"Date":"4/5/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":604,"Cost":549,"Date":"4/14/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":861,"Cost":556,"Date":"5/3/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":38,"Cost":22,"Date":"5/9/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":936,"Cost":485,"Date":"5/15/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":633,"Cost":412,"Date":"5/25/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":13,"Cost":10,"Date":"5/26/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":433,"Cost":387,"Date":"5/31/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":616,"Cost":330,"Date":"7/27/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":816,"Cost":547,"Date":"9/17/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":162,"Cost":132,"Date":"10/6/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":112,"Cost":80,"Date":"10/8/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":344,"Cost":210,"Date":"10/26/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":928,"Cost":516,"Date":"11/16/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":748,"Cost":446,"Date":"11/18/2024"},{"Store":"Bulgaria Mall, Sofia","Brand":"HM","Country":"Bulgaria","Sale":305,"Cost":279,"Date":"12/1/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":55,"Cost":39,"Date":"2/9/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":715,"Cost":479,"Date":"2/11/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":870,"Cost":647,"Date":"3/10/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":776,"Cost":492,"Date":"3/16/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":426,"Cost":375,"Date":"3/18/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":747,"Cost":596,"Date":"3/20/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":698,"Cost":546,"Date":"3/26/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":434,"Cost":281,"Date":"6/2/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":909,"Cost":507,"Date":"6/10/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":514,"Cost":418,"Date":"6/16/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":922,"Cost":686,"Date":"6/25/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":809,"Cost":736,"Date":"7/19/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":904,"Cost":731,"Date":"7/21/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":642,"Cost":400,"Date":"7/25/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":924,"Cost":471,"Date":"8/4/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":759,"Cost":448,"Date":"9/2/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":473,"Cost":432,"Date":"9/4/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":634,"Cost":379,"Date":"9/19/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":111,"Cost":67,"Date":"9/29/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":805,"Cost":719,"Date":"10/2/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":352,"Cost":306,"Date":"10/15/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":689,"Cost":503,"Date":"10/30/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":414,"Cost":308,"Date":"11/9/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":919,"Cost":753,"Date":"11/23/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":636,"Cost":504,"Date":"11/30/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":466,"Cost":244,"Date":"12/8/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":866,"Cost":727,"Date":"12/11/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":584,"Cost":550,"Date":"1/15/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":42,"Cost":35,"Date":"1/24/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":449,"Cost":358,"Date":"2/3/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":648,"Cost":559,"Date":"2/4/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":436,"Cost":268,"Date":"3/9/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":280,"Cost":223,"Date":"3/12/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":331,"Cost":176,"Date":"4/19/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":749,"Cost":678,"Date":"5/3/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":802,"Cost":419,"Date":"5/4/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":492,"Cost":339,"Date":"6/8/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":387,"Cost":294,"Date":"6/26/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":403,"Cost":203,"Date":"7/4/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":337,"Cost":200,"Date":"7/13/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":990,"Cost":906,"Date":"8/8/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":820,"Cost":507,"Date":"8/26/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":828,"Cost":622,"Date":"9/2/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":579,"Cost":515,"Date":"9/29/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":409,"Cost":272,"Date":"10/12/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":252,"Cost":176,"Date":"11/2/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":966,"Cost":637,"Date":"11/4/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":824,"Cost":599,"Date":"11/7/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":106,"Cost":96,"Date":"12/1/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":424,"Cost":337,"Date":"12/4/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":992,"Cost":614,"Date":"12/7/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":6,"Cost":4,"Date":"12/18/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":104,"Cost":74,"Date":"12/20/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":10,"Cost":9,"Date":"12/20/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":376,"Cost":291,"Date":"12/21/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":707,"Cost":602,"Date":"1/9/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":379,"Cost":204,"Date":"2/5/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":763,"Cost":473,"Date":"2/16/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":788,"Cost":548,"Date":"2/16/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":117,"Cost":78,"Date":"2/18/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":173,"Cost":119,"Date":"2/22/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":789,"Cost":594,"Date":"2/25/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":642,"Cost":329,"Date":"3/8/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":187,"Cost":140,"Date":"4/2/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":802,"Cost":475,"Date":"4/3/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":496,"Cost":455,"Date":"4/9/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":701,"Cost":361,"Date":"4/10/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":765,"Cost":550,"Date":"4/19/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":166,"Cost":97,"Date":"5/17/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":129,"Cost":77,"Date":"5/22/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":607,"Cost":496,"Date":"6/20/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":234,"Cost":177,"Date":"7/1/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":939,"Cost":540,"Date":"7/4/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":688,"Cost":504,"Date":"7/8/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":225,"Cost":204,"Date":"7/9/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":141,"Cost":109,"Date":"7/14/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":939,"Cost":535,"Date":"7/19/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":660,"Cost":456,"Date":"8/1/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":213,"Cost":125,"Date":"8/6/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":678,"Cost":540,"Date":"8/7/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":982,"Cost":917,"Date":"8/22/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":523,"Cost":315,"Date":"8/31/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":874,"Cost":488,"Date":"9/1/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":461,"Cost":400,"Date":"9/1/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":280,"Cost":204,"Date":"9/17/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":857,"Cost":493,"Date":"9/29/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":484,"Cost":447,"Date":"11/7/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":551,"Cost":283,"Date":"11/26/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":805,"Cost":622,"Date":"11/27/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":475,"Cost":441,"Date":"12/5/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":993,"Cost":597,"Date":"12/26/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":177,"Cost":150,"Date":"12/31/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":504,"Cost":423,"Date":"1/20/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":264,"Cost":175,"Date":"2/2/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":25,"Cost":12,"Date":"2/8/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":263,"Cost":226,"Date":"2/27/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":714,"Cost":453,"Date":"3/1/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":674,"Cost":570,"Date":"3/1/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":111,"Cost":80,"Date":"3/19/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":95,"Cost":87,"Date":"3/28/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":151,"Cost":117,"Date":"5/21/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":742,"Cost":613,"Date":"7/21/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":125,"Cost":105,"Date":"8/5/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":773,"Cost":539,"Date":"8/12/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":703,"Cost":417,"Date":"8/21/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":491,"Cost":452,"Date":"8/23/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":532,"Cost":274,"Date":"9/3/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":372,"Cost":327,"Date":"9/5/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":157,"Cost":84,"Date":"10/6/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":689,"Cost":638,"Date":"10/19/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":750,"Cost":431,"Date":"11/15/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":290,"Cost":234,"Date":"12/8/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":179,"Cost":106,"Date":"1/8/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":427,"Cost":349,"Date":"1/14/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":184,"Cost":159,"Date":"1/19/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":4,"Cost":3,"Date":"1/28/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":878,"Cost":609,"Date":"1/31/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":541,"Cost":344,"Date":"3/27/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":748,"Cost":671,"Date":"4/20/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":23,"Cost":19,"Date":"4/24/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":693,"Cost":646,"Date":"4/28/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":766,"Cost":575,"Date":"5/15/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":245,"Cost":157,"Date":"5/16/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":58,"Cost":34,"Date":"5/18/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":71,"Cost":37,"Date":"6/2/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":348,"Cost":230,"Date":"6/3/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":529,"Cost":493,"Date":"6/5/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":408,"Cost":371,"Date":"6/7/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":687,"Cost":510,"Date":"6/14/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":735,"Cost":545,"Date":"6/20/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":935,"Cost":687,"Date":"6/24/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":262,"Cost":224,"Date":"7/4/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":923,"Cost":812,"Date":"7/9/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":539,"Cost":294,"Date":"7/12/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":175,"Cost":131,"Date":"8/14/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":482,"Cost":284,"Date":"8/16/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":573,"Cost":504,"Date":"8/23/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":526,"Cost":308,"Date":"9/2/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":596,"Cost":372,"Date":"9/3/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":780,"Cost":480,"Date":"9/16/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":651,"Cost":384,"Date":"10/4/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":159,"Cost":105,"Date":"11/1/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":386,"Cost":211,"Date":"11/2/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":615,"Cost":487,"Date":"12/17/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":555,"Cost":291,"Date":"2/10/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":714,"Cost":622,"Date":"2/28/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":871,"Cost":451,"Date":"3/4/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":397,"Cost":205,"Date":"3/9/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":868,"Cost":487,"Date":"3/9/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":133,"Cost":74,"Date":"3/11/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":228,"Cost":209,"Date":"3/17/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":575,"Cost":534,"Date":"3/17/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":122,"Cost":61,"Date":"3/23/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":692,"Cost":374,"Date":"4/1/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":196,"Cost":131,"Date":"5/7/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":738,"Cost":460,"Date":"5/10/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":566,"Cost":435,"Date":"5/20/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":241,"Cost":128,"Date":"6/2/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":908,"Cost":516,"Date":"6/11/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":756,"Cost":577,"Date":"6/16/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":974,"Cost":630,"Date":"6/16/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":6,"Cost":3,"Date":"7/10/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":330,"Cost":190,"Date":"7/11/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":428,"Cost":308,"Date":"8/28/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":462,"Cost":378,"Date":"8/29/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":777,"Cost":711,"Date":"8/31/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":31,"Cost":29,"Date":"9/8/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":648,"Cost":325,"Date":"9/13/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":388,"Cost":251,"Date":"9/14/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":406,"Cost":256,"Date":"9/19/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":293,"Cost":223,"Date":"9/25/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":983,"Cost":793,"Date":"10/4/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":882,"Cost":463,"Date":"10/10/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":33,"Cost":23,"Date":"10/17/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":404,"Cost":355,"Date":"10/28/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":201,"Cost":161,"Date":"10/30/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":965,"Cost":917,"Date":"11/1/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":365,"Cost":232,"Date":"11/15/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":761,"Cost":382,"Date":"11/25/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":934,"Cost":729,"Date":"1/10/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":550,"Cost":462,"Date":"1/14/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":434,"Cost":228,"Date":"1/20/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":390,"Cost":255,"Date":"2/8/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":462,"Cost":361,"Date":"2/25/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":723,"Cost":461,"Date":"3/7/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":39,"Cost":34,"Date":"3/14/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":1,"Cost":1,"Date":"3/27/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":179,"Cost":94,"Date":"4/5/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":139,"Cost":107,"Date":"4/14/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":509,"Cost":428,"Date":"5/3/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":757,"Cost":605,"Date":"5/9/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":734,"Cost":392,"Date":"5/15/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":172,"Cost":127,"Date":"5/25/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":640,"Cost":486,"Date":"5/26/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":378,"Cost":358,"Date":"5/31/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":1,"Cost":0,"Date":"7/27/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":113,"Cost":67,"Date":"9/17/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":84,"Cost":69,"Date":"10/6/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":949,"Cost":795,"Date":"10/8/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":872,"Cost":437,"Date":"10/26/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":812,"Cost":574,"Date":"11/16/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":36,"Cost":25,"Date":"11/18/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"HM","Country":"Bulgaria","Sale":481,"Cost":328,"Date":"12/1/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":167,"Cost":87,"Date":"2/9/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":974,"Cost":844,"Date":"2/11/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":98,"Cost":81,"Date":"3/10/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":388,"Cost":322,"Date":"3/16/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":231,"Cost":152,"Date":"3/18/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":704,"Cost":526,"Date":"3/20/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":642,"Cost":390,"Date":"3/26/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":82,"Cost":52,"Date":"6/2/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":519,"Cost":456,"Date":"6/10/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":331,"Cost":308,"Date":"6/16/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":781,"Cost":654,"Date":"6/25/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":452,"Cost":412,"Date":"7/19/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":132,"Cost":66,"Date":"7/21/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":327,"Cost":189,"Date":"7/25/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":907,"Cost":732,"Date":"8/4/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":630,"Cost":597,"Date":"9/2/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":794,"Cost":496,"Date":"9/4/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":302,"Cost":254,"Date":"9/19/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":702,"Cost":390,"Date":"9/29/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":464,"Cost":236,"Date":"10/2/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":446,"Cost":266,"Date":"10/15/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":999,"Cost":676,"Date":"10/30/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":946,"Cost":540,"Date":"11/9/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":62,"Cost":31,"Date":"11/23/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":16,"Cost":8,"Date":"11/30/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":629,"Cost":451,"Date":"12/8/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":640,"Cost":402,"Date":"12/11/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":828,"Cost":532,"Date":"1/15/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":24,"Cost":15,"Date":"1/24/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":873,"Cost":768,"Date":"2/3/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":148,"Cost":95,"Date":"2/4/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":636,"Cost":389,"Date":"3/9/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":414,"Cost":371,"Date":"3/12/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":227,"Cost":202,"Date":"4/19/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":899,"Cost":769,"Date":"5/3/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":206,"Cost":137,"Date":"5/4/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":293,"Cost":185,"Date":"6/8/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":832,"Cost":592,"Date":"6/26/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":125,"Cost":110,"Date":"7/4/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":227,"Cost":174,"Date":"7/13/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":33,"Cost":21,"Date":"8/8/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":553,"Cost":498,"Date":"8/26/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":789,"Cost":709,"Date":"9/2/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":859,"Cost":530,"Date":"9/29/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":812,"Cost":561,"Date":"10/12/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":226,"Cost":171,"Date":"11/2/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":41,"Cost":23,"Date":"11/4/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":976,"Cost":784,"Date":"11/7/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":389,"Cost":313,"Date":"12/1/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":13,"Cost":11,"Date":"12/4/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":368,"Cost":303,"Date":"12/7/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":485,"Cost":321,"Date":"12/18/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":902,"Cost":526,"Date":"12/20/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":649,"Cost":562,"Date":"12/20/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":260,"Cost":223,"Date":"12/21/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":699,"Cost":399,"Date":"1/9/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":662,"Cost":406,"Date":"2/5/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":775,"Cost":712,"Date":"2/16/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":727,"Cost":585,"Date":"2/16/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":902,"Cost":757,"Date":"2/18/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":559,"Cost":476,"Date":"2/22/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":888,"Cost":768,"Date":"2/25/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":928,"Cost":785,"Date":"3/8/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":649,"Cost":576,"Date":"4/2/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":2,"Cost":1,"Date":"4/3/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":478,"Cost":344,"Date":"4/9/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":107,"Cost":100,"Date":"4/10/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":216,"Cost":134,"Date":"4/19/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":2,"Cost":2,"Date":"5/17/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":683,"Cost":478,"Date":"5/22/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":391,"Cost":339,"Date":"6/20/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":36,"Cost":28,"Date":"7/1/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":696,"Cost":503,"Date":"7/4/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":187,"Cost":117,"Date":"7/8/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":458,"Cost":278,"Date":"7/9/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":565,"Cost":307,"Date":"7/14/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":350,"Cost":228,"Date":"7/19/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":956,"Cost":783,"Date":"8/1/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":618,"Cost":424,"Date":"8/6/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":624,"Cost":395,"Date":"8/7/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":677,"Cost":575,"Date":"8/22/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":304,"Cost":195,"Date":"8/31/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":414,"Cost":328,"Date":"9/1/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":263,"Cost":149,"Date":"9/1/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":407,"Cost":328,"Date":"9/17/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":558,"Cost":435,"Date":"9/29/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":265,"Cost":184,"Date":"11/7/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":522,"Cost":445,"Date":"11/26/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":93,"Cost":80,"Date":"11/27/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":970,"Cost":857,"Date":"12/5/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":495,"Cost":256,"Date":"12/26/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":276,"Cost":181,"Date":"12/31/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":88,"Cost":79,"Date":"1/20/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":537,"Cost":284,"Date":"2/2/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":255,"Cost":156,"Date":"2/8/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":879,"Cost":628,"Date":"2/27/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":138,"Cost":108,"Date":"3/1/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":722,"Cost":521,"Date":"3/1/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":408,"Cost":207,"Date":"3/19/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":80,"Cost":67,"Date":"3/28/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":76,"Cost":72,"Date":"5/21/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":863,"Cost":534,"Date":"7/21/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":955,"Cost":723,"Date":"8/5/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":395,"Cost":323,"Date":"8/12/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":258,"Cost":216,"Date":"8/21/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":384,"Cost":239,"Date":"8/23/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":337,"Cost":260,"Date":"9/3/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":796,"Cost":460,"Date":"9/5/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":406,"Cost":337,"Date":"10/6/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":939,"Cost":577,"Date":"10/19/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":125,"Cost":93,"Date":"11/15/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":769,"Cost":392,"Date":"12/8/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":566,"Cost":326,"Date":"1/8/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":978,"Cost":608,"Date":"1/14/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":127,"Cost":86,"Date":"1/19/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":513,"Cost":293,"Date":"1/28/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":978,"Cost":526,"Date":"1/31/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":982,"Cost":828,"Date":"3/27/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":245,"Cost":209,"Date":"4/20/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":510,"Cost":346,"Date":"4/24/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":316,"Cost":167,"Date":"4/28/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":656,"Cost":429,"Date":"5/15/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":493,"Cost":418,"Date":"5/16/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":833,"Cost":670,"Date":"5/18/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":42,"Cost":28,"Date":"6/2/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":91,"Cost":57,"Date":"6/3/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":42,"Cost":31,"Date":"6/5/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":615,"Cost":569,"Date":"6/7/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":185,"Cost":98,"Date":"6/14/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":461,"Cost":437,"Date":"6/20/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":838,"Cost":680,"Date":"6/24/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":919,"Cost":647,"Date":"7/4/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":921,"Cost":863,"Date":"7/9/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":987,"Cost":536,"Date":"7/12/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":696,"Cost":654,"Date":"8/14/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":916,"Cost":863,"Date":"8/16/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":717,"Cost":622,"Date":"8/23/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":170,"Cost":98,"Date":"9/2/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":788,"Cost":698,"Date":"9/3/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":638,"Cost":333,"Date":"9/16/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":127,"Cost":84,"Date":"10/4/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":834,"Cost":604,"Date":"11/1/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":135,"Cost":79,"Date":"11/2/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":929,"Cost":572,"Date":"12/17/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":548,"Cost":389,"Date":"2/10/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":607,"Cost":483,"Date":"2/28/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":160,"Cost":95,"Date":"3/4/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":323,"Cost":281,"Date":"3/9/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":707,"Cost":663,"Date":"3/9/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":289,"Cost":196,"Date":"3/11/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":899,"Cost":639,"Date":"3/17/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":962,"Cost":562,"Date":"3/17/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":865,"Cost":498,"Date":"3/23/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":297,"Cost":233,"Date":"4/1/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":670,"Cost":429,"Date":"5/7/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":888,"Cost":722,"Date":"5/10/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":501,"Cost":338,"Date":"5/20/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":205,"Cost":128,"Date":"6/2/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":873,"Cost":746,"Date":"6/11/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":203,"Cost":135,"Date":"6/16/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":969,"Cost":601,"Date":"6/16/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":454,"Cost":321,"Date":"7/10/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":447,"Cost":374,"Date":"7/11/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":595,"Cost":423,"Date":"8/28/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":815,"Cost":676,"Date":"8/29/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":854,"Cost":511,"Date":"8/31/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":424,"Cost":333,"Date":"9/8/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":273,"Cost":165,"Date":"9/13/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":926,"Cost":601,"Date":"9/14/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":207,"Cost":178,"Date":"9/19/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":145,"Cost":113,"Date":"9/25/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":973,"Cost":744,"Date":"10/4/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":805,"Cost":609,"Date":"10/10/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":242,"Cost":147,"Date":"10/17/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":181,"Cost":96,"Date":"10/28/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":925,"Cost":643,"Date":"10/30/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":410,"Cost":231,"Date":"11/1/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":112,"Cost":100,"Date":"11/15/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":998,"Cost":546,"Date":"11/25/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":204,"Cost":193,"Date":"1/10/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":946,"Cost":648,"Date":"1/14/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":757,"Cost":615,"Date":"1/20/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":811,"Cost":471,"Date":"2/8/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":465,"Cost":373,"Date":"2/25/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":149,"Cost":129,"Date":"3/7/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":568,"Cost":362,"Date":"3/14/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":42,"Cost":40,"Date":"3/27/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":928,"Cost":819,"Date":"4/5/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":730,"Cost":479,"Date":"4/14/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":687,"Cost":509,"Date":"5/3/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":235,"Cost":153,"Date":"5/9/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":997,"Cost":545,"Date":"5/15/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":935,"Cost":493,"Date":"5/25/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":151,"Cost":140,"Date":"5/26/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":910,"Cost":706,"Date":"5/31/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":360,"Cost":241,"Date":"7/27/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":192,"Cost":125,"Date":"9/17/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":453,"Cost":311,"Date":"10/6/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":780,"Cost":570,"Date":"10/8/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":364,"Cost":302,"Date":"10/26/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":596,"Cost":305,"Date":"11/16/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":79,"Cost":40,"Date":"11/18/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"Sellpy","Country":"Bulgaria","Sale":816,"Cost":412,"Date":"12/1/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":234,"Cost":155,"Date":"2/9/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":837,"Cost":789,"Date":"2/11/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":184,"Cost":118,"Date":"3/10/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":259,"Cost":202,"Date":"3/16/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":379,"Cost":256,"Date":"3/18/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":45,"Cost":43,"Date":"3/20/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":235,"Cost":153,"Date":"3/26/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":758,"Cost":474,"Date":"6/2/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":571,"Cost":420,"Date":"6/10/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":734,"Cost":486,"Date":"6/16/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":797,"Cost":754,"Date":"6/25/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":882,"Cost":619,"Date":"7/19/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":470,"Cost":419,"Date":"7/21/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":420,"Cost":364,"Date":"7/25/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":64,"Cost":57,"Date":"8/4/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":151,"Cost":139,"Date":"9/2/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":626,"Cost":324,"Date":"9/4/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":446,"Cost":419,"Date":"9/19/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":127,"Cost":94,"Date":"9/29/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":896,"Cost":606,"Date":"10/2/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":71,"Cost":54,"Date":"10/15/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":957,"Cost":768,"Date":"10/30/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":940,"Cost":591,"Date":"11/9/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":745,"Cost":531,"Date":"11/23/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":313,"Cost":272,"Date":"11/30/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":446,"Cost":292,"Date":"12/8/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":895,"Cost":782,"Date":"12/11/2018"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":769,"Cost":603,"Date":"1/15/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":77,"Cost":42,"Date":"1/24/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":967,"Cost":755,"Date":"2/3/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":255,"Cost":224,"Date":"2/4/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":110,"Cost":57,"Date":"3/9/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":15,"Cost":7,"Date":"3/12/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":520,"Cost":290,"Date":"4/19/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":909,"Cost":839,"Date":"5/3/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":143,"Cost":117,"Date":"5/4/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":996,"Cost":552,"Date":"6/8/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":293,"Cost":245,"Date":"6/26/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":553,"Cost":362,"Date":"7/4/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":328,"Cost":256,"Date":"7/13/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":204,"Cost":168,"Date":"8/8/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":422,"Cost":247,"Date":"8/26/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":460,"Cost":335,"Date":"9/2/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":423,"Cost":363,"Date":"9/29/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":829,"Cost":434,"Date":"10/12/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":271,"Cost":204,"Date":"11/2/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":764,"Cost":479,"Date":"11/4/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":885,"Cost":718,"Date":"11/7/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":945,"Cost":824,"Date":"12/1/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":715,"Cost":531,"Date":"12/4/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":891,"Cost":516,"Date":"12/7/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":994,"Cost":588,"Date":"12/18/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":8,"Cost":5,"Date":"12/20/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":768,"Cost":646,"Date":"12/20/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":382,"Cost":256,"Date":"12/21/2019"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":680,"Cost":599,"Date":"1/9/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":444,"Cost":284,"Date":"2/5/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":173,"Cost":158,"Date":"2/16/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":390,"Cost":307,"Date":"2/16/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":959,"Cost":507,"Date":"2/18/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":785,"Cost":709,"Date":"2/22/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":381,"Cost":194,"Date":"2/25/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":425,"Cost":300,"Date":"3/8/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":442,"Cost":336,"Date":"4/2/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":534,"Cost":366,"Date":"4/3/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":997,"Cost":577,"Date":"4/9/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":427,"Cost":400,"Date":"4/10/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":420,"Cost":353,"Date":"4/19/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":141,"Cost":80,"Date":"5/17/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":112,"Cost":78,"Date":"5/22/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":532,"Cost":296,"Date":"6/20/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":741,"Cost":555,"Date":"7/1/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":551,"Cost":403,"Date":"7/4/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":6,"Cost":5,"Date":"7/8/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":627,"Cost":558,"Date":"7/9/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":817,"Cost":569,"Date":"7/14/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":34,"Cost":21,"Date":"7/19/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":788,"Cost":400,"Date":"8/1/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":559,"Cost":336,"Date":"8/6/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":384,"Cost":362,"Date":"8/7/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":465,"Cost":239,"Date":"8/22/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":370,"Cost":273,"Date":"8/31/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":192,"Cost":121,"Date":"9/1/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":605,"Cost":564,"Date":"9/1/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":474,"Cost":239,"Date":"9/17/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":259,"Cost":231,"Date":"9/29/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":547,"Cost":281,"Date":"11/7/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":354,"Cost":324,"Date":"11/26/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":457,"Cost":359,"Date":"11/27/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":325,"Cost":287,"Date":"12/5/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":276,"Cost":243,"Date":"12/26/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":531,"Cost":313,"Date":"12/31/2020"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":239,"Cost":120,"Date":"1/20/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":272,"Cost":246,"Date":"2/2/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":81,"Cost":65,"Date":"2/8/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":120,"Cost":64,"Date":"2/27/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":28,"Cost":25,"Date":"3/1/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":892,"Cost":840,"Date":"3/1/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":662,"Cost":521,"Date":"3/19/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":588,"Cost":529,"Date":"3/28/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":889,"Cost":811,"Date":"5/21/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":352,"Cost":241,"Date":"7/21/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":851,"Cost":680,"Date":"8/5/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":718,"Cost":501,"Date":"8/12/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":330,"Cost":302,"Date":"8/21/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":431,"Cost":316,"Date":"8/23/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":766,"Cost":660,"Date":"9/3/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":647,"Cost":556,"Date":"9/5/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":732,"Cost":449,"Date":"10/6/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":443,"Cost":313,"Date":"10/19/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":550,"Cost":493,"Date":"11/15/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":163,"Cost":121,"Date":"12/8/2021"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":438,"Cost":276,"Date":"1/8/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":523,"Cost":394,"Date":"1/14/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":255,"Cost":229,"Date":"1/19/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":531,"Cost":454,"Date":"1/28/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":77,"Cost":47,"Date":"1/31/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":481,"Cost":310,"Date":"3/27/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":233,"Cost":137,"Date":"4/20/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":399,"Cost":268,"Date":"4/24/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":668,"Cost":630,"Date":"4/28/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":955,"Cost":672,"Date":"5/15/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":231,"Cost":137,"Date":"5/16/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":748,"Cost":601,"Date":"5/18/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":490,"Cost":324,"Date":"6/2/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":399,"Cost":346,"Date":"6/3/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":2,"Cost":2,"Date":"6/5/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":975,"Cost":823,"Date":"6/7/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":669,"Cost":412,"Date":"6/14/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":953,"Cost":884,"Date":"6/20/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":990,"Cost":923,"Date":"6/24/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":883,"Cost":783,"Date":"7/4/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":247,"Cost":211,"Date":"7/9/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":282,"Cost":188,"Date":"7/12/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":286,"Cost":247,"Date":"8/14/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":607,"Cost":501,"Date":"8/16/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":957,"Cost":707,"Date":"8/23/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":193,"Cost":106,"Date":"9/2/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":371,"Cost":325,"Date":"9/3/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":408,"Cost":379,"Date":"9/16/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":57,"Cost":53,"Date":"10/4/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":69,"Cost":58,"Date":"11/1/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":385,"Cost":195,"Date":"11/2/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":753,"Cost":386,"Date":"12/17/2022"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":1000,"Cost":725,"Date":"2/10/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":101,"Cost":74,"Date":"2/28/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":997,"Cost":715,"Date":"3/4/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":415,"Cost":371,"Date":"3/9/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":72,"Cost":59,"Date":"3/9/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":363,"Cost":336,"Date":"3/11/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":986,"Cost":867,"Date":"3/17/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":951,"Cost":559,"Date":"3/17/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":43,"Cost":29,"Date":"3/23/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":558,"Cost":377,"Date":"4/1/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":897,"Cost":455,"Date":"5/7/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":507,"Cost":409,"Date":"5/10/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":440,"Cost":326,"Date":"5/20/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":222,"Cost":157,"Date":"6/2/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":847,"Cost":639,"Date":"6/11/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":241,"Cost":139,"Date":"6/16/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":858,"Cost":662,"Date":"6/16/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":21,"Cost":10,"Date":"7/10/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":701,"Cost":392,"Date":"7/11/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":599,"Cost":467,"Date":"8/28/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":701,"Cost":605,"Date":"8/29/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":366,"Cost":326,"Date":"8/31/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":928,"Cost":599,"Date":"9/8/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":393,"Cost":336,"Date":"9/13/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":113,"Cost":62,"Date":"9/14/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":823,"Cost":556,"Date":"9/19/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":486,"Cost":341,"Date":"9/25/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":805,"Cost":540,"Date":"10/4/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":999,"Cost":580,"Date":"10/10/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":918,"Cost":626,"Date":"10/17/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":972,"Cost":635,"Date":"10/28/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":632,"Cost":432,"Date":"10/30/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":114,"Cost":76,"Date":"11/1/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":78,"Cost":46,"Date":"11/15/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":477,"Cost":422,"Date":"11/25/2023"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":467,"Cost":437,"Date":"1/10/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":813,"Cost":713,"Date":"1/14/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":189,"Cost":160,"Date":"1/20/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":483,"Cost":387,"Date":"2/8/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":738,"Cost":425,"Date":"2/25/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":423,"Cost":312,"Date":"3/7/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":521,"Cost":355,"Date":"3/14/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":938,"Cost":810,"Date":"3/27/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":891,"Cost":702,"Date":"4/5/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":695,"Cost":453,"Date":"4/14/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":305,"Cost":234,"Date":"5/3/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":986,"Cost":640,"Date":"5/9/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":533,"Cost":268,"Date":"5/15/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":38,"Cost":20,"Date":"5/25/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":852,"Cost":649,"Date":"5/26/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":668,"Cost":600,"Date":"5/31/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":709,"Cost":658,"Date":"7/27/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":845,"Cost":530,"Date":"9/17/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":840,"Cost":717,"Date":"10/6/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":920,"Cost":687,"Date":"10/8/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":131,"Cost":70,"Date":"10/26/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":557,"Cost":309,"Date":"11/16/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":972,"Cost":755,"Date":"11/18/2024"},{"Store":"Vitosha Boulevard, Sofia","Brand":"COS","Country":"Bulgaria","Sale":986,"Cost":862,"Date":"12/1/2024"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":784,"Cost":493,"Date":"2/9/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":993,"Cost":927,"Date":"2/11/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":483,"Cost":265,"Date":"3/10/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":814,"Cost":747,"Date":"3/16/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":408,"Cost":349,"Date":"3/18/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":68,"Cost":44,"Date":"3/20/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":441,"Cost":306,"Date":"3/26/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":721,"Cost":527,"Date":"6/2/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":816,"Cost":671,"Date":"6/10/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":596,"Cost":365,"Date":"6/16/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":798,"Cost":405,"Date":"6/25/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":482,"Cost":394,"Date":"7/19/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":272,"Cost":185,"Date":"7/21/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":206,"Cost":193,"Date":"7/25/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":461,"Cost":369,"Date":"8/4/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":778,"Cost":589,"Date":"9/2/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":761,"Cost":504,"Date":"9/4/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":1,"Cost":1,"Date":"9/19/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":623,"Cost":519,"Date":"9/29/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":337,"Cost":290,"Date":"10/2/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":957,"Cost":717,"Date":"10/15/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":809,"Cost":634,"Date":"10/30/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":434,"Cost":236,"Date":"11/9/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":931,"Cost":649,"Date":"11/23/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":747,"Cost":427,"Date":"11/30/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":674,"Cost":576,"Date":"12/8/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":384,"Cost":272,"Date":"12/11/2018"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":369,"Cost":240,"Date":"1/15/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":242,"Cost":123,"Date":"1/24/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":301,"Cost":220,"Date":"2/3/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":345,"Cost":251,"Date":"2/4/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":656,"Cost":431,"Date":"3/9/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":292,"Cost":163,"Date":"3/12/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":163,"Cost":136,"Date":"4/19/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":601,"Cost":481,"Date":"5/3/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":331,"Cost":261,"Date":"5/4/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":156,"Cost":108,"Date":"6/8/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":431,"Cost":295,"Date":"6/26/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":718,"Cost":526,"Date":"7/4/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":630,"Cost":513,"Date":"7/13/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":604,"Cost":449,"Date":"8/8/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":418,"Cost":275,"Date":"8/26/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":739,"Cost":647,"Date":"9/2/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":824,"Cost":677,"Date":"9/29/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":6,"Cost":4,"Date":"10/12/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":282,"Cost":187,"Date":"11/2/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":766,"Cost":490,"Date":"11/4/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":567,"Cost":454,"Date":"11/7/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":556,"Cost":482,"Date":"12/1/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":458,"Cost":341,"Date":"12/4/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":553,"Cost":512,"Date":"12/7/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":17,"Cost":10,"Date":"12/18/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":373,"Cost":259,"Date":"12/20/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":551,"Cost":284,"Date":"12/20/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":267,"Cost":249,"Date":"12/21/2019"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":720,"Cost":447,"Date":"1/9/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":154,"Cost":85,"Date":"2/5/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":221,"Cost":121,"Date":"2/16/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":777,"Cost":540,"Date":"2/16/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":460,"Cost":280,"Date":"2/18/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":66,"Cost":36,"Date":"2/22/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":107,"Cost":77,"Date":"2/25/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":1000,"Cost":537,"Date":"3/8/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":692,"Cost":426,"Date":"4/2/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":793,"Cost":706,"Date":"4/3/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":827,"Cost":464,"Date":"4/9/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":706,"Cost":658,"Date":"4/10/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":666,"Cost":573,"Date":"4/19/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":67,"Cost":51,"Date":"5/17/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":418,"Cost":274,"Date":"5/22/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":227,"Cost":157,"Date":"6/20/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":395,"Cost":296,"Date":"7/1/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":498,"Cost":389,"Date":"7/4/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":678,"Cost":607,"Date":"7/8/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":821,"Cost":692,"Date":"7/9/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":155,"Cost":92,"Date":"7/14/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":970,"Cost":683,"Date":"7/19/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":117,"Cost":65,"Date":"8/1/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":260,"Cost":171,"Date":"8/6/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":296,"Cost":198,"Date":"8/7/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":885,"Cost":466,"Date":"8/22/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":815,"Cost":484,"Date":"8/31/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":830,"Cost":712,"Date":"9/1/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":718,"Cost":589,"Date":"9/1/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":217,"Cost":147,"Date":"9/17/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":714,"Cost":574,"Date":"9/29/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":89,"Cost":48,"Date":"11/7/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":84,"Cost":57,"Date":"11/26/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":276,"Cost":208,"Date":"11/27/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":419,"Cost":347,"Date":"12/5/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":253,"Cost":126,"Date":"12/26/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":734,"Cost":410,"Date":"12/31/2020"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":148,"Cost":98,"Date":"1/20/2021"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":89,"Cost":49,"Date":"2/2/2021"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":659,"Cost":408,"Date":"2/8/2021"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":620,"Cost":558,"Date":"2/27/2021"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":423,"Cost":359,"Date":"3/1/2021"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":384,"Cost":198,"Date":"3/1/2021"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":66,"Cost":49,"Date":"3/19/2021"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":547,"Cost":464,"Date":"3/28/2021"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":708,"Cost":436,"Date":"5/21/2021"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":423,"Cost":240,"Date":"7/21/2021"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":296,"Cost":277,"Date":"8/5/2021"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":283,"Cost":197,"Date":"8/12/2021"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":422,"Cost":359,"Date":"8/21/2021"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":514,"Cost":304,"Date":"8/23/2021"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":186,"Cost":174,"Date":"9/3/2021"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":216,"Cost":127,"Date":"9/5/2021"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":380,"Cost":286,"Date":"10/6/2021"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":77,"Cost":68,"Date":"10/19/2021"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":138,"Cost":129,"Date":"11/15/2021"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":560,"Cost":440,"Date":"12/8/2021"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":208,"Cost":139,"Date":"1/8/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":241,"Cost":144,"Date":"1/14/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":529,"Cost":463,"Date":"1/19/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":442,"Cost":260,"Date":"1/28/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":880,"Cost":489,"Date":"1/31/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":225,"Cost":113,"Date":"3/27/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":524,"Cost":383,"Date":"4/20/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":301,"Cost":207,"Date":"4/24/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":961,"Cost":729,"Date":"4/28/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":214,"Cost":139,"Date":"5/15/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":680,"Cost":530,"Date":"5/16/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":156,"Cost":87,"Date":"5/18/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":926,"Cost":830,"Date":"6/2/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":436,"Cost":294,"Date":"6/3/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":22,"Cost":21,"Date":"6/5/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":436,"Cost":351,"Date":"6/7/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":321,"Cost":176,"Date":"6/14/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":951,"Cost":716,"Date":"6/20/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":773,"Cost":482,"Date":"6/24/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":684,"Cost":526,"Date":"7/4/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":142,"Cost":101,"Date":"7/9/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":912,"Cost":792,"Date":"7/12/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":980,"Cost":670,"Date":"8/14/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":181,"Cost":102,"Date":"8/16/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":339,"Cost":192,"Date":"8/23/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":827,"Cost":557,"Date":"9/2/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":114,"Cost":76,"Date":"9/3/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":457,"Cost":428,"Date":"9/16/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":472,"Cost":372,"Date":"10/4/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":318,"Cost":268,"Date":"11/1/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":528,"Cost":321,"Date":"11/2/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":704,"Cost":361,"Date":"12/17/2022"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":56,"Cost":33,"Date":"2/10/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":24,"Cost":12,"Date":"2/28/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":752,"Cost":458,"Date":"3/4/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":526,"Cost":410,"Date":"3/9/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":188,"Cost":107,"Date":"3/9/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":154,"Cost":88,"Date":"3/11/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":605,"Cost":501,"Date":"3/17/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":604,"Cost":508,"Date":"3/17/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":719,"Cost":373,"Date":"3/23/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":341,"Cost":183,"Date":"4/1/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":895,"Cost":788,"Date":"5/7/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":955,"Cost":772,"Date":"5/10/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":99,"Cost":93,"Date":"5/20/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":170,"Cost":97,"Date":"6/2/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":317,"Cost":199,"Date":"6/11/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":903,"Cost":827,"Date":"6/16/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":406,"Cost":271,"Date":"6/16/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":937,"Cost":708,"Date":"7/10/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":588,"Cost":391,"Date":"7/11/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":874,"Cost":638,"Date":"8/28/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":123,"Cost":106,"Date":"8/29/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":742,"Cost":401,"Date":"8/31/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":740,"Cost":519,"Date":"9/8/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":942,"Cost":486,"Date":"9/13/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":800,"Cost":498,"Date":"9/14/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":234,"Cost":199,"Date":"9/19/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":766,"Cost":536,"Date":"9/25/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":870,"Cost":804,"Date":"10/4/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":799,"Cost":547,"Date":"10/10/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":424,"Cost":326,"Date":"10/17/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":766,"Cost":559,"Date":"10/28/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":948,"Cost":829,"Date":"10/30/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":503,"Cost":381,"Date":"11/1/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":860,"Cost":509,"Date":"11/15/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":630,"Cost":558,"Date":"11/25/2023"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":13,"Cost":8,"Date":"1/10/2024"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":837,"Cost":793,"Date":"1/14/2024"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":786,"Cost":734,"Date":"1/20/2024"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":300,"Cost":202,"Date":"2/8/2024"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":411,"Cost":233,"Date":"2/25/2024"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":34,"Cost":25,"Date":"3/7/2024"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":606,"Cost":546,"Date":"3/14/2024"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":423,"Cost":330,"Date":"3/27/2024"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":984,"Cost":660,"Date":"4/5/2024"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":841,"Cost":718,"Date":"4/14/2024"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":929,"Cost":580,"Date":"5/3/2024"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":128,"Cost":75,"Date":"5/9/2024"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":212,"Cost":181,"Date":"5/15/2024"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":466,"Cost":377,"Date":"5/25/2024"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":954,"Cost":876,"Date":"5/26/2024"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":661,"Cost":391,"Date":"5/31/2024"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":456,"Cost":353,"Date":"7/27/2024"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":612,"Cost":408,"Date":"9/17/2024"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":268,"Cost":151,"Date":"10/6/2024"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":751,"Cost":552,"Date":"10/8/2024"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":376,"Cost":217,"Date":"10/26/2024"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":423,"Cost":308,"Date":"11/16/2024"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":982,"Cost":851,"Date":"11/18/2024"},{"Store":"Plovdiv Plaza","Brand":"COS","Country":"Bulgaria","Sale":719,"Cost":378,"Date":"12/1/2024"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":910,"Cost":489,"Date":"2/9/2018"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":868,"Cost":632,"Date":"2/11/2018"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":706,"Cost":527,"Date":"3/10/2018"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":383,"Cost":342,"Date":"3/16/2018"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":719,"Cost":428,"Date":"3/18/2018"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":755,"Cost":393,"Date":"3/20/2018"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":795,"Cost":699,"Date":"3/26/2018"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":14,"Cost":9,"Date":"6/2/2018"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":306,"Cost":212,"Date":"6/10/2018"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":757,"Cost":709,"Date":"6/16/2018"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":668,"Cost":420,"Date":"6/25/2018"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":312,"Cost":174,"Date":"7/19/2018"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":557,"Cost":363,"Date":"7/21/2018"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":38,"Cost":21,"Date":"7/25/2018"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":365,"Cost":279,"Date":"8/4/2018"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":983,"Cost":829,"Date":"9/2/2018"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":10,"Cost":9,"Date":"9/4/2018"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":338,"Cost":256,"Date":"9/19/2018"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":918,"Cost":655,"Date":"9/29/2018"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":876,"Cost":520,"Date":"10/2/2018"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":755,"Cost":442,"Date":"10/15/2018"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":491,"Cost":458,"Date":"10/30/2018"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":364,"Cost":188,"Date":"11/9/2018"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":187,"Cost":135,"Date":"11/23/2018"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":130,"Cost":80,"Date":"11/30/2018"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":820,"Cost":457,"Date":"12/8/2018"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":575,"Cost":287,"Date":"12/11/2018"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":553,"Cost":343,"Date":"1/15/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":113,"Cost":92,"Date":"1/24/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":665,"Cost":416,"Date":"2/3/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":727,"Cost":656,"Date":"2/4/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":176,"Cost":167,"Date":"3/9/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":714,"Cost":359,"Date":"3/12/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":93,"Cost":59,"Date":"4/19/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":895,"Cost":793,"Date":"5/3/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":910,"Cost":526,"Date":"5/4/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":959,"Cost":901,"Date":"6/8/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":818,"Cost":556,"Date":"6/26/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":266,"Cost":189,"Date":"7/4/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":223,"Cost":200,"Date":"7/13/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":330,"Cost":241,"Date":"8/8/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":649,"Cost":348,"Date":"8/26/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":8,"Cost":7,"Date":"9/2/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":190,"Cost":165,"Date":"9/29/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":286,"Cost":143,"Date":"10/12/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":842,"Cost":622,"Date":"11/2/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":947,"Cost":757,"Date":"11/4/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":711,"Cost":371,"Date":"11/7/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":155,"Cost":137,"Date":"12/1/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":781,"Cost":679,"Date":"12/4/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":499,"Cost":308,"Date":"12/7/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":908,"Cost":802,"Date":"12/18/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":423,"Cost":281,"Date":"12/20/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":44,"Cost":32,"Date":"12/20/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":902,"Cost":734,"Date":"12/21/2019"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":706,"Cost":451,"Date":"1/9/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":374,"Cost":335,"Date":"2/5/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":988,"Cost":818,"Date":"2/16/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":659,"Cost":613,"Date":"2/16/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":943,"Cost":873,"Date":"2/18/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":493,"Cost":362,"Date":"2/22/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":256,"Cost":241,"Date":"2/25/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":506,"Cost":460,"Date":"3/8/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":220,"Cost":160,"Date":"4/2/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":98,"Cost":93,"Date":"4/3/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":53,"Cost":30,"Date":"4/9/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":30,"Cost":21,"Date":"4/10/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":205,"Cost":139,"Date":"4/19/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":210,"Cost":158,"Date":"5/17/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":554,"Cost":485,"Date":"5/22/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":995,"Cost":672,"Date":"6/20/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":694,"Cost":509,"Date":"7/1/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":729,"Cost":667,"Date":"7/4/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":448,"Cost":300,"Date":"7/8/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":614,"Cost":533,"Date":"7/9/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":199,"Cost":109,"Date":"7/14/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":450,"Cost":328,"Date":"7/19/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":92,"Cost":56,"Date":"8/1/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":79,"Cost":43,"Date":"8/6/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":554,"Cost":278,"Date":"8/7/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":974,"Cost":487,"Date":"8/22/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":401,"Cost":252,"Date":"8/31/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":193,"Cost":169,"Date":"9/1/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":580,"Cost":496,"Date":"9/1/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":522,"Cost":404,"Date":"9/17/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":852,"Cost":427,"Date":"9/29/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":237,"Cost":184,"Date":"11/7/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":229,"Cost":177,"Date":"11/26/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":809,"Cost":686,"Date":"11/27/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":792,"Cost":580,"Date":"12/5/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":254,"Cost":133,"Date":"12/26/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":293,"Cost":183,"Date":"12/31/2020"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":65,"Cost":35,"Date":"1/20/2021"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":171,"Cost":94,"Date":"2/2/2021"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":300,"Cost":230,"Date":"2/8/2021"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":271,"Cost":258,"Date":"2/27/2021"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":856,"Cost":486,"Date":"3/1/2021"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":27,"Cost":22,"Date":"3/1/2021"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":936,"Cost":866,"Date":"3/19/2021"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":754,"Cost":573,"Date":"3/28/2021"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":838,"Cost":543,"Date":"5/21/2021"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":313,"Cost":235,"Date":"7/21/2021"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":642,"Cost":359,"Date":"8/5/2021"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":221,"Cost":153,"Date":"8/12/2021"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":462,"Cost":300,"Date":"8/21/2021"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":421,"Cost":351,"Date":"8/23/2021"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":930,"Cost":728,"Date":"9/3/2021"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":338,"Cost":200,"Date":"9/5/2021"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":198,"Cost":131,"Date":"10/6/2021"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":831,"Cost":699,"Date":"10/19/2021"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":849,"Cost":739,"Date":"11/15/2021"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":399,"Cost":339,"Date":"12/8/2021"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":263,"Cost":186,"Date":"1/8/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":771,"Cost":650,"Date":"1/14/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":542,"Cost":275,"Date":"1/19/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":169,"Cost":127,"Date":"1/28/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":890,"Cost":619,"Date":"1/31/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":217,"Cost":178,"Date":"3/27/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":475,"Cost":419,"Date":"4/20/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":820,"Cost":741,"Date":"4/24/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":173,"Cost":87,"Date":"4/28/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":123,"Cost":103,"Date":"5/15/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":401,"Cost":208,"Date":"5/16/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":451,"Cost":342,"Date":"5/18/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":449,"Cost":386,"Date":"6/2/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":538,"Cost":330,"Date":"6/3/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":646,"Cost":375,"Date":"6/5/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":86,"Cost":66,"Date":"6/7/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":525,"Cost":464,"Date":"6/14/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":904,"Cost":516,"Date":"6/20/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":838,"Cost":792,"Date":"6/24/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":556,"Cost":424,"Date":"7/4/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":970,"Cost":643,"Date":"7/9/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":881,"Cost":706,"Date":"7/12/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":257,"Cost":158,"Date":"8/14/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":654,"Cost":472,"Date":"8/16/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":314,"Cost":230,"Date":"8/23/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":234,"Cost":137,"Date":"9/2/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":994,"Cost":578,"Date":"9/3/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":445,"Cost":421,"Date":"9/16/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":771,"Cost":400,"Date":"10/4/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":931,"Cost":828,"Date":"11/1/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":744,"Cost":426,"Date":"11/2/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":101,"Cost":68,"Date":"12/17/2022"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":684,"Cost":584,"Date":"2/10/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":754,"Cost":609,"Date":"2/28/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":930,"Cost":595,"Date":"3/4/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":972,"Cost":537,"Date":"3/9/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":605,"Cost":346,"Date":"3/9/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":379,"Cost":356,"Date":"3/11/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":704,"Cost":555,"Date":"3/17/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":60,"Cost":45,"Date":"3/17/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":279,"Cost":162,"Date":"3/23/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":531,"Cost":296,"Date":"4/1/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":178,"Cost":106,"Date":"5/7/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":836,"Cost":430,"Date":"5/10/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":563,"Cost":524,"Date":"5/20/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":928,"Cost":472,"Date":"6/2/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":730,"Cost":587,"Date":"6/11/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":675,"Cost":392,"Date":"6/16/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":521,"Cost":365,"Date":"6/16/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":835,"Cost":733,"Date":"7/10/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":409,"Cost":234,"Date":"7/11/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":522,"Cost":493,"Date":"8/28/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":276,"Cost":159,"Date":"8/29/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":834,"Cost":451,"Date":"8/31/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":15,"Cost":13,"Date":"9/8/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":798,"Cost":545,"Date":"9/13/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":159,"Cost":89,"Date":"9/14/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":130,"Cost":75,"Date":"9/19/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":186,"Cost":119,"Date":"9/25/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":964,"Cost":516,"Date":"10/4/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":903,"Cost":486,"Date":"10/10/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":458,"Cost":314,"Date":"10/17/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":79,"Cost":53,"Date":"10/28/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":39,"Cost":32,"Date":"10/30/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":977,"Cost":774,"Date":"11/1/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":822,"Cost":607,"Date":"11/15/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":83,"Cost":76,"Date":"11/25/2023"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":973,"Cost":553,"Date":"1/10/2024"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":879,"Cost":545,"Date":"1/14/2024"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":153,"Cost":95,"Date":"1/20/2024"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":645,"Cost":509,"Date":"2/8/2024"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":176,"Cost":109,"Date":"2/25/2024"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":372,"Cost":346,"Date":"3/7/2024"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":455,"Cost":332,"Date":"3/14/2024"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":572,"Cost":287,"Date":"3/27/2024"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":58,"Cost":50,"Date":"4/5/2024"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":88,"Cost":70,"Date":"4/14/2024"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":709,"Cost":633,"Date":"5/3/2024"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":734,"Cost":621,"Date":"5/9/2024"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":457,"Cost":429,"Date":"5/15/2024"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":305,"Cost":200,"Date":"5/25/2024"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":278,"Cost":237,"Date":"5/26/2024"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":551,"Cost":447,"Date":"5/31/2024"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":623,"Cost":366,"Date":"7/27/2024"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":566,"Cost":507,"Date":"9/17/2024"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":622,"Cost":390,"Date":"10/6/2024"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":745,"Cost":408,"Date":"10/8/2024"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":517,"Cost":384,"Date":"10/26/2024"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":392,"Cost":319,"Date":"11/16/2024"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":940,"Cost":774,"Date":"11/18/2024"},{"Store":"Plovdiv Plaza","Brand":"Jeans","Country":"Bulgaria","Sale":36,"Cost":23,"Date":"12/1/2024"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":118,"Cost":107,"Date":"2/9/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":669,"Cost":403,"Date":"2/11/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":640,"Cost":469,"Date":"3/10/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":331,"Cost":259,"Date":"3/16/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":742,"Cost":503,"Date":"3/18/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":765,"Cost":547,"Date":"3/20/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":957,"Cost":711,"Date":"3/26/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":55,"Cost":40,"Date":"6/2/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":255,"Cost":242,"Date":"6/10/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":531,"Cost":333,"Date":"6/16/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":935,"Cost":657,"Date":"6/25/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":763,"Cost":529,"Date":"7/19/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":143,"Cost":129,"Date":"7/21/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":743,"Cost":470,"Date":"7/25/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":776,"Cost":654,"Date":"8/4/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":461,"Cost":251,"Date":"9/2/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":984,"Cost":504,"Date":"9/4/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":781,"Cost":535,"Date":"9/19/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":694,"Cost":398,"Date":"9/29/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":551,"Cost":310,"Date":"10/2/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":503,"Cost":290,"Date":"10/15/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":663,"Cost":627,"Date":"10/30/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":189,"Cost":99,"Date":"11/9/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":94,"Cost":84,"Date":"11/23/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":797,"Cost":573,"Date":"11/30/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":322,"Cost":207,"Date":"12/8/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":236,"Cost":164,"Date":"12/11/2018"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":245,"Cost":217,"Date":"1/15/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":263,"Cost":146,"Date":"1/24/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":553,"Cost":358,"Date":"2/3/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":929,"Cost":638,"Date":"2/4/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":113,"Cost":65,"Date":"3/9/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":986,"Cost":592,"Date":"3/12/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":392,"Cost":340,"Date":"4/19/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":736,"Cost":514,"Date":"5/3/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":345,"Cost":290,"Date":"5/4/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":165,"Cost":91,"Date":"6/8/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":561,"Cost":376,"Date":"6/26/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":366,"Cost":254,"Date":"7/4/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":937,"Cost":492,"Date":"7/13/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":318,"Cost":172,"Date":"8/8/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":241,"Cost":126,"Date":"8/26/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":686,"Cost":553,"Date":"9/2/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":810,"Cost":683,"Date":"9/29/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":374,"Cost":239,"Date":"10/12/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":297,"Cost":182,"Date":"11/2/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":555,"Cost":396,"Date":"11/4/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":423,"Cost":226,"Date":"11/7/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":229,"Cost":171,"Date":"12/1/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":832,"Cost":442,"Date":"12/4/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":770,"Cost":565,"Date":"12/7/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":571,"Cost":288,"Date":"12/18/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":771,"Cost":594,"Date":"12/20/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":69,"Cost":55,"Date":"12/20/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":903,"Cost":833,"Date":"12/21/2019"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":661,"Cost":387,"Date":"1/9/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":395,"Cost":347,"Date":"2/5/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":359,"Cost":341,"Date":"2/16/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":981,"Cost":898,"Date":"2/16/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":325,"Cost":189,"Date":"2/18/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":750,"Cost":431,"Date":"2/22/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":511,"Cost":387,"Date":"2/25/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":194,"Cost":118,"Date":"3/8/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":564,"Cost":452,"Date":"4/2/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":413,"Cost":369,"Date":"4/3/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":388,"Cost":266,"Date":"4/9/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":655,"Cost":382,"Date":"4/10/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":233,"Cost":135,"Date":"4/19/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":231,"Cost":127,"Date":"5/17/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":997,"Cost":606,"Date":"5/22/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":453,"Cost":396,"Date":"6/20/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":808,"Cost":747,"Date":"7/1/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":905,"Cost":612,"Date":"7/4/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":235,"Cost":158,"Date":"7/8/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":261,"Cost":184,"Date":"7/9/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":458,"Cost":356,"Date":"7/14/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":730,"Cost":621,"Date":"7/19/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":779,"Cost":474,"Date":"8/1/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":936,"Cost":481,"Date":"8/6/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":733,"Cost":626,"Date":"8/7/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":464,"Cost":343,"Date":"8/22/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":513,"Cost":308,"Date":"8/31/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":479,"Cost":337,"Date":"9/1/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":880,"Cost":821,"Date":"9/1/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":580,"Cost":437,"Date":"9/17/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":721,"Cost":368,"Date":"9/29/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":116,"Cost":77,"Date":"11/7/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":9,"Cost":7,"Date":"11/26/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":798,"Cost":469,"Date":"11/27/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":927,"Cost":862,"Date":"12/5/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":204,"Cost":169,"Date":"12/26/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":850,"Cost":753,"Date":"12/31/2020"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":738,"Cost":465,"Date":"1/20/2021"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":778,"Cost":656,"Date":"2/2/2021"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":566,"Cost":472,"Date":"2/8/2021"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":519,"Cost":434,"Date":"2/27/2021"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":491,"Cost":444,"Date":"3/1/2021"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":659,"Cost":384,"Date":"3/1/2021"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":136,"Cost":123,"Date":"3/19/2021"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":384,"Cost":204,"Date":"3/28/2021"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":640,"Cost":515,"Date":"5/21/2021"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":797,"Cost":475,"Date":"7/21/2021"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":787,"Cost":569,"Date":"8/5/2021"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":464,"Cost":301,"Date":"8/12/2021"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":344,"Cost":228,"Date":"8/21/2021"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":377,"Cost":312,"Date":"8/23/2021"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":362,"Cost":229,"Date":"9/3/2021"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":660,"Cost":423,"Date":"9/5/2021"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":919,"Cost":825,"Date":"10/6/2021"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":168,"Cost":113,"Date":"10/19/2021"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":163,"Cost":98,"Date":"11/15/2021"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":242,"Cost":169,"Date":"12/8/2021"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":931,"Cost":582,"Date":"1/8/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":521,"Cost":369,"Date":"1/14/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":236,"Cost":223,"Date":"1/19/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":459,"Cost":366,"Date":"1/28/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":501,"Cost":271,"Date":"1/31/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":123,"Cost":67,"Date":"3/27/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":471,"Cost":377,"Date":"4/20/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":654,"Cost":406,"Date":"4/24/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":226,"Cost":158,"Date":"4/28/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":172,"Cost":160,"Date":"5/15/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":297,"Cost":149,"Date":"5/16/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":781,"Cost":735,"Date":"5/18/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":175,"Cost":118,"Date":"6/2/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":598,"Cost":503,"Date":"6/3/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":839,"Cost":659,"Date":"6/5/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":94,"Cost":47,"Date":"6/7/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":948,"Cost":847,"Date":"6/14/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":221,"Cost":155,"Date":"6/20/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":710,"Cost":659,"Date":"6/24/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":874,"Cost":541,"Date":"7/4/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":928,"Cost":840,"Date":"7/9/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":153,"Cost":134,"Date":"7/12/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":803,"Cost":439,"Date":"8/14/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":377,"Cost":358,"Date":"8/16/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":4,"Cost":3,"Date":"8/23/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":131,"Cost":84,"Date":"9/2/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":182,"Cost":95,"Date":"9/3/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":10,"Cost":9,"Date":"9/16/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":793,"Cost":571,"Date":"10/4/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":804,"Cost":472,"Date":"11/1/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":946,"Cost":767,"Date":"11/2/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":271,"Cost":243,"Date":"12/17/2022"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":989,"Cost":802,"Date":"2/10/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":550,"Cost":477,"Date":"2/28/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":629,"Cost":511,"Date":"3/4/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":623,"Cost":480,"Date":"3/9/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":267,"Cost":200,"Date":"3/9/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":298,"Cost":211,"Date":"3/11/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":883,"Cost":589,"Date":"3/17/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":454,"Cost":359,"Date":"3/17/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":764,"Cost":679,"Date":"3/23/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":853,"Cost":530,"Date":"4/1/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":54,"Cost":39,"Date":"5/7/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":98,"Cost":62,"Date":"5/10/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":540,"Cost":295,"Date":"5/20/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":71,"Cost":46,"Date":"6/2/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":700,"Cost":520,"Date":"6/11/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":861,"Cost":764,"Date":"6/16/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":31,"Cost":16,"Date":"6/16/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":958,"Cost":598,"Date":"7/10/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":47,"Cost":44,"Date":"7/11/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":329,"Cost":175,"Date":"8/28/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":680,"Cost":611,"Date":"8/29/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":376,"Cost":303,"Date":"8/31/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":406,"Cost":221,"Date":"9/8/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":685,"Cost":378,"Date":"9/13/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":267,"Cost":155,"Date":"9/14/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":545,"Cost":318,"Date":"9/19/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":8,"Cost":7,"Date":"9/25/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":612,"Cost":488,"Date":"10/4/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":792,"Cost":632,"Date":"10/10/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":880,"Cost":779,"Date":"10/17/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":955,"Cost":886,"Date":"10/28/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":666,"Cost":621,"Date":"10/30/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":391,"Cost":213,"Date":"11/1/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":560,"Cost":528,"Date":"11/15/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":550,"Cost":428,"Date":"11/25/2023"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":226,"Cost":162,"Date":"1/10/2024"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":783,"Cost":658,"Date":"1/14/2024"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":119,"Cost":109,"Date":"1/20/2024"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":554,"Cost":290,"Date":"2/8/2024"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":967,"Cost":534,"Date":"2/25/2024"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":156,"Cost":83,"Date":"3/7/2024"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":145,"Cost":115,"Date":"3/14/2024"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":330,"Cost":217,"Date":"3/27/2024"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":235,"Cost":149,"Date":"4/5/2024"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":244,"Cost":177,"Date":"4/14/2024"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":692,"Cost":575,"Date":"5/3/2024"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":110,"Cost":71,"Date":"5/9/2024"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":250,"Cost":180,"Date":"5/15/2024"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":561,"Cost":429,"Date":"5/25/2024"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":61,"Cost":39,"Date":"5/26/2024"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":955,"Cost":751,"Date":"5/31/2024"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":309,"Cost":244,"Date":"7/27/2024"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":362,"Cost":189,"Date":"9/17/2024"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":920,"Cost":700,"Date":"10/6/2024"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":727,"Cost":659,"Date":"10/8/2024"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":979,"Cost":621,"Date":"10/26/2024"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":467,"Cost":261,"Date":"11/16/2024"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":701,"Cost":481,"Date":"11/18/2024"},{"Store":"Plovdiv Plaza","Brand":"HM","Country":"Bulgaria","Sale":132,"Cost":116,"Date":"12/1/2024"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":490,"Cost":362,"Date":"2/9/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":953,"Cost":716,"Date":"2/11/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":513,"Cost":309,"Date":"3/10/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":91,"Cost":65,"Date":"3/16/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":755,"Cost":462,"Date":"3/18/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":833,"Cost":447,"Date":"3/20/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":141,"Cost":122,"Date":"3/26/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":358,"Cost":326,"Date":"6/2/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":768,"Cost":479,"Date":"6/10/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":709,"Cost":390,"Date":"6/16/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":820,"Cost":614,"Date":"6/25/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":160,"Cost":133,"Date":"7/19/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":13,"Cost":8,"Date":"7/21/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":228,"Cost":152,"Date":"7/25/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":601,"Cost":461,"Date":"8/4/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":371,"Cost":266,"Date":"9/2/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":601,"Cost":327,"Date":"9/4/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":564,"Cost":295,"Date":"9/19/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":675,"Cost":338,"Date":"9/29/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":714,"Cost":404,"Date":"10/2/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":253,"Cost":209,"Date":"10/15/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":591,"Cost":520,"Date":"10/30/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":740,"Cost":436,"Date":"11/9/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":957,"Cost":682,"Date":"11/23/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":84,"Cost":64,"Date":"11/30/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":667,"Cost":392,"Date":"12/8/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":158,"Cost":84,"Date":"12/11/2018"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":976,"Cost":713,"Date":"1/15/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":141,"Cost":130,"Date":"1/24/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":674,"Cost":412,"Date":"2/3/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":700,"Cost":643,"Date":"2/4/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":943,"Cost":775,"Date":"3/9/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":926,"Cost":716,"Date":"3/12/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":912,"Cost":629,"Date":"4/19/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":88,"Cost":49,"Date":"5/3/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":618,"Cost":377,"Date":"5/4/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":390,"Cost":361,"Date":"6/8/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":22,"Cost":16,"Date":"6/26/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":701,"Cost":370,"Date":"7/4/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":854,"Cost":462,"Date":"7/13/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":837,"Cost":565,"Date":"8/8/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":18,"Cost":12,"Date":"8/26/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":841,"Cost":452,"Date":"9/2/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":688,"Cost":564,"Date":"9/29/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":647,"Cost":538,"Date":"10/12/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":695,"Cost":568,"Date":"11/2/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":539,"Cost":439,"Date":"11/4/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":125,"Cost":73,"Date":"11/7/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":133,"Cost":89,"Date":"12/1/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":863,"Cost":474,"Date":"12/4/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":299,"Cost":207,"Date":"12/7/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":318,"Cost":289,"Date":"12/18/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":41,"Cost":26,"Date":"12/20/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":364,"Cost":317,"Date":"12/20/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":214,"Cost":155,"Date":"12/21/2019"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":98,"Cost":83,"Date":"1/9/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":51,"Cost":44,"Date":"2/5/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":319,"Cost":183,"Date":"2/16/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":345,"Cost":281,"Date":"2/16/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":335,"Cost":228,"Date":"2/18/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":587,"Cost":466,"Date":"2/22/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":443,"Cost":288,"Date":"2/25/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":799,"Cost":741,"Date":"3/8/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":589,"Cost":440,"Date":"4/2/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":826,"Cost":425,"Date":"4/3/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":105,"Cost":58,"Date":"4/9/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":613,"Cost":551,"Date":"4/10/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":7,"Cost":5,"Date":"4/19/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":628,"Cost":534,"Date":"5/17/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":42,"Cost":30,"Date":"5/22/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":749,"Cost":543,"Date":"6/20/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":28,"Cost":15,"Date":"7/1/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":194,"Cost":114,"Date":"7/4/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":70,"Cost":35,"Date":"7/8/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":119,"Cost":89,"Date":"7/9/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":189,"Cost":124,"Date":"7/14/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":354,"Cost":284,"Date":"7/19/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":238,"Cost":151,"Date":"8/1/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":734,"Cost":405,"Date":"8/6/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":977,"Cost":831,"Date":"8/7/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":673,"Cost":625,"Date":"8/22/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":504,"Cost":356,"Date":"8/31/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":727,"Cost":426,"Date":"9/1/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":275,"Cost":242,"Date":"9/1/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":18,"Cost":15,"Date":"9/17/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":190,"Cost":115,"Date":"9/29/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":942,"Cost":533,"Date":"11/7/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":713,"Cost":393,"Date":"11/26/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":700,"Cost":447,"Date":"11/27/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":186,"Cost":155,"Date":"12/5/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":180,"Cost":108,"Date":"12/26/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":793,"Cost":494,"Date":"12/31/2020"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":743,"Cost":458,"Date":"1/20/2021"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":98,"Cost":77,"Date":"2/2/2021"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":339,"Cost":186,"Date":"2/8/2021"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":963,"Cost":683,"Date":"2/27/2021"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":758,"Cost":393,"Date":"3/1/2021"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":173,"Cost":151,"Date":"3/1/2021"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":307,"Cost":183,"Date":"3/19/2021"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":860,"Cost":452,"Date":"3/28/2021"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":77,"Cost":54,"Date":"5/21/2021"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":56,"Cost":50,"Date":"7/21/2021"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":532,"Cost":438,"Date":"8/5/2021"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":958,"Cost":631,"Date":"8/12/2021"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":866,"Cost":597,"Date":"8/21/2021"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":916,"Cost":622,"Date":"8/23/2021"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":91,"Cost":81,"Date":"9/3/2021"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":537,"Cost":351,"Date":"9/5/2021"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":786,"Cost":514,"Date":"10/6/2021"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":795,"Cost":753,"Date":"10/19/2021"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":358,"Cost":318,"Date":"11/15/2021"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":976,"Cost":582,"Date":"12/8/2021"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":366,"Cost":275,"Date":"1/8/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":270,"Cost":243,"Date":"1/14/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":603,"Cost":314,"Date":"1/19/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":606,"Cost":371,"Date":"1/28/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":107,"Cost":93,"Date":"1/31/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":656,"Cost":536,"Date":"3/27/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":501,"Cost":392,"Date":"4/20/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":783,"Cost":559,"Date":"4/24/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":892,"Cost":740,"Date":"4/28/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":521,"Cost":300,"Date":"5/15/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":71,"Cost":58,"Date":"5/16/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":404,"Cost":382,"Date":"5/18/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":868,"Cost":709,"Date":"6/2/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":753,"Cost":418,"Date":"6/3/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":291,"Cost":146,"Date":"6/5/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":194,"Cost":158,"Date":"6/7/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":202,"Cost":146,"Date":"6/14/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":63,"Cost":31,"Date":"6/20/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":68,"Cost":53,"Date":"6/24/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":647,"Cost":534,"Date":"7/4/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":695,"Cost":395,"Date":"7/9/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":5,"Cost":4,"Date":"7/12/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":736,"Cost":405,"Date":"8/14/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":813,"Cost":628,"Date":"8/16/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":550,"Cost":510,"Date":"8/23/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":785,"Cost":510,"Date":"9/2/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":481,"Cost":429,"Date":"9/3/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":56,"Cost":38,"Date":"9/16/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":654,"Cost":380,"Date":"10/4/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":101,"Cost":73,"Date":"11/1/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":331,"Cost":178,"Date":"11/2/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":692,"Cost":614,"Date":"12/17/2022"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":603,"Cost":394,"Date":"2/10/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":577,"Cost":434,"Date":"2/28/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":849,"Cost":783,"Date":"3/4/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":18,"Cost":12,"Date":"3/9/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":693,"Cost":397,"Date":"3/9/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":484,"Cost":375,"Date":"3/11/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":87,"Cost":70,"Date":"3/17/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":150,"Cost":78,"Date":"3/17/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":78,"Cost":62,"Date":"3/23/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":642,"Cost":539,"Date":"4/1/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":464,"Cost":246,"Date":"5/7/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":862,"Cost":676,"Date":"5/10/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":927,"Cost":635,"Date":"5/20/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":569,"Cost":314,"Date":"6/2/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":239,"Cost":225,"Date":"6/11/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":695,"Cost":445,"Date":"6/16/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":609,"Cost":320,"Date":"6/16/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":270,"Cost":173,"Date":"7/10/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":697,"Cost":532,"Date":"7/11/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":658,"Cost":514,"Date":"8/28/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":972,"Cost":746,"Date":"8/29/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":937,"Cost":473,"Date":"8/31/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":729,"Cost":425,"Date":"9/8/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":203,"Cost":133,"Date":"9/13/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":74,"Cost":47,"Date":"9/14/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":834,"Cost":704,"Date":"9/19/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":302,"Cost":164,"Date":"9/25/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":742,"Cost":597,"Date":"10/4/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":171,"Cost":129,"Date":"10/10/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":668,"Cost":398,"Date":"10/17/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":136,"Cost":96,"Date":"10/28/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":544,"Cost":511,"Date":"10/30/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":733,"Cost":588,"Date":"11/1/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":697,"Cost":570,"Date":"11/15/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":507,"Cost":443,"Date":"11/25/2023"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":850,"Cost":543,"Date":"1/10/2024"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":900,"Cost":766,"Date":"1/14/2024"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":498,"Cost":277,"Date":"1/20/2024"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":738,"Cost":573,"Date":"2/8/2024"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":940,"Cost":562,"Date":"2/25/2024"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":700,"Cost":425,"Date":"3/7/2024"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":576,"Cost":507,"Date":"3/14/2024"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":881,"Cost":812,"Date":"3/27/2024"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":746,"Cost":649,"Date":"4/5/2024"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":574,"Cost":523,"Date":"4/14/2024"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":779,"Cost":630,"Date":"5/3/2024"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":265,"Cost":249,"Date":"5/9/2024"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":391,"Cost":366,"Date":"5/15/2024"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":198,"Cost":120,"Date":"5/25/2024"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":124,"Cost":99,"Date":"5/26/2024"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":530,"Cost":453,"Date":"5/31/2024"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":755,"Cost":392,"Date":"7/27/2024"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":814,"Cost":624,"Date":"9/17/2024"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":282,"Cost":245,"Date":"10/6/2024"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":586,"Cost":327,"Date":"10/8/2024"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":224,"Cost":181,"Date":"10/26/2024"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":449,"Cost":385,"Date":"11/16/2024"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":73,"Cost":50,"Date":"11/18/2024"},{"Store":"Mall of Plovdiv","Brand":"Nova","Country":"Bulgaria","Sale":239,"Cost":200,"Date":"12/1/2024"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":57,"Cost":30,"Date":"2/9/2018"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":337,"Cost":169,"Date":"2/11/2018"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":438,"Cost":322,"Date":"3/10/2018"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":197,"Cost":114,"Date":"3/16/2018"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":213,"Cost":203,"Date":"3/18/2018"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":384,"Cost":310,"Date":"3/20/2018"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":421,"Cost":280,"Date":"3/26/2018"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":127,"Cost":66,"Date":"6/2/2018"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":65,"Cost":61,"Date":"6/10/2018"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":219,"Cost":203,"Date":"6/16/2018"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":495,"Cost":293,"Date":"6/25/2018"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":657,"Cost":529,"Date":"7/19/2018"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":712,"Cost":371,"Date":"7/21/2018"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":6,"Cost":6,"Date":"7/25/2018"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":831,"Cost":475,"Date":"8/4/2018"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":900,"Cost":598,"Date":"9/2/2018"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":539,"Cost":424,"Date":"9/4/2018"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":479,"Cost":437,"Date":"9/19/2018"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":230,"Cost":182,"Date":"9/29/2018"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":896,"Cost":479,"Date":"10/2/2018"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":381,"Cost":225,"Date":"10/15/2018"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":408,"Cost":338,"Date":"10/30/2018"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":559,"Cost":347,"Date":"11/9/2018"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":506,"Cost":466,"Date":"11/23/2018"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":464,"Cost":255,"Date":"11/30/2018"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":173,"Cost":151,"Date":"12/8/2018"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":239,"Cost":182,"Date":"12/11/2018"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":455,"Cost":284,"Date":"1/15/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":184,"Cost":150,"Date":"1/24/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":781,"Cost":643,"Date":"2/3/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":615,"Cost":410,"Date":"2/4/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":848,"Cost":605,"Date":"3/9/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":12,"Cost":11,"Date":"3/12/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":16,"Cost":9,"Date":"4/19/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":10,"Cost":6,"Date":"5/3/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":701,"Cost":657,"Date":"5/4/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":345,"Cost":242,"Date":"6/8/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":400,"Cost":367,"Date":"6/26/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":328,"Cost":184,"Date":"7/4/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":387,"Cost":366,"Date":"7/13/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":62,"Cost":35,"Date":"8/8/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":491,"Cost":446,"Date":"8/26/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":23,"Cost":17,"Date":"9/2/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":246,"Cost":137,"Date":"9/29/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":329,"Cost":287,"Date":"10/12/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":822,"Cost":633,"Date":"11/2/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":544,"Cost":278,"Date":"11/4/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":882,"Cost":632,"Date":"11/7/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":883,"Cost":475,"Date":"12/1/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":895,"Cost":516,"Date":"12/4/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":746,"Cost":584,"Date":"12/7/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":486,"Cost":315,"Date":"12/18/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":550,"Cost":522,"Date":"12/20/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":357,"Cost":217,"Date":"12/20/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":248,"Cost":165,"Date":"12/21/2019"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":253,"Cost":225,"Date":"1/9/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":392,"Cost":280,"Date":"2/5/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":572,"Cost":514,"Date":"2/16/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":293,"Cost":241,"Date":"2/16/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":161,"Cost":88,"Date":"2/18/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":301,"Cost":194,"Date":"2/22/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":153,"Cost":123,"Date":"2/25/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":523,"Cost":393,"Date":"3/8/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":310,"Cost":260,"Date":"4/2/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":193,"Cost":102,"Date":"4/3/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":283,"Cost":155,"Date":"4/9/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":257,"Cost":236,"Date":"4/10/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":213,"Cost":115,"Date":"4/19/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":173,"Cost":145,"Date":"5/17/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":704,"Cost":608,"Date":"5/22/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":919,"Cost":800,"Date":"6/20/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":692,"Cost":543,"Date":"7/1/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":380,"Cost":325,"Date":"7/4/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":51,"Cost":32,"Date":"7/8/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":890,"Cost":806,"Date":"7/9/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":215,"Cost":113,"Date":"7/14/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":601,"Cost":502,"Date":"7/19/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":15,"Cost":13,"Date":"8/1/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":473,"Cost":444,"Date":"8/6/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":490,"Cost":455,"Date":"8/7/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":837,"Cost":776,"Date":"8/22/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":71,"Cost":56,"Date":"8/31/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":30,"Cost":16,"Date":"9/1/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":956,"Cost":494,"Date":"9/1/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":589,"Cost":303,"Date":"9/17/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":950,"Cost":683,"Date":"9/29/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":693,"Cost":557,"Date":"11/7/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":26,"Cost":13,"Date":"11/26/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":425,"Cost":312,"Date":"11/27/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":101,"Cost":72,"Date":"12/5/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":856,"Cost":778,"Date":"12/26/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":391,"Cost":252,"Date":"12/31/2020"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":265,"Cost":184,"Date":"1/20/2021"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":152,"Cost":98,"Date":"2/2/2021"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":360,"Cost":180,"Date":"2/8/2021"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":990,"Cost":773,"Date":"2/27/2021"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":576,"Cost":413,"Date":"3/1/2021"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":312,"Cost":234,"Date":"3/1/2021"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":414,"Cost":265,"Date":"3/19/2021"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":488,"Cost":406,"Date":"3/28/2021"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":77,"Cost":45,"Date":"5/21/2021"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":952,"Cost":722,"Date":"7/21/2021"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":82,"Cost":48,"Date":"8/5/2021"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":592,"Cost":542,"Date":"8/12/2021"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":949,"Cost":571,"Date":"8/21/2021"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":195,"Cost":150,"Date":"8/23/2021"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":210,"Cost":129,"Date":"9/3/2021"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":153,"Cost":133,"Date":"9/5/2021"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":703,"Cost":361,"Date":"10/6/2021"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":909,"Cost":589,"Date":"10/19/2021"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":224,"Cost":120,"Date":"11/15/2021"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":275,"Cost":189,"Date":"12/8/2021"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":929,"Cost":717,"Date":"1/8/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":351,"Cost":317,"Date":"1/14/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":645,"Cost":452,"Date":"1/19/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":938,"Cost":879,"Date":"1/28/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":874,"Cost":534,"Date":"1/31/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":193,"Cost":104,"Date":"3/27/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":415,"Cost":308,"Date":"4/20/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":416,"Cost":260,"Date":"4/24/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":997,"Cost":927,"Date":"4/28/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":641,"Cost":446,"Date":"5/15/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":136,"Cost":108,"Date":"5/16/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":166,"Cost":115,"Date":"5/18/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":843,"Cost":797,"Date":"6/2/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":156,"Cost":101,"Date":"6/3/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":194,"Cost":109,"Date":"6/5/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":904,"Cost":569,"Date":"6/7/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":643,"Cost":440,"Date":"6/14/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":138,"Cost":128,"Date":"6/20/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":390,"Cost":287,"Date":"6/24/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":739,"Cost":573,"Date":"7/4/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":139,"Cost":122,"Date":"7/9/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":256,"Cost":151,"Date":"7/12/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":187,"Cost":132,"Date":"8/14/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":539,"Cost":467,"Date":"8/16/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":23,"Cost":14,"Date":"8/23/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":960,"Cost":812,"Date":"9/2/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":402,"Cost":247,"Date":"9/3/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":423,"Cost":230,"Date":"9/16/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":164,"Cost":93,"Date":"10/4/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":48,"Cost":32,"Date":"11/1/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":914,"Cost":743,"Date":"11/2/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":537,"Cost":437,"Date":"12/17/2022"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":830,"Cost":677,"Date":"2/10/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":778,"Cost":729,"Date":"2/28/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":661,"Cost":421,"Date":"3/4/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":386,"Cost":321,"Date":"3/9/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":879,"Cost":826,"Date":"3/9/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":355,"Cost":179,"Date":"3/11/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":351,"Cost":261,"Date":"3/17/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":162,"Cost":138,"Date":"3/17/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":485,"Cost":342,"Date":"3/23/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":537,"Cost":402,"Date":"4/1/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":225,"Cost":122,"Date":"5/7/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":58,"Cost":32,"Date":"5/10/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":398,"Cost":360,"Date":"5/20/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":671,"Cost":400,"Date":"6/2/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":185,"Cost":123,"Date":"6/11/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":810,"Cost":556,"Date":"6/16/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":267,"Cost":202,"Date":"6/16/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":674,"Cost":431,"Date":"7/10/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":134,"Cost":122,"Date":"7/11/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":379,"Cost":288,"Date":"8/28/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":712,"Cost":643,"Date":"8/29/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":387,"Cost":255,"Date":"8/31/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":109,"Cost":70,"Date":"9/8/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":641,"Cost":344,"Date":"9/13/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":351,"Cost":204,"Date":"9/14/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":244,"Cost":150,"Date":"9/19/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":142,"Cost":116,"Date":"9/25/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":345,"Cost":273,"Date":"10/4/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":434,"Cost":230,"Date":"10/10/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":683,"Cost":518,"Date":"10/17/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":616,"Cost":394,"Date":"10/28/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":974,"Cost":875,"Date":"10/30/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":931,"Cost":477,"Date":"11/1/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":51,"Cost":32,"Date":"11/15/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":425,"Cost":359,"Date":"11/25/2023"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":610,"Cost":556,"Date":"1/10/2024"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":733,"Cost":412,"Date":"1/14/2024"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":574,"Cost":318,"Date":"1/20/2024"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":998,"Cost":516,"Date":"2/8/2024"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":684,"Cost":412,"Date":"2/25/2024"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":916,"Cost":635,"Date":"3/7/2024"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":101,"Cost":61,"Date":"3/14/2024"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":786,"Cost":413,"Date":"3/27/2024"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":326,"Cost":224,"Date":"4/5/2024"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":883,"Cost":610,"Date":"4/14/2024"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":890,"Cost":527,"Date":"5/3/2024"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":474,"Cost":281,"Date":"5/9/2024"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":233,"Cost":138,"Date":"5/15/2024"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":576,"Cost":408,"Date":"5/25/2024"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":462,"Cost":354,"Date":"5/26/2024"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":304,"Cost":213,"Date":"5/31/2024"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":988,"Cost":661,"Date":"7/27/2024"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":324,"Cost":208,"Date":"9/17/2024"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":416,"Cost":317,"Date":"10/6/2024"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":864,"Cost":748,"Date":"10/8/2024"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":418,"Cost":275,"Date":"10/26/2024"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":216,"Cost":161,"Date":"11/16/2024"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":516,"Cost":412,"Date":"11/18/2024"},{"Store":"Mall of Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":754,"Cost":530,"Date":"12/1/2024"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":96,"Cost":50,"Date":"2/9/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":568,"Cost":427,"Date":"2/11/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":157,"Cost":90,"Date":"3/10/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":281,"Cost":231,"Date":"3/16/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":733,"Cost":618,"Date":"3/18/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":169,"Cost":98,"Date":"3/20/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":821,"Cost":704,"Date":"3/26/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":179,"Cost":107,"Date":"6/2/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":494,"Cost":277,"Date":"6/10/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":881,"Cost":824,"Date":"6/16/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":19,"Cost":12,"Date":"6/25/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":789,"Cost":649,"Date":"7/19/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":102,"Cost":91,"Date":"7/21/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":916,"Cost":764,"Date":"7/25/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":6,"Cost":4,"Date":"8/4/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":663,"Cost":365,"Date":"9/2/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":656,"Cost":344,"Date":"9/4/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":874,"Cost":774,"Date":"9/19/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":556,"Cost":467,"Date":"9/29/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":47,"Cost":28,"Date":"10/2/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":352,"Cost":289,"Date":"10/15/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":143,"Cost":111,"Date":"10/30/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":177,"Cost":157,"Date":"11/9/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":638,"Cost":480,"Date":"11/23/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":819,"Cost":776,"Date":"11/30/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":335,"Cost":194,"Date":"12/8/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":213,"Cost":122,"Date":"12/11/2018"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":501,"Cost":295,"Date":"1/15/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":617,"Cost":423,"Date":"1/24/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":315,"Cost":234,"Date":"2/3/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":893,"Cost":789,"Date":"2/4/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":960,"Cost":580,"Date":"3/9/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":441,"Cost":291,"Date":"3/12/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":840,"Cost":450,"Date":"4/19/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":402,"Cost":290,"Date":"5/3/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":271,"Cost":235,"Date":"5/4/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":104,"Cost":62,"Date":"6/8/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":320,"Cost":210,"Date":"6/26/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":232,"Cost":215,"Date":"7/4/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":413,"Cost":253,"Date":"7/13/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":68,"Cost":56,"Date":"8/8/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":950,"Cost":757,"Date":"8/26/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":683,"Cost":555,"Date":"9/2/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":978,"Cost":653,"Date":"9/29/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":245,"Cost":146,"Date":"10/12/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":172,"Cost":158,"Date":"11/2/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":532,"Cost":452,"Date":"11/4/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":763,"Cost":652,"Date":"11/7/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":626,"Cost":462,"Date":"12/1/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":95,"Cost":58,"Date":"12/4/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":325,"Cost":216,"Date":"12/7/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":547,"Cost":383,"Date":"12/18/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":8,"Cost":6,"Date":"12/20/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":338,"Cost":306,"Date":"12/20/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":521,"Cost":331,"Date":"12/21/2019"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":913,"Cost":552,"Date":"1/9/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":620,"Cost":505,"Date":"2/5/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":606,"Cost":407,"Date":"2/16/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":974,"Cost":910,"Date":"2/16/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":923,"Cost":580,"Date":"2/18/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":623,"Cost":369,"Date":"2/22/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":96,"Cost":68,"Date":"2/25/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":888,"Cost":709,"Date":"3/8/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":704,"Cost":561,"Date":"4/2/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":388,"Cost":201,"Date":"4/3/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":479,"Cost":340,"Date":"4/9/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":810,"Cost":605,"Date":"4/10/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":719,"Cost":669,"Date":"4/19/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":895,"Cost":614,"Date":"5/17/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":313,"Cost":280,"Date":"5/22/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":586,"Cost":487,"Date":"6/20/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":128,"Cost":64,"Date":"7/1/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":420,"Cost":315,"Date":"7/4/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":291,"Cost":178,"Date":"7/8/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":619,"Cost":313,"Date":"7/9/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":432,"Cost":397,"Date":"7/14/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":594,"Cost":308,"Date":"7/19/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":67,"Cost":58,"Date":"8/1/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":234,"Cost":174,"Date":"8/6/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":734,"Cost":519,"Date":"8/7/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":119,"Cost":63,"Date":"8/22/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":554,"Cost":431,"Date":"8/31/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":428,"Cost":227,"Date":"9/1/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":440,"Cost":379,"Date":"9/1/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":916,"Cost":843,"Date":"9/17/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":704,"Cost":480,"Date":"9/29/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":268,"Cost":154,"Date":"11/7/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":991,"Cost":636,"Date":"11/26/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":147,"Cost":91,"Date":"11/27/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":825,"Cost":781,"Date":"12/5/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":450,"Cost":387,"Date":"12/26/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":483,"Cost":399,"Date":"12/31/2020"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":889,"Cost":474,"Date":"1/20/2021"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":758,"Cost":442,"Date":"2/2/2021"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":810,"Cost":711,"Date":"2/8/2021"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":128,"Cost":82,"Date":"2/27/2021"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":630,"Cost":496,"Date":"3/1/2021"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":34,"Cost":24,"Date":"3/1/2021"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":141,"Cost":106,"Date":"3/19/2021"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":451,"Cost":249,"Date":"3/28/2021"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":776,"Cost":559,"Date":"5/21/2021"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":42,"Cost":33,"Date":"7/21/2021"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":147,"Cost":81,"Date":"8/5/2021"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":497,"Cost":469,"Date":"8/12/2021"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":476,"Cost":341,"Date":"8/21/2021"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":756,"Cost":459,"Date":"8/23/2021"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":26,"Cost":23,"Date":"9/3/2021"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":358,"Cost":218,"Date":"9/5/2021"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":685,"Cost":419,"Date":"10/6/2021"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":175,"Cost":133,"Date":"10/19/2021"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":775,"Cost":619,"Date":"11/15/2021"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":421,"Cost":242,"Date":"12/8/2021"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":190,"Cost":128,"Date":"1/8/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":464,"Cost":300,"Date":"1/14/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":311,"Cost":229,"Date":"1/19/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":717,"Cost":576,"Date":"1/28/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":653,"Cost":365,"Date":"1/31/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":581,"Cost":501,"Date":"3/27/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":104,"Cost":64,"Date":"4/20/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":940,"Cost":591,"Date":"4/24/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":292,"Cost":194,"Date":"4/28/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":845,"Cost":533,"Date":"5/15/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":876,"Cost":517,"Date":"5/16/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":868,"Cost":568,"Date":"5/18/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":227,"Cost":142,"Date":"6/2/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":475,"Cost":274,"Date":"6/3/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":157,"Cost":142,"Date":"6/5/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":644,"Cost":341,"Date":"6/7/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":255,"Cost":188,"Date":"6/14/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":141,"Cost":95,"Date":"6/20/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":718,"Cost":605,"Date":"6/24/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":749,"Cost":428,"Date":"7/4/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":213,"Cost":116,"Date":"7/9/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":974,"Cost":820,"Date":"7/12/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":709,"Cost":358,"Date":"8/14/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":814,"Cost":741,"Date":"8/16/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":13,"Cost":7,"Date":"8/23/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":375,"Cost":297,"Date":"9/2/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":33,"Cost":32,"Date":"9/3/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":346,"Cost":307,"Date":"9/16/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":155,"Cost":94,"Date":"10/4/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":184,"Cost":156,"Date":"11/1/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":551,"Cost":413,"Date":"11/2/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":725,"Cost":499,"Date":"12/17/2022"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":612,"Cost":478,"Date":"2/10/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":407,"Cost":261,"Date":"2/28/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":251,"Cost":173,"Date":"3/4/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":424,"Cost":255,"Date":"3/9/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":570,"Cost":363,"Date":"3/9/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":962,"Cost":487,"Date":"3/11/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":561,"Cost":361,"Date":"3/17/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":523,"Cost":276,"Date":"3/17/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":801,"Cost":559,"Date":"3/23/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":670,"Cost":587,"Date":"4/1/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":453,"Cost":241,"Date":"5/7/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":333,"Cost":174,"Date":"5/10/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":968,"Cost":654,"Date":"5/20/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":257,"Cost":156,"Date":"6/2/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":235,"Cost":163,"Date":"6/11/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":485,"Cost":457,"Date":"6/16/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":140,"Cost":112,"Date":"6/16/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":119,"Cost":108,"Date":"7/10/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":333,"Cost":235,"Date":"7/11/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":31,"Cost":15,"Date":"8/28/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":894,"Cost":778,"Date":"8/29/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":779,"Cost":417,"Date":"8/31/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":539,"Cost":281,"Date":"9/8/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":917,"Cost":611,"Date":"9/13/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":609,"Cost":331,"Date":"9/14/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":887,"Cost":769,"Date":"9/19/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":20,"Cost":10,"Date":"9/25/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":573,"Cost":392,"Date":"10/4/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":876,"Cost":660,"Date":"10/10/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":917,"Cost":586,"Date":"10/17/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":873,"Cost":809,"Date":"10/28/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":332,"Cost":223,"Date":"10/30/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":836,"Cost":646,"Date":"11/1/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":744,"Cost":521,"Date":"11/15/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":861,"Cost":587,"Date":"11/25/2023"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":263,"Cost":217,"Date":"1/10/2024"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":744,"Cost":638,"Date":"1/14/2024"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":523,"Cost":282,"Date":"1/20/2024"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":216,"Cost":133,"Date":"2/8/2024"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":245,"Cost":182,"Date":"2/25/2024"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":78,"Cost":75,"Date":"3/7/2024"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":195,"Cost":135,"Date":"3/14/2024"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":967,"Cost":572,"Date":"3/27/2024"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":460,"Cost":394,"Date":"4/5/2024"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":22,"Cost":12,"Date":"4/14/2024"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":110,"Cost":65,"Date":"5/3/2024"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":777,"Cost":564,"Date":"5/9/2024"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":148,"Cost":87,"Date":"5/15/2024"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":829,"Cost":641,"Date":"5/25/2024"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":479,"Cost":358,"Date":"5/26/2024"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":672,"Cost":538,"Date":"5/31/2024"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":232,"Cost":135,"Date":"7/27/2024"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":726,"Cost":581,"Date":"9/17/2024"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":320,"Cost":194,"Date":"10/6/2024"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":203,"Cost":191,"Date":"10/8/2024"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":522,"Cost":479,"Date":"10/26/2024"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":180,"Cost":128,"Date":"11/16/2024"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":753,"Cost":501,"Date":"11/18/2024"},{"Store":"Mall of Plovdiv","Brand":"COS","Country":"Bulgaria","Sale":227,"Cost":128,"Date":"12/1/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":820,"Cost":620,"Date":"2/9/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":356,"Cost":244,"Date":"2/11/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":858,"Cost":724,"Date":"3/10/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":194,"Cost":126,"Date":"3/16/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":476,"Cost":388,"Date":"3/18/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":395,"Cost":288,"Date":"3/20/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":877,"Cost":528,"Date":"3/26/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":993,"Cost":567,"Date":"6/2/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":731,"Cost":521,"Date":"6/10/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":210,"Cost":141,"Date":"6/16/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":733,"Cost":397,"Date":"6/25/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":778,"Cost":407,"Date":"7/19/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":313,"Cost":176,"Date":"7/21/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":998,"Cost":827,"Date":"7/25/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":200,"Cost":155,"Date":"8/4/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":856,"Cost":537,"Date":"9/2/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":67,"Cost":45,"Date":"9/4/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":868,"Cost":611,"Date":"9/19/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":628,"Cost":402,"Date":"9/29/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":852,"Cost":453,"Date":"10/2/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":244,"Cost":188,"Date":"10/15/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":897,"Cost":509,"Date":"10/30/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":246,"Cost":149,"Date":"11/9/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":355,"Cost":280,"Date":"11/23/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":303,"Cost":283,"Date":"11/30/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":355,"Cost":200,"Date":"12/8/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":525,"Cost":455,"Date":"12/11/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":478,"Cost":258,"Date":"1/15/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":164,"Cost":106,"Date":"1/24/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":466,"Cost":272,"Date":"2/3/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":250,"Cost":157,"Date":"2/4/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":898,"Cost":496,"Date":"3/9/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":630,"Cost":541,"Date":"3/12/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":893,"Cost":820,"Date":"4/19/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":372,"Cost":295,"Date":"5/3/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":582,"Cost":296,"Date":"5/4/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":475,"Cost":391,"Date":"6/8/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":515,"Cost":333,"Date":"6/26/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":398,"Cost":215,"Date":"7/4/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":183,"Cost":162,"Date":"7/13/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":271,"Cost":140,"Date":"8/8/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":649,"Cost":395,"Date":"8/26/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":865,"Cost":822,"Date":"9/2/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":846,"Cost":695,"Date":"9/29/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":103,"Cost":53,"Date":"10/12/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":542,"Cost":482,"Date":"11/2/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":49,"Cost":24,"Date":"11/4/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":116,"Cost":89,"Date":"11/7/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":830,"Cost":605,"Date":"12/1/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":787,"Cost":549,"Date":"12/4/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":376,"Cost":265,"Date":"12/7/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":928,"Cost":779,"Date":"12/18/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":602,"Cost":531,"Date":"12/20/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":147,"Cost":99,"Date":"12/20/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":39,"Cost":31,"Date":"12/21/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":900,"Cost":623,"Date":"1/9/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":695,"Cost":519,"Date":"2/5/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":442,"Cost":307,"Date":"2/16/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":719,"Cost":635,"Date":"2/16/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":275,"Cost":141,"Date":"2/18/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":510,"Cost":280,"Date":"2/22/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":898,"Cost":635,"Date":"2/25/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":102,"Cost":61,"Date":"3/8/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":987,"Cost":870,"Date":"4/2/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":282,"Cost":152,"Date":"4/3/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":492,"Cost":420,"Date":"4/9/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":659,"Cost":540,"Date":"4/10/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":531,"Cost":399,"Date":"4/19/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":26,"Cost":18,"Date":"5/17/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":423,"Cost":230,"Date":"5/22/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":303,"Cost":172,"Date":"6/20/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":915,"Cost":502,"Date":"7/1/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":900,"Cost":520,"Date":"7/4/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":736,"Cost":668,"Date":"7/8/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":796,"Cost":741,"Date":"7/9/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":94,"Cost":83,"Date":"7/14/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":779,"Cost":409,"Date":"7/19/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":733,"Cost":479,"Date":"8/1/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":760,"Cost":462,"Date":"8/6/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":127,"Cost":64,"Date":"8/7/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":45,"Cost":25,"Date":"8/22/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":16,"Cost":11,"Date":"8/31/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":888,"Cost":550,"Date":"9/1/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":711,"Cost":539,"Date":"9/1/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":686,"Cost":369,"Date":"9/17/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":951,"Cost":763,"Date":"9/29/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":141,"Cost":89,"Date":"11/7/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":883,"Cost":831,"Date":"11/26/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":628,"Cost":328,"Date":"11/27/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":473,"Cost":278,"Date":"12/5/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":675,"Cost":429,"Date":"12/26/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":588,"Cost":514,"Date":"12/31/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":94,"Cost":67,"Date":"1/20/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":305,"Cost":243,"Date":"2/2/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":630,"Cost":365,"Date":"2/8/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":94,"Cost":49,"Date":"2/27/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":906,"Cost":533,"Date":"3/1/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":348,"Cost":329,"Date":"3/1/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":736,"Cost":508,"Date":"3/19/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":229,"Cost":149,"Date":"3/28/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":814,"Cost":751,"Date":"5/21/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":582,"Cost":526,"Date":"7/21/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":507,"Cost":281,"Date":"8/5/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":673,"Cost":585,"Date":"8/12/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":921,"Cost":536,"Date":"8/21/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":202,"Cost":144,"Date":"8/23/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":387,"Cost":305,"Date":"9/3/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":535,"Cost":462,"Date":"9/5/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":616,"Cost":571,"Date":"10/6/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":556,"Cost":474,"Date":"10/19/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":794,"Cost":497,"Date":"11/15/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":729,"Cost":393,"Date":"12/8/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":892,"Cost":824,"Date":"1/8/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":213,"Cost":198,"Date":"1/14/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":321,"Cost":191,"Date":"1/19/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":208,"Cost":181,"Date":"1/28/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":466,"Cost":280,"Date":"1/31/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":955,"Cost":842,"Date":"3/27/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":967,"Cost":904,"Date":"4/20/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":688,"Cost":393,"Date":"4/24/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":304,"Cost":283,"Date":"4/28/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":157,"Cost":136,"Date":"5/15/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":56,"Cost":34,"Date":"5/16/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":811,"Cost":760,"Date":"5/18/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":425,"Cost":256,"Date":"6/2/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":265,"Cost":214,"Date":"6/3/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":345,"Cost":220,"Date":"6/5/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":519,"Cost":313,"Date":"6/7/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":663,"Cost":391,"Date":"6/14/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":438,"Cost":339,"Date":"6/20/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":339,"Cost":172,"Date":"6/24/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":264,"Cost":196,"Date":"7/4/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":488,"Cost":322,"Date":"7/9/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":730,"Cost":597,"Date":"7/12/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":370,"Cost":348,"Date":"8/14/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":8,"Cost":6,"Date":"8/16/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":442,"Cost":403,"Date":"8/23/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":816,"Cost":689,"Date":"9/2/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":699,"Cost":565,"Date":"9/3/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":178,"Cost":129,"Date":"9/16/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":856,"Cost":468,"Date":"10/4/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":177,"Cost":138,"Date":"11/1/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":757,"Cost":707,"Date":"11/2/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":407,"Cost":219,"Date":"12/17/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":473,"Cost":244,"Date":"2/10/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":584,"Cost":331,"Date":"2/28/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":918,"Cost":818,"Date":"3/4/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":448,"Cost":400,"Date":"3/9/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":774,"Cost":524,"Date":"3/9/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":946,"Cost":769,"Date":"3/11/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":964,"Cost":626,"Date":"3/17/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":932,"Cost":874,"Date":"3/17/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":608,"Cost":423,"Date":"3/23/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":552,"Cost":386,"Date":"4/1/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":298,"Cost":210,"Date":"5/7/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":767,"Cost":496,"Date":"5/10/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":436,"Cost":326,"Date":"5/20/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":813,"Cost":551,"Date":"6/2/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":410,"Cost":214,"Date":"6/11/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":11,"Cost":8,"Date":"6/16/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":249,"Cost":199,"Date":"6/16/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":105,"Cost":98,"Date":"7/10/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":101,"Cost":66,"Date":"7/11/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":320,"Cost":183,"Date":"8/28/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":635,"Cost":538,"Date":"8/29/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":927,"Cost":800,"Date":"8/31/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":622,"Cost":351,"Date":"9/8/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":980,"Cost":568,"Date":"9/13/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":478,"Cost":448,"Date":"9/14/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":924,"Cost":678,"Date":"9/19/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":737,"Cost":669,"Date":"9/25/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":16,"Cost":11,"Date":"10/4/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":399,"Cost":365,"Date":"10/10/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":158,"Cost":103,"Date":"10/17/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":964,"Cost":868,"Date":"10/28/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":485,"Cost":379,"Date":"10/30/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":649,"Cost":456,"Date":"11/1/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":55,"Cost":41,"Date":"11/15/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":327,"Cost":208,"Date":"11/25/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":553,"Cost":369,"Date":"1/10/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":999,"Cost":569,"Date":"1/14/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":498,"Cost":344,"Date":"1/20/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":448,"Cost":239,"Date":"2/8/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":528,"Cost":369,"Date":"2/25/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":199,"Cost":183,"Date":"3/7/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":927,"Cost":867,"Date":"3/14/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":591,"Cost":378,"Date":"3/27/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":677,"Cost":621,"Date":"4/5/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":932,"Cost":783,"Date":"4/14/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":212,"Cost":182,"Date":"5/3/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":962,"Cost":769,"Date":"5/9/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":823,"Cost":713,"Date":"5/15/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":84,"Cost":55,"Date":"5/25/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":774,"Cost":703,"Date":"5/26/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":584,"Cost":503,"Date":"5/31/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":342,"Cost":302,"Date":"7/27/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":696,"Cost":499,"Date":"9/17/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":429,"Cost":392,"Date":"10/6/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":123,"Cost":110,"Date":"10/8/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":305,"Cost":214,"Date":"10/26/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":560,"Cost":290,"Date":"11/16/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":172,"Cost":134,"Date":"11/18/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"ARKET","Country":"Bulgaria","Sale":978,"Cost":696,"Date":"12/1/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":357,"Cost":219,"Date":"2/9/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":721,"Cost":594,"Date":"2/11/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":416,"Cost":377,"Date":"3/10/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":218,"Cost":199,"Date":"3/16/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":27,"Cost":23,"Date":"3/18/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":572,"Cost":432,"Date":"3/20/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":193,"Cost":177,"Date":"3/26/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":270,"Cost":248,"Date":"6/2/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":337,"Cost":308,"Date":"6/10/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":207,"Cost":157,"Date":"6/16/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":348,"Cost":305,"Date":"6/25/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":911,"Cost":649,"Date":"7/19/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":430,"Cost":223,"Date":"7/21/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":420,"Cost":361,"Date":"7/25/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":799,"Cost":657,"Date":"8/4/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":350,"Cost":236,"Date":"9/2/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":268,"Cost":148,"Date":"9/4/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":374,"Cost":297,"Date":"9/19/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":430,"Cost":394,"Date":"9/29/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":512,"Cost":363,"Date":"10/2/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":613,"Cost":381,"Date":"10/15/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":938,"Cost":789,"Date":"10/30/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":366,"Cost":257,"Date":"11/9/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":56,"Cost":32,"Date":"11/23/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":930,"Cost":640,"Date":"11/30/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":301,"Cost":195,"Date":"12/8/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":388,"Cost":196,"Date":"12/11/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":619,"Cost":405,"Date":"1/15/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":245,"Cost":227,"Date":"1/24/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":735,"Cost":588,"Date":"2/3/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":283,"Cost":182,"Date":"2/4/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":760,"Cost":596,"Date":"3/9/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":541,"Cost":441,"Date":"3/12/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":632,"Cost":426,"Date":"4/19/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":63,"Cost":45,"Date":"5/3/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":186,"Cost":176,"Date":"5/4/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":602,"Cost":494,"Date":"6/8/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":55,"Cost":34,"Date":"6/26/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":568,"Cost":399,"Date":"7/4/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":318,"Cost":195,"Date":"7/13/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":82,"Cost":76,"Date":"8/8/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":344,"Cost":272,"Date":"8/26/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":504,"Cost":286,"Date":"9/2/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":728,"Cost":594,"Date":"9/29/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":25,"Cost":23,"Date":"10/12/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":733,"Cost":465,"Date":"11/2/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":76,"Cost":55,"Date":"11/4/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":328,"Cost":203,"Date":"11/7/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":251,"Cost":169,"Date":"12/1/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":743,"Cost":497,"Date":"12/4/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":782,"Cost":556,"Date":"12/7/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":803,"Cost":683,"Date":"12/18/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":895,"Cost":541,"Date":"12/20/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":876,"Cost":459,"Date":"12/20/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":905,"Cost":759,"Date":"12/21/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":745,"Cost":579,"Date":"1/9/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":623,"Cost":464,"Date":"2/5/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":665,"Cost":429,"Date":"2/16/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":701,"Cost":628,"Date":"2/16/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":69,"Cost":58,"Date":"2/18/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":90,"Cost":47,"Date":"2/22/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":772,"Cost":661,"Date":"2/25/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":284,"Cost":163,"Date":"3/8/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":73,"Cost":68,"Date":"4/2/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":511,"Cost":374,"Date":"4/3/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":703,"Cost":357,"Date":"4/9/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":831,"Cost":577,"Date":"4/10/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":152,"Cost":127,"Date":"4/19/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":525,"Cost":465,"Date":"5/17/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":722,"Cost":438,"Date":"5/22/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":739,"Cost":421,"Date":"6/20/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":463,"Cost":429,"Date":"7/1/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":727,"Cost":527,"Date":"7/4/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":220,"Cost":115,"Date":"7/8/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":189,"Cost":108,"Date":"7/9/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":535,"Cost":501,"Date":"7/14/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":723,"Cost":530,"Date":"7/19/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":504,"Cost":291,"Date":"8/1/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":153,"Cost":140,"Date":"8/6/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":94,"Cost":72,"Date":"8/7/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":568,"Cost":484,"Date":"8/22/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":224,"Cost":169,"Date":"8/31/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":325,"Cost":266,"Date":"9/1/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":443,"Cost":397,"Date":"9/1/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":816,"Cost":549,"Date":"9/17/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":947,"Cost":685,"Date":"9/29/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":836,"Cost":724,"Date":"11/7/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":646,"Cost":345,"Date":"11/26/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":562,"Cost":322,"Date":"11/27/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":924,"Cost":721,"Date":"12/5/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":818,"Cost":507,"Date":"12/26/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":292,"Cost":271,"Date":"12/31/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":361,"Cost":303,"Date":"1/20/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":885,"Cost":576,"Date":"2/2/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":937,"Cost":833,"Date":"2/8/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":864,"Cost":786,"Date":"2/27/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":876,"Cost":645,"Date":"3/1/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":88,"Cost":64,"Date":"3/1/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":129,"Cost":114,"Date":"3/19/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":956,"Cost":829,"Date":"3/28/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":420,"Cost":346,"Date":"5/21/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":822,"Cost":692,"Date":"7/21/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":662,"Cost":397,"Date":"8/5/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":352,"Cost":264,"Date":"8/12/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":471,"Cost":362,"Date":"8/21/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":842,"Cost":783,"Date":"8/23/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":679,"Cost":640,"Date":"9/3/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":904,"Cost":632,"Date":"9/5/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":122,"Cost":74,"Date":"10/6/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":256,"Cost":176,"Date":"10/19/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":443,"Cost":234,"Date":"11/15/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":464,"Cost":297,"Date":"12/8/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":511,"Cost":465,"Date":"1/8/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":192,"Cost":175,"Date":"1/14/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":137,"Cost":104,"Date":"1/19/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":654,"Cost":390,"Date":"1/28/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":468,"Cost":278,"Date":"1/31/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":265,"Cost":181,"Date":"3/27/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":365,"Cost":292,"Date":"4/20/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":830,"Cost":485,"Date":"4/24/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":256,"Cost":184,"Date":"4/28/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":341,"Cost":311,"Date":"5/15/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":964,"Cost":561,"Date":"5/16/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":456,"Cost":256,"Date":"5/18/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":201,"Cost":143,"Date":"6/2/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":957,"Cost":617,"Date":"6/3/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":388,"Cost":216,"Date":"6/5/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":639,"Cost":326,"Date":"6/7/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":821,"Cost":568,"Date":"6/14/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":820,"Cost":432,"Date":"6/20/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":735,"Cost":624,"Date":"6/24/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":103,"Cost":86,"Date":"7/4/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":774,"Cost":523,"Date":"7/9/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":826,"Cost":533,"Date":"7/12/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":804,"Cost":646,"Date":"8/14/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":720,"Cost":495,"Date":"8/16/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":429,"Cost":255,"Date":"8/23/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":151,"Cost":118,"Date":"9/2/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":759,"Cost":681,"Date":"9/3/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":566,"Cost":427,"Date":"9/16/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":967,"Cost":552,"Date":"10/4/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":637,"Cost":519,"Date":"11/1/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":949,"Cost":841,"Date":"11/2/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":913,"Cost":558,"Date":"12/17/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":44,"Cost":26,"Date":"2/10/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":175,"Cost":152,"Date":"2/28/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":818,"Cost":709,"Date":"3/4/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":406,"Cost":356,"Date":"3/9/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":502,"Cost":307,"Date":"3/9/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":385,"Cost":348,"Date":"3/11/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":790,"Cost":417,"Date":"3/17/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":194,"Cost":171,"Date":"3/17/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":395,"Cost":274,"Date":"3/23/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":528,"Cost":357,"Date":"4/1/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":763,"Cost":581,"Date":"5/7/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":668,"Cost":336,"Date":"5/10/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":526,"Cost":293,"Date":"5/20/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":890,"Cost":515,"Date":"6/2/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":591,"Cost":445,"Date":"6/11/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":529,"Cost":384,"Date":"6/16/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":814,"Cost":685,"Date":"6/16/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":403,"Cost":292,"Date":"7/10/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":147,"Cost":111,"Date":"7/11/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":861,"Cost":651,"Date":"8/28/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":891,"Cost":615,"Date":"8/29/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":44,"Cost":22,"Date":"8/31/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":626,"Cost":330,"Date":"9/8/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":934,"Cost":708,"Date":"9/13/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":727,"Cost":541,"Date":"9/14/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":60,"Cost":41,"Date":"9/19/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":709,"Cost":664,"Date":"9/25/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":472,"Cost":253,"Date":"10/4/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":882,"Cost":604,"Date":"10/10/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":258,"Cost":228,"Date":"10/17/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":18,"Cost":16,"Date":"10/28/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":500,"Cost":319,"Date":"10/30/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":669,"Cost":342,"Date":"11/1/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":384,"Cost":213,"Date":"11/15/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":202,"Cost":159,"Date":"11/25/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":891,"Cost":673,"Date":"1/10/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":819,"Cost":756,"Date":"1/14/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":750,"Cost":497,"Date":"1/20/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":648,"Cost":423,"Date":"2/8/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":33,"Cost":31,"Date":"2/25/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":919,"Cost":536,"Date":"3/7/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":124,"Cost":72,"Date":"3/14/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":33,"Cost":27,"Date":"3/27/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":168,"Cost":124,"Date":"4/5/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":787,"Cost":426,"Date":"4/14/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":619,"Cost":371,"Date":"5/3/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":756,"Cost":474,"Date":"5/9/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":275,"Cost":219,"Date":"5/15/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":742,"Cost":399,"Date":"5/25/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":907,"Cost":817,"Date":"5/26/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":306,"Cost":160,"Date":"5/31/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":585,"Cost":352,"Date":"7/27/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":754,"Cost":585,"Date":"9/17/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":709,"Cost":623,"Date":"10/6/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":425,"Cost":367,"Date":"10/8/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":783,"Cost":504,"Date":"10/26/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":467,"Cost":370,"Date":"11/16/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":383,"Cost":237,"Date":"11/18/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"Sellpy","Country":"Bulgaria","Sale":74,"Cost":61,"Date":"12/1/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":42,"Cost":22,"Date":"2/9/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":954,"Cost":832,"Date":"2/11/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":104,"Cost":59,"Date":"3/10/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":398,"Cost":326,"Date":"3/16/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":224,"Cost":164,"Date":"3/18/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":802,"Cost":544,"Date":"3/20/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":969,"Cost":645,"Date":"3/26/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":852,"Cost":643,"Date":"6/2/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":747,"Cost":392,"Date":"6/10/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":388,"Cost":301,"Date":"6/16/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":341,"Cost":303,"Date":"6/25/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":507,"Cost":338,"Date":"7/19/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":785,"Cost":598,"Date":"7/21/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":427,"Cost":354,"Date":"7/25/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":720,"Cost":554,"Date":"8/4/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":373,"Cost":237,"Date":"9/2/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":382,"Cost":254,"Date":"9/4/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":992,"Cost":873,"Date":"9/19/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":451,"Cost":232,"Date":"9/29/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":41,"Cost":30,"Date":"10/2/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":905,"Cost":643,"Date":"10/15/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":645,"Cost":593,"Date":"10/30/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":992,"Cost":512,"Date":"11/9/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":744,"Cost":440,"Date":"11/23/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":144,"Cost":133,"Date":"11/30/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":591,"Cost":382,"Date":"12/8/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":26,"Cost":20,"Date":"12/11/2018"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":472,"Cost":428,"Date":"1/15/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":938,"Cost":668,"Date":"1/24/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":113,"Cost":105,"Date":"2/3/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":525,"Cost":297,"Date":"2/4/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":940,"Cost":520,"Date":"3/9/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":461,"Cost":236,"Date":"3/12/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":64,"Cost":34,"Date":"4/19/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":647,"Cost":591,"Date":"5/3/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":867,"Cost":458,"Date":"5/4/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":457,"Cost":430,"Date":"6/8/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":429,"Cost":273,"Date":"6/26/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":673,"Cost":538,"Date":"7/4/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":1000,"Cost":504,"Date":"7/13/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":63,"Cost":51,"Date":"8/8/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":951,"Cost":736,"Date":"8/26/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":383,"Cost":265,"Date":"9/2/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":270,"Cost":176,"Date":"9/29/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":643,"Cost":529,"Date":"10/12/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":32,"Cost":20,"Date":"11/2/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":160,"Cost":116,"Date":"11/4/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":894,"Cost":612,"Date":"11/7/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":403,"Cost":320,"Date":"12/1/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":517,"Cost":352,"Date":"12/4/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":178,"Cost":119,"Date":"12/7/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":654,"Cost":565,"Date":"12/18/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":390,"Cost":269,"Date":"12/20/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":460,"Cost":296,"Date":"12/20/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":118,"Cost":59,"Date":"12/21/2019"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":120,"Cost":91,"Date":"1/9/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":667,"Cost":412,"Date":"2/5/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":364,"Cost":336,"Date":"2/16/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":37,"Cost":22,"Date":"2/16/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":319,"Cost":166,"Date":"2/18/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":856,"Cost":639,"Date":"2/22/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":849,"Cost":495,"Date":"2/25/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":465,"Cost":384,"Date":"3/8/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":258,"Cost":189,"Date":"4/2/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":969,"Cost":505,"Date":"4/3/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":743,"Cost":421,"Date":"4/9/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":267,"Cost":197,"Date":"4/10/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":943,"Cost":571,"Date":"4/19/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":344,"Cost":317,"Date":"5/17/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":175,"Cost":131,"Date":"5/22/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":624,"Cost":546,"Date":"6/20/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":393,"Cost":349,"Date":"7/1/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":136,"Cost":83,"Date":"7/4/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":329,"Cost":193,"Date":"7/8/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":518,"Cost":437,"Date":"7/9/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":909,"Cost":850,"Date":"7/14/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":484,"Cost":366,"Date":"7/19/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":386,"Cost":233,"Date":"8/1/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":39,"Cost":22,"Date":"8/6/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":291,"Cost":253,"Date":"8/7/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":969,"Cost":802,"Date":"8/22/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":129,"Cost":117,"Date":"8/31/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":793,"Cost":413,"Date":"9/1/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":989,"Cost":704,"Date":"9/1/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":965,"Cost":710,"Date":"9/17/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":594,"Cost":549,"Date":"9/29/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":211,"Cost":168,"Date":"11/7/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":521,"Cost":404,"Date":"11/26/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":682,"Cost":503,"Date":"11/27/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":858,"Cost":742,"Date":"12/5/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":693,"Cost":388,"Date":"12/26/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":27,"Cost":22,"Date":"12/31/2020"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":745,"Cost":426,"Date":"1/20/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":622,"Cost":343,"Date":"2/2/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":685,"Cost":615,"Date":"2/8/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":814,"Cost":672,"Date":"2/27/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":451,"Cost":400,"Date":"3/1/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":272,"Cost":202,"Date":"3/1/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":696,"Cost":357,"Date":"3/19/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":313,"Cost":284,"Date":"3/28/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":952,"Cost":487,"Date":"5/21/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":54,"Cost":35,"Date":"7/21/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":574,"Cost":290,"Date":"8/5/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":304,"Cost":188,"Date":"8/12/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":881,"Cost":570,"Date":"8/21/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":532,"Cost":447,"Date":"8/23/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":43,"Cost":39,"Date":"9/3/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":943,"Cost":503,"Date":"9/5/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":385,"Cost":268,"Date":"10/6/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":714,"Cost":503,"Date":"10/19/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":814,"Cost":538,"Date":"11/15/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":736,"Cost":526,"Date":"12/8/2021"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":497,"Cost":412,"Date":"1/8/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":563,"Cost":526,"Date":"1/14/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":372,"Cost":287,"Date":"1/19/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":415,"Cost":352,"Date":"1/28/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":655,"Cost":515,"Date":"1/31/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":744,"Cost":519,"Date":"3/27/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":896,"Cost":724,"Date":"4/20/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":208,"Cost":170,"Date":"4/24/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":474,"Cost":335,"Date":"4/28/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":609,"Cost":405,"Date":"5/15/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":431,"Cost":305,"Date":"5/16/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":892,"Cost":545,"Date":"5/18/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":840,"Cost":757,"Date":"6/2/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":800,"Cost":685,"Date":"6/3/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":845,"Cost":620,"Date":"6/5/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":59,"Cost":54,"Date":"6/7/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":33,"Cost":21,"Date":"6/14/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":697,"Cost":528,"Date":"6/20/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":743,"Cost":612,"Date":"6/24/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":631,"Cost":573,"Date":"7/4/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":145,"Cost":127,"Date":"7/9/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":419,"Cost":339,"Date":"7/12/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":100,"Cost":90,"Date":"8/14/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":359,"Cost":254,"Date":"8/16/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":424,"Cost":245,"Date":"8/23/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":744,"Cost":512,"Date":"9/2/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":78,"Cost":50,"Date":"9/3/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":514,"Cost":338,"Date":"9/16/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":590,"Cost":443,"Date":"10/4/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":982,"Cost":879,"Date":"11/1/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":847,"Cost":651,"Date":"11/2/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":909,"Cost":786,"Date":"12/17/2022"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":462,"Cost":295,"Date":"2/10/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":287,"Cost":149,"Date":"2/28/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":442,"Cost":416,"Date":"3/4/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":55,"Cost":50,"Date":"3/9/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":109,"Cost":67,"Date":"3/9/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":462,"Cost":270,"Date":"3/11/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":215,"Cost":170,"Date":"3/17/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":95,"Cost":76,"Date":"3/17/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":51,"Cost":30,"Date":"3/23/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":730,"Cost":688,"Date":"4/1/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":787,"Cost":582,"Date":"5/7/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":337,"Cost":185,"Date":"5/10/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":493,"Cost":255,"Date":"5/20/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":911,"Cost":631,"Date":"6/2/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":30,"Cost":18,"Date":"6/11/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":122,"Cost":71,"Date":"6/16/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":177,"Cost":124,"Date":"6/16/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":9,"Cost":8,"Date":"7/10/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":611,"Cost":507,"Date":"7/11/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":751,"Cost":643,"Date":"8/28/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":443,"Cost":323,"Date":"8/29/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":304,"Cost":230,"Date":"8/31/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":653,"Cost":620,"Date":"9/8/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":151,"Cost":109,"Date":"9/13/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":412,"Cost":314,"Date":"9/14/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":200,"Cost":150,"Date":"9/19/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":563,"Cost":314,"Date":"9/25/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":380,"Cost":259,"Date":"10/4/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":520,"Cost":395,"Date":"10/10/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":90,"Cost":51,"Date":"10/17/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":359,"Cost":229,"Date":"10/28/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":581,"Cost":331,"Date":"10/30/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":350,"Cost":210,"Date":"11/1/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":101,"Cost":67,"Date":"11/15/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":263,"Cost":163,"Date":"11/25/2023"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":73,"Cost":62,"Date":"1/10/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":651,"Cost":512,"Date":"1/14/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":715,"Cost":521,"Date":"1/20/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":617,"Cost":460,"Date":"2/8/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":647,"Cost":421,"Date":"2/25/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":479,"Cost":366,"Date":"3/7/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":893,"Cost":830,"Date":"3/14/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":545,"Cost":453,"Date":"3/27/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":575,"Cost":469,"Date":"4/5/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":537,"Cost":341,"Date":"4/14/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":600,"Cost":523,"Date":"5/3/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":372,"Cost":289,"Date":"5/9/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":384,"Cost":257,"Date":"5/15/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":329,"Cost":281,"Date":"5/25/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":754,"Cost":670,"Date":"5/26/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":278,"Cost":200,"Date":"5/31/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":950,"Cost":544,"Date":"7/27/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":162,"Cost":81,"Date":"9/17/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":126,"Cost":115,"Date":"10/6/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":9,"Cost":5,"Date":"10/8/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":238,"Cost":129,"Date":"10/26/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":990,"Cost":503,"Date":"11/16/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":682,"Cost":623,"Date":"11/18/2024"},{"Store":"Lidl Plaza, Plovdiv","Brand":"HM Home","Country":"Bulgaria","Sale":897,"Cost":744,"Date":"12/1/2024"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":846,"Cost":474,"Date":"2/9/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":968,"Cost":763,"Date":"2/11/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":695,"Cost":626,"Date":"3/10/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":293,"Cost":203,"Date":"3/16/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":407,"Cost":306,"Date":"3/18/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":4,"Cost":4,"Date":"3/20/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":679,"Cost":340,"Date":"3/26/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":987,"Cost":741,"Date":"6/2/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":813,"Cost":716,"Date":"6/10/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":834,"Cost":732,"Date":"6/16/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":820,"Cost":490,"Date":"6/25/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":286,"Cost":158,"Date":"7/19/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":51,"Cost":31,"Date":"7/21/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":134,"Cost":102,"Date":"7/25/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":892,"Cost":817,"Date":"8/4/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":809,"Cost":639,"Date":"9/2/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":222,"Cost":160,"Date":"9/4/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":797,"Cost":440,"Date":"9/19/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":376,"Cost":294,"Date":"9/29/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":708,"Cost":572,"Date":"10/2/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":513,"Cost":311,"Date":"10/15/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":960,"Cost":742,"Date":"10/30/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":884,"Cost":506,"Date":"11/9/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":626,"Cost":428,"Date":"11/23/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":976,"Cost":552,"Date":"11/30/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":771,"Cost":464,"Date":"12/8/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":47,"Cost":37,"Date":"12/11/2018"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":654,"Cost":396,"Date":"1/15/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":891,"Cost":498,"Date":"1/24/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":521,"Cost":487,"Date":"2/3/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":890,"Cost":666,"Date":"2/4/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":97,"Cost":68,"Date":"3/9/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":856,"Cost":659,"Date":"3/12/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":611,"Cost":463,"Date":"4/19/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":438,"Cost":325,"Date":"5/3/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":857,"Cost":783,"Date":"5/4/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":948,"Cost":578,"Date":"6/8/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":905,"Cost":624,"Date":"6/26/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":925,"Cost":742,"Date":"7/4/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":893,"Cost":849,"Date":"7/13/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":893,"Cost":619,"Date":"8/8/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":914,"Cost":641,"Date":"8/26/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":685,"Cost":376,"Date":"9/2/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":622,"Cost":556,"Date":"9/29/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":237,"Cost":126,"Date":"10/12/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":71,"Cost":41,"Date":"11/2/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":445,"Cost":370,"Date":"11/4/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":628,"Cost":327,"Date":"11/7/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":571,"Cost":478,"Date":"12/1/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":33,"Cost":31,"Date":"12/4/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":249,"Cost":234,"Date":"12/7/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":869,"Cost":514,"Date":"12/18/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":128,"Cost":70,"Date":"12/20/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":485,"Cost":373,"Date":"12/20/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":38,"Cost":27,"Date":"12/21/2019"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":961,"Cost":577,"Date":"1/9/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":365,"Cost":279,"Date":"2/5/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":354,"Cost":286,"Date":"2/16/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":19,"Cost":17,"Date":"2/16/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":323,"Cost":281,"Date":"2/18/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":738,"Cost":432,"Date":"2/22/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":588,"Cost":413,"Date":"2/25/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":608,"Cost":499,"Date":"3/8/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":284,"Cost":151,"Date":"4/2/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":119,"Cost":84,"Date":"4/3/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":561,"Cost":448,"Date":"4/9/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":972,"Cost":907,"Date":"4/10/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":743,"Cost":436,"Date":"4/19/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":755,"Cost":486,"Date":"5/17/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":534,"Cost":287,"Date":"5/22/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":743,"Cost":662,"Date":"6/20/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":798,"Cost":490,"Date":"7/1/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":364,"Cost":324,"Date":"7/4/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":676,"Cost":351,"Date":"7/8/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":689,"Cost":446,"Date":"7/9/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":434,"Cost":345,"Date":"7/14/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":305,"Cost":244,"Date":"7/19/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":797,"Cost":442,"Date":"8/1/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":532,"Cost":468,"Date":"8/6/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":45,"Cost":27,"Date":"8/7/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":262,"Cost":218,"Date":"8/22/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":218,"Cost":131,"Date":"8/31/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":618,"Cost":459,"Date":"9/1/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":382,"Cost":287,"Date":"9/1/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":746,"Cost":392,"Date":"9/17/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":591,"Cost":297,"Date":"9/29/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":374,"Cost":199,"Date":"11/7/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":402,"Cost":348,"Date":"11/26/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":82,"Cost":45,"Date":"11/27/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":772,"Cost":730,"Date":"12/5/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":351,"Cost":319,"Date":"12/26/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":553,"Cost":396,"Date":"12/31/2020"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":496,"Cost":309,"Date":"1/20/2021"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":157,"Cost":115,"Date":"2/2/2021"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":912,"Cost":848,"Date":"2/8/2021"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":284,"Cost":142,"Date":"2/27/2021"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":314,"Cost":171,"Date":"3/1/2021"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":808,"Cost":570,"Date":"3/1/2021"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":641,"Cost":391,"Date":"3/19/2021"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":591,"Cost":329,"Date":"3/28/2021"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":7,"Cost":6,"Date":"5/21/2021"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":13,"Cost":9,"Date":"7/21/2021"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":226,"Cost":195,"Date":"8/5/2021"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":344,"Cost":313,"Date":"8/12/2021"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":763,"Cost":398,"Date":"8/21/2021"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":163,"Cost":95,"Date":"8/23/2021"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":926,"Cost":541,"Date":"9/3/2021"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":422,"Cost":374,"Date":"9/5/2021"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":760,"Cost":603,"Date":"10/6/2021"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":654,"Cost":430,"Date":"10/19/2021"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":881,"Cost":586,"Date":"11/15/2021"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":910,"Cost":757,"Date":"12/8/2021"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":900,"Cost":598,"Date":"1/8/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":130,"Cost":76,"Date":"1/14/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":132,"Cost":98,"Date":"1/19/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":81,"Cost":42,"Date":"1/28/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":568,"Cost":507,"Date":"1/31/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":803,"Cost":414,"Date":"3/27/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":313,"Cost":282,"Date":"4/20/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":145,"Cost":135,"Date":"4/24/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":890,"Cost":579,"Date":"4/28/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":607,"Cost":468,"Date":"5/15/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":100,"Cost":50,"Date":"5/16/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":968,"Cost":791,"Date":"5/18/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":582,"Cost":477,"Date":"6/2/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":60,"Cost":42,"Date":"6/3/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":952,"Cost":831,"Date":"6/5/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":831,"Cost":682,"Date":"6/7/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":545,"Cost":470,"Date":"6/14/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":972,"Cost":599,"Date":"6/20/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":261,"Cost":224,"Date":"6/24/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":851,"Cost":700,"Date":"7/4/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":751,"Cost":694,"Date":"7/9/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":638,"Cost":528,"Date":"7/12/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":959,"Cost":743,"Date":"8/14/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":672,"Cost":448,"Date":"8/16/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":955,"Cost":687,"Date":"8/23/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":339,"Cost":243,"Date":"9/2/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":670,"Cost":523,"Date":"9/3/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":802,"Cost":515,"Date":"9/16/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":727,"Cost":584,"Date":"10/4/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":405,"Cost":274,"Date":"11/1/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":763,"Cost":700,"Date":"11/2/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":894,"Cost":671,"Date":"12/17/2022"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":578,"Cost":379,"Date":"2/10/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":689,"Cost":634,"Date":"2/28/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":858,"Cost":763,"Date":"3/4/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":235,"Cost":177,"Date":"3/9/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":968,"Cost":821,"Date":"3/9/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":209,"Cost":164,"Date":"3/11/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":978,"Cost":529,"Date":"3/17/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":996,"Cost":664,"Date":"3/17/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":650,"Cost":556,"Date":"3/23/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":259,"Cost":155,"Date":"4/1/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":69,"Cost":42,"Date":"5/7/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":284,"Cost":269,"Date":"5/10/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":957,"Cost":599,"Date":"5/20/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":277,"Cost":219,"Date":"6/2/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":10,"Cost":5,"Date":"6/11/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":480,"Cost":257,"Date":"6/16/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":991,"Cost":892,"Date":"6/16/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":187,"Cost":170,"Date":"7/10/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":611,"Cost":398,"Date":"7/11/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":520,"Cost":370,"Date":"8/28/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":730,"Cost":518,"Date":"8/29/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":649,"Cost":332,"Date":"8/31/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":223,"Cost":137,"Date":"9/8/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":936,"Cost":689,"Date":"9/13/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":424,"Cost":263,"Date":"9/14/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":163,"Cost":148,"Date":"9/19/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":419,"Cost":240,"Date":"9/25/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":456,"Cost":355,"Date":"10/4/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":967,"Cost":908,"Date":"10/10/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":882,"Cost":601,"Date":"10/17/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":581,"Cost":407,"Date":"10/28/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":684,"Cost":591,"Date":"10/30/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":563,"Cost":481,"Date":"11/1/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":501,"Cost":459,"Date":"11/15/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":746,"Cost":457,"Date":"11/25/2023"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":956,"Cost":761,"Date":"1/10/2024"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":654,"Cost":584,"Date":"1/14/2024"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":721,"Cost":679,"Date":"1/20/2024"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":991,"Cost":665,"Date":"2/8/2024"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":194,"Cost":182,"Date":"2/25/2024"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":189,"Cost":109,"Date":"3/7/2024"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":997,"Cost":688,"Date":"3/14/2024"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":327,"Cost":206,"Date":"3/27/2024"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":790,"Cost":634,"Date":"4/5/2024"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":415,"Cost":331,"Date":"4/14/2024"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":33,"Cost":31,"Date":"5/3/2024"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":115,"Cost":72,"Date":"5/9/2024"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":93,"Cost":63,"Date":"5/15/2024"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":782,"Cost":677,"Date":"5/25/2024"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":277,"Cost":214,"Date":"5/26/2024"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":430,"Cost":325,"Date":"5/31/2024"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":37,"Cost":25,"Date":"7/27/2024"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":552,"Cost":289,"Date":"9/17/2024"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":896,"Cost":583,"Date":"10/6/2024"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":747,"Cost":667,"Date":"10/8/2024"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":272,"Cost":259,"Date":"10/26/2024"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":538,"Cost":293,"Date":"11/16/2024"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":86,"Cost":65,"Date":"11/18/2024"},{"Store":"Grand Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":980,"Cost":604,"Date":"12/1/2024"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":9,"Cost":5,"Date":"2/9/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":239,"Cost":177,"Date":"2/11/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":55,"Cost":48,"Date":"3/10/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":103,"Cost":85,"Date":"3/16/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":976,"Cost":841,"Date":"3/18/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":157,"Cost":127,"Date":"3/20/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":535,"Cost":274,"Date":"3/26/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":552,"Cost":342,"Date":"6/2/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":12,"Cost":9,"Date":"6/10/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":112,"Cost":60,"Date":"6/16/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":811,"Cost":501,"Date":"6/25/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":204,"Cost":152,"Date":"7/19/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":28,"Cost":20,"Date":"7/21/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":649,"Cost":374,"Date":"7/25/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":555,"Cost":323,"Date":"8/4/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":430,"Cost":399,"Date":"9/2/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":266,"Cost":164,"Date":"9/4/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":890,"Cost":483,"Date":"9/19/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":941,"Cost":812,"Date":"9/29/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":273,"Cost":220,"Date":"10/2/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":669,"Cost":552,"Date":"10/15/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":280,"Cost":164,"Date":"10/30/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":299,"Cost":152,"Date":"11/9/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":502,"Cost":474,"Date":"11/23/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":879,"Cost":711,"Date":"11/30/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":429,"Cost":383,"Date":"12/8/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":868,"Cost":619,"Date":"12/11/2018"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":442,"Cost":380,"Date":"1/15/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":221,"Cost":166,"Date":"1/24/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":703,"Cost":535,"Date":"2/3/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":872,"Cost":515,"Date":"2/4/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":970,"Cost":617,"Date":"3/9/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":117,"Cost":106,"Date":"3/12/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":739,"Cost":588,"Date":"4/19/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":76,"Cost":69,"Date":"5/3/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":176,"Cost":122,"Date":"5/4/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":441,"Cost":385,"Date":"6/8/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":525,"Cost":411,"Date":"6/26/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":539,"Cost":461,"Date":"7/4/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":24,"Cost":12,"Date":"7/13/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":455,"Cost":307,"Date":"8/8/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":580,"Cost":475,"Date":"8/26/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":401,"Cost":369,"Date":"9/2/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":453,"Cost":404,"Date":"9/29/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":791,"Cost":626,"Date":"10/12/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":814,"Cost":662,"Date":"11/2/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":550,"Cost":489,"Date":"11/4/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":737,"Cost":603,"Date":"11/7/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":262,"Cost":239,"Date":"12/1/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":99,"Cost":62,"Date":"12/4/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":641,"Cost":355,"Date":"12/7/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":40,"Cost":35,"Date":"12/18/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":418,"Cost":344,"Date":"12/20/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":295,"Cost":170,"Date":"12/20/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":839,"Cost":514,"Date":"12/21/2019"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":274,"Cost":159,"Date":"1/9/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":579,"Cost":297,"Date":"2/5/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":201,"Cost":107,"Date":"2/16/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":633,"Cost":415,"Date":"2/16/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":993,"Cost":519,"Date":"2/18/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":782,"Cost":615,"Date":"2/22/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":693,"Cost":384,"Date":"2/25/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":761,"Cost":550,"Date":"3/8/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":349,"Cost":232,"Date":"4/2/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":157,"Cost":115,"Date":"4/3/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":111,"Cost":90,"Date":"4/9/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":216,"Cost":192,"Date":"4/10/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":734,"Cost":415,"Date":"4/19/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":410,"Cost":357,"Date":"5/17/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":856,"Cost":471,"Date":"5/22/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":468,"Cost":443,"Date":"6/20/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":147,"Cost":99,"Date":"7/1/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":353,"Cost":247,"Date":"7/4/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":831,"Cost":493,"Date":"7/8/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":402,"Cost":363,"Date":"7/9/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":899,"Cost":548,"Date":"7/14/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":920,"Cost":702,"Date":"7/19/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":621,"Cost":576,"Date":"8/1/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":365,"Cost":326,"Date":"8/6/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":334,"Cost":226,"Date":"8/7/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":34,"Cost":29,"Date":"8/22/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":597,"Cost":462,"Date":"8/31/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":666,"Cost":339,"Date":"9/1/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":763,"Cost":654,"Date":"9/1/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":512,"Cost":338,"Date":"9/17/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":324,"Cost":167,"Date":"9/29/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":97,"Cost":68,"Date":"11/7/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":824,"Cost":421,"Date":"11/26/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":287,"Cost":269,"Date":"11/27/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":544,"Cost":477,"Date":"12/5/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":366,"Cost":298,"Date":"12/26/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":727,"Cost":638,"Date":"12/31/2020"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":133,"Cost":67,"Date":"1/20/2021"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":317,"Cost":288,"Date":"2/2/2021"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":914,"Cost":489,"Date":"2/8/2021"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":150,"Cost":138,"Date":"2/27/2021"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":361,"Cost":315,"Date":"3/1/2021"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":446,"Cost":303,"Date":"3/1/2021"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":894,"Cost":585,"Date":"3/19/2021"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":519,"Cost":449,"Date":"3/28/2021"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":200,"Cost":110,"Date":"5/21/2021"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":725,"Cost":486,"Date":"7/21/2021"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":171,"Cost":88,"Date":"8/5/2021"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":944,"Cost":826,"Date":"8/12/2021"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":639,"Cost":358,"Date":"8/21/2021"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":46,"Cost":33,"Date":"8/23/2021"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":330,"Cost":204,"Date":"9/3/2021"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":186,"Cost":176,"Date":"9/5/2021"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":218,"Cost":135,"Date":"10/6/2021"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":371,"Cost":265,"Date":"10/19/2021"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":932,"Cost":821,"Date":"11/15/2021"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":830,"Cost":773,"Date":"12/8/2021"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":798,"Cost":400,"Date":"1/8/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":644,"Cost":429,"Date":"1/14/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":29,"Cost":26,"Date":"1/19/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":854,"Cost":572,"Date":"1/28/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":259,"Cost":137,"Date":"1/31/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":836,"Cost":642,"Date":"3/27/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":818,"Cost":568,"Date":"4/20/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":50,"Cost":36,"Date":"4/24/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":916,"Cost":837,"Date":"4/28/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":926,"Cost":764,"Date":"5/15/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":439,"Cost":340,"Date":"5/16/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":572,"Cost":326,"Date":"5/18/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":271,"Cost":223,"Date":"6/2/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":270,"Cost":170,"Date":"6/3/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":435,"Cost":354,"Date":"6/5/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":762,"Cost":393,"Date":"6/7/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":967,"Cost":785,"Date":"6/14/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":552,"Cost":453,"Date":"6/20/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":670,"Cost":341,"Date":"6/24/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":129,"Cost":67,"Date":"7/4/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":51,"Cost":33,"Date":"7/9/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":906,"Cost":829,"Date":"7/12/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":689,"Cost":652,"Date":"8/14/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":31,"Cost":27,"Date":"8/16/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":965,"Cost":686,"Date":"8/23/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":714,"Cost":390,"Date":"9/2/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":671,"Cost":393,"Date":"9/3/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":69,"Cost":51,"Date":"9/16/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":573,"Cost":419,"Date":"10/4/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":256,"Cost":170,"Date":"11/1/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":723,"Cost":443,"Date":"11/2/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":8,"Cost":6,"Date":"12/17/2022"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":417,"Cost":370,"Date":"2/10/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":550,"Cost":335,"Date":"2/28/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":735,"Cost":467,"Date":"3/4/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":325,"Cost":201,"Date":"3/9/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":392,"Cost":263,"Date":"3/9/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":197,"Cost":139,"Date":"3/11/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":693,"Cost":541,"Date":"3/17/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":134,"Cost":109,"Date":"3/17/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":859,"Cost":675,"Date":"3/23/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":75,"Cost":38,"Date":"4/1/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":341,"Cost":228,"Date":"5/7/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":379,"Cost":276,"Date":"5/10/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":477,"Cost":344,"Date":"5/20/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":661,"Cost":417,"Date":"6/2/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":822,"Cost":546,"Date":"6/11/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":942,"Cost":650,"Date":"6/16/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":678,"Cost":402,"Date":"6/16/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":56,"Cost":36,"Date":"7/10/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":383,"Cost":239,"Date":"7/11/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":573,"Cost":294,"Date":"8/28/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":371,"Cost":313,"Date":"8/29/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":578,"Cost":511,"Date":"8/31/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":560,"Cost":374,"Date":"9/8/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":621,"Cost":451,"Date":"9/13/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":808,"Cost":607,"Date":"9/14/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":292,"Cost":148,"Date":"9/19/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":127,"Cost":92,"Date":"9/25/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":376,"Cost":354,"Date":"10/4/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":654,"Cost":589,"Date":"10/10/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":164,"Cost":87,"Date":"10/17/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":232,"Cost":183,"Date":"10/28/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":157,"Cost":141,"Date":"10/30/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":103,"Cost":55,"Date":"11/1/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":680,"Cost":410,"Date":"11/15/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":416,"Cost":212,"Date":"11/25/2023"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":864,"Cost":796,"Date":"1/10/2024"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":283,"Cost":147,"Date":"1/14/2024"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":264,"Cost":212,"Date":"1/20/2024"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":631,"Cost":587,"Date":"2/8/2024"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":772,"Cost":462,"Date":"2/25/2024"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":708,"Cost":356,"Date":"3/7/2024"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":439,"Cost":336,"Date":"3/14/2024"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":395,"Cost":239,"Date":"3/27/2024"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":914,"Cost":776,"Date":"4/5/2024"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":488,"Cost":443,"Date":"4/14/2024"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":399,"Cost":299,"Date":"5/3/2024"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":298,"Cost":256,"Date":"5/9/2024"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":291,"Cost":156,"Date":"5/15/2024"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":271,"Cost":252,"Date":"5/25/2024"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":537,"Cost":448,"Date":"5/26/2024"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":479,"Cost":292,"Date":"5/31/2024"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":242,"Cost":159,"Date":"7/27/2024"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":811,"Cost":722,"Date":"9/17/2024"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":660,"Cost":548,"Date":"10/6/2024"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":177,"Cost":161,"Date":"10/8/2024"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":854,"Cost":675,"Date":"10/26/2024"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":927,"Cost":817,"Date":"11/16/2024"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":311,"Cost":199,"Date":"11/18/2024"},{"Store":"Grand Mall Varna","Brand":"Nova","Country":"Bulgaria","Sale":708,"Cost":481,"Date":"12/1/2024"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":652,"Cost":599,"Date":"2/9/2018"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":469,"Cost":308,"Date":"2/11/2018"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":33,"Cost":20,"Date":"3/10/2018"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":387,"Cost":236,"Date":"3/16/2018"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":320,"Cost":260,"Date":"3/18/2018"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":362,"Cost":323,"Date":"3/20/2018"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":673,"Cost":455,"Date":"3/26/2018"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":863,"Cost":511,"Date":"6/2/2018"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":297,"Cost":261,"Date":"6/10/2018"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":496,"Cost":284,"Date":"6/16/2018"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":183,"Cost":123,"Date":"6/25/2018"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":83,"Cost":55,"Date":"7/19/2018"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":736,"Cost":373,"Date":"7/21/2018"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":246,"Cost":140,"Date":"7/25/2018"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":198,"Cost":150,"Date":"8/4/2018"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":799,"Cost":711,"Date":"9/2/2018"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":541,"Cost":356,"Date":"9/4/2018"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":610,"Cost":432,"Date":"9/19/2018"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":88,"Cost":71,"Date":"9/29/2018"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":800,"Cost":702,"Date":"10/2/2018"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":596,"Cost":559,"Date":"10/15/2018"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":832,"Cost":499,"Date":"10/30/2018"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":247,"Cost":138,"Date":"11/9/2018"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":502,"Cost":296,"Date":"11/23/2018"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":604,"Cost":328,"Date":"11/30/2018"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":178,"Cost":95,"Date":"12/8/2018"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":796,"Cost":740,"Date":"12/11/2018"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":324,"Cost":254,"Date":"1/15/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":365,"Cost":220,"Date":"1/24/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":282,"Cost":197,"Date":"2/3/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":1000,"Cost":848,"Date":"2/4/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":652,"Cost":506,"Date":"3/9/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":288,"Cost":160,"Date":"3/12/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":926,"Cost":496,"Date":"4/19/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":801,"Cost":537,"Date":"5/3/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":812,"Cost":748,"Date":"5/4/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":945,"Cost":679,"Date":"6/8/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":359,"Cost":318,"Date":"6/26/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":457,"Cost":328,"Date":"7/4/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":819,"Cost":635,"Date":"7/13/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":801,"Cost":539,"Date":"8/8/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":378,"Cost":277,"Date":"8/26/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":240,"Cost":134,"Date":"9/2/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":412,"Cost":353,"Date":"9/29/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":783,"Cost":636,"Date":"10/12/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":349,"Cost":240,"Date":"11/2/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":206,"Cost":186,"Date":"11/4/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":700,"Cost":616,"Date":"11/7/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":864,"Cost":514,"Date":"12/1/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":242,"Cost":157,"Date":"12/4/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":668,"Cost":379,"Date":"12/7/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":470,"Cost":344,"Date":"12/18/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":935,"Cost":813,"Date":"12/20/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":16,"Cost":13,"Date":"12/20/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":254,"Cost":167,"Date":"12/21/2019"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":973,"Cost":649,"Date":"1/9/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":385,"Cost":259,"Date":"2/5/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":13,"Cost":11,"Date":"2/16/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":502,"Cost":327,"Date":"2/16/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":134,"Cost":108,"Date":"2/18/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":460,"Cost":326,"Date":"2/22/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":695,"Cost":656,"Date":"2/25/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":630,"Cost":582,"Date":"3/8/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":1,"Cost":1,"Date":"4/2/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":699,"Cost":568,"Date":"4/3/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":881,"Cost":528,"Date":"4/9/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":306,"Cost":187,"Date":"4/10/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":166,"Cost":100,"Date":"4/19/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":718,"Cost":643,"Date":"5/17/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":620,"Cost":583,"Date":"5/22/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":475,"Cost":415,"Date":"6/20/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":333,"Cost":240,"Date":"7/1/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":165,"Cost":130,"Date":"7/4/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":291,"Cost":169,"Date":"7/8/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":859,"Cost":754,"Date":"7/9/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":469,"Cost":398,"Date":"7/14/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":600,"Cost":375,"Date":"7/19/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":820,"Cost":701,"Date":"8/1/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":969,"Cost":911,"Date":"8/6/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":546,"Cost":288,"Date":"8/7/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":894,"Cost":688,"Date":"8/22/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":845,"Cost":695,"Date":"8/31/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":922,"Cost":746,"Date":"9/1/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":480,"Cost":311,"Date":"9/1/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":410,"Cost":234,"Date":"9/17/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":46,"Cost":34,"Date":"9/29/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":578,"Cost":407,"Date":"11/7/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":598,"Cost":352,"Date":"11/26/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":367,"Cost":259,"Date":"11/27/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":975,"Cost":709,"Date":"12/5/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":68,"Cost":56,"Date":"12/26/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":698,"Cost":625,"Date":"12/31/2020"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":677,"Cost":357,"Date":"1/20/2021"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":760,"Cost":559,"Date":"2/2/2021"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":778,"Cost":663,"Date":"2/8/2021"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":533,"Cost":307,"Date":"2/27/2021"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":984,"Cost":520,"Date":"3/1/2021"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":736,"Cost":572,"Date":"3/1/2021"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":843,"Cost":458,"Date":"3/19/2021"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":962,"Cost":523,"Date":"3/28/2021"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":672,"Cost":468,"Date":"5/21/2021"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":55,"Cost":41,"Date":"7/21/2021"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":572,"Cost":419,"Date":"8/5/2021"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":656,"Cost":523,"Date":"8/12/2021"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":375,"Cost":232,"Date":"8/21/2021"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":615,"Cost":431,"Date":"8/23/2021"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":765,"Cost":497,"Date":"9/3/2021"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":7,"Cost":3,"Date":"9/5/2021"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":448,"Cost":340,"Date":"10/6/2021"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":755,"Cost":625,"Date":"10/19/2021"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":363,"Cost":283,"Date":"11/15/2021"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":574,"Cost":428,"Date":"12/8/2021"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":182,"Cost":156,"Date":"1/8/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":873,"Cost":534,"Date":"1/14/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":783,"Cost":730,"Date":"1/19/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":783,"Cost":718,"Date":"1/28/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":772,"Cost":584,"Date":"1/31/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":982,"Cost":774,"Date":"3/27/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":313,"Cost":200,"Date":"4/20/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":967,"Cost":703,"Date":"4/24/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":365,"Cost":261,"Date":"4/28/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":633,"Cost":602,"Date":"5/15/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":596,"Cost":516,"Date":"5/16/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":921,"Cost":596,"Date":"5/18/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":892,"Cost":751,"Date":"6/2/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":186,"Cost":103,"Date":"6/3/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":509,"Cost":460,"Date":"6/5/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":56,"Cost":52,"Date":"6/7/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":425,"Cost":361,"Date":"6/14/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":494,"Cost":443,"Date":"6/20/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":210,"Cost":171,"Date":"6/24/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":279,"Cost":161,"Date":"7/4/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":87,"Cost":71,"Date":"7/9/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":760,"Cost":564,"Date":"7/12/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":281,"Cost":230,"Date":"8/14/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":546,"Cost":300,"Date":"8/16/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":188,"Cost":158,"Date":"8/23/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":566,"Cost":435,"Date":"9/2/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":18,"Cost":14,"Date":"9/3/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":103,"Cost":66,"Date":"9/16/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":505,"Cost":430,"Date":"10/4/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":269,"Cost":219,"Date":"11/1/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":480,"Cost":453,"Date":"11/2/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":955,"Cost":562,"Date":"12/17/2022"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":814,"Cost":479,"Date":"2/10/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":821,"Cost":585,"Date":"2/28/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":207,"Cost":167,"Date":"3/4/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":70,"Cost":51,"Date":"3/9/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":631,"Cost":357,"Date":"3/9/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":914,"Cost":505,"Date":"3/11/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":290,"Cost":177,"Date":"3/17/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":385,"Cost":206,"Date":"3/17/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":803,"Cost":706,"Date":"3/23/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":318,"Cost":281,"Date":"4/1/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":916,"Cost":561,"Date":"5/7/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":205,"Cost":107,"Date":"5/10/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":647,"Cost":512,"Date":"5/20/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":74,"Cost":51,"Date":"6/2/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":179,"Cost":102,"Date":"6/11/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":674,"Cost":409,"Date":"6/16/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":911,"Cost":861,"Date":"6/16/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":466,"Cost":399,"Date":"7/10/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":321,"Cost":265,"Date":"7/11/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":240,"Cost":227,"Date":"8/28/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":634,"Cost":584,"Date":"8/29/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":922,"Cost":531,"Date":"8/31/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":919,"Cost":705,"Date":"9/8/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":435,"Cost":405,"Date":"9/13/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":92,"Cost":78,"Date":"9/14/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":861,"Cost":462,"Date":"9/19/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":55,"Cost":39,"Date":"9/25/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":608,"Cost":397,"Date":"10/4/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":267,"Cost":226,"Date":"10/10/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":993,"Cost":820,"Date":"10/17/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":847,"Cost":730,"Date":"10/28/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":323,"Cost":274,"Date":"10/30/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":813,"Cost":470,"Date":"11/1/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":928,"Cost":506,"Date":"11/15/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":95,"Cost":47,"Date":"11/25/2023"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":835,"Cost":700,"Date":"1/10/2024"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":264,"Cost":190,"Date":"1/14/2024"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":948,"Cost":762,"Date":"1/20/2024"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":647,"Cost":500,"Date":"2/8/2024"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":153,"Cost":127,"Date":"2/25/2024"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":520,"Cost":439,"Date":"3/7/2024"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":463,"Cost":416,"Date":"3/14/2024"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":724,"Cost":639,"Date":"3/27/2024"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":978,"Cost":692,"Date":"4/5/2024"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":626,"Cost":423,"Date":"4/14/2024"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":541,"Cost":361,"Date":"5/3/2024"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":660,"Cost":477,"Date":"5/9/2024"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":907,"Cost":594,"Date":"5/15/2024"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":541,"Cost":325,"Date":"5/25/2024"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":160,"Cost":135,"Date":"5/26/2024"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":309,"Cost":289,"Date":"5/31/2024"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":187,"Cost":99,"Date":"7/27/2024"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":494,"Cost":271,"Date":"9/17/2024"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":696,"Cost":546,"Date":"10/6/2024"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":21,"Cost":14,"Date":"10/8/2024"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":329,"Cost":227,"Date":"10/26/2024"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":548,"Cost":463,"Date":"11/16/2024"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":275,"Cost":255,"Date":"11/18/2024"},{"Store":"Grand Mall Varna","Brand":"Jeans","Country":"Bulgaria","Sale":390,"Cost":340,"Date":"12/1/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":68,"Cost":63,"Date":"2/9/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":188,"Cost":169,"Date":"2/11/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":869,"Cost":479,"Date":"3/10/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":257,"Cost":219,"Date":"3/16/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":600,"Cost":402,"Date":"3/18/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":704,"Cost":479,"Date":"3/20/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":411,"Cost":323,"Date":"3/26/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":3,"Cost":1,"Date":"6/2/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":13,"Cost":10,"Date":"6/10/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":937,"Cost":728,"Date":"6/16/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":950,"Cost":706,"Date":"6/25/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":13,"Cost":9,"Date":"7/19/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":957,"Cost":730,"Date":"7/21/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":376,"Cost":345,"Date":"7/25/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":997,"Cost":800,"Date":"8/4/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":125,"Cost":118,"Date":"9/2/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":242,"Cost":184,"Date":"9/4/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":220,"Cost":127,"Date":"9/19/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":792,"Cost":637,"Date":"9/29/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":935,"Cost":495,"Date":"10/2/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":821,"Cost":544,"Date":"10/15/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":670,"Cost":509,"Date":"10/30/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":667,"Cost":429,"Date":"11/9/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":590,"Cost":417,"Date":"11/23/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":730,"Cost":681,"Date":"11/30/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":399,"Cost":314,"Date":"12/8/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":300,"Cost":230,"Date":"12/11/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":138,"Cost":110,"Date":"1/15/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":774,"Cost":723,"Date":"1/24/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":97,"Cost":93,"Date":"2/3/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":398,"Cost":348,"Date":"2/4/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":174,"Cost":159,"Date":"3/9/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":210,"Cost":157,"Date":"3/12/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":896,"Cost":682,"Date":"4/19/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":57,"Cost":45,"Date":"5/3/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":463,"Cost":427,"Date":"5/4/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":353,"Cost":331,"Date":"6/8/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":780,"Cost":684,"Date":"6/26/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":991,"Cost":856,"Date":"7/4/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":478,"Cost":417,"Date":"7/13/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":12,"Cost":7,"Date":"8/8/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":160,"Cost":137,"Date":"8/26/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":957,"Cost":603,"Date":"9/2/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":970,"Cost":856,"Date":"9/29/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":715,"Cost":433,"Date":"10/12/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":618,"Cost":456,"Date":"11/2/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":194,"Cost":175,"Date":"11/4/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":234,"Cost":129,"Date":"11/7/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":326,"Cost":189,"Date":"12/1/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":273,"Cost":229,"Date":"12/4/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":313,"Cost":278,"Date":"12/7/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":461,"Cost":265,"Date":"12/18/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":261,"Cost":179,"Date":"12/20/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":57,"Cost":43,"Date":"12/20/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":191,"Cost":132,"Date":"12/21/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":822,"Cost":514,"Date":"1/9/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":516,"Cost":344,"Date":"2/5/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":819,"Cost":645,"Date":"2/16/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":774,"Cost":719,"Date":"2/16/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":430,"Cost":241,"Date":"2/18/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":289,"Cost":221,"Date":"2/22/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":385,"Cost":264,"Date":"2/25/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":497,"Cost":407,"Date":"3/8/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":852,"Cost":793,"Date":"4/2/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":568,"Cost":438,"Date":"4/3/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":499,"Cost":252,"Date":"4/9/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":718,"Cost":615,"Date":"4/10/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":27,"Cost":17,"Date":"4/19/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":154,"Cost":112,"Date":"5/17/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":555,"Cost":285,"Date":"5/22/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":664,"Cost":583,"Date":"6/20/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":787,"Cost":605,"Date":"7/1/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":268,"Cost":184,"Date":"7/4/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":493,"Cost":347,"Date":"7/8/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":420,"Cost":261,"Date":"7/9/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":632,"Cost":598,"Date":"7/14/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":940,"Cost":653,"Date":"7/19/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":827,"Cost":598,"Date":"8/1/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":136,"Cost":115,"Date":"8/6/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":625,"Cost":541,"Date":"8/7/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":520,"Cost":284,"Date":"8/22/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":136,"Cost":110,"Date":"8/31/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":745,"Cost":468,"Date":"9/1/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":337,"Cost":276,"Date":"9/1/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":611,"Cost":449,"Date":"9/17/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":974,"Cost":657,"Date":"9/29/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":848,"Cost":734,"Date":"11/7/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":292,"Cost":275,"Date":"11/26/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":378,"Cost":291,"Date":"11/27/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":364,"Cost":276,"Date":"12/5/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":176,"Cost":150,"Date":"12/26/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":852,"Cost":746,"Date":"12/31/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":141,"Cost":73,"Date":"1/20/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":149,"Cost":113,"Date":"2/2/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":331,"Cost":224,"Date":"2/8/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":737,"Cost":696,"Date":"2/27/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":995,"Cost":564,"Date":"3/1/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":204,"Cost":177,"Date":"3/1/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":481,"Cost":312,"Date":"3/19/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":927,"Cost":782,"Date":"3/28/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":690,"Cost":353,"Date":"5/21/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":904,"Cost":639,"Date":"7/21/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":999,"Cost":815,"Date":"8/5/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":182,"Cost":108,"Date":"8/12/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":887,"Cost":488,"Date":"8/21/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":678,"Cost":599,"Date":"8/23/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":419,"Cost":253,"Date":"9/3/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":258,"Cost":244,"Date":"9/5/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":721,"Cost":684,"Date":"10/6/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":102,"Cost":68,"Date":"10/19/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":4,"Cost":2,"Date":"11/15/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":77,"Cost":41,"Date":"12/8/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":724,"Cost":512,"Date":"1/8/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":788,"Cost":508,"Date":"1/14/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":702,"Cost":586,"Date":"1/19/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":242,"Cost":138,"Date":"1/28/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":711,"Cost":483,"Date":"1/31/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":999,"Cost":752,"Date":"3/27/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":798,"Cost":476,"Date":"4/20/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":922,"Cost":467,"Date":"4/24/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":263,"Cost":191,"Date":"4/28/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":602,"Cost":481,"Date":"5/15/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":985,"Cost":873,"Date":"5/16/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":920,"Cost":857,"Date":"5/18/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":63,"Cost":44,"Date":"6/2/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":565,"Cost":419,"Date":"6/3/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":444,"Cost":233,"Date":"6/5/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":257,"Cost":243,"Date":"6/7/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":506,"Cost":444,"Date":"6/14/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":695,"Cost":521,"Date":"6/20/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":508,"Cost":261,"Date":"6/24/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":820,"Cost":714,"Date":"7/4/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":780,"Cost":573,"Date":"7/9/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":851,"Cost":535,"Date":"7/12/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":573,"Cost":402,"Date":"8/14/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":168,"Cost":105,"Date":"8/16/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":422,"Cost":312,"Date":"8/23/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":246,"Cost":184,"Date":"9/2/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":186,"Cost":162,"Date":"9/3/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":407,"Cost":289,"Date":"9/16/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":539,"Cost":438,"Date":"10/4/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":803,"Cost":693,"Date":"11/1/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":197,"Cost":184,"Date":"11/2/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":598,"Cost":314,"Date":"12/17/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":882,"Cost":570,"Date":"2/10/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":982,"Cost":892,"Date":"2/28/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":103,"Cost":61,"Date":"3/4/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":186,"Cost":143,"Date":"3/9/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":594,"Cost":472,"Date":"3/9/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":412,"Cost":278,"Date":"3/11/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":411,"Cost":221,"Date":"3/17/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":864,"Cost":679,"Date":"3/17/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":422,"Cost":278,"Date":"3/23/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":468,"Cost":424,"Date":"4/1/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":455,"Cost":352,"Date":"5/7/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":480,"Cost":257,"Date":"5/10/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":942,"Cost":874,"Date":"5/20/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":624,"Cost":345,"Date":"6/2/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":382,"Cost":241,"Date":"6/11/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":583,"Cost":415,"Date":"6/16/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":479,"Cost":342,"Date":"6/16/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":872,"Cost":731,"Date":"7/10/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":827,"Cost":633,"Date":"7/11/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":701,"Cost":416,"Date":"8/28/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":803,"Cost":611,"Date":"8/29/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":237,"Cost":142,"Date":"8/31/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":936,"Cost":867,"Date":"9/8/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":693,"Cost":575,"Date":"9/13/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":243,"Cost":228,"Date":"9/14/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":510,"Cost":466,"Date":"9/19/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":298,"Cost":267,"Date":"9/25/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":165,"Cost":95,"Date":"10/4/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":601,"Cost":327,"Date":"10/10/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":284,"Cost":202,"Date":"10/17/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":593,"Cost":363,"Date":"10/28/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":418,"Cost":386,"Date":"10/30/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":958,"Cost":738,"Date":"11/1/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":719,"Cost":364,"Date":"11/15/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":90,"Cost":73,"Date":"11/25/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":763,"Cost":497,"Date":"1/10/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":225,"Cost":198,"Date":"1/14/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":658,"Cost":403,"Date":"1/20/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":72,"Cost":58,"Date":"2/8/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":248,"Cost":128,"Date":"2/25/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":573,"Cost":341,"Date":"3/7/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":815,"Cost":448,"Date":"3/14/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":864,"Cost":787,"Date":"3/27/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":549,"Cost":451,"Date":"4/5/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":817,"Cost":765,"Date":"4/14/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":400,"Cost":242,"Date":"5/3/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":385,"Cost":251,"Date":"5/9/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":988,"Cost":863,"Date":"5/15/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":443,"Cost":315,"Date":"5/25/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":38,"Cost":27,"Date":"5/26/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":609,"Cost":455,"Date":"5/31/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":18,"Cost":16,"Date":"7/27/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":13,"Cost":8,"Date":"9/17/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":949,"Cost":602,"Date":"10/6/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":990,"Cost":803,"Date":"10/8/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":93,"Cost":89,"Date":"10/26/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":185,"Cost":99,"Date":"11/16/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":475,"Cost":260,"Date":"11/18/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":986,"Cost":855,"Date":"12/1/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":977,"Cost":923,"Date":"2/9/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":832,"Cost":648,"Date":"2/11/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":775,"Cost":579,"Date":"3/10/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":724,"Cost":589,"Date":"3/16/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":647,"Cost":468,"Date":"3/18/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":561,"Cost":322,"Date":"3/20/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":44,"Cost":26,"Date":"3/26/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":840,"Cost":429,"Date":"6/2/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":273,"Cost":157,"Date":"6/10/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":34,"Cost":19,"Date":"6/16/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":98,"Cost":73,"Date":"6/25/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":132,"Cost":89,"Date":"7/19/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":836,"Cost":439,"Date":"7/21/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":325,"Cost":272,"Date":"7/25/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":462,"Cost":317,"Date":"8/4/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":480,"Cost":429,"Date":"9/2/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":101,"Cost":88,"Date":"9/4/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":321,"Cost":278,"Date":"9/19/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":634,"Cost":483,"Date":"9/29/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":900,"Cost":507,"Date":"10/2/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":647,"Cost":502,"Date":"10/15/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":203,"Cost":109,"Date":"10/30/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":340,"Cost":178,"Date":"11/9/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":787,"Cost":523,"Date":"11/23/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":172,"Cost":144,"Date":"11/30/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":841,"Cost":701,"Date":"12/8/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":956,"Cost":760,"Date":"12/11/2018"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":672,"Cost":448,"Date":"1/15/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":662,"Cost":403,"Date":"1/24/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":840,"Cost":599,"Date":"2/3/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":850,"Cost":635,"Date":"2/4/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":33,"Cost":20,"Date":"3/9/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":955,"Cost":902,"Date":"3/12/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":892,"Cost":508,"Date":"4/19/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":14,"Cost":10,"Date":"5/3/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":360,"Cost":183,"Date":"5/4/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":583,"Cost":406,"Date":"6/8/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":882,"Cost":712,"Date":"6/26/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":8,"Cost":6,"Date":"7/4/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":742,"Cost":389,"Date":"7/13/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":112,"Cost":68,"Date":"8/8/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":525,"Cost":298,"Date":"8/26/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":681,"Cost":473,"Date":"9/2/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":491,"Cost":272,"Date":"9/29/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":641,"Cost":506,"Date":"10/12/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":430,"Cost":221,"Date":"11/2/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":23,"Cost":12,"Date":"11/4/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":303,"Cost":225,"Date":"11/7/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":292,"Cost":205,"Date":"12/1/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":386,"Cost":281,"Date":"12/4/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":419,"Cost":324,"Date":"12/7/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":195,"Cost":115,"Date":"12/18/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":772,"Cost":398,"Date":"12/20/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":732,"Cost":561,"Date":"12/20/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":455,"Cost":318,"Date":"12/21/2019"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":488,"Cost":363,"Date":"1/9/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":708,"Cost":669,"Date":"2/5/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":814,"Cost":746,"Date":"2/16/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":964,"Cost":496,"Date":"2/16/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":727,"Cost":530,"Date":"2/18/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":809,"Cost":666,"Date":"2/22/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":541,"Cost":469,"Date":"2/25/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":942,"Cost":868,"Date":"3/8/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":844,"Cost":727,"Date":"4/2/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":266,"Cost":144,"Date":"4/3/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":141,"Cost":101,"Date":"4/9/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":990,"Cost":907,"Date":"4/10/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":281,"Cost":215,"Date":"4/19/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":964,"Cost":723,"Date":"5/17/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":552,"Cost":501,"Date":"5/22/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":332,"Cost":309,"Date":"6/20/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":584,"Cost":536,"Date":"7/1/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":268,"Cost":246,"Date":"7/4/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":299,"Cost":264,"Date":"7/8/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":673,"Cost":437,"Date":"7/9/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":462,"Cost":353,"Date":"7/14/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":438,"Cost":282,"Date":"7/19/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":830,"Cost":643,"Date":"8/1/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":296,"Cost":219,"Date":"8/6/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":396,"Cost":323,"Date":"8/7/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":856,"Cost":698,"Date":"8/22/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":344,"Cost":300,"Date":"8/31/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":118,"Cost":86,"Date":"9/1/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":310,"Cost":280,"Date":"9/1/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":285,"Cost":260,"Date":"9/17/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":412,"Cost":221,"Date":"9/29/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":1000,"Cost":820,"Date":"11/7/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":338,"Cost":290,"Date":"11/26/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":116,"Cost":85,"Date":"11/27/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":896,"Cost":516,"Date":"12/5/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":649,"Cost":426,"Date":"12/26/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":744,"Cost":632,"Date":"12/31/2020"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":15,"Cost":10,"Date":"1/20/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":381,"Cost":283,"Date":"2/2/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":93,"Cost":85,"Date":"2/8/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":281,"Cost":245,"Date":"2/27/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":637,"Cost":462,"Date":"3/1/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":121,"Cost":61,"Date":"3/1/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":462,"Cost":313,"Date":"3/19/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":721,"Cost":648,"Date":"3/28/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":936,"Cost":637,"Date":"5/21/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":604,"Cost":317,"Date":"7/21/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":275,"Cost":169,"Date":"8/5/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":865,"Cost":739,"Date":"8/12/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":754,"Cost":668,"Date":"8/21/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":633,"Cost":380,"Date":"8/23/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":213,"Cost":179,"Date":"9/3/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":125,"Cost":114,"Date":"9/5/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":647,"Cost":474,"Date":"10/6/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":514,"Cost":398,"Date":"10/19/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":465,"Cost":292,"Date":"11/15/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":835,"Cost":604,"Date":"12/8/2021"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":452,"Cost":226,"Date":"1/8/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":457,"Cost":254,"Date":"1/14/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":819,"Cost":639,"Date":"1/19/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":647,"Cost":531,"Date":"1/28/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":251,"Cost":210,"Date":"1/31/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":368,"Cost":216,"Date":"3/27/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":982,"Cost":625,"Date":"4/20/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":369,"Cost":342,"Date":"4/24/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":733,"Cost":693,"Date":"4/28/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":943,"Cost":807,"Date":"5/15/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":551,"Cost":430,"Date":"5/16/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":90,"Cost":57,"Date":"5/18/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":322,"Cost":218,"Date":"6/2/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":634,"Cost":358,"Date":"6/3/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":108,"Cost":65,"Date":"6/5/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":620,"Cost":354,"Date":"6/7/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":558,"Cost":461,"Date":"6/14/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":838,"Cost":434,"Date":"6/20/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":11,"Cost":7,"Date":"6/24/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":51,"Cost":28,"Date":"7/4/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":496,"Cost":440,"Date":"7/9/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":436,"Cost":382,"Date":"7/12/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":860,"Cost":784,"Date":"8/14/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":63,"Cost":50,"Date":"8/16/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":454,"Cost":423,"Date":"8/23/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":131,"Cost":124,"Date":"9/2/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":974,"Cost":873,"Date":"9/3/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":578,"Cost":512,"Date":"9/16/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":282,"Cost":198,"Date":"10/4/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":36,"Cost":26,"Date":"11/1/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":547,"Cost":292,"Date":"11/2/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":448,"Cost":264,"Date":"12/17/2022"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":952,"Cost":894,"Date":"2/10/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":582,"Cost":351,"Date":"2/28/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":917,"Cost":667,"Date":"3/4/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":974,"Cost":872,"Date":"3/9/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":985,"Cost":692,"Date":"3/9/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":733,"Cost":605,"Date":"3/11/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":183,"Cost":133,"Date":"3/17/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":913,"Cost":585,"Date":"3/17/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":850,"Cost":465,"Date":"3/23/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":296,"Cost":182,"Date":"4/1/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":512,"Cost":393,"Date":"5/7/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":673,"Cost":616,"Date":"5/10/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":716,"Cost":582,"Date":"5/20/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":806,"Cost":531,"Date":"6/2/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":532,"Cost":423,"Date":"6/11/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":683,"Cost":629,"Date":"6/16/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":751,"Cost":628,"Date":"6/16/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":286,"Cost":197,"Date":"7/10/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":282,"Cost":261,"Date":"7/11/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":971,"Cost":516,"Date":"8/28/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":376,"Cost":307,"Date":"8/29/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":156,"Cost":127,"Date":"8/31/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":639,"Cost":372,"Date":"9/8/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":874,"Cost":596,"Date":"9/13/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":893,"Cost":458,"Date":"9/14/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":889,"Cost":505,"Date":"9/19/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":830,"Cost":744,"Date":"9/25/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":384,"Cost":307,"Date":"10/4/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":312,"Cost":240,"Date":"10/10/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":818,"Cost":468,"Date":"10/17/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":808,"Cost":531,"Date":"10/28/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":368,"Cost":204,"Date":"10/30/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":838,"Cost":504,"Date":"11/1/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":462,"Cost":425,"Date":"11/15/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":117,"Cost":77,"Date":"11/25/2023"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":396,"Cost":279,"Date":"1/10/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":447,"Cost":256,"Date":"1/14/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":857,"Cost":738,"Date":"1/20/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":709,"Cost":622,"Date":"2/8/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":302,"Cost":168,"Date":"2/25/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":250,"Cost":221,"Date":"3/7/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":716,"Cost":619,"Date":"3/14/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":212,"Cost":121,"Date":"3/27/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":203,"Cost":173,"Date":"4/5/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":197,"Cost":112,"Date":"4/14/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":558,"Cost":440,"Date":"5/3/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":954,"Cost":864,"Date":"5/9/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":825,"Cost":604,"Date":"5/15/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":286,"Cost":266,"Date":"5/25/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":620,"Cost":426,"Date":"5/26/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":412,"Cost":381,"Date":"5/31/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":96,"Cost":71,"Date":"7/27/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":710,"Cost":465,"Date":"9/17/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":820,"Cost":520,"Date":"10/6/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":115,"Cost":95,"Date":"10/8/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":452,"Cost":371,"Date":"10/26/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":873,"Cost":600,"Date":"11/16/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":903,"Cost":543,"Date":"11/18/2024"},{"Store":"Mall Varna","Brand":"COS","Country":"Bulgaria","Sale":751,"Cost":645,"Date":"12/1/2024"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":181,"Cost":155,"Date":"2/9/2018"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":486,"Cost":298,"Date":"2/11/2018"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":470,"Cost":274,"Date":"3/10/2018"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":228,"Cost":214,"Date":"3/16/2018"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":480,"Cost":348,"Date":"3/18/2018"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":372,"Cost":196,"Date":"3/20/2018"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":901,"Cost":796,"Date":"3/26/2018"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":158,"Cost":146,"Date":"6/2/2018"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":264,"Cost":216,"Date":"6/10/2018"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":229,"Cost":190,"Date":"6/16/2018"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":671,"Cost":444,"Date":"6/25/2018"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":974,"Cost":506,"Date":"7/19/2018"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":76,"Cost":40,"Date":"7/21/2018"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":454,"Cost":267,"Date":"7/25/2018"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":708,"Cost":500,"Date":"8/4/2018"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":66,"Cost":35,"Date":"9/2/2018"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":933,"Cost":773,"Date":"9/4/2018"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":616,"Cost":397,"Date":"9/19/2018"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":157,"Cost":138,"Date":"9/29/2018"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":46,"Cost":35,"Date":"10/2/2018"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":854,"Cost":655,"Date":"10/15/2018"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":783,"Cost":596,"Date":"10/30/2018"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":134,"Cost":79,"Date":"11/9/2018"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":346,"Cost":184,"Date":"11/23/2018"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":440,"Cost":383,"Date":"11/30/2018"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":878,"Cost":793,"Date":"12/8/2018"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":264,"Cost":175,"Date":"12/11/2018"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":334,"Cost":175,"Date":"1/15/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":703,"Cost":599,"Date":"1/24/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":943,"Cost":486,"Date":"2/3/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":879,"Cost":567,"Date":"2/4/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":154,"Cost":142,"Date":"3/9/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":274,"Cost":202,"Date":"3/12/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":208,"Cost":155,"Date":"4/19/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":430,"Cost":328,"Date":"5/3/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":149,"Cost":124,"Date":"5/4/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":598,"Cost":518,"Date":"6/8/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":972,"Cost":707,"Date":"6/26/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":199,"Cost":165,"Date":"7/4/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":715,"Cost":413,"Date":"7/13/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":953,"Cost":809,"Date":"8/8/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":701,"Cost":576,"Date":"8/26/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":97,"Cost":53,"Date":"9/2/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":936,"Cost":514,"Date":"9/29/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":632,"Cost":466,"Date":"10/12/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":975,"Cost":708,"Date":"11/2/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":84,"Cost":61,"Date":"11/4/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":983,"Cost":504,"Date":"11/7/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":211,"Cost":118,"Date":"12/1/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":464,"Cost":260,"Date":"12/4/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":554,"Cost":488,"Date":"12/7/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":8,"Cost":8,"Date":"12/18/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":554,"Cost":379,"Date":"12/20/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":499,"Cost":337,"Date":"12/20/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":644,"Cost":419,"Date":"12/21/2019"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":609,"Cost":341,"Date":"1/9/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":686,"Cost":470,"Date":"2/5/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":977,"Cost":676,"Date":"2/16/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":395,"Cost":331,"Date":"2/16/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":636,"Cost":470,"Date":"2/18/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":829,"Cost":519,"Date":"2/22/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":401,"Cost":263,"Date":"2/25/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":115,"Cost":80,"Date":"3/8/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":628,"Cost":418,"Date":"4/2/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":20,"Cost":14,"Date":"4/3/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":1000,"Cost":712,"Date":"4/9/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":186,"Cost":128,"Date":"4/10/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":661,"Cost":595,"Date":"4/19/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":783,"Cost":615,"Date":"5/17/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":712,"Cost":435,"Date":"5/22/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":100,"Cost":92,"Date":"6/20/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":642,"Cost":502,"Date":"7/1/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":306,"Cost":236,"Date":"7/4/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":359,"Cost":186,"Date":"7/8/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":907,"Cost":781,"Date":"7/9/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":690,"Cost":614,"Date":"7/14/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":574,"Cost":483,"Date":"7/19/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":756,"Cost":637,"Date":"8/1/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":993,"Cost":602,"Date":"8/6/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":794,"Cost":601,"Date":"8/7/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":275,"Cost":230,"Date":"8/22/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":86,"Cost":61,"Date":"8/31/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":75,"Cost":37,"Date":"9/1/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":224,"Cost":151,"Date":"9/1/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":400,"Cost":297,"Date":"9/17/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":116,"Cost":104,"Date":"9/29/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":1,"Cost":0,"Date":"11/7/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":843,"Cost":721,"Date":"11/26/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":824,"Cost":480,"Date":"11/27/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":125,"Cost":107,"Date":"12/5/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":490,"Cost":440,"Date":"12/26/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":191,"Cost":163,"Date":"12/31/2020"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":283,"Cost":196,"Date":"1/20/2021"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":11,"Cost":7,"Date":"2/2/2021"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":183,"Cost":130,"Date":"2/8/2021"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":649,"Cost":466,"Date":"2/27/2021"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":639,"Cost":546,"Date":"3/1/2021"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":343,"Cost":310,"Date":"3/1/2021"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":833,"Cost":698,"Date":"3/19/2021"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":305,"Cost":218,"Date":"3/28/2021"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":606,"Cost":445,"Date":"5/21/2021"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":845,"Cost":479,"Date":"7/21/2021"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":397,"Cost":221,"Date":"8/5/2021"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":172,"Cost":138,"Date":"8/12/2021"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":933,"Cost":653,"Date":"8/21/2021"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":228,"Cost":178,"Date":"8/23/2021"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":406,"Cost":221,"Date":"9/3/2021"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":442,"Cost":378,"Date":"9/5/2021"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":595,"Cost":494,"Date":"10/6/2021"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":494,"Cost":444,"Date":"10/19/2021"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":761,"Cost":662,"Date":"11/15/2021"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":863,"Cost":737,"Date":"12/8/2021"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":327,"Cost":220,"Date":"1/8/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":299,"Cost":191,"Date":"1/14/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":949,"Cost":705,"Date":"1/19/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":978,"Cost":700,"Date":"1/28/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":844,"Cost":792,"Date":"1/31/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":346,"Cost":248,"Date":"3/27/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":607,"Cost":347,"Date":"4/20/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":310,"Cost":219,"Date":"4/24/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":254,"Cost":194,"Date":"4/28/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":939,"Cost":659,"Date":"5/15/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":62,"Cost":48,"Date":"5/16/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":362,"Cost":332,"Date":"5/18/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":531,"Cost":334,"Date":"6/2/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":1000,"Cost":505,"Date":"6/3/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":751,"Cost":407,"Date":"6/5/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":381,"Cost":273,"Date":"6/7/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":316,"Cost":298,"Date":"6/14/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":502,"Cost":446,"Date":"6/20/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":5,"Cost":3,"Date":"6/24/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":212,"Cost":133,"Date":"7/4/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":318,"Cost":215,"Date":"7/9/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":49,"Cost":26,"Date":"7/12/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":743,"Cost":466,"Date":"8/14/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":282,"Cost":167,"Date":"8/16/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":276,"Cost":164,"Date":"8/23/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":882,"Cost":720,"Date":"9/2/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":193,"Cost":124,"Date":"9/3/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":207,"Cost":191,"Date":"9/16/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":2,"Cost":1,"Date":"10/4/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":18,"Cost":15,"Date":"11/1/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":965,"Cost":645,"Date":"11/2/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":580,"Cost":388,"Date":"12/17/2022"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":124,"Cost":78,"Date":"2/10/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":407,"Cost":230,"Date":"2/28/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":680,"Cost":487,"Date":"3/4/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":535,"Cost":424,"Date":"3/9/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":591,"Cost":299,"Date":"3/9/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":592,"Cost":468,"Date":"3/11/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":379,"Cost":348,"Date":"3/17/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":768,"Cost":622,"Date":"3/17/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":256,"Cost":171,"Date":"3/23/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":671,"Cost":337,"Date":"4/1/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":470,"Cost":242,"Date":"5/7/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":819,"Cost":754,"Date":"5/10/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":663,"Cost":470,"Date":"5/20/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":952,"Cost":838,"Date":"6/2/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":801,"Cost":501,"Date":"6/11/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":260,"Cost":144,"Date":"6/16/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":766,"Cost":411,"Date":"6/16/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":716,"Cost":485,"Date":"7/10/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":799,"Cost":442,"Date":"7/11/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":509,"Cost":441,"Date":"8/28/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":49,"Cost":26,"Date":"8/29/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":349,"Cost":197,"Date":"8/31/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":953,"Cost":843,"Date":"9/8/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":556,"Cost":306,"Date":"9/13/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":924,"Cost":868,"Date":"9/14/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":681,"Cost":525,"Date":"9/19/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":878,"Cost":691,"Date":"9/25/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":965,"Cost":625,"Date":"10/4/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":149,"Cost":108,"Date":"10/10/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":643,"Cost":497,"Date":"10/17/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":1000,"Cost":524,"Date":"10/28/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":821,"Cost":660,"Date":"10/30/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":207,"Cost":110,"Date":"11/1/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":895,"Cost":803,"Date":"11/15/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":633,"Cost":429,"Date":"11/25/2023"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":946,"Cost":877,"Date":"1/10/2024"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":496,"Cost":289,"Date":"1/14/2024"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":812,"Cost":534,"Date":"1/20/2024"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":951,"Cost":626,"Date":"2/8/2024"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":727,"Cost":536,"Date":"2/25/2024"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":908,"Cost":729,"Date":"3/7/2024"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":252,"Cost":210,"Date":"3/14/2024"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":952,"Cost":632,"Date":"3/27/2024"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":414,"Cost":360,"Date":"4/5/2024"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":27,"Cost":24,"Date":"4/14/2024"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":436,"Cost":250,"Date":"5/3/2024"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":815,"Cost":542,"Date":"5/9/2024"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":73,"Cost":52,"Date":"5/15/2024"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":512,"Cost":329,"Date":"5/25/2024"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":302,"Cost":274,"Date":"5/26/2024"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":768,"Cost":460,"Date":"5/31/2024"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":590,"Cost":476,"Date":"7/27/2024"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":108,"Cost":71,"Date":"9/17/2024"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":14,"Cost":14,"Date":"10/6/2024"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":645,"Cost":425,"Date":"10/8/2024"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":982,"Cost":762,"Date":"10/26/2024"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":29,"Cost":23,"Date":"11/16/2024"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":599,"Cost":369,"Date":"11/18/2024"},{"Store":"Mall Varna","Brand":"Sellpy","Country":"Bulgaria","Sale":30,"Cost":24,"Date":"12/1/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":692,"Cost":427,"Date":"2/9/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":160,"Cost":135,"Date":"2/11/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":32,"Cost":17,"Date":"3/10/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":170,"Cost":127,"Date":"3/16/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":115,"Cost":72,"Date":"3/18/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":917,"Cost":572,"Date":"3/20/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":212,"Cost":177,"Date":"3/26/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":273,"Cost":190,"Date":"6/2/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":244,"Cost":158,"Date":"6/10/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":822,"Cost":680,"Date":"6/16/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":340,"Cost":240,"Date":"6/25/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":543,"Cost":310,"Date":"7/19/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":40,"Cost":27,"Date":"7/21/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":293,"Cost":248,"Date":"7/25/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":111,"Cost":101,"Date":"8/4/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":638,"Cost":531,"Date":"9/2/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":771,"Cost":581,"Date":"9/4/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":125,"Cost":75,"Date":"9/19/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":175,"Cost":107,"Date":"9/29/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":231,"Cost":196,"Date":"10/2/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":323,"Cost":278,"Date":"10/15/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":127,"Cost":91,"Date":"10/30/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":908,"Cost":487,"Date":"11/9/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":850,"Cost":637,"Date":"11/23/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":867,"Cost":535,"Date":"11/30/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":88,"Cost":55,"Date":"12/8/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":736,"Cost":668,"Date":"12/11/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":752,"Cost":488,"Date":"1/15/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":778,"Cost":626,"Date":"1/24/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":987,"Cost":832,"Date":"2/3/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":909,"Cost":597,"Date":"2/4/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":720,"Cost":440,"Date":"3/9/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":89,"Cost":46,"Date":"3/12/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":950,"Cost":602,"Date":"4/19/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":585,"Cost":543,"Date":"5/3/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":973,"Cost":721,"Date":"5/4/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":231,"Cost":186,"Date":"6/8/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":682,"Cost":414,"Date":"6/26/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":210,"Cost":136,"Date":"7/4/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":334,"Cost":254,"Date":"7/13/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":832,"Cost":788,"Date":"8/8/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":844,"Cost":639,"Date":"8/26/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":581,"Cost":502,"Date":"9/2/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":719,"Cost":466,"Date":"9/29/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":791,"Cost":499,"Date":"10/12/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":668,"Cost":374,"Date":"11/2/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":792,"Cost":680,"Date":"11/4/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":426,"Cost":336,"Date":"11/7/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":219,"Cost":158,"Date":"12/1/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":717,"Cost":441,"Date":"12/4/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":894,"Cost":758,"Date":"12/7/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":438,"Cost":335,"Date":"12/18/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":848,"Cost":641,"Date":"12/20/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":254,"Cost":226,"Date":"12/20/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":885,"Cost":572,"Date":"12/21/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":328,"Cost":197,"Date":"1/9/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":16,"Cost":15,"Date":"2/5/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":818,"Cost":621,"Date":"2/16/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":743,"Cost":405,"Date":"2/16/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":623,"Cost":526,"Date":"2/18/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":907,"Cost":643,"Date":"2/22/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":686,"Cost":438,"Date":"2/25/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":265,"Cost":236,"Date":"3/8/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":513,"Cost":297,"Date":"4/2/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":335,"Cost":192,"Date":"4/3/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":29,"Cost":21,"Date":"4/9/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":583,"Cost":299,"Date":"4/10/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":255,"Cost":191,"Date":"4/19/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":63,"Cost":32,"Date":"5/17/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":188,"Cost":160,"Date":"5/22/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":948,"Cost":871,"Date":"6/20/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":829,"Cost":691,"Date":"7/1/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":209,"Cost":193,"Date":"7/4/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":68,"Cost":55,"Date":"7/8/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":533,"Cost":503,"Date":"7/9/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":18,"Cost":11,"Date":"7/14/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":83,"Cost":48,"Date":"7/19/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":580,"Cost":321,"Date":"8/1/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":637,"Cost":453,"Date":"8/6/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":17,"Cost":16,"Date":"8/7/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":671,"Cost":606,"Date":"8/22/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":261,"Cost":158,"Date":"8/31/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":94,"Cost":73,"Date":"9/1/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":957,"Cost":498,"Date":"9/1/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":757,"Cost":661,"Date":"9/17/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":500,"Cost":290,"Date":"9/29/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":944,"Cost":612,"Date":"11/7/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":153,"Cost":95,"Date":"11/26/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":800,"Cost":538,"Date":"11/27/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":693,"Cost":413,"Date":"12/5/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":248,"Cost":210,"Date":"12/26/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":296,"Cost":180,"Date":"12/31/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":317,"Cost":187,"Date":"1/20/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":907,"Cost":464,"Date":"2/2/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":56,"Cost":33,"Date":"2/8/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":307,"Cost":233,"Date":"2/27/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":413,"Cost":350,"Date":"3/1/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":37,"Cost":32,"Date":"3/1/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":308,"Cost":180,"Date":"3/19/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":636,"Cost":512,"Date":"3/28/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":750,"Cost":689,"Date":"5/21/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":315,"Cost":257,"Date":"7/21/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":454,"Cost":428,"Date":"8/5/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":38,"Cost":19,"Date":"8/12/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":72,"Cost":44,"Date":"8/21/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":144,"Cost":83,"Date":"8/23/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":87,"Cost":74,"Date":"9/3/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":302,"Cost":174,"Date":"9/5/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":635,"Cost":465,"Date":"10/6/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":1,"Cost":1,"Date":"10/19/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":359,"Cost":245,"Date":"11/15/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":343,"Cost":177,"Date":"12/8/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":557,"Cost":484,"Date":"1/8/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":461,"Cost":331,"Date":"1/14/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":319,"Cost":178,"Date":"1/19/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":165,"Cost":96,"Date":"1/28/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":589,"Cost":386,"Date":"1/31/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":225,"Cost":135,"Date":"3/27/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":322,"Cost":237,"Date":"4/20/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":293,"Cost":254,"Date":"4/24/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":108,"Cost":75,"Date":"4/28/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":655,"Cost":575,"Date":"5/15/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":76,"Cost":64,"Date":"5/16/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":342,"Cost":216,"Date":"5/18/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":238,"Cost":144,"Date":"6/2/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":983,"Cost":610,"Date":"6/3/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":891,"Cost":632,"Date":"6/5/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":819,"Cost":659,"Date":"6/7/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":565,"Cost":416,"Date":"6/14/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":203,"Cost":178,"Date":"6/20/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":862,"Cost":655,"Date":"6/24/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":187,"Cost":104,"Date":"7/4/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":259,"Cost":191,"Date":"7/9/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":400,"Cost":324,"Date":"7/12/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":566,"Cost":496,"Date":"8/14/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":69,"Cost":52,"Date":"8/16/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":145,"Cost":83,"Date":"8/23/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":711,"Cost":375,"Date":"9/2/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":753,"Cost":455,"Date":"9/3/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":431,"Cost":350,"Date":"9/16/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":28,"Cost":15,"Date":"10/4/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":318,"Cost":170,"Date":"11/1/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":371,"Cost":343,"Date":"11/2/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":819,"Cost":437,"Date":"12/17/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":382,"Cost":321,"Date":"2/10/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":118,"Cost":102,"Date":"2/28/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":177,"Cost":146,"Date":"3/4/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":930,"Cost":658,"Date":"3/9/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":537,"Cost":319,"Date":"3/9/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":834,"Cost":761,"Date":"3/11/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":802,"Cost":758,"Date":"3/17/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":754,"Cost":545,"Date":"3/17/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":513,"Cost":405,"Date":"3/23/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":556,"Cost":491,"Date":"4/1/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":624,"Cost":372,"Date":"5/7/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":856,"Cost":574,"Date":"5/10/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":396,"Cost":217,"Date":"5/20/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":80,"Cost":71,"Date":"6/2/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":98,"Cost":80,"Date":"6/11/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":36,"Cost":31,"Date":"6/16/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":104,"Cost":80,"Date":"6/16/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":128,"Cost":66,"Date":"7/10/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":130,"Cost":101,"Date":"7/11/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":127,"Cost":92,"Date":"8/28/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":75,"Cost":50,"Date":"8/29/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":738,"Cost":647,"Date":"8/31/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":992,"Cost":725,"Date":"9/8/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":517,"Cost":465,"Date":"9/13/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":348,"Cost":204,"Date":"9/14/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":628,"Cost":334,"Date":"9/19/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":660,"Cost":388,"Date":"9/25/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":333,"Cost":242,"Date":"10/4/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":529,"Cost":446,"Date":"10/10/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":458,"Cost":311,"Date":"10/17/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":922,"Cost":833,"Date":"10/28/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":103,"Cost":78,"Date":"10/30/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":951,"Cost":675,"Date":"11/1/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":938,"Cost":810,"Date":"11/15/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":246,"Cost":126,"Date":"11/25/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":481,"Cost":342,"Date":"1/10/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":211,"Cost":192,"Date":"1/14/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":658,"Cost":351,"Date":"1/20/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":7,"Cost":7,"Date":"2/8/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":229,"Cost":142,"Date":"2/25/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":508,"Cost":321,"Date":"3/7/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":680,"Cost":614,"Date":"3/14/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":624,"Cost":433,"Date":"3/27/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":123,"Cost":111,"Date":"4/5/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":25,"Cost":20,"Date":"4/14/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":156,"Cost":113,"Date":"5/3/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":171,"Cost":96,"Date":"5/9/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":680,"Cost":640,"Date":"5/15/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":992,"Cost":631,"Date":"5/25/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":672,"Cost":550,"Date":"5/26/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":230,"Cost":181,"Date":"5/31/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":290,"Cost":216,"Date":"7/27/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":627,"Cost":379,"Date":"9/17/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":371,"Cost":234,"Date":"10/6/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":408,"Cost":339,"Date":"10/8/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":591,"Cost":516,"Date":"10/26/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":664,"Cost":594,"Date":"11/16/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":182,"Cost":125,"Date":"11/18/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":219,"Cost":205,"Date":"12/1/2024"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":189,"Cost":145,"Date":"2/9/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":785,"Cost":472,"Date":"2/11/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":678,"Cost":580,"Date":"3/10/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":532,"Cost":408,"Date":"3/16/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":329,"Cost":311,"Date":"3/18/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":733,"Cost":624,"Date":"3/20/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":798,"Cost":747,"Date":"3/26/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":126,"Cost":110,"Date":"6/2/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":177,"Cost":153,"Date":"6/10/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":127,"Cost":95,"Date":"6/16/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":500,"Cost":363,"Date":"6/25/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":644,"Cost":430,"Date":"7/19/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":83,"Cost":65,"Date":"7/21/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":955,"Cost":631,"Date":"7/25/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":393,"Cost":293,"Date":"8/4/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":510,"Cost":442,"Date":"9/2/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":649,"Cost":570,"Date":"9/4/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":219,"Cost":119,"Date":"9/19/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":405,"Cost":300,"Date":"9/29/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":900,"Cost":854,"Date":"10/2/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":972,"Cost":704,"Date":"10/15/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":828,"Cost":434,"Date":"10/30/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":961,"Cost":611,"Date":"11/9/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":770,"Cost":540,"Date":"11/23/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":959,"Cost":737,"Date":"11/30/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":353,"Cost":276,"Date":"12/8/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":161,"Cost":121,"Date":"12/11/2018"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":254,"Cost":239,"Date":"1/15/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":293,"Cost":261,"Date":"1/24/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":414,"Cost":345,"Date":"2/3/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":201,"Cost":154,"Date":"2/4/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":894,"Cost":484,"Date":"3/9/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":880,"Cost":782,"Date":"3/12/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":794,"Cost":415,"Date":"4/19/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":616,"Cost":417,"Date":"5/3/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":78,"Cost":39,"Date":"5/4/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":904,"Cost":474,"Date":"6/8/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":382,"Cost":297,"Date":"6/26/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":257,"Cost":223,"Date":"7/4/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":192,"Cost":138,"Date":"7/13/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":860,"Cost":446,"Date":"8/8/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":469,"Cost":239,"Date":"8/26/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":599,"Cost":444,"Date":"9/2/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":580,"Cost":490,"Date":"9/29/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":802,"Cost":683,"Date":"10/12/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":353,"Cost":227,"Date":"11/2/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":175,"Cost":152,"Date":"11/4/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":660,"Cost":520,"Date":"11/7/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":940,"Cost":664,"Date":"12/1/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":793,"Cost":509,"Date":"12/4/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":223,"Cost":166,"Date":"12/7/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":405,"Cost":371,"Date":"12/18/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":614,"Cost":361,"Date":"12/20/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":746,"Cost":530,"Date":"12/20/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":108,"Cost":74,"Date":"12/21/2019"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":114,"Cost":82,"Date":"1/9/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":224,"Cost":170,"Date":"2/5/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":999,"Cost":836,"Date":"2/16/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":588,"Cost":474,"Date":"2/16/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":366,"Cost":315,"Date":"2/18/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":659,"Cost":602,"Date":"2/22/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":140,"Cost":116,"Date":"2/25/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":810,"Cost":596,"Date":"3/8/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":985,"Cost":922,"Date":"4/2/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":289,"Cost":215,"Date":"4/3/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":533,"Cost":390,"Date":"4/9/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":638,"Cost":454,"Date":"4/10/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":345,"Cost":278,"Date":"4/19/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":343,"Cost":266,"Date":"5/17/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":812,"Cost":407,"Date":"5/22/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":4,"Cost":2,"Date":"6/20/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":445,"Cost":232,"Date":"7/1/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":792,"Cost":427,"Date":"7/4/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":919,"Cost":522,"Date":"7/8/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":427,"Cost":291,"Date":"7/9/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":226,"Cost":183,"Date":"7/14/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":719,"Cost":670,"Date":"7/19/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":908,"Cost":540,"Date":"8/1/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":940,"Cost":481,"Date":"8/6/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":259,"Cost":153,"Date":"8/7/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":610,"Cost":371,"Date":"8/22/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":150,"Cost":92,"Date":"8/31/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":510,"Cost":363,"Date":"9/1/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":253,"Cost":143,"Date":"9/1/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":122,"Cost":69,"Date":"9/17/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":272,"Cost":213,"Date":"9/29/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":318,"Cost":238,"Date":"11/7/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":792,"Cost":632,"Date":"11/26/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":475,"Cost":274,"Date":"11/27/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":750,"Cost":454,"Date":"12/5/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":941,"Cost":800,"Date":"12/26/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":241,"Cost":214,"Date":"12/31/2020"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":831,"Cost":742,"Date":"1/20/2021"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":324,"Cost":199,"Date":"2/2/2021"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":133,"Cost":105,"Date":"2/8/2021"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":208,"Cost":137,"Date":"2/27/2021"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":426,"Cost":333,"Date":"3/1/2021"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":726,"Cost":628,"Date":"3/1/2021"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":297,"Cost":213,"Date":"3/19/2021"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":598,"Cost":351,"Date":"3/28/2021"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":201,"Cost":147,"Date":"5/21/2021"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":87,"Cost":62,"Date":"7/21/2021"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":679,"Cost":503,"Date":"8/5/2021"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":511,"Cost":408,"Date":"8/12/2021"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":149,"Cost":89,"Date":"8/21/2021"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":980,"Cost":899,"Date":"8/23/2021"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":48,"Cost":28,"Date":"9/3/2021"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":980,"Cost":594,"Date":"9/5/2021"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":250,"Cost":138,"Date":"10/6/2021"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":509,"Cost":349,"Date":"10/19/2021"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":465,"Cost":235,"Date":"11/15/2021"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":671,"Cost":374,"Date":"12/8/2021"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":479,"Cost":444,"Date":"1/8/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":209,"Cost":146,"Date":"1/14/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":602,"Cost":562,"Date":"1/19/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":60,"Cost":30,"Date":"1/28/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":356,"Cost":265,"Date":"1/31/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":802,"Cost":700,"Date":"3/27/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":781,"Cost":582,"Date":"4/20/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":403,"Cost":221,"Date":"4/24/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":943,"Cost":595,"Date":"4/28/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":480,"Cost":412,"Date":"5/15/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":935,"Cost":501,"Date":"5/16/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":154,"Cost":83,"Date":"5/18/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":463,"Cost":236,"Date":"6/2/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":506,"Cost":473,"Date":"6/3/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":529,"Cost":311,"Date":"6/5/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":415,"Cost":355,"Date":"6/7/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":978,"Cost":790,"Date":"6/14/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":824,"Cost":504,"Date":"6/20/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":997,"Cost":605,"Date":"6/24/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":924,"Cost":584,"Date":"7/4/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":294,"Cost":162,"Date":"7/9/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":773,"Cost":563,"Date":"7/12/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":878,"Cost":549,"Date":"8/14/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":22,"Cost":18,"Date":"8/16/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":315,"Cost":159,"Date":"8/23/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":971,"Cost":730,"Date":"9/2/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":685,"Cost":614,"Date":"9/3/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":556,"Cost":443,"Date":"9/16/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":707,"Cost":538,"Date":"10/4/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":947,"Cost":489,"Date":"11/1/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":995,"Cost":678,"Date":"11/2/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":836,"Cost":738,"Date":"12/17/2022"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":265,"Cost":179,"Date":"2/10/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":379,"Cost":270,"Date":"2/28/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":178,"Cost":140,"Date":"3/4/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":407,"Cost":240,"Date":"3/9/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":985,"Cost":819,"Date":"3/9/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":679,"Cost":609,"Date":"3/11/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":89,"Cost":59,"Date":"3/17/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":899,"Cost":752,"Date":"3/17/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":756,"Cost":624,"Date":"3/23/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":707,"Cost":469,"Date":"4/1/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":959,"Cost":777,"Date":"5/7/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":278,"Cost":198,"Date":"5/10/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":103,"Cost":96,"Date":"5/20/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":541,"Cost":456,"Date":"6/2/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":170,"Cost":132,"Date":"6/11/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":507,"Cost":273,"Date":"6/16/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":719,"Cost":587,"Date":"6/16/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":28,"Cost":15,"Date":"7/10/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":418,"Cost":356,"Date":"7/11/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":787,"Cost":731,"Date":"8/28/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":857,"Cost":545,"Date":"8/29/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":180,"Cost":98,"Date":"8/31/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":320,"Cost":227,"Date":"9/8/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":181,"Cost":103,"Date":"9/13/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":941,"Cost":853,"Date":"9/14/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":344,"Cost":325,"Date":"9/19/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":465,"Cost":297,"Date":"9/25/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":582,"Cost":531,"Date":"10/4/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":78,"Cost":68,"Date":"10/10/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":67,"Cost":34,"Date":"10/17/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":854,"Cost":545,"Date":"10/28/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":259,"Cost":221,"Date":"10/30/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":900,"Cost":531,"Date":"11/1/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":575,"Cost":497,"Date":"11/15/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":569,"Cost":358,"Date":"11/25/2023"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":300,"Cost":222,"Date":"1/10/2024"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":568,"Cost":371,"Date":"1/14/2024"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":991,"Cost":924,"Date":"1/20/2024"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":153,"Cost":86,"Date":"2/8/2024"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":817,"Cost":593,"Date":"2/25/2024"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":881,"Cost":759,"Date":"3/7/2024"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":439,"Cost":220,"Date":"3/14/2024"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":276,"Cost":158,"Date":"3/27/2024"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":187,"Cost":160,"Date":"4/5/2024"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":10,"Cost":7,"Date":"4/14/2024"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":422,"Cost":297,"Date":"5/3/2024"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":36,"Cost":20,"Date":"5/9/2024"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":600,"Cost":541,"Date":"5/15/2024"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":832,"Cost":608,"Date":"5/25/2024"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":886,"Cost":471,"Date":"5/26/2024"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":405,"Cost":282,"Date":"5/31/2024"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":436,"Cost":352,"Date":"7/27/2024"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":713,"Cost":405,"Date":"9/17/2024"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":635,"Cost":578,"Date":"10/6/2024"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":652,"Cost":565,"Date":"10/8/2024"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":462,"Cost":235,"Date":"10/26/2024"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":95,"Cost":65,"Date":"11/16/2024"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":653,"Cost":594,"Date":"11/18/2024"},{"Store":"Galleria Varna","Brand":"HM Home","Country":"Bulgaria","Sale":678,"Cost":360,"Date":"12/1/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":821,"Cost":629,"Date":"2/9/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":478,"Cost":325,"Date":"2/11/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":362,"Cost":273,"Date":"3/10/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":624,"Cost":391,"Date":"3/16/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":797,"Cost":631,"Date":"3/18/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":764,"Cost":574,"Date":"3/20/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":916,"Cost":653,"Date":"3/26/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":44,"Cost":24,"Date":"6/2/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":451,"Cost":273,"Date":"6/10/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":28,"Cost":14,"Date":"6/16/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":455,"Cost":313,"Date":"6/25/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":98,"Cost":59,"Date":"7/19/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":153,"Cost":116,"Date":"7/21/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":150,"Cost":104,"Date":"7/25/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":705,"Cost":647,"Date":"8/4/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":83,"Cost":73,"Date":"9/2/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":373,"Cost":232,"Date":"9/4/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":433,"Cost":332,"Date":"9/19/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":869,"Cost":475,"Date":"9/29/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":917,"Cost":505,"Date":"10/2/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":966,"Cost":659,"Date":"10/15/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":249,"Cost":152,"Date":"10/30/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":843,"Cost":728,"Date":"11/9/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":987,"Cost":785,"Date":"11/23/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":349,"Cost":210,"Date":"11/30/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":353,"Cost":231,"Date":"12/8/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":856,"Cost":705,"Date":"12/11/2018"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":858,"Cost":665,"Date":"1/15/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":103,"Cost":54,"Date":"1/24/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":370,"Cost":304,"Date":"2/3/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":60,"Cost":40,"Date":"2/4/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":349,"Cost":210,"Date":"3/9/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":723,"Cost":683,"Date":"3/12/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":921,"Cost":640,"Date":"4/19/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":760,"Cost":646,"Date":"5/3/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":687,"Cost":390,"Date":"5/4/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":507,"Cost":473,"Date":"6/8/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":86,"Cost":81,"Date":"6/26/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":577,"Cost":306,"Date":"7/4/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":928,"Cost":620,"Date":"7/13/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":208,"Cost":117,"Date":"8/8/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":189,"Cost":146,"Date":"8/26/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":44,"Cost":33,"Date":"9/2/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":203,"Cost":145,"Date":"9/29/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":513,"Cost":348,"Date":"10/12/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":295,"Cost":213,"Date":"11/2/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":743,"Cost":701,"Date":"11/4/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":513,"Cost":448,"Date":"11/7/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":207,"Cost":167,"Date":"12/1/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":390,"Cost":289,"Date":"12/4/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":782,"Cost":622,"Date":"12/7/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":205,"Cost":143,"Date":"12/18/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":431,"Cost":374,"Date":"12/20/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":927,"Cost":707,"Date":"12/20/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":785,"Cost":472,"Date":"12/21/2019"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":179,"Cost":161,"Date":"1/9/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":665,"Cost":613,"Date":"2/5/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":890,"Cost":618,"Date":"2/16/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":362,"Cost":196,"Date":"2/16/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":247,"Cost":228,"Date":"2/18/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":801,"Cost":468,"Date":"2/22/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":779,"Cost":592,"Date":"2/25/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":767,"Cost":592,"Date":"3/8/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":955,"Cost":775,"Date":"4/2/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":505,"Cost":293,"Date":"4/3/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":391,"Cost":226,"Date":"4/9/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":313,"Cost":179,"Date":"4/10/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":566,"Cost":444,"Date":"4/19/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":475,"Cost":287,"Date":"5/17/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":886,"Cost":806,"Date":"5/22/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":510,"Cost":466,"Date":"6/20/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":335,"Cost":170,"Date":"7/1/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":268,"Cost":145,"Date":"7/4/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":345,"Cost":221,"Date":"7/8/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":478,"Cost":268,"Date":"7/9/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":87,"Cost":78,"Date":"7/14/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":272,"Cost":138,"Date":"7/19/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":525,"Cost":411,"Date":"8/1/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":624,"Cost":561,"Date":"8/6/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":593,"Cost":329,"Date":"8/7/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":452,"Cost":385,"Date":"8/22/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":177,"Cost":160,"Date":"8/31/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":904,"Cost":607,"Date":"9/1/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":603,"Cost":306,"Date":"9/1/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":112,"Cost":84,"Date":"9/17/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":672,"Cost":529,"Date":"9/29/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":146,"Cost":119,"Date":"11/7/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":504,"Cost":396,"Date":"11/26/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":772,"Cost":549,"Date":"11/27/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":14,"Cost":7,"Date":"12/5/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":582,"Cost":388,"Date":"12/26/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":280,"Cost":221,"Date":"12/31/2020"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":658,"Cost":605,"Date":"1/20/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":804,"Cost":599,"Date":"2/2/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":828,"Cost":636,"Date":"2/8/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":289,"Cost":145,"Date":"2/27/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":58,"Cost":36,"Date":"3/1/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":943,"Cost":559,"Date":"3/1/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":488,"Cost":292,"Date":"3/19/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":516,"Cost":395,"Date":"3/28/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":102,"Cost":66,"Date":"5/21/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":744,"Cost":658,"Date":"7/21/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":945,"Cost":493,"Date":"8/5/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":2,"Cost":1,"Date":"8/12/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":343,"Cost":260,"Date":"8/21/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":543,"Cost":283,"Date":"8/23/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":484,"Cost":431,"Date":"9/3/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":983,"Cost":501,"Date":"9/5/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":839,"Cost":461,"Date":"10/6/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":152,"Cost":81,"Date":"10/19/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":578,"Cost":511,"Date":"11/15/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":728,"Cost":407,"Date":"12/8/2021"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":377,"Cost":259,"Date":"1/8/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":409,"Cost":217,"Date":"1/14/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":168,"Cost":159,"Date":"1/19/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":152,"Cost":84,"Date":"1/28/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":545,"Cost":492,"Date":"1/31/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":913,"Cost":687,"Date":"3/27/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":214,"Cost":149,"Date":"4/20/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":673,"Cost":443,"Date":"4/24/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":62,"Cost":43,"Date":"4/28/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":296,"Cost":161,"Date":"5/15/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":565,"Cost":335,"Date":"5/16/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":659,"Cost":482,"Date":"5/18/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":226,"Cost":164,"Date":"6/2/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":845,"Cost":461,"Date":"6/3/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":801,"Cost":759,"Date":"6/5/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":776,"Cost":653,"Date":"6/7/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":52,"Cost":47,"Date":"6/14/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":759,"Cost":658,"Date":"6/20/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":641,"Cost":603,"Date":"6/24/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":151,"Cost":102,"Date":"7/4/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":443,"Cost":345,"Date":"7/9/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":840,"Cost":724,"Date":"7/12/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":454,"Cost":368,"Date":"8/14/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":874,"Cost":593,"Date":"8/16/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":366,"Cost":266,"Date":"8/23/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":614,"Cost":517,"Date":"9/2/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":262,"Cost":159,"Date":"9/3/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":911,"Cost":553,"Date":"9/16/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":985,"Cost":917,"Date":"10/4/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":361,"Cost":266,"Date":"11/1/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":263,"Cost":234,"Date":"11/2/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":51,"Cost":37,"Date":"12/17/2022"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":7,"Cost":3,"Date":"2/10/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":106,"Cost":93,"Date":"2/28/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":164,"Cost":126,"Date":"3/4/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":222,"Cost":200,"Date":"3/9/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":943,"Cost":703,"Date":"3/9/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":297,"Cost":262,"Date":"3/11/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":831,"Cost":628,"Date":"3/17/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":604,"Cost":319,"Date":"3/17/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":293,"Cost":196,"Date":"3/23/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":885,"Cost":470,"Date":"4/1/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":648,"Cost":532,"Date":"5/7/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":298,"Cost":268,"Date":"5/10/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":114,"Cost":66,"Date":"5/20/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":446,"Cost":273,"Date":"6/2/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":57,"Cost":34,"Date":"6/11/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":195,"Cost":115,"Date":"6/16/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":225,"Cost":170,"Date":"6/16/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":327,"Cost":288,"Date":"7/10/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":47,"Cost":26,"Date":"7/11/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":650,"Cost":478,"Date":"8/28/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":841,"Cost":656,"Date":"8/29/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":182,"Cost":94,"Date":"8/31/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":763,"Cost":640,"Date":"9/8/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":367,"Cost":202,"Date":"9/13/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":448,"Cost":380,"Date":"9/14/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":449,"Cost":273,"Date":"9/19/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":248,"Cost":211,"Date":"9/25/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":946,"Cost":767,"Date":"10/4/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":626,"Cost":352,"Date":"10/10/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":570,"Cost":393,"Date":"10/17/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":504,"Cost":400,"Date":"10/28/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":598,"Cost":438,"Date":"10/30/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":562,"Cost":428,"Date":"11/1/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":573,"Cost":426,"Date":"11/15/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":613,"Cost":409,"Date":"11/25/2023"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":77,"Cost":47,"Date":"1/10/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":393,"Cost":343,"Date":"1/14/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":170,"Cost":149,"Date":"1/20/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":790,"Cost":463,"Date":"2/8/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":738,"Cost":619,"Date":"2/25/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":224,"Cost":142,"Date":"3/7/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":280,"Cost":242,"Date":"3/14/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":862,"Cost":738,"Date":"3/27/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":375,"Cost":247,"Date":"4/5/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":50,"Cost":42,"Date":"4/14/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":469,"Cost":357,"Date":"5/3/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":686,"Cost":379,"Date":"5/9/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":767,"Cost":398,"Date":"5/15/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":357,"Cost":221,"Date":"5/25/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":231,"Cost":165,"Date":"5/26/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":360,"Cost":275,"Date":"5/31/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":887,"Cost":512,"Date":"7/27/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":26,"Cost":24,"Date":"9/17/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":520,"Cost":345,"Date":"10/6/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":196,"Cost":144,"Date":"10/8/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":976,"Cost":915,"Date":"10/26/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":189,"Cost":152,"Date":"11/16/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":600,"Cost":472,"Date":"11/18/2024"},{"Store":"Galleria Varna","Brand":"Nova","Country":"Bulgaria","Sale":729,"Cost":661,"Date":"12/1/2024"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":454,"Cost":420,"Date":"2/9/2018"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":383,"Cost":234,"Date":"2/11/2018"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":32,"Cost":29,"Date":"3/10/2018"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":595,"Cost":357,"Date":"3/16/2018"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":825,"Cost":525,"Date":"3/18/2018"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":513,"Cost":472,"Date":"3/20/2018"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":180,"Cost":160,"Date":"3/26/2018"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":376,"Cost":273,"Date":"6/2/2018"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":704,"Cost":473,"Date":"6/10/2018"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":339,"Cost":299,"Date":"6/16/2018"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":52,"Cost":47,"Date":"6/25/2018"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":617,"Cost":580,"Date":"7/19/2018"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":489,"Cost":400,"Date":"7/21/2018"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":454,"Cost":327,"Date":"7/25/2018"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":604,"Cost":321,"Date":"8/4/2018"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":174,"Cost":100,"Date":"9/2/2018"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":739,"Cost":694,"Date":"9/4/2018"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":778,"Cost":670,"Date":"9/19/2018"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":774,"Cost":716,"Date":"9/29/2018"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":420,"Cost":303,"Date":"10/2/2018"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":296,"Cost":274,"Date":"10/15/2018"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":683,"Cost":347,"Date":"10/30/2018"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":512,"Cost":326,"Date":"11/9/2018"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":800,"Cost":500,"Date":"11/23/2018"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":507,"Cost":464,"Date":"11/30/2018"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":932,"Cost":730,"Date":"12/8/2018"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":781,"Cost":474,"Date":"12/11/2018"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":761,"Cost":681,"Date":"1/15/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":926,"Cost":552,"Date":"1/24/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":685,"Cost":619,"Date":"2/3/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":399,"Cost":320,"Date":"2/4/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":382,"Cost":221,"Date":"3/9/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":833,"Cost":569,"Date":"3/12/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":132,"Cost":97,"Date":"4/19/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":79,"Cost":67,"Date":"5/3/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":887,"Cost":467,"Date":"5/4/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":836,"Cost":768,"Date":"6/8/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":574,"Cost":518,"Date":"6/26/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":430,"Cost":360,"Date":"7/4/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":800,"Cost":549,"Date":"7/13/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":590,"Cost":468,"Date":"8/8/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":488,"Cost":430,"Date":"8/26/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":696,"Cost":496,"Date":"9/2/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":364,"Cost":224,"Date":"9/29/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":379,"Cost":225,"Date":"10/12/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":561,"Cost":517,"Date":"11/2/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":514,"Cost":401,"Date":"11/4/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":276,"Cost":176,"Date":"11/7/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":135,"Cost":99,"Date":"12/1/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":290,"Cost":254,"Date":"12/4/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":109,"Cost":102,"Date":"12/7/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":797,"Cost":641,"Date":"12/18/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":952,"Cost":536,"Date":"12/20/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":871,"Cost":713,"Date":"12/20/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":998,"Cost":619,"Date":"12/21/2019"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":772,"Cost":693,"Date":"1/9/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":675,"Cost":448,"Date":"2/5/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":783,"Cost":507,"Date":"2/16/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":320,"Cost":263,"Date":"2/16/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":402,"Cost":243,"Date":"2/18/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":418,"Cost":393,"Date":"2/22/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":487,"Cost":315,"Date":"2/25/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":462,"Cost":293,"Date":"3/8/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":530,"Cost":497,"Date":"4/2/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":655,"Cost":611,"Date":"4/3/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":297,"Cost":232,"Date":"4/9/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":296,"Cost":167,"Date":"4/10/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":196,"Cost":176,"Date":"4/19/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":971,"Cost":636,"Date":"5/17/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":752,"Cost":469,"Date":"5/22/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":321,"Cost":212,"Date":"6/20/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":760,"Cost":646,"Date":"7/1/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":131,"Cost":76,"Date":"7/4/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":234,"Cost":133,"Date":"7/8/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":281,"Cost":246,"Date":"7/9/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":559,"Cost":341,"Date":"7/14/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":590,"Cost":396,"Date":"7/19/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":703,"Cost":586,"Date":"8/1/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":257,"Cost":183,"Date":"8/6/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":765,"Cost":425,"Date":"8/7/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":74,"Cost":37,"Date":"8/22/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":683,"Cost":389,"Date":"8/31/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":461,"Cost":358,"Date":"9/1/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":204,"Cost":117,"Date":"9/1/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":432,"Cost":309,"Date":"9/17/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":29,"Cost":22,"Date":"9/29/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":281,"Cost":149,"Date":"11/7/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":970,"Cost":644,"Date":"11/26/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":962,"Cost":880,"Date":"11/27/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":396,"Cost":261,"Date":"12/5/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":834,"Cost":504,"Date":"12/26/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":255,"Cost":160,"Date":"12/31/2020"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":686,"Cost":457,"Date":"1/20/2021"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":860,"Cost":757,"Date":"2/2/2021"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":596,"Cost":487,"Date":"2/8/2021"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":296,"Cost":280,"Date":"2/27/2021"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":717,"Cost":666,"Date":"3/1/2021"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":286,"Cost":164,"Date":"3/1/2021"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":92,"Cost":47,"Date":"3/19/2021"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":251,"Cost":132,"Date":"3/28/2021"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":978,"Cost":514,"Date":"5/21/2021"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":865,"Cost":556,"Date":"7/21/2021"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":402,"Cost":380,"Date":"8/5/2021"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":314,"Cost":268,"Date":"8/12/2021"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":740,"Cost":464,"Date":"8/21/2021"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":642,"Cost":385,"Date":"8/23/2021"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":444,"Cost":281,"Date":"9/3/2021"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":693,"Cost":471,"Date":"9/5/2021"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":85,"Cost":56,"Date":"10/6/2021"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":880,"Cost":557,"Date":"10/19/2021"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":943,"Cost":688,"Date":"11/15/2021"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":571,"Cost":398,"Date":"12/8/2021"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":655,"Cost":618,"Date":"1/8/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":47,"Cost":42,"Date":"1/14/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":450,"Cost":329,"Date":"1/19/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":508,"Cost":467,"Date":"1/28/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":745,"Cost":425,"Date":"1/31/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":44,"Cost":28,"Date":"3/27/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":406,"Cost":233,"Date":"4/20/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":890,"Cost":724,"Date":"4/24/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":564,"Cost":333,"Date":"4/28/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":833,"Cost":768,"Date":"5/15/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":497,"Cost":330,"Date":"5/16/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":606,"Cost":403,"Date":"5/18/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":834,"Cost":478,"Date":"6/2/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":982,"Cost":517,"Date":"6/3/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":584,"Cost":469,"Date":"6/5/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":450,"Cost":242,"Date":"6/7/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":480,"Cost":248,"Date":"6/14/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":289,"Cost":254,"Date":"6/20/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":805,"Cost":648,"Date":"6/24/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":704,"Cost":650,"Date":"7/4/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":780,"Cost":463,"Date":"7/9/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":805,"Cost":650,"Date":"7/12/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":256,"Cost":243,"Date":"8/14/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":59,"Cost":44,"Date":"8/16/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":49,"Cost":40,"Date":"8/23/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":646,"Cost":353,"Date":"9/2/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":133,"Cost":98,"Date":"9/3/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":1000,"Cost":836,"Date":"9/16/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":159,"Cost":121,"Date":"10/4/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":707,"Cost":512,"Date":"11/1/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":777,"Cost":705,"Date":"11/2/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":955,"Cost":873,"Date":"12/17/2022"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":832,"Cost":606,"Date":"2/10/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":80,"Cost":64,"Date":"2/28/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":910,"Cost":577,"Date":"3/4/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":913,"Cost":479,"Date":"3/9/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":687,"Cost":344,"Date":"3/9/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":808,"Cost":504,"Date":"3/11/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":841,"Cost":563,"Date":"3/17/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":414,"Cost":330,"Date":"3/17/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":498,"Cost":352,"Date":"3/23/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":5,"Cost":4,"Date":"4/1/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":562,"Cost":400,"Date":"5/7/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":777,"Cost":724,"Date":"5/10/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":757,"Cost":519,"Date":"5/20/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":194,"Cost":98,"Date":"6/2/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":848,"Cost":502,"Date":"6/11/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":975,"Cost":625,"Date":"6/16/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":528,"Cost":405,"Date":"6/16/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":348,"Cost":211,"Date":"7/10/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":351,"Cost":191,"Date":"7/11/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":129,"Cost":101,"Date":"8/28/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":852,"Cost":562,"Date":"8/29/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":730,"Cost":425,"Date":"8/31/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":137,"Cost":87,"Date":"9/8/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":851,"Cost":568,"Date":"9/13/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":165,"Cost":112,"Date":"9/14/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":280,"Cost":170,"Date":"9/19/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":313,"Cost":294,"Date":"9/25/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":178,"Cost":141,"Date":"10/4/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":91,"Cost":74,"Date":"10/10/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":728,"Cost":412,"Date":"10/17/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":68,"Cost":57,"Date":"10/28/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":550,"Cost":488,"Date":"10/30/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":171,"Cost":88,"Date":"11/1/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":890,"Cost":625,"Date":"11/15/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":762,"Cost":705,"Date":"11/25/2023"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":317,"Cost":301,"Date":"1/10/2024"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":535,"Cost":359,"Date":"1/14/2024"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":567,"Cost":285,"Date":"1/20/2024"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":570,"Cost":516,"Date":"2/8/2024"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":578,"Cost":530,"Date":"2/25/2024"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":807,"Cost":635,"Date":"3/7/2024"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":276,"Cost":182,"Date":"3/14/2024"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":684,"Cost":584,"Date":"3/27/2024"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":91,"Cost":74,"Date":"4/5/2024"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":279,"Cost":185,"Date":"4/14/2024"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":583,"Cost":449,"Date":"5/3/2024"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":135,"Cost":121,"Date":"5/9/2024"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":832,"Cost":647,"Date":"5/15/2024"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":185,"Cost":104,"Date":"5/25/2024"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":79,"Cost":44,"Date":"5/26/2024"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":304,"Cost":284,"Date":"5/31/2024"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":251,"Cost":168,"Date":"7/27/2024"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":245,"Cost":163,"Date":"9/17/2024"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":652,"Cost":481,"Date":"10/6/2024"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":398,"Cost":275,"Date":"10/8/2024"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":992,"Cost":713,"Date":"10/26/2024"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":106,"Cost":89,"Date":"11/16/2024"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":428,"Cost":317,"Date":"11/18/2024"},{"Store":"Burgas Plaza","Brand":"HM Home","Country":"Bulgaria","Sale":189,"Cost":115,"Date":"12/1/2024"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":593,"Cost":305,"Date":"2/9/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":892,"Cost":723,"Date":"2/11/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":907,"Cost":637,"Date":"3/10/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":205,"Cost":107,"Date":"3/16/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":510,"Cost":426,"Date":"3/18/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":31,"Cost":25,"Date":"3/20/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":790,"Cost":624,"Date":"3/26/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":695,"Cost":561,"Date":"6/2/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":242,"Cost":206,"Date":"6/10/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":490,"Cost":311,"Date":"6/16/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":972,"Cost":826,"Date":"6/25/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":387,"Cost":349,"Date":"7/19/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":722,"Cost":507,"Date":"7/21/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":334,"Cost":243,"Date":"7/25/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":194,"Cost":184,"Date":"8/4/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":438,"Cost":399,"Date":"9/2/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":645,"Cost":533,"Date":"9/4/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":761,"Cost":684,"Date":"9/19/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":388,"Cost":203,"Date":"9/29/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":355,"Cost":261,"Date":"10/2/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":515,"Cost":382,"Date":"10/15/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":426,"Cost":329,"Date":"10/30/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":335,"Cost":265,"Date":"11/9/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":199,"Cost":146,"Date":"11/23/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":573,"Cost":413,"Date":"11/30/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":189,"Cost":125,"Date":"12/8/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":540,"Cost":303,"Date":"12/11/2018"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":785,"Cost":561,"Date":"1/15/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":444,"Cost":324,"Date":"1/24/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":131,"Cost":80,"Date":"2/3/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":604,"Cost":339,"Date":"2/4/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":17,"Cost":14,"Date":"3/9/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":706,"Cost":358,"Date":"3/12/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":667,"Cost":382,"Date":"4/19/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":63,"Cost":50,"Date":"5/3/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":558,"Cost":392,"Date":"5/4/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":624,"Cost":402,"Date":"6/8/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":423,"Cost":399,"Date":"6/26/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":769,"Cost":461,"Date":"7/4/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":470,"Cost":363,"Date":"7/13/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":932,"Cost":759,"Date":"8/8/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":613,"Cost":367,"Date":"8/26/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":118,"Cost":79,"Date":"9/2/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":966,"Cost":705,"Date":"9/29/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":182,"Cost":138,"Date":"10/12/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":901,"Cost":854,"Date":"11/2/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":190,"Cost":108,"Date":"11/4/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":781,"Cost":602,"Date":"11/7/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":241,"Cost":200,"Date":"12/1/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":124,"Cost":62,"Date":"12/4/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":419,"Cost":238,"Date":"12/7/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":231,"Cost":156,"Date":"12/18/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":833,"Cost":522,"Date":"12/20/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":486,"Cost":377,"Date":"12/20/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":382,"Cost":266,"Date":"12/21/2019"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":446,"Cost":364,"Date":"1/9/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":84,"Cost":69,"Date":"2/5/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":556,"Cost":404,"Date":"2/16/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":670,"Cost":391,"Date":"2/16/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":692,"Cost":385,"Date":"2/18/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":187,"Cost":163,"Date":"2/22/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":752,"Cost":661,"Date":"2/25/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":277,"Cost":254,"Date":"3/8/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":836,"Cost":466,"Date":"4/2/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":558,"Cost":368,"Date":"4/3/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":232,"Cost":168,"Date":"4/9/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":815,"Cost":610,"Date":"4/10/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":697,"Cost":560,"Date":"4/19/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":871,"Cost":791,"Date":"5/17/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":802,"Cost":620,"Date":"5/22/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":229,"Cost":203,"Date":"6/20/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":506,"Cost":474,"Date":"7/1/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":996,"Cost":893,"Date":"7/4/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":268,"Cost":135,"Date":"7/8/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":88,"Cost":82,"Date":"7/9/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":169,"Cost":106,"Date":"7/14/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":244,"Cost":226,"Date":"7/19/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":622,"Cost":511,"Date":"8/1/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":715,"Cost":492,"Date":"8/6/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":295,"Cost":158,"Date":"8/7/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":950,"Cost":531,"Date":"8/22/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":532,"Cost":309,"Date":"8/31/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":429,"Cost":370,"Date":"9/1/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":274,"Cost":173,"Date":"9/1/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":204,"Cost":112,"Date":"9/17/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":600,"Cost":561,"Date":"9/29/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":65,"Cost":46,"Date":"11/7/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":694,"Cost":399,"Date":"11/26/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":461,"Cost":413,"Date":"11/27/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":618,"Cost":465,"Date":"12/5/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":510,"Cost":351,"Date":"12/26/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":951,"Cost":529,"Date":"12/31/2020"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":145,"Cost":80,"Date":"1/20/2021"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":963,"Cost":877,"Date":"2/2/2021"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":120,"Cost":93,"Date":"2/8/2021"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":716,"Cost":373,"Date":"2/27/2021"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":224,"Cost":169,"Date":"3/1/2021"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":123,"Cost":98,"Date":"3/1/2021"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":980,"Cost":628,"Date":"3/19/2021"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":76,"Cost":67,"Date":"3/28/2021"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":203,"Cost":189,"Date":"5/21/2021"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":291,"Cost":276,"Date":"7/21/2021"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":972,"Cost":920,"Date":"8/5/2021"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":820,"Cost":655,"Date":"8/12/2021"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":22,"Cost":14,"Date":"8/21/2021"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":759,"Cost":573,"Date":"8/23/2021"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":693,"Cost":471,"Date":"9/3/2021"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":860,"Cost":811,"Date":"9/5/2021"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":153,"Cost":138,"Date":"10/6/2021"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":698,"Cost":448,"Date":"10/19/2021"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":990,"Cost":854,"Date":"11/15/2021"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":710,"Cost":368,"Date":"12/8/2021"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":452,"Cost":332,"Date":"1/8/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":281,"Cost":195,"Date":"1/14/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":4,"Cost":2,"Date":"1/19/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":544,"Cost":429,"Date":"1/28/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":67,"Cost":41,"Date":"1/31/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":974,"Cost":812,"Date":"3/27/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":14,"Cost":7,"Date":"4/20/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":248,"Cost":150,"Date":"4/24/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":753,"Cost":421,"Date":"4/28/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":460,"Cost":304,"Date":"5/15/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":799,"Cost":498,"Date":"5/16/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":653,"Cost":589,"Date":"5/18/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":625,"Cost":365,"Date":"6/2/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":545,"Cost":294,"Date":"6/3/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":577,"Cost":526,"Date":"6/5/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":672,"Cost":588,"Date":"6/7/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":484,"Cost":392,"Date":"6/14/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":817,"Cost":601,"Date":"6/20/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":745,"Cost":502,"Date":"6/24/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":671,"Cost":637,"Date":"7/4/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":461,"Cost":264,"Date":"7/9/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":308,"Cost":265,"Date":"7/12/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":746,"Cost":659,"Date":"8/14/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":790,"Cost":564,"Date":"8/16/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":980,"Cost":670,"Date":"8/23/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":846,"Cost":454,"Date":"9/2/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":226,"Cost":162,"Date":"9/3/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":832,"Cost":454,"Date":"9/16/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":457,"Cost":249,"Date":"10/4/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":165,"Cost":124,"Date":"11/1/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":846,"Cost":506,"Date":"11/2/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":264,"Cost":178,"Date":"12/17/2022"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":517,"Cost":347,"Date":"2/10/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":536,"Cost":322,"Date":"2/28/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":339,"Cost":176,"Date":"3/4/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":443,"Cost":300,"Date":"3/9/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":741,"Cost":617,"Date":"3/9/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":104,"Cost":91,"Date":"3/11/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":497,"Cost":426,"Date":"3/17/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":50,"Cost":27,"Date":"3/17/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":273,"Cost":187,"Date":"3/23/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":213,"Cost":131,"Date":"4/1/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":25,"Cost":18,"Date":"5/7/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":157,"Cost":131,"Date":"5/10/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":817,"Cost":728,"Date":"5/20/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":447,"Cost":389,"Date":"6/2/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":302,"Cost":164,"Date":"6/11/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":18,"Cost":10,"Date":"6/16/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":484,"Cost":257,"Date":"6/16/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":539,"Cost":390,"Date":"7/10/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":243,"Cost":140,"Date":"7/11/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":331,"Cost":211,"Date":"8/28/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":968,"Cost":626,"Date":"8/29/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":138,"Cost":110,"Date":"8/31/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":429,"Cost":322,"Date":"9/8/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":959,"Cost":858,"Date":"9/13/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":440,"Cost":256,"Date":"9/14/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":14,"Cost":7,"Date":"9/19/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":17,"Cost":15,"Date":"9/25/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":84,"Cost":73,"Date":"10/4/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":698,"Cost":632,"Date":"10/10/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":122,"Cost":80,"Date":"10/17/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":696,"Cost":590,"Date":"10/28/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":812,"Cost":659,"Date":"10/30/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":417,"Cost":329,"Date":"11/1/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":686,"Cost":627,"Date":"11/15/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":107,"Cost":68,"Date":"11/25/2023"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":854,"Cost":593,"Date":"1/10/2024"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":347,"Cost":323,"Date":"1/14/2024"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":692,"Cost":426,"Date":"1/20/2024"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":834,"Cost":603,"Date":"2/8/2024"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":621,"Cost":399,"Date":"2/25/2024"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":580,"Cost":323,"Date":"3/7/2024"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":306,"Cost":255,"Date":"3/14/2024"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":756,"Cost":670,"Date":"3/27/2024"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":737,"Cost":495,"Date":"4/5/2024"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":583,"Cost":488,"Date":"4/14/2024"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":31,"Cost":28,"Date":"5/3/2024"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":828,"Cost":555,"Date":"5/9/2024"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":520,"Cost":355,"Date":"5/15/2024"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":181,"Cost":160,"Date":"5/25/2024"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":211,"Cost":145,"Date":"5/26/2024"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":322,"Cost":223,"Date":"5/31/2024"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":148,"Cost":116,"Date":"7/27/2024"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":984,"Cost":644,"Date":"9/17/2024"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":603,"Cost":439,"Date":"10/6/2024"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":180,"Cost":133,"Date":"10/8/2024"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":737,"Cost":458,"Date":"10/26/2024"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":224,"Cost":166,"Date":"11/16/2024"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":106,"Cost":63,"Date":"11/18/2024"},{"Store":"Burgas Plaza","Brand":"COS","Country":"Bulgaria","Sale":944,"Cost":870,"Date":"12/1/2024"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":404,"Cost":361,"Date":"2/9/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":973,"Cost":856,"Date":"2/11/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":873,"Cost":681,"Date":"3/10/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":397,"Cost":280,"Date":"3/16/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":996,"Cost":577,"Date":"3/18/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":521,"Cost":441,"Date":"3/20/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":603,"Cost":404,"Date":"3/26/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":653,"Cost":529,"Date":"6/2/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":989,"Cost":617,"Date":"6/10/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":406,"Cost":317,"Date":"6/16/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":550,"Cost":327,"Date":"6/25/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":719,"Cost":454,"Date":"7/19/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":730,"Cost":614,"Date":"7/21/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":151,"Cost":137,"Date":"7/25/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":382,"Cost":279,"Date":"8/4/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":942,"Cost":609,"Date":"9/2/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":130,"Cost":113,"Date":"9/4/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":431,"Cost":364,"Date":"9/19/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":619,"Cost":548,"Date":"9/29/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":199,"Cost":110,"Date":"10/2/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":514,"Cost":337,"Date":"10/15/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":480,"Cost":426,"Date":"10/30/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":975,"Cost":689,"Date":"11/9/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":739,"Cost":517,"Date":"11/23/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":635,"Cost":582,"Date":"11/30/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":693,"Cost":613,"Date":"12/8/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":715,"Cost":438,"Date":"12/11/2018"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":307,"Cost":244,"Date":"1/15/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":222,"Cost":171,"Date":"1/24/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":205,"Cost":150,"Date":"2/3/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":542,"Cost":299,"Date":"2/4/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":799,"Cost":426,"Date":"3/9/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":436,"Cost":391,"Date":"3/12/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":425,"Cost":386,"Date":"4/19/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":68,"Cost":56,"Date":"5/3/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":536,"Cost":414,"Date":"5/4/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":881,"Cost":527,"Date":"6/8/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":637,"Cost":341,"Date":"6/26/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":291,"Cost":227,"Date":"7/4/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":533,"Cost":321,"Date":"7/13/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":640,"Cost":425,"Date":"8/8/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":737,"Cost":492,"Date":"8/26/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":528,"Cost":481,"Date":"9/2/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":778,"Cost":397,"Date":"9/29/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":479,"Cost":424,"Date":"10/12/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":65,"Cost":51,"Date":"11/2/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":257,"Cost":153,"Date":"11/4/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":303,"Cost":275,"Date":"11/7/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":360,"Cost":213,"Date":"12/1/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":221,"Cost":153,"Date":"12/4/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":671,"Cost":617,"Date":"12/7/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":423,"Cost":309,"Date":"12/18/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":332,"Cost":225,"Date":"12/20/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":872,"Cost":652,"Date":"12/20/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":87,"Cost":49,"Date":"12/21/2019"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":74,"Cost":51,"Date":"1/9/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":965,"Cost":488,"Date":"2/5/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":142,"Cost":78,"Date":"2/16/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":692,"Cost":394,"Date":"2/16/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":354,"Cost":195,"Date":"2/18/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":98,"Cost":51,"Date":"2/22/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":667,"Cost":442,"Date":"2/25/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":767,"Cost":517,"Date":"3/8/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":619,"Cost":431,"Date":"4/2/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":961,"Cost":785,"Date":"4/3/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":282,"Cost":229,"Date":"4/9/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":311,"Cost":290,"Date":"4/10/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":804,"Cost":658,"Date":"4/19/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":751,"Cost":382,"Date":"5/17/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":331,"Cost":249,"Date":"5/22/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":716,"Cost":663,"Date":"6/20/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":523,"Cost":262,"Date":"7/1/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":614,"Cost":425,"Date":"7/4/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":956,"Cost":612,"Date":"7/8/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":942,"Cost":717,"Date":"7/9/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":993,"Cost":816,"Date":"7/14/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":736,"Cost":570,"Date":"7/19/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":154,"Cost":87,"Date":"8/1/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":841,"Cost":726,"Date":"8/6/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":930,"Cost":639,"Date":"8/7/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":563,"Cost":500,"Date":"8/22/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":206,"Cost":173,"Date":"8/31/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":150,"Cost":106,"Date":"9/1/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":748,"Cost":437,"Date":"9/1/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":302,"Cost":181,"Date":"9/17/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":942,"Cost":855,"Date":"9/29/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":179,"Cost":145,"Date":"11/7/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":715,"Cost":589,"Date":"11/26/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":597,"Cost":566,"Date":"11/27/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":783,"Cost":680,"Date":"12/5/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":209,"Cost":124,"Date":"12/26/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":104,"Cost":94,"Date":"12/31/2020"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":997,"Cost":518,"Date":"1/20/2021"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":847,"Cost":424,"Date":"2/2/2021"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":903,"Cost":547,"Date":"2/8/2021"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":840,"Cost":693,"Date":"2/27/2021"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":659,"Cost":588,"Date":"3/1/2021"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":466,"Cost":293,"Date":"3/1/2021"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":303,"Cost":266,"Date":"3/19/2021"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":626,"Cost":334,"Date":"3/28/2021"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":942,"Cost":538,"Date":"5/21/2021"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":577,"Cost":411,"Date":"7/21/2021"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":851,"Cost":671,"Date":"8/5/2021"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":28,"Cost":25,"Date":"8/12/2021"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":795,"Cost":410,"Date":"8/21/2021"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":786,"Cost":671,"Date":"8/23/2021"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":947,"Cost":759,"Date":"9/3/2021"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":171,"Cost":129,"Date":"9/5/2021"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":417,"Cost":338,"Date":"10/6/2021"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":693,"Cost":494,"Date":"10/19/2021"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":84,"Cost":49,"Date":"11/15/2021"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":876,"Cost":677,"Date":"12/8/2021"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":284,"Cost":238,"Date":"1/8/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":680,"Cost":471,"Date":"1/14/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":592,"Cost":487,"Date":"1/19/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":53,"Cost":30,"Date":"1/28/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":127,"Cost":106,"Date":"1/31/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":859,"Cost":617,"Date":"3/27/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":335,"Cost":251,"Date":"4/20/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":628,"Cost":553,"Date":"4/24/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":46,"Cost":39,"Date":"4/28/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":53,"Cost":27,"Date":"5/15/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":402,"Cost":282,"Date":"5/16/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":20,"Cost":18,"Date":"5/18/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":404,"Cost":317,"Date":"6/2/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":864,"Cost":476,"Date":"6/3/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":43,"Cost":22,"Date":"6/5/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":275,"Cost":157,"Date":"6/7/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":3,"Cost":1,"Date":"6/14/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":358,"Cost":298,"Date":"6/20/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":533,"Cost":410,"Date":"6/24/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":542,"Cost":291,"Date":"7/4/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":506,"Cost":268,"Date":"7/9/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":963,"Cost":596,"Date":"7/12/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":357,"Cost":244,"Date":"8/14/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":152,"Cost":138,"Date":"8/16/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":465,"Cost":244,"Date":"8/23/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":258,"Cost":135,"Date":"9/2/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":933,"Cost":589,"Date":"9/3/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":91,"Cost":53,"Date":"9/16/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":916,"Cost":489,"Date":"10/4/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":952,"Cost":548,"Date":"11/1/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":669,"Cost":422,"Date":"11/2/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":507,"Cost":378,"Date":"12/17/2022"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":526,"Cost":411,"Date":"2/10/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":163,"Cost":140,"Date":"2/28/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":578,"Cost":309,"Date":"3/4/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":741,"Cost":474,"Date":"3/9/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":627,"Cost":484,"Date":"3/9/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":818,"Cost":611,"Date":"3/11/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":224,"Cost":156,"Date":"3/17/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":763,"Cost":712,"Date":"3/17/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":269,"Cost":193,"Date":"3/23/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":275,"Cost":248,"Date":"4/1/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":575,"Cost":323,"Date":"5/7/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":283,"Cost":239,"Date":"5/10/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":980,"Cost":918,"Date":"5/20/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":299,"Cost":219,"Date":"6/2/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":355,"Cost":303,"Date":"6/11/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":658,"Cost":342,"Date":"6/16/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":984,"Cost":663,"Date":"6/16/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":478,"Cost":440,"Date":"7/10/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":268,"Cost":171,"Date":"7/11/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":41,"Cost":30,"Date":"8/28/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":806,"Cost":607,"Date":"8/29/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":514,"Cost":261,"Date":"8/31/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":716,"Cost":393,"Date":"9/8/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":869,"Cost":501,"Date":"9/13/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":122,"Cost":84,"Date":"9/14/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":290,"Cost":190,"Date":"9/19/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":198,"Cost":152,"Date":"9/25/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":212,"Cost":177,"Date":"10/4/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":40,"Cost":29,"Date":"10/10/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":725,"Cost":430,"Date":"10/17/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":328,"Cost":260,"Date":"10/28/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":386,"Cost":288,"Date":"10/30/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":306,"Cost":183,"Date":"11/1/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":841,"Cost":722,"Date":"11/15/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":390,"Cost":356,"Date":"11/25/2023"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":675,"Cost":624,"Date":"1/10/2024"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":371,"Cost":238,"Date":"1/14/2024"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":669,"Cost":406,"Date":"1/20/2024"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":140,"Cost":83,"Date":"2/8/2024"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":79,"Cost":57,"Date":"2/25/2024"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":793,"Cost":444,"Date":"3/7/2024"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":20,"Cost":14,"Date":"3/14/2024"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":450,"Cost":343,"Date":"3/27/2024"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":112,"Cost":92,"Date":"4/5/2024"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":998,"Cost":537,"Date":"4/14/2024"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":115,"Cost":71,"Date":"5/3/2024"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":979,"Cost":706,"Date":"5/9/2024"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":877,"Cost":622,"Date":"5/15/2024"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":290,"Cost":206,"Date":"5/25/2024"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":218,"Cost":199,"Date":"5/26/2024"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":77,"Cost":71,"Date":"5/31/2024"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":703,"Cost":503,"Date":"7/27/2024"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":843,"Cost":730,"Date":"9/17/2024"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":866,"Cost":600,"Date":"10/6/2024"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":683,"Cost":496,"Date":"10/8/2024"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":81,"Cost":59,"Date":"10/26/2024"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":497,"Cost":259,"Date":"11/16/2024"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":243,"Cost":137,"Date":"11/18/2024"},{"Store":"Burgas Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":426,"Cost":244,"Date":"12/1/2024"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":182,"Cost":113,"Date":"2/9/2018"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":235,"Cost":192,"Date":"2/11/2018"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":812,"Cost":455,"Date":"3/10/2018"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":719,"Cost":524,"Date":"3/16/2018"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":934,"Cost":729,"Date":"3/18/2018"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":731,"Cost":589,"Date":"3/20/2018"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":675,"Cost":418,"Date":"3/26/2018"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":512,"Cost":439,"Date":"6/2/2018"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":540,"Cost":392,"Date":"6/10/2018"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":548,"Cost":396,"Date":"6/16/2018"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":257,"Cost":205,"Date":"6/25/2018"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":560,"Cost":305,"Date":"7/19/2018"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":69,"Cost":41,"Date":"7/21/2018"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":275,"Cost":241,"Date":"7/25/2018"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":1,"Cost":0,"Date":"8/4/2018"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":315,"Cost":262,"Date":"9/2/2018"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":889,"Cost":671,"Date":"9/4/2018"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":633,"Cost":568,"Date":"9/19/2018"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":308,"Cost":213,"Date":"9/29/2018"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":11,"Cost":6,"Date":"10/2/2018"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":787,"Cost":747,"Date":"10/15/2018"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":192,"Cost":160,"Date":"10/30/2018"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":795,"Cost":425,"Date":"11/9/2018"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":745,"Cost":442,"Date":"11/23/2018"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":126,"Cost":68,"Date":"11/30/2018"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":431,"Cost":229,"Date":"12/8/2018"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":755,"Cost":459,"Date":"12/11/2018"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":267,"Cost":247,"Date":"1/15/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":450,"Cost":364,"Date":"1/24/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":586,"Cost":516,"Date":"2/3/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":209,"Cost":122,"Date":"2/4/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":608,"Cost":369,"Date":"3/9/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":590,"Cost":454,"Date":"3/12/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":111,"Cost":86,"Date":"4/19/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":426,"Cost":384,"Date":"5/3/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":455,"Cost":344,"Date":"5/4/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":608,"Cost":356,"Date":"6/8/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":37,"Cost":36,"Date":"6/26/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":91,"Cost":59,"Date":"7/4/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":575,"Cost":340,"Date":"7/13/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":294,"Cost":154,"Date":"8/8/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":413,"Cost":226,"Date":"8/26/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":563,"Cost":367,"Date":"9/2/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":969,"Cost":631,"Date":"9/29/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":421,"Cost":278,"Date":"10/12/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":253,"Cost":193,"Date":"11/2/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":124,"Cost":83,"Date":"11/4/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":475,"Cost":240,"Date":"11/7/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":730,"Cost":617,"Date":"12/1/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":281,"Cost":204,"Date":"12/4/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":676,"Cost":498,"Date":"12/7/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":652,"Cost":454,"Date":"12/18/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":34,"Cost":26,"Date":"12/20/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":87,"Cost":65,"Date":"12/20/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":635,"Cost":581,"Date":"12/21/2019"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":814,"Cost":634,"Date":"1/9/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":688,"Cost":530,"Date":"2/5/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":255,"Cost":187,"Date":"2/16/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":813,"Cost":411,"Date":"2/16/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":818,"Cost":499,"Date":"2/18/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":735,"Cost":372,"Date":"2/22/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":646,"Cost":343,"Date":"2/25/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":17,"Cost":10,"Date":"3/8/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":27,"Cost":22,"Date":"4/2/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":541,"Cost":343,"Date":"4/3/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":275,"Cost":224,"Date":"4/9/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":620,"Cost":465,"Date":"4/10/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":576,"Cost":391,"Date":"4/19/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":700,"Cost":562,"Date":"5/17/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":495,"Cost":465,"Date":"5/22/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":162,"Cost":150,"Date":"6/20/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":936,"Cost":562,"Date":"7/1/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":511,"Cost":345,"Date":"7/4/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":527,"Cost":420,"Date":"7/8/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":415,"Cost":218,"Date":"7/9/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":334,"Cost":219,"Date":"7/14/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":776,"Cost":463,"Date":"7/19/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":495,"Cost":373,"Date":"8/1/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":371,"Cost":189,"Date":"8/6/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":879,"Cost":633,"Date":"8/7/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":14,"Cost":14,"Date":"8/22/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":974,"Cost":675,"Date":"8/31/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":672,"Cost":508,"Date":"9/1/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":999,"Cost":694,"Date":"9/1/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":118,"Cost":68,"Date":"9/17/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":5,"Cost":4,"Date":"9/29/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":249,"Cost":147,"Date":"11/7/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":17,"Cost":15,"Date":"11/26/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":904,"Cost":627,"Date":"11/27/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":881,"Cost":778,"Date":"12/5/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":632,"Cost":445,"Date":"12/26/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":553,"Cost":282,"Date":"12/31/2020"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":328,"Cost":249,"Date":"1/20/2021"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":913,"Cost":484,"Date":"2/2/2021"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":223,"Cost":127,"Date":"2/8/2021"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":515,"Cost":320,"Date":"2/27/2021"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":549,"Cost":396,"Date":"3/1/2021"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":366,"Cost":257,"Date":"3/1/2021"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":689,"Cost":549,"Date":"3/19/2021"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":960,"Cost":768,"Date":"3/28/2021"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":42,"Cost":27,"Date":"5/21/2021"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":723,"Cost":645,"Date":"7/21/2021"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":606,"Cost":502,"Date":"8/5/2021"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":176,"Cost":156,"Date":"8/12/2021"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":27,"Cost":19,"Date":"8/21/2021"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":23,"Cost":16,"Date":"8/23/2021"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":247,"Cost":202,"Date":"9/3/2021"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":343,"Cost":213,"Date":"9/5/2021"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":575,"Cost":351,"Date":"10/6/2021"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":614,"Cost":471,"Date":"10/19/2021"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":839,"Cost":473,"Date":"11/15/2021"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":859,"Cost":651,"Date":"12/8/2021"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":513,"Cost":356,"Date":"1/8/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":91,"Cost":71,"Date":"1/14/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":906,"Cost":637,"Date":"1/19/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":205,"Cost":177,"Date":"1/28/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":83,"Cost":69,"Date":"1/31/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":67,"Cost":62,"Date":"3/27/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":481,"Cost":269,"Date":"4/20/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":124,"Cost":71,"Date":"4/24/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":61,"Cost":53,"Date":"4/28/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":519,"Cost":282,"Date":"5/15/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":284,"Cost":163,"Date":"5/16/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":886,"Cost":636,"Date":"5/18/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":446,"Cost":277,"Date":"6/2/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":980,"Cost":800,"Date":"6/3/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":952,"Cost":774,"Date":"6/5/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":516,"Cost":260,"Date":"6/7/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":649,"Cost":411,"Date":"6/14/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":694,"Cost":399,"Date":"6/20/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":115,"Cost":59,"Date":"6/24/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":466,"Cost":319,"Date":"7/4/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":965,"Cost":543,"Date":"7/9/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":85,"Cost":47,"Date":"7/12/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":36,"Cost":30,"Date":"8/14/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":368,"Cost":331,"Date":"8/16/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":829,"Cost":690,"Date":"8/23/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":822,"Cost":548,"Date":"9/2/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":617,"Cost":551,"Date":"9/3/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":279,"Cost":213,"Date":"9/16/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":16,"Cost":10,"Date":"10/4/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":243,"Cost":218,"Date":"11/1/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":611,"Cost":460,"Date":"11/2/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":672,"Cost":499,"Date":"12/17/2022"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":594,"Cost":414,"Date":"2/10/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":68,"Cost":60,"Date":"2/28/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":447,"Cost":257,"Date":"3/4/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":919,"Cost":670,"Date":"3/9/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":224,"Cost":192,"Date":"3/9/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":614,"Cost":549,"Date":"3/11/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":68,"Cost":60,"Date":"3/17/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":385,"Cost":205,"Date":"3/17/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":849,"Cost":435,"Date":"3/23/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":535,"Cost":493,"Date":"4/1/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":211,"Cost":131,"Date":"5/7/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":410,"Cost":323,"Date":"5/10/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":806,"Cost":676,"Date":"5/20/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":190,"Cost":154,"Date":"6/2/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":795,"Cost":456,"Date":"6/11/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":75,"Cost":59,"Date":"6/16/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":766,"Cost":410,"Date":"6/16/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":286,"Cost":243,"Date":"7/10/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":875,"Cost":736,"Date":"7/11/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":448,"Cost":270,"Date":"8/28/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":997,"Cost":675,"Date":"8/29/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":971,"Cost":798,"Date":"8/31/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":437,"Cost":233,"Date":"9/8/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":617,"Cost":408,"Date":"9/13/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":529,"Cost":275,"Date":"9/14/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":104,"Cost":67,"Date":"9/19/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":937,"Cost":554,"Date":"9/25/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":369,"Cost":345,"Date":"10/4/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":639,"Cost":450,"Date":"10/10/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":721,"Cost":561,"Date":"10/17/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":213,"Cost":197,"Date":"10/28/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":288,"Cost":224,"Date":"10/30/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":289,"Cost":215,"Date":"11/1/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":783,"Cost":662,"Date":"11/15/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":323,"Cost":307,"Date":"11/25/2023"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":8,"Cost":4,"Date":"1/10/2024"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":357,"Cost":208,"Date":"1/14/2024"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":503,"Cost":314,"Date":"1/20/2024"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":387,"Cost":291,"Date":"2/8/2024"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":707,"Cost":466,"Date":"2/25/2024"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":905,"Cost":591,"Date":"3/7/2024"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":239,"Cost":223,"Date":"3/14/2024"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":360,"Cost":254,"Date":"3/27/2024"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":425,"Cost":381,"Date":"4/5/2024"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":537,"Cost":344,"Date":"4/14/2024"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":577,"Cost":497,"Date":"5/3/2024"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":697,"Cost":380,"Date":"5/9/2024"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":64,"Cost":37,"Date":"5/15/2024"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":786,"Cost":440,"Date":"5/25/2024"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":759,"Cost":660,"Date":"5/26/2024"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":486,"Cost":373,"Date":"5/31/2024"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":610,"Cost":552,"Date":"7/27/2024"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":790,"Cost":742,"Date":"9/17/2024"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":502,"Cost":282,"Date":"10/6/2024"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":469,"Cost":403,"Date":"10/8/2024"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":100,"Cost":78,"Date":"10/26/2024"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":847,"Cost":470,"Date":"11/16/2024"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":862,"Cost":485,"Date":"11/18/2024"},{"Store":"Mall Galleria Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":615,"Cost":519,"Date":"12/1/2024"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":99,"Cost":65,"Date":"2/9/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":125,"Cost":71,"Date":"2/11/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":545,"Cost":289,"Date":"3/10/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":973,"Cost":625,"Date":"3/16/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":644,"Cost":337,"Date":"3/18/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":205,"Cost":110,"Date":"3/20/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":44,"Cost":32,"Date":"3/26/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":860,"Cost":543,"Date":"6/2/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":901,"Cost":740,"Date":"6/10/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":999,"Cost":558,"Date":"6/16/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":193,"Cost":142,"Date":"6/25/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":908,"Cost":702,"Date":"7/19/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":87,"Cost":82,"Date":"7/21/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":981,"Cost":677,"Date":"7/25/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":862,"Cost":755,"Date":"8/4/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":748,"Cost":386,"Date":"9/2/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":250,"Cost":197,"Date":"9/4/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":789,"Cost":517,"Date":"9/19/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":446,"Cost":334,"Date":"9/29/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":902,"Cost":495,"Date":"10/2/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":194,"Cost":166,"Date":"10/15/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":656,"Cost":482,"Date":"10/30/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":320,"Cost":235,"Date":"11/9/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":242,"Cost":185,"Date":"11/23/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":675,"Cost":562,"Date":"11/30/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":875,"Cost":459,"Date":"12/8/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":571,"Cost":344,"Date":"12/11/2018"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":373,"Cost":321,"Date":"1/15/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":848,"Cost":616,"Date":"1/24/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":333,"Cost":239,"Date":"2/3/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":760,"Cost":600,"Date":"2/4/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":716,"Cost":401,"Date":"3/9/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":994,"Cost":902,"Date":"3/12/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":731,"Cost":419,"Date":"4/19/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":769,"Cost":441,"Date":"5/3/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":103,"Cost":67,"Date":"5/4/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":339,"Cost":199,"Date":"6/8/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":911,"Cost":601,"Date":"6/26/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":911,"Cost":673,"Date":"7/4/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":388,"Cost":308,"Date":"7/13/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":577,"Cost":457,"Date":"8/8/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":654,"Cost":447,"Date":"8/26/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":600,"Cost":301,"Date":"9/2/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":935,"Cost":886,"Date":"9/29/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":469,"Cost":424,"Date":"10/12/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":954,"Cost":886,"Date":"11/2/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":468,"Cost":382,"Date":"11/4/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":436,"Cost":375,"Date":"11/7/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":156,"Cost":112,"Date":"12/1/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":708,"Cost":422,"Date":"12/4/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":963,"Cost":621,"Date":"12/7/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":386,"Cost":210,"Date":"12/18/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":690,"Cost":483,"Date":"12/20/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":887,"Cost":723,"Date":"12/20/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":556,"Cost":384,"Date":"12/21/2019"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":662,"Cost":418,"Date":"1/9/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":621,"Cost":490,"Date":"2/5/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":476,"Cost":377,"Date":"2/16/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":245,"Cost":178,"Date":"2/16/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":754,"Cost":428,"Date":"2/18/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":594,"Cost":410,"Date":"2/22/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":960,"Cost":853,"Date":"2/25/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":419,"Cost":231,"Date":"3/8/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":108,"Cost":91,"Date":"4/2/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":824,"Cost":604,"Date":"4/3/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":692,"Cost":393,"Date":"4/9/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":805,"Cost":404,"Date":"4/10/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":267,"Cost":184,"Date":"4/19/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":407,"Cost":370,"Date":"5/17/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":426,"Cost":328,"Date":"5/22/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":903,"Cost":654,"Date":"6/20/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":267,"Cost":238,"Date":"7/1/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":533,"Cost":376,"Date":"7/4/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":768,"Cost":568,"Date":"7/8/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":122,"Cost":86,"Date":"7/9/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":307,"Cost":289,"Date":"7/14/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":43,"Cost":27,"Date":"7/19/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":272,"Cost":193,"Date":"8/1/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":477,"Cost":405,"Date":"8/6/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":183,"Cost":161,"Date":"8/7/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":56,"Cost":38,"Date":"8/22/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":831,"Cost":653,"Date":"8/31/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":479,"Cost":375,"Date":"9/1/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":621,"Cost":486,"Date":"9/1/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":706,"Cost":572,"Date":"9/17/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":681,"Cost":583,"Date":"9/29/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":182,"Cost":113,"Date":"11/7/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":421,"Cost":326,"Date":"11/26/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":6,"Cost":3,"Date":"11/27/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":858,"Cost":704,"Date":"12/5/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":680,"Cost":623,"Date":"12/26/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":220,"Cost":112,"Date":"12/31/2020"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":480,"Cost":367,"Date":"1/20/2021"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":290,"Cost":247,"Date":"2/2/2021"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":762,"Cost":685,"Date":"2/8/2021"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":223,"Cost":195,"Date":"2/27/2021"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":560,"Cost":460,"Date":"3/1/2021"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":554,"Cost":419,"Date":"3/1/2021"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":69,"Cost":48,"Date":"3/19/2021"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":115,"Cost":72,"Date":"3/28/2021"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":227,"Cost":180,"Date":"5/21/2021"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":383,"Cost":263,"Date":"7/21/2021"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":595,"Cost":423,"Date":"8/5/2021"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":414,"Cost":288,"Date":"8/12/2021"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":678,"Cost":341,"Date":"8/21/2021"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":877,"Cost":515,"Date":"8/23/2021"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":965,"Cost":487,"Date":"9/3/2021"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":530,"Cost":477,"Date":"9/5/2021"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":614,"Cost":475,"Date":"10/6/2021"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":835,"Cost":470,"Date":"10/19/2021"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":38,"Cost":31,"Date":"11/15/2021"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":419,"Cost":338,"Date":"12/8/2021"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":186,"Cost":109,"Date":"1/8/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":692,"Cost":402,"Date":"1/14/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":465,"Cost":246,"Date":"1/19/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":4,"Cost":4,"Date":"1/28/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":295,"Cost":208,"Date":"1/31/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":995,"Cost":913,"Date":"3/27/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":863,"Cost":437,"Date":"4/20/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":265,"Cost":232,"Date":"4/24/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":782,"Cost":434,"Date":"4/28/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":467,"Cost":326,"Date":"5/15/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":570,"Cost":327,"Date":"5/16/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":296,"Cost":264,"Date":"5/18/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":902,"Cost":804,"Date":"6/2/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":386,"Cost":329,"Date":"6/3/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":389,"Cost":354,"Date":"6/5/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":923,"Cost":703,"Date":"6/7/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":668,"Cost":506,"Date":"6/14/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":806,"Cost":567,"Date":"6/20/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":67,"Cost":43,"Date":"6/24/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":601,"Cost":437,"Date":"7/4/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":370,"Cost":294,"Date":"7/9/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":548,"Cost":302,"Date":"7/12/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":937,"Cost":742,"Date":"8/14/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":360,"Cost":294,"Date":"8/16/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":89,"Cost":55,"Date":"8/23/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":830,"Cost":644,"Date":"9/2/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":821,"Cost":452,"Date":"9/3/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":144,"Cost":98,"Date":"9/16/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":588,"Cost":469,"Date":"10/4/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":559,"Cost":432,"Date":"11/1/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":583,"Cost":315,"Date":"11/2/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":861,"Cost":575,"Date":"12/17/2022"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":587,"Cost":377,"Date":"2/10/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":749,"Cost":492,"Date":"2/28/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":140,"Cost":117,"Date":"3/4/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":828,"Cost":510,"Date":"3/9/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":818,"Cost":463,"Date":"3/9/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":594,"Cost":350,"Date":"3/11/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":435,"Cost":399,"Date":"3/17/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":8,"Cost":5,"Date":"3/17/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":36,"Cost":18,"Date":"3/23/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":648,"Cost":374,"Date":"4/1/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":727,"Cost":688,"Date":"5/7/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":102,"Cost":74,"Date":"5/10/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":972,"Cost":811,"Date":"5/20/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":450,"Cost":327,"Date":"6/2/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":777,"Cost":545,"Date":"6/11/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":519,"Cost":431,"Date":"6/16/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":914,"Cost":665,"Date":"6/16/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":162,"Cost":144,"Date":"7/10/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":316,"Cost":166,"Date":"7/11/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":379,"Cost":303,"Date":"8/28/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":79,"Cost":65,"Date":"8/29/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":603,"Cost":455,"Date":"8/31/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":100,"Cost":54,"Date":"9/8/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":131,"Cost":106,"Date":"9/13/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":918,"Cost":565,"Date":"9/14/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":824,"Cost":599,"Date":"9/19/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":413,"Cost":239,"Date":"9/25/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":263,"Cost":227,"Date":"10/4/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":294,"Cost":218,"Date":"10/10/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":879,"Cost":792,"Date":"10/17/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":113,"Cost":63,"Date":"10/28/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":698,"Cost":487,"Date":"10/30/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":533,"Cost":360,"Date":"11/1/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":63,"Cost":54,"Date":"11/15/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":674,"Cost":593,"Date":"11/25/2023"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":942,"Cost":485,"Date":"1/10/2024"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":96,"Cost":82,"Date":"1/14/2024"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":875,"Cost":726,"Date":"1/20/2024"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":318,"Cost":227,"Date":"2/8/2024"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":206,"Cost":166,"Date":"2/25/2024"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":685,"Cost":462,"Date":"3/7/2024"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":505,"Cost":351,"Date":"3/14/2024"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":401,"Cost":358,"Date":"3/27/2024"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":99,"Cost":69,"Date":"4/5/2024"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":240,"Cost":145,"Date":"4/14/2024"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":68,"Cost":42,"Date":"5/3/2024"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":21,"Cost":15,"Date":"5/9/2024"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":126,"Cost":114,"Date":"5/15/2024"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":88,"Cost":82,"Date":"5/25/2024"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":378,"Cost":347,"Date":"5/26/2024"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":175,"Cost":144,"Date":"5/31/2024"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":342,"Cost":318,"Date":"7/27/2024"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":382,"Cost":300,"Date":"9/17/2024"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":755,"Cost":426,"Date":"10/6/2024"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":269,"Cost":244,"Date":"10/8/2024"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":811,"Cost":439,"Date":"10/26/2024"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":64,"Cost":59,"Date":"11/16/2024"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":144,"Cost":91,"Date":"11/18/2024"},{"Store":"Mall Galleria Burgas","Brand":"Nova","Country":"Bulgaria","Sale":899,"Cost":774,"Date":"12/1/2024"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":930,"Cost":487,"Date":"2/9/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":409,"Cost":379,"Date":"2/11/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":567,"Cost":387,"Date":"3/10/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":883,"Cost":736,"Date":"3/16/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":970,"Cost":615,"Date":"3/18/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":105,"Cost":91,"Date":"3/20/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":853,"Cost":509,"Date":"3/26/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":753,"Cost":551,"Date":"6/2/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":633,"Cost":587,"Date":"6/10/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":279,"Cost":172,"Date":"6/16/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":800,"Cost":586,"Date":"6/25/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":728,"Cost":382,"Date":"7/19/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":285,"Cost":179,"Date":"7/21/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":160,"Cost":128,"Date":"7/25/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":707,"Cost":380,"Date":"8/4/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":113,"Cost":87,"Date":"9/2/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":353,"Cost":312,"Date":"9/4/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":1000,"Cost":565,"Date":"9/19/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":575,"Cost":494,"Date":"9/29/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":923,"Cost":668,"Date":"10/2/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":244,"Cost":223,"Date":"10/15/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":109,"Cost":87,"Date":"10/30/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":652,"Cost":417,"Date":"11/9/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":569,"Cost":302,"Date":"11/23/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":197,"Cost":176,"Date":"11/30/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":924,"Cost":615,"Date":"12/8/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":536,"Cost":451,"Date":"12/11/2018"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":576,"Cost":391,"Date":"1/15/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":902,"Cost":469,"Date":"1/24/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":138,"Cost":128,"Date":"2/3/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":334,"Cost":279,"Date":"2/4/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":268,"Cost":210,"Date":"3/9/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":257,"Cost":224,"Date":"3/12/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":307,"Cost":203,"Date":"4/19/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":665,"Cost":550,"Date":"5/3/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":577,"Cost":528,"Date":"5/4/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":850,"Cost":690,"Date":"6/8/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":342,"Cost":214,"Date":"6/26/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":127,"Cost":90,"Date":"7/4/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":60,"Cost":41,"Date":"7/13/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":205,"Cost":190,"Date":"8/8/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":962,"Cost":843,"Date":"8/26/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":432,"Cost":309,"Date":"9/2/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":179,"Cost":97,"Date":"9/29/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":245,"Cost":166,"Date":"10/12/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":560,"Cost":304,"Date":"11/2/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":714,"Cost":438,"Date":"11/4/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":880,"Cost":683,"Date":"11/7/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":698,"Cost":372,"Date":"12/1/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":223,"Cost":207,"Date":"12/4/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":423,"Cost":390,"Date":"12/7/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":399,"Cost":263,"Date":"12/18/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":647,"Cost":358,"Date":"12/20/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":460,"Cost":365,"Date":"12/20/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":59,"Cost":45,"Date":"12/21/2019"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":8,"Cost":6,"Date":"1/9/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":430,"Cost":400,"Date":"2/5/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":309,"Cost":171,"Date":"2/16/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":262,"Cost":237,"Date":"2/16/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":87,"Cost":77,"Date":"2/18/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":659,"Cost":331,"Date":"2/22/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":921,"Cost":872,"Date":"2/25/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":26,"Cost":24,"Date":"3/8/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":735,"Cost":423,"Date":"4/2/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":315,"Cost":210,"Date":"4/3/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":448,"Cost":327,"Date":"4/9/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":636,"Cost":433,"Date":"4/10/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":27,"Cost":24,"Date":"4/19/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":531,"Cost":330,"Date":"5/17/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":443,"Cost":410,"Date":"5/22/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":211,"Cost":192,"Date":"6/20/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":135,"Cost":91,"Date":"7/1/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":434,"Cost":316,"Date":"7/4/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":895,"Cost":484,"Date":"7/8/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":95,"Cost":48,"Date":"7/9/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":938,"Cost":574,"Date":"7/14/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":812,"Cost":432,"Date":"7/19/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":331,"Cost":282,"Date":"8/1/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":760,"Cost":450,"Date":"8/6/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":824,"Cost":633,"Date":"8/7/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":473,"Cost":352,"Date":"8/22/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":480,"Cost":445,"Date":"8/31/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":982,"Cost":695,"Date":"9/1/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":571,"Cost":441,"Date":"9/1/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":803,"Cost":697,"Date":"9/17/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":420,"Cost":312,"Date":"9/29/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":967,"Cost":828,"Date":"11/7/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":634,"Cost":518,"Date":"11/26/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":636,"Cost":585,"Date":"11/27/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":249,"Cost":129,"Date":"12/5/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":496,"Cost":335,"Date":"12/26/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":147,"Cost":116,"Date":"12/31/2020"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":749,"Cost":376,"Date":"1/20/2021"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":379,"Cost":356,"Date":"2/2/2021"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":982,"Cost":698,"Date":"2/8/2021"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":396,"Cost":259,"Date":"2/27/2021"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":338,"Cost":231,"Date":"3/1/2021"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":173,"Cost":117,"Date":"3/1/2021"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":128,"Cost":92,"Date":"3/19/2021"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":177,"Cost":136,"Date":"3/28/2021"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":849,"Cost":763,"Date":"5/21/2021"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":888,"Cost":517,"Date":"7/21/2021"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":787,"Cost":659,"Date":"8/5/2021"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":618,"Cost":554,"Date":"8/12/2021"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":757,"Cost":446,"Date":"8/21/2021"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":592,"Cost":435,"Date":"8/23/2021"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":170,"Cost":86,"Date":"9/3/2021"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":845,"Cost":481,"Date":"9/5/2021"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":340,"Cost":319,"Date":"10/6/2021"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":173,"Cost":159,"Date":"10/19/2021"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":655,"Cost":526,"Date":"11/15/2021"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":926,"Cost":643,"Date":"12/8/2021"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":29,"Cost":18,"Date":"1/8/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":563,"Cost":410,"Date":"1/14/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":598,"Cost":447,"Date":"1/19/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":1000,"Cost":905,"Date":"1/28/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":426,"Cost":259,"Date":"1/31/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":773,"Cost":710,"Date":"3/27/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":704,"Cost":378,"Date":"4/20/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":112,"Cost":82,"Date":"4/24/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":650,"Cost":399,"Date":"4/28/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":734,"Cost":667,"Date":"5/15/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":80,"Cost":43,"Date":"5/16/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":144,"Cost":88,"Date":"5/18/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":854,"Cost":671,"Date":"6/2/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":70,"Cost":64,"Date":"6/3/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":721,"Cost":553,"Date":"6/5/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":68,"Cost":48,"Date":"6/7/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":966,"Cost":756,"Date":"6/14/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":525,"Cost":266,"Date":"6/20/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":578,"Cost":375,"Date":"6/24/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":674,"Cost":557,"Date":"7/4/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":659,"Cost":528,"Date":"7/9/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":251,"Cost":200,"Date":"7/12/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":152,"Cost":80,"Date":"8/14/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":921,"Cost":731,"Date":"8/16/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":781,"Cost":736,"Date":"8/23/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":243,"Cost":194,"Date":"9/2/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":734,"Cost":676,"Date":"9/3/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":281,"Cost":261,"Date":"9/16/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":75,"Cost":54,"Date":"10/4/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":379,"Cost":208,"Date":"11/1/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":529,"Cost":489,"Date":"11/2/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":73,"Cost":62,"Date":"12/17/2022"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":285,"Cost":263,"Date":"2/10/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":105,"Cost":62,"Date":"2/28/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":297,"Cost":281,"Date":"3/4/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":301,"Cost":209,"Date":"3/9/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":416,"Cost":295,"Date":"3/9/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":687,"Cost":395,"Date":"3/11/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":334,"Cost":256,"Date":"3/17/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":281,"Cost":237,"Date":"3/17/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":884,"Cost":809,"Date":"3/23/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":804,"Cost":582,"Date":"4/1/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":783,"Cost":502,"Date":"5/7/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":144,"Cost":103,"Date":"5/10/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":883,"Cost":476,"Date":"5/20/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":942,"Cost":599,"Date":"6/2/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":42,"Cost":26,"Date":"6/11/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":562,"Cost":341,"Date":"6/16/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":87,"Cost":70,"Date":"6/16/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":998,"Cost":893,"Date":"7/10/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":386,"Cost":210,"Date":"7/11/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":219,"Cost":174,"Date":"8/28/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":851,"Cost":498,"Date":"8/29/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":587,"Cost":298,"Date":"8/31/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":594,"Cost":328,"Date":"9/8/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":741,"Cost":449,"Date":"9/13/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":827,"Cost":719,"Date":"9/14/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":153,"Cost":133,"Date":"9/19/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":198,"Cost":146,"Date":"9/25/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":903,"Cost":802,"Date":"10/4/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":800,"Cost":759,"Date":"10/10/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":884,"Cost":787,"Date":"10/17/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":207,"Cost":159,"Date":"10/28/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":885,"Cost":687,"Date":"10/30/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":356,"Cost":256,"Date":"11/1/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":603,"Cost":408,"Date":"11/15/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":249,"Cost":219,"Date":"11/25/2023"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":316,"Cost":289,"Date":"1/10/2024"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":583,"Cost":381,"Date":"1/14/2024"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":338,"Cost":199,"Date":"1/20/2024"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":497,"Cost":369,"Date":"2/8/2024"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":19,"Cost":16,"Date":"2/25/2024"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":559,"Cost":347,"Date":"3/7/2024"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":765,"Cost":549,"Date":"3/14/2024"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":729,"Cost":627,"Date":"3/27/2024"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":461,"Cost":358,"Date":"4/5/2024"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":746,"Cost":463,"Date":"4/14/2024"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":836,"Cost":565,"Date":"5/3/2024"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":919,"Cost":565,"Date":"5/9/2024"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":9,"Cost":8,"Date":"5/15/2024"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":679,"Cost":424,"Date":"5/25/2024"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":178,"Cost":124,"Date":"5/26/2024"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":459,"Cost":274,"Date":"5/31/2024"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":453,"Cost":295,"Date":"7/27/2024"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":736,"Cost":369,"Date":"9/17/2024"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":328,"Cost":236,"Date":"10/6/2024"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":50,"Cost":43,"Date":"10/8/2024"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":381,"Cost":335,"Date":"10/26/2024"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":38,"Cost":21,"Date":"11/16/2024"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":597,"Cost":415,"Date":"11/18/2024"},{"Store":"Mall Galleria Burgas","Brand":"HM","Country":"Bulgaria","Sale":862,"Cost":718,"Date":"12/1/2024"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":279,"Cost":254,"Date":"2/9/2018"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":278,"Cost":262,"Date":"2/11/2018"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":276,"Cost":193,"Date":"3/10/2018"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":109,"Cost":101,"Date":"3/16/2018"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":744,"Cost":381,"Date":"3/18/2018"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":114,"Cost":61,"Date":"3/20/2018"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":530,"Cost":441,"Date":"3/26/2018"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":808,"Cost":534,"Date":"6/2/2018"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":250,"Cost":224,"Date":"6/10/2018"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":902,"Cost":766,"Date":"6/16/2018"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":254,"Cost":217,"Date":"6/25/2018"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":541,"Cost":499,"Date":"7/19/2018"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":79,"Cost":75,"Date":"7/21/2018"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":719,"Cost":588,"Date":"7/25/2018"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":994,"Cost":638,"Date":"8/4/2018"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":899,"Cost":560,"Date":"9/2/2018"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":893,"Cost":522,"Date":"9/4/2018"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":663,"Cost":417,"Date":"9/19/2018"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":814,"Cost":660,"Date":"9/29/2018"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":506,"Cost":359,"Date":"10/2/2018"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":827,"Cost":558,"Date":"10/15/2018"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":399,"Cost":228,"Date":"10/30/2018"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":244,"Cost":170,"Date":"11/9/2018"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":443,"Cost":234,"Date":"11/23/2018"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":728,"Cost":569,"Date":"11/30/2018"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":289,"Cost":209,"Date":"12/8/2018"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":143,"Cost":125,"Date":"12/11/2018"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":952,"Cost":709,"Date":"1/15/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":503,"Cost":252,"Date":"1/24/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":573,"Cost":469,"Date":"2/3/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":920,"Cost":506,"Date":"2/4/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":400,"Cost":368,"Date":"3/9/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":349,"Cost":276,"Date":"3/12/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":844,"Cost":736,"Date":"4/19/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":50,"Cost":26,"Date":"5/3/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":258,"Cost":163,"Date":"5/4/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":85,"Cost":79,"Date":"6/8/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":952,"Cost":670,"Date":"6/26/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":952,"Cost":719,"Date":"7/4/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":787,"Cost":676,"Date":"7/13/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":141,"Cost":103,"Date":"8/8/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":897,"Cost":544,"Date":"8/26/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":23,"Cost":14,"Date":"9/2/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":500,"Cost":252,"Date":"9/29/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":500,"Cost":374,"Date":"10/12/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":723,"Cost":424,"Date":"11/2/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":21,"Cost":19,"Date":"11/4/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":546,"Cost":460,"Date":"11/7/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":730,"Cost":557,"Date":"12/1/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":664,"Cost":554,"Date":"12/4/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":511,"Cost":420,"Date":"12/7/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":975,"Cost":610,"Date":"12/18/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":518,"Cost":393,"Date":"12/20/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":923,"Cost":570,"Date":"12/20/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":752,"Cost":649,"Date":"12/21/2019"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":868,"Cost":547,"Date":"1/9/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":530,"Cost":453,"Date":"2/5/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":867,"Cost":714,"Date":"2/16/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":953,"Cost":699,"Date":"2/16/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":797,"Cost":692,"Date":"2/18/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":690,"Cost":376,"Date":"2/22/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":800,"Cost":494,"Date":"2/25/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":529,"Cost":344,"Date":"3/8/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":920,"Cost":771,"Date":"4/2/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":969,"Cost":833,"Date":"4/3/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":805,"Cost":413,"Date":"4/9/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":700,"Cost":487,"Date":"4/10/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":288,"Cost":167,"Date":"4/19/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":819,"Cost":692,"Date":"5/17/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":747,"Cost":464,"Date":"5/22/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":974,"Cost":667,"Date":"6/20/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":34,"Cost":30,"Date":"7/1/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":544,"Cost":493,"Date":"7/4/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":735,"Cost":379,"Date":"7/8/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":290,"Cost":214,"Date":"7/9/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":52,"Cost":32,"Date":"7/14/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":368,"Cost":339,"Date":"7/19/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":3,"Cost":2,"Date":"8/1/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":148,"Cost":99,"Date":"8/6/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":203,"Cost":189,"Date":"8/7/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":411,"Cost":232,"Date":"8/22/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":314,"Cost":218,"Date":"8/31/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":414,"Cost":378,"Date":"9/1/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":977,"Cost":628,"Date":"9/1/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":305,"Cost":276,"Date":"9/17/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":394,"Cost":343,"Date":"9/29/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":586,"Cost":408,"Date":"11/7/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":362,"Cost":283,"Date":"11/26/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":531,"Cost":301,"Date":"11/27/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":873,"Cost":436,"Date":"12/5/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":862,"Cost":613,"Date":"12/26/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":719,"Cost":674,"Date":"12/31/2020"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":620,"Cost":456,"Date":"1/20/2021"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":573,"Cost":311,"Date":"2/2/2021"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":898,"Cost":841,"Date":"2/8/2021"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":480,"Cost":409,"Date":"2/27/2021"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":24,"Cost":12,"Date":"3/1/2021"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":771,"Cost":656,"Date":"3/1/2021"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":577,"Cost":525,"Date":"3/19/2021"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":484,"Cost":404,"Date":"3/28/2021"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":481,"Cost":386,"Date":"5/21/2021"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":376,"Cost":329,"Date":"7/21/2021"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":505,"Cost":406,"Date":"8/5/2021"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":90,"Cost":86,"Date":"8/12/2021"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":236,"Cost":128,"Date":"8/21/2021"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":963,"Cost":735,"Date":"8/23/2021"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":445,"Cost":397,"Date":"9/3/2021"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":699,"Cost":362,"Date":"9/5/2021"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":606,"Cost":362,"Date":"10/6/2021"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":418,"Cost":368,"Date":"10/19/2021"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":489,"Cost":383,"Date":"11/15/2021"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":846,"Cost":702,"Date":"12/8/2021"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":293,"Cost":218,"Date":"1/8/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":954,"Cost":575,"Date":"1/14/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":42,"Cost":25,"Date":"1/19/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":224,"Cost":135,"Date":"1/28/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":2,"Cost":2,"Date":"1/31/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":487,"Cost":255,"Date":"3/27/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":579,"Cost":486,"Date":"4/20/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":691,"Cost":456,"Date":"4/24/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":503,"Cost":354,"Date":"4/28/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":61,"Cost":34,"Date":"5/15/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":648,"Cost":388,"Date":"5/16/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":773,"Cost":665,"Date":"5/18/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":65,"Cost":53,"Date":"6/2/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":714,"Cost":623,"Date":"6/3/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":431,"Cost":380,"Date":"6/5/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":30,"Cost":16,"Date":"6/7/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":7,"Cost":6,"Date":"6/14/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":799,"Cost":421,"Date":"6/20/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":729,"Cost":688,"Date":"6/24/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":950,"Cost":572,"Date":"7/4/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":356,"Cost":306,"Date":"7/9/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":880,"Cost":633,"Date":"7/12/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":90,"Cost":55,"Date":"8/14/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":390,"Cost":254,"Date":"8/16/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":913,"Cost":846,"Date":"8/23/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":125,"Cost":65,"Date":"9/2/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":865,"Cost":440,"Date":"9/3/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":269,"Cost":163,"Date":"9/16/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":676,"Cost":577,"Date":"10/4/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":269,"Cost":198,"Date":"11/1/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":659,"Cost":434,"Date":"11/2/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":330,"Cost":303,"Date":"12/17/2022"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":783,"Cost":538,"Date":"2/10/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":96,"Cost":59,"Date":"2/28/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":518,"Cost":290,"Date":"3/4/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":719,"Cost":683,"Date":"3/9/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":285,"Cost":174,"Date":"3/9/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":264,"Cost":238,"Date":"3/11/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":474,"Cost":382,"Date":"3/17/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":361,"Cost":265,"Date":"3/17/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":442,"Cost":380,"Date":"3/23/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":171,"Cost":104,"Date":"4/1/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":277,"Cost":180,"Date":"5/7/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":14,"Cost":9,"Date":"5/10/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":755,"Cost":674,"Date":"5/20/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":760,"Cost":545,"Date":"6/2/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":660,"Cost":415,"Date":"6/11/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":840,"Cost":572,"Date":"6/16/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":338,"Cost":243,"Date":"6/16/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":342,"Cost":292,"Date":"7/10/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":257,"Cost":180,"Date":"7/11/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":485,"Cost":334,"Date":"8/28/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":20,"Cost":10,"Date":"8/29/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":858,"Cost":605,"Date":"8/31/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":348,"Cost":308,"Date":"9/8/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":725,"Cost":481,"Date":"9/13/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":55,"Cost":36,"Date":"9/14/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":990,"Cost":896,"Date":"9/19/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":27,"Cost":24,"Date":"9/25/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":181,"Cost":158,"Date":"10/4/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":803,"Cost":413,"Date":"10/10/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":952,"Cost":869,"Date":"10/17/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":8,"Cost":4,"Date":"10/28/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":619,"Cost":578,"Date":"10/30/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":602,"Cost":520,"Date":"11/1/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":507,"Cost":290,"Date":"11/15/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":420,"Cost":351,"Date":"11/25/2023"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":808,"Cost":519,"Date":"1/10/2024"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":42,"Cost":40,"Date":"1/14/2024"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":908,"Cost":726,"Date":"1/20/2024"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":995,"Cost":937,"Date":"2/8/2024"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":999,"Cost":594,"Date":"2/25/2024"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":838,"Cost":676,"Date":"3/7/2024"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":319,"Cost":160,"Date":"3/14/2024"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":12,"Cost":6,"Date":"3/27/2024"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":160,"Cost":116,"Date":"4/5/2024"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":877,"Cost":797,"Date":"4/14/2024"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":589,"Cost":391,"Date":"5/3/2024"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":306,"Cost":242,"Date":"5/9/2024"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":592,"Cost":448,"Date":"5/15/2024"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":717,"Cost":522,"Date":"5/25/2024"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":705,"Cost":638,"Date":"5/26/2024"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":128,"Cost":74,"Date":"5/31/2024"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":209,"Cost":122,"Date":"7/27/2024"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":425,"Cost":359,"Date":"9/17/2024"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":676,"Cost":606,"Date":"10/6/2024"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":233,"Cost":136,"Date":"10/8/2024"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":715,"Cost":485,"Date":"10/26/2024"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":990,"Cost":779,"Date":"11/16/2024"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":467,"Cost":398,"Date":"11/18/2024"},{"Store":"The Mall Burgas","Brand":"Jeans","Country":"Bulgaria","Sale":578,"Cost":469,"Date":"12/1/2024"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":720,"Cost":454,"Date":"2/9/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":165,"Cost":117,"Date":"2/11/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":246,"Cost":124,"Date":"3/10/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":763,"Cost":626,"Date":"3/16/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":136,"Cost":99,"Date":"3/18/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":950,"Cost":527,"Date":"3/20/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":864,"Cost":647,"Date":"3/26/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":455,"Cost":408,"Date":"6/2/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":269,"Cost":166,"Date":"6/10/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":803,"Cost":719,"Date":"6/16/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":88,"Cost":49,"Date":"6/25/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":230,"Cost":151,"Date":"7/19/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":709,"Cost":522,"Date":"7/21/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":803,"Cost":536,"Date":"7/25/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":630,"Cost":552,"Date":"8/4/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":218,"Cost":123,"Date":"9/2/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":40,"Cost":25,"Date":"9/4/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":943,"Cost":521,"Date":"9/19/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":242,"Cost":132,"Date":"9/29/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":450,"Cost":334,"Date":"10/2/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":344,"Cost":234,"Date":"10/15/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":360,"Cost":219,"Date":"10/30/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":623,"Cost":324,"Date":"11/9/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":501,"Cost":305,"Date":"11/23/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":836,"Cost":503,"Date":"11/30/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":20,"Cost":14,"Date":"12/8/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":741,"Cost":502,"Date":"12/11/2018"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":244,"Cost":151,"Date":"1/15/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":679,"Cost":484,"Date":"1/24/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":236,"Cost":198,"Date":"2/3/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":986,"Cost":868,"Date":"2/4/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":166,"Cost":92,"Date":"3/9/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":63,"Cost":49,"Date":"3/12/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":268,"Cost":149,"Date":"4/19/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":73,"Cost":40,"Date":"5/3/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":963,"Cost":504,"Date":"5/4/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":347,"Cost":329,"Date":"6/8/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":798,"Cost":556,"Date":"6/26/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":276,"Cost":181,"Date":"7/4/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":702,"Cost":643,"Date":"7/13/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":659,"Cost":332,"Date":"8/8/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":89,"Cost":74,"Date":"8/26/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":40,"Cost":23,"Date":"9/2/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":892,"Cost":682,"Date":"9/29/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":963,"Cost":858,"Date":"10/12/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":144,"Cost":115,"Date":"11/2/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":228,"Cost":123,"Date":"11/4/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":130,"Cost":106,"Date":"11/7/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":612,"Cost":414,"Date":"12/1/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":720,"Cost":398,"Date":"12/4/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":165,"Cost":96,"Date":"12/7/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":52,"Cost":27,"Date":"12/18/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":651,"Cost":498,"Date":"12/20/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":127,"Cost":113,"Date":"12/20/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":80,"Cost":67,"Date":"12/21/2019"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":659,"Cost":445,"Date":"1/9/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":812,"Cost":728,"Date":"2/5/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":974,"Cost":667,"Date":"2/16/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":510,"Cost":268,"Date":"2/16/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":583,"Cost":530,"Date":"2/18/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":907,"Cost":507,"Date":"2/22/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":406,"Cost":246,"Date":"2/25/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":513,"Cost":438,"Date":"3/8/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":988,"Cost":735,"Date":"4/2/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":308,"Cost":192,"Date":"4/3/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":716,"Cost":408,"Date":"4/9/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":200,"Cost":131,"Date":"4/10/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":3,"Cost":1,"Date":"4/19/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":81,"Cost":43,"Date":"5/17/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":352,"Cost":179,"Date":"5/22/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":597,"Cost":397,"Date":"6/20/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":187,"Cost":157,"Date":"7/1/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":163,"Cost":115,"Date":"7/4/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":194,"Cost":132,"Date":"7/8/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":779,"Cost":522,"Date":"7/9/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":228,"Cost":117,"Date":"7/14/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":470,"Cost":356,"Date":"7/19/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":681,"Cost":483,"Date":"8/1/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":958,"Cost":907,"Date":"8/6/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":581,"Cost":366,"Date":"8/7/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":908,"Cost":707,"Date":"8/22/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":79,"Cost":39,"Date":"8/31/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":686,"Cost":475,"Date":"9/1/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":604,"Cost":321,"Date":"9/1/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":201,"Cost":178,"Date":"9/17/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":776,"Cost":613,"Date":"9/29/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":463,"Cost":249,"Date":"11/7/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":653,"Cost":348,"Date":"11/26/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":512,"Cost":268,"Date":"11/27/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":795,"Cost":603,"Date":"12/5/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":388,"Cost":230,"Date":"12/26/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":531,"Cost":284,"Date":"12/31/2020"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":107,"Cost":97,"Date":"1/20/2021"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":133,"Cost":75,"Date":"2/2/2021"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":315,"Cost":254,"Date":"2/8/2021"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":322,"Cost":232,"Date":"2/27/2021"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":799,"Cost":581,"Date":"3/1/2021"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":3,"Cost":2,"Date":"3/1/2021"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":42,"Cost":26,"Date":"3/19/2021"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":442,"Cost":268,"Date":"3/28/2021"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":484,"Cost":261,"Date":"5/21/2021"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":892,"Cost":621,"Date":"7/21/2021"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":570,"Cost":354,"Date":"8/5/2021"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":378,"Cost":216,"Date":"8/12/2021"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":97,"Cost":88,"Date":"8/21/2021"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":117,"Cost":85,"Date":"8/23/2021"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":71,"Cost":67,"Date":"9/3/2021"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":125,"Cost":69,"Date":"9/5/2021"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":497,"Cost":469,"Date":"10/6/2021"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":479,"Cost":333,"Date":"10/19/2021"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":617,"Cost":471,"Date":"11/15/2021"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":902,"Cost":467,"Date":"12/8/2021"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":139,"Cost":119,"Date":"1/8/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":90,"Cost":71,"Date":"1/14/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":214,"Cost":142,"Date":"1/19/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":509,"Cost":404,"Date":"1/28/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":996,"Cost":787,"Date":"1/31/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":583,"Cost":433,"Date":"3/27/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":919,"Cost":756,"Date":"4/20/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":249,"Cost":148,"Date":"4/24/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":368,"Cost":190,"Date":"4/28/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":322,"Cost":169,"Date":"5/15/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":930,"Cost":879,"Date":"5/16/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":567,"Cost":465,"Date":"5/18/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":849,"Cost":456,"Date":"6/2/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":584,"Cost":506,"Date":"6/3/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":479,"Cost":445,"Date":"6/5/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":281,"Cost":157,"Date":"6/7/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":365,"Cost":281,"Date":"6/14/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":621,"Cost":365,"Date":"6/20/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":735,"Cost":525,"Date":"6/24/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":468,"Cost":393,"Date":"7/4/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":903,"Cost":784,"Date":"7/9/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":339,"Cost":269,"Date":"7/12/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":902,"Cost":530,"Date":"8/14/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":968,"Cost":625,"Date":"8/16/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":360,"Cost":215,"Date":"8/23/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":775,"Cost":730,"Date":"9/2/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":965,"Cost":648,"Date":"9/3/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":218,"Cost":201,"Date":"9/16/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":650,"Cost":558,"Date":"10/4/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":698,"Cost":565,"Date":"11/1/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":260,"Cost":211,"Date":"11/2/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":292,"Cost":190,"Date":"12/17/2022"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":214,"Cost":165,"Date":"2/10/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":651,"Cost":386,"Date":"2/28/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":662,"Cost":579,"Date":"3/4/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":154,"Cost":93,"Date":"3/9/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":763,"Cost":701,"Date":"3/9/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":882,"Cost":468,"Date":"3/11/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":702,"Cost":542,"Date":"3/17/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":519,"Cost":398,"Date":"3/17/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":899,"Cost":749,"Date":"3/23/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":884,"Cost":654,"Date":"4/1/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":235,"Cost":186,"Date":"5/7/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":103,"Cost":82,"Date":"5/10/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":37,"Cost":29,"Date":"5/20/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":465,"Cost":355,"Date":"6/2/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":233,"Cost":193,"Date":"6/11/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":220,"Cost":209,"Date":"6/16/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":792,"Cost":411,"Date":"6/16/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":477,"Cost":353,"Date":"7/10/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":712,"Cost":662,"Date":"7/11/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":207,"Cost":104,"Date":"8/28/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":480,"Cost":402,"Date":"8/29/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":892,"Cost":648,"Date":"8/31/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":654,"Cost":471,"Date":"9/8/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":837,"Cost":619,"Date":"9/13/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":859,"Cost":558,"Date":"9/14/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":689,"Cost":601,"Date":"9/19/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":479,"Cost":347,"Date":"9/25/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":579,"Cost":316,"Date":"10/4/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":129,"Cost":70,"Date":"10/10/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":10,"Cost":6,"Date":"10/17/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":781,"Cost":458,"Date":"10/28/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":331,"Cost":299,"Date":"10/30/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":817,"Cost":736,"Date":"11/1/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":483,"Cost":383,"Date":"11/15/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":792,"Cost":712,"Date":"11/25/2023"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":345,"Cost":202,"Date":"1/10/2024"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":448,"Cost":231,"Date":"1/14/2024"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":657,"Cost":449,"Date":"1/20/2024"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":377,"Cost":298,"Date":"2/8/2024"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":811,"Cost":567,"Date":"2/25/2024"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":649,"Cost":399,"Date":"3/7/2024"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":198,"Cost":142,"Date":"3/14/2024"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":131,"Cost":120,"Date":"3/27/2024"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":379,"Cost":285,"Date":"4/5/2024"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":144,"Cost":133,"Date":"4/14/2024"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":405,"Cost":318,"Date":"5/3/2024"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":371,"Cost":242,"Date":"5/9/2024"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":718,"Cost":370,"Date":"5/15/2024"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":413,"Cost":233,"Date":"5/25/2024"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":529,"Cost":274,"Date":"5/26/2024"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":342,"Cost":183,"Date":"5/31/2024"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":316,"Cost":198,"Date":"7/27/2024"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":323,"Cost":300,"Date":"9/17/2024"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":458,"Cost":426,"Date":"10/6/2024"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":999,"Cost":554,"Date":"10/8/2024"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":644,"Cost":604,"Date":"10/26/2024"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":184,"Cost":106,"Date":"11/16/2024"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":182,"Cost":168,"Date":"11/18/2024"},{"Store":"The Mall Burgas","Brand":"HM","Country":"Bulgaria","Sale":373,"Cost":198,"Date":"12/1/2024"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":308,"Cost":226,"Date":"2/9/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":921,"Cost":652,"Date":"2/11/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":930,"Cost":614,"Date":"3/10/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":876,"Cost":522,"Date":"3/16/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":259,"Cost":156,"Date":"3/18/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":198,"Cost":122,"Date":"3/20/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":620,"Cost":551,"Date":"3/26/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":269,"Cost":171,"Date":"6/2/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":376,"Cost":308,"Date":"6/10/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":916,"Cost":845,"Date":"6/16/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":962,"Cost":727,"Date":"6/25/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":608,"Cost":327,"Date":"7/19/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":638,"Cost":333,"Date":"7/21/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":620,"Cost":488,"Date":"7/25/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":361,"Cost":203,"Date":"8/4/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":262,"Cost":202,"Date":"9/2/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":181,"Cost":105,"Date":"9/4/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":264,"Cost":161,"Date":"9/19/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":543,"Cost":397,"Date":"9/29/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":868,"Cost":440,"Date":"10/2/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":974,"Cost":633,"Date":"10/15/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":763,"Cost":420,"Date":"10/30/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":544,"Cost":324,"Date":"11/9/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":612,"Cost":489,"Date":"11/23/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":390,"Cost":318,"Date":"11/30/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":904,"Cost":713,"Date":"12/8/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":822,"Cost":591,"Date":"12/11/2018"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":890,"Cost":572,"Date":"1/15/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":86,"Cost":78,"Date":"1/24/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":406,"Cost":379,"Date":"2/3/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":432,"Cost":227,"Date":"2/4/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":767,"Cost":617,"Date":"3/9/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":390,"Cost":367,"Date":"3/12/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":327,"Cost":256,"Date":"4/19/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":397,"Cost":209,"Date":"5/3/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":527,"Cost":327,"Date":"5/4/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":181,"Cost":109,"Date":"6/8/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":231,"Cost":172,"Date":"6/26/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":778,"Cost":567,"Date":"7/4/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":529,"Cost":286,"Date":"7/13/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":194,"Cost":166,"Date":"8/8/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":976,"Cost":625,"Date":"8/26/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":819,"Cost":705,"Date":"9/2/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":104,"Cost":68,"Date":"9/29/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":717,"Cost":525,"Date":"10/12/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":664,"Cost":354,"Date":"11/2/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":932,"Cost":861,"Date":"11/4/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":986,"Cost":649,"Date":"11/7/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":678,"Cost":608,"Date":"12/1/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":377,"Cost":356,"Date":"12/4/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":307,"Cost":175,"Date":"12/7/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":93,"Cost":48,"Date":"12/18/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":658,"Cost":475,"Date":"12/20/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":267,"Cost":237,"Date":"12/20/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":985,"Cost":936,"Date":"12/21/2019"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":179,"Cost":155,"Date":"1/9/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":1,"Cost":0,"Date":"2/5/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":144,"Cost":110,"Date":"2/16/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":565,"Cost":497,"Date":"2/16/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":914,"Cost":665,"Date":"2/18/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":701,"Cost":619,"Date":"2/22/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":935,"Cost":756,"Date":"2/25/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":987,"Cost":741,"Date":"3/8/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":533,"Cost":436,"Date":"4/2/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":848,"Cost":451,"Date":"4/3/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":839,"Cost":610,"Date":"4/9/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":719,"Cost":551,"Date":"4/10/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":739,"Cost":585,"Date":"4/19/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":267,"Cost":222,"Date":"5/17/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":502,"Cost":302,"Date":"5/22/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":45,"Cost":23,"Date":"6/20/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":796,"Cost":738,"Date":"7/1/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":959,"Cost":632,"Date":"7/4/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":237,"Cost":139,"Date":"7/8/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":164,"Cost":127,"Date":"7/9/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":273,"Cost":213,"Date":"7/14/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":728,"Cost":366,"Date":"7/19/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":437,"Cost":267,"Date":"8/1/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":627,"Cost":374,"Date":"8/6/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":114,"Cost":62,"Date":"8/7/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":647,"Cost":429,"Date":"8/22/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":955,"Cost":759,"Date":"8/31/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":902,"Cost":838,"Date":"9/1/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":546,"Cost":461,"Date":"9/1/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":757,"Cost":712,"Date":"9/17/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":456,"Cost":429,"Date":"9/29/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":167,"Cost":151,"Date":"11/7/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":211,"Cost":179,"Date":"11/26/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":504,"Cost":410,"Date":"11/27/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":127,"Cost":103,"Date":"12/5/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":783,"Cost":725,"Date":"12/26/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":571,"Cost":542,"Date":"12/31/2020"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":637,"Cost":603,"Date":"1/20/2021"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":611,"Cost":530,"Date":"2/2/2021"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":290,"Cost":273,"Date":"2/8/2021"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":859,"Cost":429,"Date":"2/27/2021"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":546,"Cost":440,"Date":"3/1/2021"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":326,"Cost":268,"Date":"3/1/2021"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":955,"Cost":659,"Date":"3/19/2021"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":331,"Cost":302,"Date":"3/28/2021"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":285,"Cost":178,"Date":"5/21/2021"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":123,"Cost":69,"Date":"7/21/2021"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":304,"Cost":266,"Date":"8/5/2021"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":613,"Cost":395,"Date":"8/12/2021"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":544,"Cost":496,"Date":"8/21/2021"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":427,"Cost":343,"Date":"8/23/2021"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":781,"Cost":514,"Date":"9/3/2021"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":853,"Cost":479,"Date":"9/5/2021"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":615,"Cost":457,"Date":"10/6/2021"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":242,"Cost":188,"Date":"10/19/2021"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":348,"Cost":256,"Date":"11/15/2021"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":219,"Cost":169,"Date":"12/8/2021"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":641,"Cost":572,"Date":"1/8/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":981,"Cost":835,"Date":"1/14/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":13,"Cost":8,"Date":"1/19/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":339,"Cost":226,"Date":"1/28/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":367,"Cost":185,"Date":"1/31/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":206,"Cost":146,"Date":"3/27/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":536,"Cost":316,"Date":"4/20/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":248,"Cost":158,"Date":"4/24/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":827,"Cost":724,"Date":"4/28/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":114,"Cost":76,"Date":"5/15/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":782,"Cost":409,"Date":"5/16/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":17,"Cost":13,"Date":"5/18/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":460,"Cost":405,"Date":"6/2/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":311,"Cost":226,"Date":"6/3/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":461,"Cost":232,"Date":"6/5/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":182,"Cost":119,"Date":"6/7/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":637,"Cost":568,"Date":"6/14/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":429,"Cost":247,"Date":"6/20/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":835,"Cost":627,"Date":"6/24/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":683,"Cost":420,"Date":"7/4/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":78,"Cost":53,"Date":"7/9/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":747,"Cost":512,"Date":"7/12/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":104,"Cost":63,"Date":"8/14/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":389,"Cost":357,"Date":"8/16/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":882,"Cost":515,"Date":"8/23/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":179,"Cost":140,"Date":"9/2/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":538,"Cost":448,"Date":"9/3/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":218,"Cost":147,"Date":"9/16/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":696,"Cost":594,"Date":"10/4/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":699,"Cost":386,"Date":"11/1/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":290,"Cost":196,"Date":"11/2/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":978,"Cost":808,"Date":"12/17/2022"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":653,"Cost":537,"Date":"2/10/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":796,"Cost":560,"Date":"2/28/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":117,"Cost":95,"Date":"3/4/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":301,"Cost":219,"Date":"3/9/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":555,"Cost":364,"Date":"3/9/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":537,"Cost":321,"Date":"3/11/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":281,"Cost":184,"Date":"3/17/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":524,"Cost":306,"Date":"3/17/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":935,"Cost":563,"Date":"3/23/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":357,"Cost":248,"Date":"4/1/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":546,"Cost":307,"Date":"5/7/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":587,"Cost":408,"Date":"5/10/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":73,"Cost":55,"Date":"5/20/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":883,"Cost":707,"Date":"6/2/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":958,"Cost":754,"Date":"6/11/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":346,"Cost":271,"Date":"6/16/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":289,"Cost":263,"Date":"6/16/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":508,"Cost":410,"Date":"7/10/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":233,"Cost":182,"Date":"7/11/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":617,"Cost":451,"Date":"8/28/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":927,"Cost":802,"Date":"8/29/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":769,"Cost":685,"Date":"8/31/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":654,"Cost":500,"Date":"9/8/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":378,"Cost":341,"Date":"9/13/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":166,"Cost":107,"Date":"9/14/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":964,"Cost":594,"Date":"9/19/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":609,"Cost":424,"Date":"9/25/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":187,"Cost":140,"Date":"10/4/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":282,"Cost":215,"Date":"10/10/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":825,"Cost":674,"Date":"10/17/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":23,"Cost":16,"Date":"10/28/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":90,"Cost":58,"Date":"10/30/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":428,"Cost":346,"Date":"11/1/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":556,"Cost":463,"Date":"11/15/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":34,"Cost":23,"Date":"11/25/2023"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":972,"Cost":652,"Date":"1/10/2024"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":454,"Cost":426,"Date":"1/14/2024"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":395,"Cost":365,"Date":"1/20/2024"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":569,"Cost":410,"Date":"2/8/2024"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":624,"Cost":532,"Date":"2/25/2024"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":289,"Cost":229,"Date":"3/7/2024"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":951,"Cost":807,"Date":"3/14/2024"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":318,"Cost":236,"Date":"3/27/2024"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":893,"Cost":480,"Date":"4/5/2024"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":832,"Cost":468,"Date":"4/14/2024"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":408,"Cost":274,"Date":"5/3/2024"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":748,"Cost":670,"Date":"5/9/2024"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":918,"Cost":824,"Date":"5/15/2024"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":869,"Cost":775,"Date":"5/25/2024"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":866,"Cost":515,"Date":"5/26/2024"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":367,"Cost":286,"Date":"5/31/2024"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":90,"Cost":52,"Date":"7/27/2024"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":873,"Cost":496,"Date":"9/17/2024"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":484,"Cost":303,"Date":"10/6/2024"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":492,"Cost":390,"Date":"10/8/2024"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":699,"Cost":448,"Date":"10/26/2024"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":948,"Cost":860,"Date":"11/16/2024"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":152,"Cost":78,"Date":"11/18/2024"},{"Store":"The Mall Burgas","Brand":"ARKET","Country":"Bulgaria","Sale":523,"Cost":471,"Date":"12/1/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":764,"Cost":699,"Date":"2/9/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":38,"Cost":19,"Date":"2/11/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":393,"Cost":297,"Date":"3/10/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":739,"Cost":498,"Date":"3/16/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":577,"Cost":535,"Date":"3/18/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":329,"Cost":172,"Date":"3/20/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":439,"Cost":266,"Date":"3/26/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":362,"Cost":215,"Date":"6/2/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":304,"Cost":275,"Date":"6/10/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":499,"Cost":270,"Date":"6/16/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":852,"Cost":752,"Date":"6/25/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":329,"Cost":247,"Date":"7/19/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":666,"Cost":384,"Date":"7/21/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":471,"Cost":268,"Date":"7/25/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":435,"Cost":401,"Date":"8/4/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":379,"Cost":223,"Date":"9/2/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":63,"Cost":52,"Date":"9/4/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":411,"Cost":367,"Date":"9/19/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":929,"Cost":488,"Date":"9/29/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":302,"Cost":224,"Date":"10/2/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":114,"Cost":98,"Date":"10/15/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":974,"Cost":884,"Date":"10/30/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":650,"Cost":429,"Date":"11/9/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":174,"Cost":125,"Date":"11/23/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":691,"Cost":568,"Date":"11/30/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":248,"Cost":179,"Date":"12/8/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":736,"Cost":614,"Date":"12/11/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":688,"Cost":487,"Date":"1/15/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":496,"Cost":361,"Date":"1/24/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":415,"Cost":248,"Date":"2/3/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":924,"Cost":538,"Date":"2/4/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":921,"Cost":795,"Date":"3/9/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":465,"Cost":240,"Date":"3/12/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":942,"Cost":474,"Date":"4/19/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":935,"Cost":722,"Date":"5/3/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":287,"Cost":157,"Date":"5/4/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":613,"Cost":516,"Date":"6/8/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":363,"Cost":314,"Date":"6/26/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":241,"Cost":123,"Date":"7/4/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":740,"Cost":444,"Date":"7/13/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":360,"Cost":260,"Date":"8/8/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":377,"Cost":313,"Date":"8/26/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":750,"Cost":633,"Date":"9/2/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":948,"Cost":881,"Date":"9/29/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":973,"Cost":771,"Date":"10/12/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":343,"Cost":174,"Date":"11/2/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":90,"Cost":70,"Date":"11/4/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":352,"Cost":308,"Date":"11/7/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":786,"Cost":701,"Date":"12/1/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":565,"Cost":401,"Date":"12/4/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":30,"Cost":23,"Date":"12/7/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":252,"Cost":184,"Date":"12/18/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":905,"Cost":852,"Date":"12/20/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":261,"Cost":224,"Date":"12/20/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":634,"Cost":407,"Date":"12/21/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":947,"Cost":699,"Date":"1/9/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":656,"Cost":439,"Date":"2/5/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":45,"Cost":33,"Date":"2/16/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":322,"Cost":213,"Date":"2/16/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":770,"Cost":443,"Date":"2/18/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":222,"Cost":135,"Date":"2/22/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":840,"Cost":530,"Date":"2/25/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":927,"Cost":868,"Date":"3/8/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":546,"Cost":369,"Date":"4/2/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":385,"Cost":279,"Date":"4/3/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":152,"Cost":102,"Date":"4/9/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":295,"Cost":265,"Date":"4/10/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":369,"Cost":312,"Date":"4/19/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":889,"Cost":839,"Date":"5/17/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":521,"Cost":266,"Date":"5/22/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":167,"Cost":90,"Date":"6/20/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":249,"Cost":154,"Date":"7/1/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":183,"Cost":167,"Date":"7/4/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":400,"Cost":207,"Date":"7/8/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":688,"Cost":363,"Date":"7/9/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":372,"Cost":244,"Date":"7/14/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":994,"Cost":875,"Date":"7/19/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":522,"Cost":442,"Date":"8/1/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":385,"Cost":237,"Date":"8/6/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":768,"Cost":669,"Date":"8/7/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":121,"Cost":112,"Date":"8/22/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":448,"Cost":381,"Date":"8/31/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":673,"Cost":423,"Date":"9/1/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":294,"Cost":241,"Date":"9/1/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":107,"Cost":101,"Date":"9/17/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":690,"Cost":621,"Date":"9/29/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":695,"Cost":394,"Date":"11/7/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":41,"Cost":35,"Date":"11/26/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":652,"Cost":523,"Date":"11/27/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":318,"Cost":256,"Date":"12/5/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":875,"Cost":724,"Date":"12/26/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":65,"Cost":55,"Date":"12/31/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":651,"Cost":370,"Date":"1/20/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":729,"Cost":587,"Date":"2/2/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":207,"Cost":185,"Date":"2/8/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":62,"Cost":51,"Date":"2/27/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":905,"Cost":481,"Date":"3/1/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":114,"Cost":71,"Date":"3/1/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":827,"Cost":525,"Date":"3/19/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":50,"Cost":48,"Date":"3/28/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":168,"Cost":85,"Date":"5/21/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":408,"Cost":206,"Date":"7/21/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":977,"Cost":867,"Date":"8/5/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":127,"Cost":64,"Date":"8/12/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":60,"Cost":56,"Date":"8/21/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":192,"Cost":120,"Date":"8/23/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":168,"Cost":124,"Date":"9/3/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":377,"Cost":225,"Date":"9/5/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":771,"Cost":597,"Date":"10/6/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":243,"Cost":157,"Date":"10/19/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":265,"Cost":197,"Date":"11/15/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":501,"Cost":313,"Date":"12/8/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":626,"Cost":514,"Date":"1/8/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":760,"Cost":441,"Date":"1/14/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":244,"Cost":139,"Date":"1/19/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":189,"Cost":153,"Date":"1/28/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":102,"Cost":91,"Date":"1/31/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":570,"Cost":345,"Date":"3/27/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":817,"Cost":713,"Date":"4/20/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":273,"Cost":186,"Date":"4/24/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":281,"Cost":179,"Date":"4/28/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":527,"Cost":352,"Date":"5/15/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":198,"Cost":107,"Date":"5/16/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":449,"Cost":332,"Date":"5/18/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":953,"Cost":499,"Date":"6/2/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":11,"Cost":11,"Date":"6/3/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":977,"Cost":562,"Date":"6/5/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":485,"Cost":309,"Date":"6/7/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":573,"Cost":318,"Date":"6/14/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":480,"Cost":285,"Date":"6/20/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":176,"Cost":132,"Date":"6/24/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":28,"Cost":15,"Date":"7/4/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":551,"Cost":361,"Date":"7/9/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":549,"Cost":343,"Date":"7/12/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":471,"Cost":280,"Date":"8/14/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":105,"Cost":96,"Date":"8/16/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":956,"Cost":551,"Date":"8/23/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":294,"Cost":256,"Date":"9/2/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":579,"Cost":331,"Date":"9/3/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":837,"Cost":789,"Date":"9/16/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":633,"Cost":464,"Date":"10/4/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":21,"Cost":17,"Date":"11/1/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":522,"Cost":444,"Date":"11/2/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":404,"Cost":294,"Date":"12/17/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":661,"Cost":456,"Date":"2/10/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":588,"Cost":503,"Date":"2/28/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":723,"Cost":390,"Date":"3/4/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":931,"Cost":596,"Date":"3/9/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":774,"Cost":550,"Date":"3/9/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":494,"Cost":333,"Date":"3/11/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":718,"Cost":457,"Date":"3/17/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":548,"Cost":330,"Date":"3/17/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":837,"Cost":687,"Date":"3/23/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":466,"Cost":385,"Date":"4/1/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":825,"Cost":609,"Date":"5/7/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":536,"Cost":417,"Date":"5/10/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":479,"Cost":411,"Date":"5/20/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":648,"Cost":390,"Date":"6/2/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":662,"Cost":555,"Date":"6/11/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":666,"Cost":384,"Date":"6/16/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":711,"Cost":578,"Date":"6/16/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":620,"Cost":366,"Date":"7/10/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":76,"Cost":43,"Date":"7/11/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":267,"Cost":222,"Date":"8/28/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":127,"Cost":63,"Date":"8/29/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":593,"Cost":318,"Date":"8/31/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":769,"Cost":717,"Date":"9/8/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":375,"Cost":313,"Date":"9/13/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":899,"Cost":663,"Date":"9/14/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":857,"Cost":766,"Date":"9/19/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":927,"Cost":661,"Date":"9/25/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":110,"Cost":103,"Date":"10/4/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":473,"Cost":311,"Date":"10/10/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":464,"Cost":383,"Date":"10/17/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":272,"Cost":201,"Date":"10/28/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":678,"Cost":507,"Date":"10/30/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":1,"Cost":0,"Date":"11/1/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":767,"Cost":425,"Date":"11/15/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":534,"Cost":326,"Date":"11/25/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":611,"Cost":321,"Date":"1/10/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":70,"Cost":55,"Date":"1/14/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":465,"Cost":328,"Date":"1/20/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":752,"Cost":647,"Date":"2/8/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":903,"Cost":496,"Date":"2/25/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":105,"Cost":81,"Date":"3/7/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":961,"Cost":753,"Date":"3/14/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":622,"Cost":411,"Date":"3/27/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":48,"Cost":43,"Date":"4/5/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":113,"Cost":63,"Date":"4/14/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":549,"Cost":299,"Date":"5/3/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":900,"Cost":727,"Date":"5/9/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":845,"Cost":495,"Date":"5/15/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":314,"Cost":216,"Date":"5/25/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":19,"Cost":18,"Date":"5/26/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":923,"Cost":857,"Date":"5/31/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":358,"Cost":211,"Date":"7/27/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":999,"Cost":785,"Date":"9/17/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":471,"Cost":253,"Date":"10/6/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":879,"Cost":525,"Date":"10/8/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":616,"Cost":343,"Date":"10/26/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":443,"Cost":238,"Date":"11/16/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":978,"Cost":510,"Date":"11/18/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":967,"Cost":892,"Date":"12/1/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":604,"Cost":362,"Date":"2/9/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":366,"Cost":255,"Date":"2/11/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":941,"Cost":798,"Date":"3/10/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":967,"Cost":867,"Date":"3/16/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":568,"Cost":528,"Date":"3/18/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":508,"Cost":303,"Date":"3/20/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":644,"Cost":549,"Date":"3/26/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":703,"Cost":567,"Date":"6/2/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":544,"Cost":341,"Date":"6/10/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":91,"Cost":66,"Date":"6/16/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":668,"Cost":607,"Date":"6/25/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":582,"Cost":317,"Date":"7/19/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":86,"Cost":79,"Date":"7/21/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":592,"Cost":368,"Date":"7/25/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":5,"Cost":4,"Date":"8/4/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":462,"Cost":405,"Date":"9/2/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":110,"Cost":56,"Date":"9/4/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":604,"Cost":316,"Date":"9/19/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":361,"Cost":246,"Date":"9/29/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":797,"Cost":447,"Date":"10/2/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":455,"Cost":325,"Date":"10/15/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":303,"Cost":192,"Date":"10/30/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":402,"Cost":304,"Date":"11/9/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":779,"Cost":622,"Date":"11/23/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":725,"Cost":497,"Date":"11/30/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":830,"Cost":645,"Date":"12/8/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":726,"Cost":582,"Date":"12/11/2018"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":512,"Cost":416,"Date":"1/15/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":602,"Cost":409,"Date":"1/24/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":844,"Cost":500,"Date":"2/3/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":718,"Cost":406,"Date":"2/4/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":33,"Cost":27,"Date":"3/9/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":621,"Cost":434,"Date":"3/12/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":861,"Cost":726,"Date":"4/19/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":463,"Cost":395,"Date":"5/3/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":762,"Cost":655,"Date":"5/4/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":453,"Cost":343,"Date":"6/8/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":571,"Cost":386,"Date":"6/26/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":38,"Cost":33,"Date":"7/4/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":701,"Cost":486,"Date":"7/13/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":103,"Cost":68,"Date":"8/8/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":495,"Cost":354,"Date":"8/26/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":750,"Cost":640,"Date":"9/2/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":200,"Cost":171,"Date":"9/29/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":625,"Cost":519,"Date":"10/12/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":671,"Cost":607,"Date":"11/2/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":432,"Cost":262,"Date":"11/4/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":948,"Cost":707,"Date":"11/7/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":42,"Cost":33,"Date":"12/1/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":950,"Cost":521,"Date":"12/4/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":571,"Cost":426,"Date":"12/7/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":149,"Cost":118,"Date":"12/18/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":660,"Cost":352,"Date":"12/20/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":838,"Cost":728,"Date":"12/20/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":510,"Cost":361,"Date":"12/21/2019"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":156,"Cost":137,"Date":"1/9/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":420,"Cost":348,"Date":"2/5/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":958,"Cost":766,"Date":"2/16/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":114,"Cost":57,"Date":"2/16/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":403,"Cost":374,"Date":"2/18/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":246,"Cost":233,"Date":"2/22/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":737,"Cost":432,"Date":"2/25/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":605,"Cost":320,"Date":"3/8/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":13,"Cost":10,"Date":"4/2/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":363,"Cost":245,"Date":"4/3/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":584,"Cost":547,"Date":"4/9/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":251,"Cost":193,"Date":"4/10/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":719,"Cost":366,"Date":"4/19/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":895,"Cost":702,"Date":"5/17/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":286,"Cost":183,"Date":"5/22/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":84,"Cost":54,"Date":"6/20/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":974,"Cost":903,"Date":"7/1/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":797,"Cost":524,"Date":"7/4/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":789,"Cost":750,"Date":"7/8/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":432,"Cost":345,"Date":"7/9/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":430,"Cost":404,"Date":"7/14/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":135,"Cost":69,"Date":"7/19/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":369,"Cost":221,"Date":"8/1/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":255,"Cost":241,"Date":"8/6/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":291,"Cost":199,"Date":"8/7/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":498,"Cost":276,"Date":"8/22/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":382,"Cost":194,"Date":"8/31/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":916,"Cost":582,"Date":"9/1/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":386,"Cost":303,"Date":"9/1/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":251,"Cost":238,"Date":"9/17/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":273,"Cost":252,"Date":"9/29/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":256,"Cost":240,"Date":"11/7/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":857,"Cost":724,"Date":"11/26/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":114,"Cost":108,"Date":"11/27/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":348,"Cost":294,"Date":"12/5/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":125,"Cost":70,"Date":"12/26/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":183,"Cost":128,"Date":"12/31/2020"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":686,"Cost":553,"Date":"1/20/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":28,"Cost":26,"Date":"2/2/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":955,"Cost":554,"Date":"2/8/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":170,"Cost":88,"Date":"2/27/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":187,"Cost":105,"Date":"3/1/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":620,"Cost":389,"Date":"3/1/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":908,"Cost":587,"Date":"3/19/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":455,"Cost":412,"Date":"3/28/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":155,"Cost":96,"Date":"5/21/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":88,"Cost":54,"Date":"7/21/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":989,"Cost":797,"Date":"8/5/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":639,"Cost":602,"Date":"8/12/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":47,"Cost":40,"Date":"8/21/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":115,"Cost":84,"Date":"8/23/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":749,"Cost":664,"Date":"9/3/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":384,"Cost":290,"Date":"9/5/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":838,"Cost":499,"Date":"10/6/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":444,"Cost":420,"Date":"10/19/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":970,"Cost":560,"Date":"11/15/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":713,"Cost":423,"Date":"12/8/2021"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":379,"Cost":232,"Date":"1/8/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":374,"Cost":344,"Date":"1/14/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":1000,"Cost":941,"Date":"1/19/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":871,"Cost":773,"Date":"1/28/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":151,"Cost":105,"Date":"1/31/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":873,"Cost":578,"Date":"3/27/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":652,"Cost":489,"Date":"4/20/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":550,"Cost":406,"Date":"4/24/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":198,"Cost":162,"Date":"4/28/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":59,"Cost":43,"Date":"5/15/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":913,"Cost":689,"Date":"5/16/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":376,"Cost":273,"Date":"5/18/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":72,"Cost":37,"Date":"6/2/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":789,"Cost":587,"Date":"6/3/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":909,"Cost":863,"Date":"6/5/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":620,"Cost":397,"Date":"6/7/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":422,"Cost":245,"Date":"6/14/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":400,"Cost":219,"Date":"6/20/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":416,"Cost":330,"Date":"6/24/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":362,"Cost":196,"Date":"7/4/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":774,"Cost":688,"Date":"7/9/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":158,"Cost":140,"Date":"7/12/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":166,"Cost":152,"Date":"8/14/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":349,"Cost":240,"Date":"8/16/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":62,"Cost":37,"Date":"8/23/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":234,"Cost":143,"Date":"9/2/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":507,"Cost":383,"Date":"9/3/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":520,"Cost":465,"Date":"9/16/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":441,"Cost":387,"Date":"10/4/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":982,"Cost":750,"Date":"11/1/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":540,"Cost":378,"Date":"11/2/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":450,"Cost":372,"Date":"12/17/2022"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":619,"Cost":533,"Date":"2/10/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":42,"Cost":21,"Date":"2/28/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":381,"Cost":290,"Date":"3/4/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":288,"Cost":198,"Date":"3/9/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":119,"Cost":62,"Date":"3/9/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":540,"Cost":443,"Date":"3/11/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":469,"Cost":258,"Date":"3/17/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":509,"Cost":431,"Date":"3/17/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":81,"Cost":72,"Date":"3/23/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":633,"Cost":552,"Date":"4/1/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":147,"Cost":79,"Date":"5/7/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":675,"Cost":358,"Date":"5/10/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":743,"Cost":487,"Date":"5/20/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":399,"Cost":244,"Date":"6/2/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":658,"Cost":548,"Date":"6/11/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":200,"Cost":162,"Date":"6/16/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":653,"Cost":556,"Date":"6/16/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":767,"Cost":408,"Date":"7/10/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":903,"Cost":849,"Date":"7/11/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":335,"Cost":288,"Date":"8/28/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":18,"Cost":15,"Date":"8/29/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":278,"Cost":264,"Date":"8/31/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":781,"Cost":533,"Date":"9/8/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":865,"Cost":683,"Date":"9/13/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":358,"Cost":207,"Date":"9/14/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":237,"Cost":145,"Date":"9/19/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":312,"Cost":191,"Date":"9/25/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":711,"Cost":379,"Date":"10/4/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":144,"Cost":118,"Date":"10/10/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":136,"Cost":130,"Date":"10/17/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":28,"Cost":24,"Date":"10/28/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":875,"Cost":671,"Date":"10/30/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":178,"Cost":94,"Date":"11/1/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":967,"Cost":591,"Date":"11/15/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":285,"Cost":158,"Date":"11/25/2023"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":57,"Cost":53,"Date":"1/10/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":976,"Cost":592,"Date":"1/14/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":144,"Cost":90,"Date":"1/20/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":196,"Cost":137,"Date":"2/8/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":314,"Cost":232,"Date":"2/25/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":95,"Cost":84,"Date":"3/7/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":863,"Cost":613,"Date":"3/14/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":814,"Cost":671,"Date":"3/27/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":999,"Cost":852,"Date":"4/5/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":409,"Cost":339,"Date":"4/14/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":636,"Cost":530,"Date":"5/3/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":514,"Cost":439,"Date":"5/9/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":698,"Cost":575,"Date":"5/15/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":663,"Cost":358,"Date":"5/25/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":448,"Cost":294,"Date":"5/26/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":279,"Cost":152,"Date":"5/31/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":37,"Cost":22,"Date":"7/27/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":905,"Cost":858,"Date":"9/17/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":590,"Cost":319,"Date":"10/6/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":446,"Cost":340,"Date":"10/8/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":477,"Cost":370,"Date":"10/26/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":632,"Cost":356,"Date":"11/16/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":354,"Cost":286,"Date":"11/18/2024"},{"Store":"Ruse Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":7,"Cost":4,"Date":"12/1/2024"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":229,"Cost":130,"Date":"2/9/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":591,"Cost":369,"Date":"2/11/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":87,"Cost":75,"Date":"3/10/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":553,"Cost":357,"Date":"3/16/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":850,"Cost":554,"Date":"3/18/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":588,"Cost":527,"Date":"3/20/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":358,"Cost":300,"Date":"3/26/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":260,"Cost":171,"Date":"6/2/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":210,"Cost":179,"Date":"6/10/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":536,"Cost":384,"Date":"6/16/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":37,"Cost":33,"Date":"6/25/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":725,"Cost":631,"Date":"7/19/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":115,"Cost":103,"Date":"7/21/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":245,"Cost":125,"Date":"7/25/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":707,"Cost":398,"Date":"8/4/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":13,"Cost":13,"Date":"9/2/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":475,"Cost":374,"Date":"9/4/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":552,"Cost":393,"Date":"9/19/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":217,"Cost":202,"Date":"9/29/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":10,"Cost":5,"Date":"10/2/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":217,"Cost":109,"Date":"10/15/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":589,"Cost":317,"Date":"10/30/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":780,"Cost":524,"Date":"11/9/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":33,"Cost":26,"Date":"11/23/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":773,"Cost":653,"Date":"11/30/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":871,"Cost":519,"Date":"12/8/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":334,"Cost":239,"Date":"12/11/2018"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":391,"Cost":300,"Date":"1/15/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":743,"Cost":449,"Date":"1/24/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":630,"Cost":428,"Date":"2/3/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":398,"Cost":247,"Date":"2/4/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":531,"Cost":490,"Date":"3/9/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":984,"Cost":854,"Date":"3/12/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":504,"Cost":399,"Date":"4/19/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":591,"Cost":445,"Date":"5/3/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":896,"Cost":674,"Date":"5/4/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":6,"Cost":5,"Date":"6/8/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":901,"Cost":748,"Date":"6/26/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":268,"Cost":189,"Date":"7/4/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":621,"Cost":405,"Date":"7/13/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":790,"Cost":572,"Date":"8/8/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":790,"Cost":398,"Date":"8/26/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":13,"Cost":6,"Date":"9/2/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":754,"Cost":639,"Date":"9/29/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":938,"Cost":782,"Date":"10/12/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":778,"Cost":591,"Date":"11/2/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":573,"Cost":311,"Date":"11/4/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":390,"Cost":274,"Date":"11/7/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":285,"Cost":237,"Date":"12/1/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":761,"Cost":589,"Date":"12/4/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":379,"Cost":343,"Date":"12/7/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":286,"Cost":166,"Date":"12/18/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":925,"Cost":616,"Date":"12/20/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":505,"Cost":296,"Date":"12/20/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":141,"Cost":107,"Date":"12/21/2019"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":852,"Cost":670,"Date":"1/9/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":473,"Cost":320,"Date":"2/5/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":900,"Cost":681,"Date":"2/16/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":544,"Cost":463,"Date":"2/16/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":175,"Cost":164,"Date":"2/18/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":798,"Cost":452,"Date":"2/22/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":222,"Cost":170,"Date":"2/25/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":602,"Cost":438,"Date":"3/8/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":191,"Cost":167,"Date":"4/2/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":935,"Cost":858,"Date":"4/3/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":385,"Cost":279,"Date":"4/9/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":857,"Cost":699,"Date":"4/10/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":549,"Cost":462,"Date":"4/19/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":892,"Cost":711,"Date":"5/17/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":190,"Cost":95,"Date":"5/22/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":495,"Cost":466,"Date":"6/20/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":716,"Cost":657,"Date":"7/1/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":625,"Cost":455,"Date":"7/4/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":1,"Cost":1,"Date":"7/8/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":572,"Cost":312,"Date":"7/9/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":40,"Cost":27,"Date":"7/14/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":937,"Cost":777,"Date":"7/19/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":595,"Cost":563,"Date":"8/1/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":101,"Cost":68,"Date":"8/6/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":160,"Cost":99,"Date":"8/7/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":346,"Cost":176,"Date":"8/22/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":601,"Cost":469,"Date":"8/31/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":986,"Cost":836,"Date":"9/1/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":161,"Cost":87,"Date":"9/1/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":464,"Cost":326,"Date":"9/17/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":391,"Cost":270,"Date":"9/29/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":824,"Cost":780,"Date":"11/7/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":422,"Cost":280,"Date":"11/26/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":145,"Cost":100,"Date":"11/27/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":270,"Cost":166,"Date":"12/5/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":938,"Cost":766,"Date":"12/26/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":909,"Cost":768,"Date":"12/31/2020"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":80,"Cost":56,"Date":"1/20/2021"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":482,"Cost":329,"Date":"2/2/2021"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":137,"Cost":78,"Date":"2/8/2021"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":521,"Cost":309,"Date":"2/27/2021"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":254,"Cost":156,"Date":"3/1/2021"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":406,"Cost":241,"Date":"3/1/2021"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":440,"Cost":335,"Date":"3/19/2021"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":95,"Cost":68,"Date":"3/28/2021"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":919,"Cost":493,"Date":"5/21/2021"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":690,"Cost":473,"Date":"7/21/2021"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":933,"Cost":617,"Date":"8/5/2021"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":919,"Cost":509,"Date":"8/12/2021"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":219,"Cost":187,"Date":"8/21/2021"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":813,"Cost":595,"Date":"8/23/2021"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":356,"Cost":257,"Date":"9/3/2021"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":54,"Cost":45,"Date":"9/5/2021"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":907,"Cost":581,"Date":"10/6/2021"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":446,"Cost":421,"Date":"10/19/2021"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":589,"Cost":493,"Date":"11/15/2021"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":510,"Cost":459,"Date":"12/8/2021"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":499,"Cost":425,"Date":"1/8/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":556,"Cost":486,"Date":"1/14/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":838,"Cost":680,"Date":"1/19/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":289,"Cost":172,"Date":"1/28/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":819,"Cost":410,"Date":"1/31/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":711,"Cost":625,"Date":"3/27/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":764,"Cost":627,"Date":"4/20/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":540,"Cost":470,"Date":"4/24/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":622,"Cost":379,"Date":"4/28/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":754,"Cost":401,"Date":"5/15/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":70,"Cost":57,"Date":"5/16/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":552,"Cost":474,"Date":"5/18/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":452,"Cost":241,"Date":"6/2/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":707,"Cost":671,"Date":"6/3/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":444,"Cost":308,"Date":"6/5/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":856,"Cost":780,"Date":"6/7/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":761,"Cost":600,"Date":"6/14/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":899,"Cost":806,"Date":"6/20/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":227,"Cost":149,"Date":"6/24/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":184,"Cost":156,"Date":"7/4/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":452,"Cost":348,"Date":"7/9/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":128,"Cost":88,"Date":"7/12/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":61,"Cost":44,"Date":"8/14/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":761,"Cost":499,"Date":"8/16/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":931,"Cost":528,"Date":"8/23/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":87,"Cost":51,"Date":"9/2/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":613,"Cost":437,"Date":"9/3/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":584,"Cost":352,"Date":"9/16/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":106,"Cost":92,"Date":"10/4/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":951,"Cost":610,"Date":"11/1/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":362,"Cost":246,"Date":"11/2/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":387,"Cost":365,"Date":"12/17/2022"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":754,"Cost":614,"Date":"2/10/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":294,"Cost":270,"Date":"2/28/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":705,"Cost":593,"Date":"3/4/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":36,"Cost":20,"Date":"3/9/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":101,"Cost":81,"Date":"3/9/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":948,"Cost":861,"Date":"3/11/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":136,"Cost":81,"Date":"3/17/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":310,"Cost":193,"Date":"3/17/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":743,"Cost":695,"Date":"3/23/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":99,"Cost":84,"Date":"4/1/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":940,"Cost":730,"Date":"5/7/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":604,"Cost":383,"Date":"5/10/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":722,"Cost":442,"Date":"5/20/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":720,"Cost":360,"Date":"6/2/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":432,"Cost":245,"Date":"6/11/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":326,"Cost":192,"Date":"6/16/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":941,"Cost":878,"Date":"6/16/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":796,"Cost":669,"Date":"7/10/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":312,"Cost":190,"Date":"7/11/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":969,"Cost":832,"Date":"8/28/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":610,"Cost":388,"Date":"8/29/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":900,"Cost":637,"Date":"8/31/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":320,"Cost":190,"Date":"9/8/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":582,"Cost":301,"Date":"9/13/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":498,"Cost":385,"Date":"9/14/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":771,"Cost":576,"Date":"9/19/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":450,"Cost":270,"Date":"9/25/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":791,"Cost":490,"Date":"10/4/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":261,"Cost":146,"Date":"10/10/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":569,"Cost":405,"Date":"10/17/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":681,"Cost":616,"Date":"10/28/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":603,"Cost":433,"Date":"10/30/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":222,"Cost":163,"Date":"11/1/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":741,"Cost":553,"Date":"11/15/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":17,"Cost":10,"Date":"11/25/2023"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":697,"Cost":366,"Date":"1/10/2024"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":932,"Cost":547,"Date":"1/14/2024"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":339,"Cost":251,"Date":"1/20/2024"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":670,"Cost":536,"Date":"2/8/2024"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":470,"Cost":394,"Date":"2/25/2024"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":265,"Cost":220,"Date":"3/7/2024"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":439,"Cost":352,"Date":"3/14/2024"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":389,"Cost":218,"Date":"3/27/2024"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":314,"Cost":280,"Date":"4/5/2024"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":845,"Cost":425,"Date":"4/14/2024"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":640,"Cost":592,"Date":"5/3/2024"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":271,"Cost":154,"Date":"5/9/2024"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":278,"Cost":197,"Date":"5/15/2024"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":133,"Cost":89,"Date":"5/25/2024"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":341,"Cost":283,"Date":"5/26/2024"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":133,"Cost":126,"Date":"5/31/2024"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":971,"Cost":490,"Date":"7/27/2024"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":235,"Cost":147,"Date":"9/17/2024"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":286,"Cost":253,"Date":"10/6/2024"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":381,"Cost":249,"Date":"10/8/2024"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":45,"Cost":41,"Date":"10/26/2024"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":316,"Cost":182,"Date":"11/16/2024"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":798,"Cost":672,"Date":"11/18/2024"},{"Store":"Ruse Mall","Brand":"HM","Country":"Bulgaria","Sale":36,"Cost":19,"Date":"12/1/2024"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":240,"Cost":135,"Date":"2/9/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":405,"Cost":215,"Date":"2/11/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":411,"Cost":232,"Date":"3/10/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":978,"Cost":497,"Date":"3/16/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":115,"Cost":78,"Date":"3/18/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":509,"Cost":417,"Date":"3/20/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":179,"Cost":113,"Date":"3/26/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":781,"Cost":428,"Date":"6/2/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":246,"Cost":223,"Date":"6/10/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":777,"Cost":605,"Date":"6/16/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":589,"Cost":438,"Date":"6/25/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":92,"Cost":70,"Date":"7/19/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":778,"Cost":484,"Date":"7/21/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":632,"Cost":446,"Date":"7/25/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":786,"Cost":516,"Date":"8/4/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":581,"Cost":436,"Date":"9/2/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":516,"Cost":285,"Date":"9/4/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":390,"Cost":272,"Date":"9/19/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":802,"Cost":751,"Date":"9/29/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":834,"Cost":609,"Date":"10/2/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":844,"Cost":650,"Date":"10/15/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":371,"Cost":248,"Date":"10/30/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":565,"Cost":492,"Date":"11/9/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":378,"Cost":199,"Date":"11/23/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":200,"Cost":185,"Date":"11/30/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":772,"Cost":672,"Date":"12/8/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":492,"Cost":463,"Date":"12/11/2018"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":541,"Cost":339,"Date":"1/15/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":652,"Cost":553,"Date":"1/24/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":831,"Cost":623,"Date":"2/3/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":437,"Cost":357,"Date":"2/4/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":492,"Cost":339,"Date":"3/9/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":590,"Cost":445,"Date":"3/12/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":141,"Cost":77,"Date":"4/19/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":443,"Cost":317,"Date":"5/3/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":540,"Cost":502,"Date":"5/4/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":140,"Cost":77,"Date":"6/8/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":771,"Cost":407,"Date":"6/26/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":98,"Cost":66,"Date":"7/4/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":910,"Cost":503,"Date":"7/13/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":53,"Cost":33,"Date":"8/8/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":276,"Cost":168,"Date":"8/26/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":180,"Cost":170,"Date":"9/2/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":914,"Cost":852,"Date":"9/29/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":528,"Cost":373,"Date":"10/12/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":261,"Cost":244,"Date":"11/2/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":766,"Cost":437,"Date":"11/4/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":213,"Cost":137,"Date":"11/7/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":474,"Cost":290,"Date":"12/1/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":381,"Cost":294,"Date":"12/4/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":637,"Cost":465,"Date":"12/7/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":230,"Cost":180,"Date":"12/18/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":62,"Cost":31,"Date":"12/20/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":900,"Cost":668,"Date":"12/20/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":1000,"Cost":851,"Date":"12/21/2019"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":69,"Cost":37,"Date":"1/9/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":927,"Cost":549,"Date":"2/5/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":928,"Cost":586,"Date":"2/16/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":391,"Cost":299,"Date":"2/16/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":504,"Cost":457,"Date":"2/18/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":722,"Cost":369,"Date":"2/22/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":261,"Cost":136,"Date":"2/25/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":364,"Cost":267,"Date":"3/8/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":217,"Cost":156,"Date":"4/2/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":217,"Cost":138,"Date":"4/3/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":610,"Cost":316,"Date":"4/9/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":446,"Cost":380,"Date":"4/10/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":608,"Cost":353,"Date":"4/19/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":470,"Cost":295,"Date":"5/17/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":27,"Cost":13,"Date":"5/22/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":175,"Cost":124,"Date":"6/20/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":24,"Cost":12,"Date":"7/1/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":678,"Cost":419,"Date":"7/4/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":679,"Cost":511,"Date":"7/8/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":959,"Cost":524,"Date":"7/9/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":308,"Cost":256,"Date":"7/14/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":670,"Cost":587,"Date":"7/19/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":387,"Cost":283,"Date":"8/1/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":451,"Cost":286,"Date":"8/6/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":727,"Cost":537,"Date":"8/7/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":713,"Cost":395,"Date":"8/22/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":769,"Cost":704,"Date":"8/31/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":126,"Cost":102,"Date":"9/1/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":697,"Cost":599,"Date":"9/1/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":397,"Cost":246,"Date":"9/17/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":589,"Cost":478,"Date":"9/29/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":163,"Cost":107,"Date":"11/7/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":926,"Cost":525,"Date":"11/26/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":552,"Cost":334,"Date":"11/27/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":519,"Cost":332,"Date":"12/5/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":706,"Cost":383,"Date":"12/26/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":976,"Cost":506,"Date":"12/31/2020"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":59,"Cost":49,"Date":"1/20/2021"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":666,"Cost":342,"Date":"2/2/2021"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":661,"Cost":396,"Date":"2/8/2021"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":522,"Cost":358,"Date":"2/27/2021"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":322,"Cost":216,"Date":"3/1/2021"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":780,"Cost":494,"Date":"3/1/2021"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":777,"Cost":536,"Date":"3/19/2021"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":858,"Cost":454,"Date":"3/28/2021"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":255,"Cost":150,"Date":"5/21/2021"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":551,"Cost":360,"Date":"7/21/2021"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":568,"Cost":524,"Date":"8/5/2021"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":458,"Cost":294,"Date":"8/12/2021"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":146,"Cost":130,"Date":"8/21/2021"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":305,"Cost":263,"Date":"8/23/2021"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":667,"Cost":480,"Date":"9/3/2021"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":842,"Cost":743,"Date":"9/5/2021"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":81,"Cost":52,"Date":"10/6/2021"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":710,"Cost":558,"Date":"10/19/2021"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":432,"Cost":374,"Date":"11/15/2021"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":59,"Cost":34,"Date":"12/8/2021"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":371,"Cost":236,"Date":"1/8/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":155,"Cost":121,"Date":"1/14/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":214,"Cost":143,"Date":"1/19/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":712,"Cost":640,"Date":"1/28/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":185,"Cost":175,"Date":"1/31/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":362,"Cost":199,"Date":"3/27/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":294,"Cost":161,"Date":"4/20/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":187,"Cost":138,"Date":"4/24/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":38,"Cost":30,"Date":"4/28/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":49,"Cost":32,"Date":"5/15/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":254,"Cost":137,"Date":"5/16/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":895,"Cost":704,"Date":"5/18/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":385,"Cost":351,"Date":"6/2/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":549,"Cost":461,"Date":"6/3/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":751,"Cost":523,"Date":"6/5/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":248,"Cost":218,"Date":"6/7/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":510,"Cost":386,"Date":"6/14/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":880,"Cost":648,"Date":"6/20/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":730,"Cost":374,"Date":"6/24/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":375,"Cost":324,"Date":"7/4/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":735,"Cost":417,"Date":"7/9/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":59,"Cost":51,"Date":"7/12/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":290,"Cost":230,"Date":"8/14/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":14,"Cost":8,"Date":"8/16/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":735,"Cost":464,"Date":"8/23/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":348,"Cost":300,"Date":"9/2/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":362,"Cost":239,"Date":"9/3/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":766,"Cost":547,"Date":"9/16/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":723,"Cost":434,"Date":"10/4/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":88,"Cost":51,"Date":"11/1/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":520,"Cost":289,"Date":"11/2/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":523,"Cost":390,"Date":"12/17/2022"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":599,"Cost":316,"Date":"2/10/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":352,"Cost":203,"Date":"2/28/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":902,"Cost":843,"Date":"3/4/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":622,"Cost":343,"Date":"3/9/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":180,"Cost":168,"Date":"3/9/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":24,"Cost":15,"Date":"3/11/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":724,"Cost":507,"Date":"3/17/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":558,"Cost":458,"Date":"3/17/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":579,"Cost":455,"Date":"3/23/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":558,"Cost":363,"Date":"4/1/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":937,"Cost":719,"Date":"5/7/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":32,"Cost":30,"Date":"5/10/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":45,"Cost":26,"Date":"5/20/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":42,"Cost":35,"Date":"6/2/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":871,"Cost":805,"Date":"6/11/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":78,"Cost":41,"Date":"6/16/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":863,"Cost":674,"Date":"6/16/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":691,"Cost":532,"Date":"7/10/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":708,"Cost":360,"Date":"7/11/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":111,"Cost":65,"Date":"8/28/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":64,"Cost":41,"Date":"8/29/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":958,"Cost":810,"Date":"8/31/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":211,"Cost":120,"Date":"9/8/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":668,"Cost":385,"Date":"9/13/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":886,"Cost":773,"Date":"9/14/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":71,"Cost":39,"Date":"9/19/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":796,"Cost":542,"Date":"9/25/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":809,"Cost":541,"Date":"10/4/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":522,"Cost":332,"Date":"10/10/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":243,"Cost":202,"Date":"10/17/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":830,"Cost":758,"Date":"10/28/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":980,"Cost":498,"Date":"10/30/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":579,"Cost":355,"Date":"11/1/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":166,"Cost":139,"Date":"11/15/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":35,"Cost":31,"Date":"11/25/2023"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":372,"Cost":340,"Date":"1/10/2024"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":471,"Cost":323,"Date":"1/14/2024"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":574,"Cost":407,"Date":"1/20/2024"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":511,"Cost":391,"Date":"2/8/2024"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":45,"Cost":29,"Date":"2/25/2024"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":86,"Cost":72,"Date":"3/7/2024"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":719,"Cost":565,"Date":"3/14/2024"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":710,"Cost":651,"Date":"3/27/2024"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":555,"Cost":403,"Date":"4/5/2024"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":963,"Cost":675,"Date":"4/14/2024"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":914,"Cost":514,"Date":"5/3/2024"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":579,"Cost":399,"Date":"5/9/2024"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":945,"Cost":756,"Date":"5/15/2024"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":853,"Cost":631,"Date":"5/25/2024"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":489,"Cost":365,"Date":"5/26/2024"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":292,"Cost":234,"Date":"5/31/2024"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":999,"Cost":913,"Date":"7/27/2024"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":746,"Cost":694,"Date":"9/17/2024"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":722,"Cost":452,"Date":"10/6/2024"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":664,"Cost":392,"Date":"10/8/2024"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":502,"Cost":397,"Date":"10/26/2024"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":594,"Cost":557,"Date":"11/16/2024"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":412,"Cost":209,"Date":"11/18/2024"},{"Store":"Park Mall Stara Zagora","Brand":"HM","Country":"Bulgaria","Sale":355,"Cost":304,"Date":"12/1/2024"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":601,"Cost":435,"Date":"2/9/2018"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":201,"Cost":107,"Date":"2/11/2018"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":781,"Cost":633,"Date":"3/10/2018"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":252,"Cost":188,"Date":"3/16/2018"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":578,"Cost":328,"Date":"3/18/2018"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":749,"Cost":554,"Date":"3/20/2018"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":777,"Cost":501,"Date":"3/26/2018"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":326,"Cost":189,"Date":"6/2/2018"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":286,"Cost":190,"Date":"6/10/2018"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":663,"Cost":471,"Date":"6/16/2018"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":380,"Cost":215,"Date":"6/25/2018"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":438,"Cost":249,"Date":"7/19/2018"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":609,"Cost":490,"Date":"7/21/2018"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":574,"Cost":289,"Date":"7/25/2018"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":981,"Cost":801,"Date":"8/4/2018"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":767,"Cost":639,"Date":"9/2/2018"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":26,"Cost":24,"Date":"9/4/2018"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":54,"Cost":33,"Date":"9/19/2018"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":572,"Cost":483,"Date":"9/29/2018"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":112,"Cost":82,"Date":"10/2/2018"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":333,"Cost":301,"Date":"10/15/2018"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":128,"Cost":95,"Date":"10/30/2018"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":96,"Cost":86,"Date":"11/9/2018"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":274,"Cost":234,"Date":"11/23/2018"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":485,"Cost":458,"Date":"11/30/2018"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":483,"Cost":402,"Date":"12/8/2018"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":694,"Cost":523,"Date":"12/11/2018"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":451,"Cost":341,"Date":"1/15/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":280,"Cost":246,"Date":"1/24/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":47,"Cost":24,"Date":"2/3/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":716,"Cost":505,"Date":"2/4/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":529,"Cost":436,"Date":"3/9/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":936,"Cost":559,"Date":"3/12/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":367,"Cost":292,"Date":"4/19/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":381,"Cost":247,"Date":"5/3/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":810,"Cost":522,"Date":"5/4/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":455,"Cost":426,"Date":"6/8/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":549,"Cost":326,"Date":"6/26/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":305,"Cost":263,"Date":"7/4/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":384,"Cost":218,"Date":"7/13/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":851,"Cost":439,"Date":"8/8/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":234,"Cost":201,"Date":"8/26/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":566,"Cost":475,"Date":"9/2/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":556,"Cost":428,"Date":"9/29/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":914,"Cost":543,"Date":"10/12/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":242,"Cost":202,"Date":"11/2/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":757,"Cost":635,"Date":"11/4/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":56,"Cost":45,"Date":"11/7/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":331,"Cost":310,"Date":"12/1/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":976,"Cost":672,"Date":"12/4/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":882,"Cost":813,"Date":"12/7/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":50,"Cost":38,"Date":"12/18/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":149,"Cost":127,"Date":"12/20/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":823,"Cost":518,"Date":"12/20/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":230,"Cost":184,"Date":"12/21/2019"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":110,"Cost":91,"Date":"1/9/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":789,"Cost":526,"Date":"2/5/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":64,"Cost":57,"Date":"2/16/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":361,"Cost":340,"Date":"2/16/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":400,"Cost":205,"Date":"2/18/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":19,"Cost":12,"Date":"2/22/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":664,"Cost":442,"Date":"2/25/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":872,"Cost":704,"Date":"3/8/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":364,"Cost":233,"Date":"4/2/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":594,"Cost":465,"Date":"4/3/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":265,"Cost":235,"Date":"4/9/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":365,"Cost":221,"Date":"4/10/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":42,"Cost":38,"Date":"4/19/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":508,"Cost":385,"Date":"5/17/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":603,"Cost":498,"Date":"5/22/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":421,"Cost":360,"Date":"6/20/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":40,"Cost":32,"Date":"7/1/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":642,"Cost":425,"Date":"7/4/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":128,"Cost":91,"Date":"7/8/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":719,"Cost":630,"Date":"7/9/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":859,"Cost":433,"Date":"7/14/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":436,"Cost":258,"Date":"7/19/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":600,"Cost":564,"Date":"8/1/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":541,"Cost":512,"Date":"8/6/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":91,"Cost":45,"Date":"8/7/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":928,"Cost":796,"Date":"8/22/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":896,"Cost":637,"Date":"8/31/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":763,"Cost":603,"Date":"9/1/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":826,"Cost":595,"Date":"9/1/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":573,"Cost":502,"Date":"9/17/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":576,"Cost":496,"Date":"9/29/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":604,"Cost":447,"Date":"11/7/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":16,"Cost":14,"Date":"11/26/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":816,"Cost":764,"Date":"11/27/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":485,"Cost":244,"Date":"12/5/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":311,"Cost":162,"Date":"12/26/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":880,"Cost":547,"Date":"12/31/2020"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":478,"Cost":414,"Date":"1/20/2021"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":85,"Cost":80,"Date":"2/2/2021"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":691,"Cost":410,"Date":"2/8/2021"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":438,"Cost":305,"Date":"2/27/2021"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":529,"Cost":443,"Date":"3/1/2021"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":166,"Cost":151,"Date":"3/1/2021"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":88,"Cost":63,"Date":"3/19/2021"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":665,"Cost":387,"Date":"3/28/2021"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":916,"Cost":810,"Date":"5/21/2021"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":242,"Cost":142,"Date":"7/21/2021"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":589,"Cost":419,"Date":"8/5/2021"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":931,"Cost":528,"Date":"8/12/2021"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":602,"Cost":427,"Date":"8/21/2021"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":677,"Cost":557,"Date":"8/23/2021"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":481,"Cost":354,"Date":"9/3/2021"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":728,"Cost":525,"Date":"9/5/2021"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":791,"Cost":677,"Date":"10/6/2021"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":188,"Cost":129,"Date":"10/19/2021"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":228,"Cost":162,"Date":"11/15/2021"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":56,"Cost":43,"Date":"12/8/2021"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":730,"Cost":601,"Date":"1/8/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":741,"Cost":519,"Date":"1/14/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":311,"Cost":291,"Date":"1/19/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":737,"Cost":545,"Date":"1/28/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":142,"Cost":130,"Date":"1/31/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":837,"Cost":450,"Date":"3/27/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":752,"Cost":700,"Date":"4/20/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":225,"Cost":209,"Date":"4/24/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":122,"Cost":65,"Date":"4/28/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":865,"Cost":582,"Date":"5/15/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":656,"Cost":387,"Date":"5/16/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":576,"Cost":535,"Date":"5/18/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":27,"Cost":25,"Date":"6/2/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":469,"Cost":400,"Date":"6/3/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":300,"Cost":259,"Date":"6/5/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":459,"Cost":293,"Date":"6/7/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":122,"Cost":90,"Date":"6/14/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":531,"Cost":462,"Date":"6/20/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":660,"Cost":463,"Date":"6/24/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":561,"Cost":445,"Date":"7/4/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":491,"Cost":366,"Date":"7/9/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":328,"Cost":194,"Date":"7/12/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":10,"Cost":9,"Date":"8/14/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":356,"Cost":216,"Date":"8/16/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":860,"Cost":814,"Date":"8/23/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":277,"Cost":148,"Date":"9/2/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":478,"Cost":397,"Date":"9/3/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":760,"Cost":536,"Date":"9/16/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":642,"Cost":378,"Date":"10/4/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":195,"Cost":177,"Date":"11/1/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":83,"Cost":71,"Date":"11/2/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":268,"Cost":158,"Date":"12/17/2022"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":724,"Cost":459,"Date":"2/10/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":369,"Cost":272,"Date":"2/28/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":137,"Cost":127,"Date":"3/4/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":815,"Cost":683,"Date":"3/9/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":589,"Cost":395,"Date":"3/9/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":110,"Cost":99,"Date":"3/11/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":622,"Cost":564,"Date":"3/17/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":569,"Cost":331,"Date":"3/17/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":742,"Cost":433,"Date":"3/23/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":540,"Cost":341,"Date":"4/1/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":400,"Cost":362,"Date":"5/7/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":856,"Cost":684,"Date":"5/10/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":714,"Cost":661,"Date":"5/20/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":168,"Cost":109,"Date":"6/2/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":828,"Cost":641,"Date":"6/11/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":811,"Cost":439,"Date":"6/16/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":71,"Cost":51,"Date":"6/16/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":688,"Cost":639,"Date":"7/10/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":688,"Cost":528,"Date":"7/11/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":949,"Cost":808,"Date":"8/28/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":98,"Cost":74,"Date":"8/29/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":145,"Cost":72,"Date":"8/31/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":636,"Cost":527,"Date":"9/8/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":242,"Cost":142,"Date":"9/13/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":332,"Cost":242,"Date":"9/14/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":583,"Cost":526,"Date":"9/19/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":117,"Cost":61,"Date":"9/25/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":717,"Cost":486,"Date":"10/4/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":148,"Cost":76,"Date":"10/10/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":435,"Cost":234,"Date":"10/17/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":222,"Cost":130,"Date":"10/28/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":436,"Cost":268,"Date":"10/30/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":560,"Cost":376,"Date":"11/1/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":777,"Cost":598,"Date":"11/15/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":787,"Cost":555,"Date":"11/25/2023"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":588,"Cost":311,"Date":"1/10/2024"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":57,"Cost":52,"Date":"1/14/2024"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":855,"Cost":543,"Date":"1/20/2024"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":333,"Cost":250,"Date":"2/8/2024"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":446,"Cost":271,"Date":"2/25/2024"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":584,"Cost":438,"Date":"3/7/2024"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":195,"Cost":118,"Date":"3/14/2024"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":32,"Cost":30,"Date":"3/27/2024"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":308,"Cost":259,"Date":"4/5/2024"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":253,"Cost":198,"Date":"4/14/2024"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":413,"Cost":214,"Date":"5/3/2024"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":164,"Cost":135,"Date":"5/9/2024"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":261,"Cost":134,"Date":"5/15/2024"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":508,"Cost":394,"Date":"5/25/2024"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":944,"Cost":886,"Date":"5/26/2024"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":182,"Cost":91,"Date":"5/31/2024"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":402,"Cost":266,"Date":"7/27/2024"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":591,"Cost":488,"Date":"9/17/2024"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":902,"Cost":741,"Date":"10/6/2024"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":205,"Cost":147,"Date":"10/8/2024"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":181,"Cost":91,"Date":"10/26/2024"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":452,"Cost":348,"Date":"11/16/2024"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":524,"Cost":290,"Date":"11/18/2024"},{"Store":"Park Mall Stara Zagora","Brand":"ARKET","Country":"Bulgaria","Sale":341,"Cost":219,"Date":"12/1/2024"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":886,"Cost":493,"Date":"2/9/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":430,"Cost":264,"Date":"2/11/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":393,"Cost":323,"Date":"3/10/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":147,"Cost":128,"Date":"3/16/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":274,"Cost":208,"Date":"3/18/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":818,"Cost":467,"Date":"3/20/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":333,"Cost":261,"Date":"3/26/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":52,"Cost":43,"Date":"6/2/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":87,"Cost":72,"Date":"6/10/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":851,"Cost":449,"Date":"6/16/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":80,"Cost":53,"Date":"6/25/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":408,"Cost":295,"Date":"7/19/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":425,"Cost":274,"Date":"7/21/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":265,"Cost":221,"Date":"7/25/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":199,"Cost":153,"Date":"8/4/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":882,"Cost":626,"Date":"9/2/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":644,"Cost":380,"Date":"9/4/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":475,"Cost":277,"Date":"9/19/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":750,"Cost":660,"Date":"9/29/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":947,"Cost":628,"Date":"10/2/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":978,"Cost":664,"Date":"10/15/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":941,"Cost":525,"Date":"10/30/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":844,"Cost":544,"Date":"11/9/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":693,"Cost":379,"Date":"11/23/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":894,"Cost":766,"Date":"11/30/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":447,"Cost":386,"Date":"12/8/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":116,"Cost":68,"Date":"12/11/2018"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":167,"Cost":106,"Date":"1/15/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":302,"Cost":249,"Date":"1/24/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":266,"Cost":234,"Date":"2/3/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":532,"Cost":291,"Date":"2/4/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":872,"Cost":630,"Date":"3/9/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":130,"Cost":99,"Date":"3/12/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":955,"Cost":571,"Date":"4/19/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":292,"Cost":267,"Date":"5/3/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":393,"Cost":279,"Date":"5/4/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":924,"Cost":557,"Date":"6/8/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":268,"Cost":167,"Date":"6/26/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":438,"Cost":242,"Date":"7/4/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":384,"Cost":361,"Date":"7/13/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":568,"Cost":333,"Date":"8/8/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":366,"Cost":337,"Date":"8/26/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":259,"Cost":236,"Date":"9/2/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":325,"Cost":194,"Date":"9/29/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":66,"Cost":54,"Date":"10/12/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":581,"Cost":441,"Date":"11/2/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":396,"Cost":340,"Date":"11/4/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":331,"Cost":266,"Date":"11/7/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":818,"Cost":482,"Date":"12/1/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":435,"Cost":352,"Date":"12/4/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":902,"Cost":789,"Date":"12/7/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":804,"Cost":483,"Date":"12/18/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":652,"Cost":388,"Date":"12/20/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":764,"Cost":669,"Date":"12/20/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":475,"Cost":334,"Date":"12/21/2019"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":977,"Cost":647,"Date":"1/9/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":246,"Cost":233,"Date":"2/5/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":115,"Cost":86,"Date":"2/16/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":662,"Cost":439,"Date":"2/16/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":180,"Cost":95,"Date":"2/18/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":192,"Cost":176,"Date":"2/22/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":163,"Cost":86,"Date":"2/25/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":828,"Cost":489,"Date":"3/8/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":730,"Cost":594,"Date":"4/2/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":111,"Cost":86,"Date":"4/3/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":700,"Cost":594,"Date":"4/9/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":779,"Cost":732,"Date":"4/10/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":188,"Cost":114,"Date":"4/19/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":662,"Cost":554,"Date":"5/17/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":494,"Cost":416,"Date":"5/22/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":385,"Cost":243,"Date":"6/20/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":130,"Cost":85,"Date":"7/1/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":646,"Cost":366,"Date":"7/4/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":858,"Cost":627,"Date":"7/8/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":605,"Cost":509,"Date":"7/9/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":704,"Cost":535,"Date":"7/14/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":614,"Cost":375,"Date":"7/19/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":70,"Cost":54,"Date":"8/1/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":603,"Cost":476,"Date":"8/6/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":164,"Cost":96,"Date":"8/7/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":892,"Cost":494,"Date":"8/22/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":81,"Cost":49,"Date":"8/31/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":934,"Cost":801,"Date":"9/1/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":470,"Cost":327,"Date":"9/1/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":951,"Cost":797,"Date":"9/17/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":631,"Cost":525,"Date":"9/29/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":66,"Cost":33,"Date":"11/7/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":761,"Cost":474,"Date":"11/26/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":633,"Cost":532,"Date":"11/27/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":641,"Cost":592,"Date":"12/5/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":965,"Cost":899,"Date":"12/26/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":408,"Cost":288,"Date":"12/31/2020"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":762,"Cost":541,"Date":"1/20/2021"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":134,"Cost":75,"Date":"2/2/2021"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":309,"Cost":196,"Date":"2/8/2021"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":225,"Cost":140,"Date":"2/27/2021"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":285,"Cost":177,"Date":"3/1/2021"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":789,"Cost":507,"Date":"3/1/2021"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":398,"Cost":229,"Date":"3/19/2021"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":913,"Cost":541,"Date":"3/28/2021"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":54,"Cost":50,"Date":"5/21/2021"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":595,"Cost":496,"Date":"7/21/2021"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":643,"Cost":366,"Date":"8/5/2021"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":145,"Cost":84,"Date":"8/12/2021"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":136,"Cost":108,"Date":"8/21/2021"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":903,"Cost":725,"Date":"8/23/2021"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":115,"Cost":101,"Date":"9/3/2021"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":388,"Cost":337,"Date":"9/5/2021"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":258,"Cost":176,"Date":"10/6/2021"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":951,"Cost":525,"Date":"10/19/2021"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":221,"Cost":121,"Date":"11/15/2021"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":72,"Cost":47,"Date":"12/8/2021"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":184,"Cost":131,"Date":"1/8/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":4,"Cost":2,"Date":"1/14/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":868,"Cost":470,"Date":"1/19/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":650,"Cost":546,"Date":"1/28/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":609,"Cost":347,"Date":"1/31/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":353,"Cost":321,"Date":"3/27/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":900,"Cost":462,"Date":"4/20/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":36,"Cost":28,"Date":"4/24/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":705,"Cost":377,"Date":"4/28/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":298,"Cost":253,"Date":"5/15/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":242,"Cost":158,"Date":"5/16/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":112,"Cost":71,"Date":"5/18/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":197,"Cost":187,"Date":"6/2/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":314,"Cost":277,"Date":"6/3/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":243,"Cost":144,"Date":"6/5/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":579,"Cost":448,"Date":"6/7/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":88,"Cost":83,"Date":"6/14/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":165,"Cost":109,"Date":"6/20/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":281,"Cost":267,"Date":"6/24/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":530,"Cost":343,"Date":"7/4/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":448,"Cost":355,"Date":"7/9/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":466,"Cost":369,"Date":"7/12/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":938,"Cost":850,"Date":"8/14/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":176,"Cost":166,"Date":"8/16/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":560,"Cost":407,"Date":"8/23/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":458,"Cost":386,"Date":"9/2/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":80,"Cost":66,"Date":"9/3/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":394,"Cost":264,"Date":"9/16/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":605,"Cost":454,"Date":"10/4/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":436,"Cost":364,"Date":"11/1/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":524,"Cost":308,"Date":"11/2/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":943,"Cost":591,"Date":"12/17/2022"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":122,"Cost":98,"Date":"2/10/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":352,"Cost":300,"Date":"2/28/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":671,"Cost":350,"Date":"3/4/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":788,"Cost":469,"Date":"3/9/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":911,"Cost":802,"Date":"3/9/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":474,"Cost":445,"Date":"3/11/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":195,"Cost":181,"Date":"3/17/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":152,"Cost":85,"Date":"3/17/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":735,"Cost":452,"Date":"3/23/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":75,"Cost":38,"Date":"4/1/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":758,"Cost":506,"Date":"5/7/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":193,"Cost":113,"Date":"5/10/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":928,"Cost":802,"Date":"5/20/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":555,"Cost":433,"Date":"6/2/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":276,"Cost":206,"Date":"6/11/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":248,"Cost":135,"Date":"6/16/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":966,"Cost":598,"Date":"6/16/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":998,"Cost":751,"Date":"7/10/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":395,"Cost":259,"Date":"7/11/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":900,"Cost":606,"Date":"8/28/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":158,"Cost":124,"Date":"8/29/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":30,"Cost":20,"Date":"8/31/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":227,"Cost":152,"Date":"9/8/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":973,"Cost":681,"Date":"9/13/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":167,"Cost":91,"Date":"9/14/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":569,"Cost":397,"Date":"9/19/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":315,"Cost":181,"Date":"9/25/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":51,"Cost":26,"Date":"10/4/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":381,"Cost":260,"Date":"10/10/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":566,"Cost":344,"Date":"10/17/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":220,"Cost":185,"Date":"10/28/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":624,"Cost":422,"Date":"10/30/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":978,"Cost":849,"Date":"11/1/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":516,"Cost":465,"Date":"11/15/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":923,"Cost":832,"Date":"11/25/2023"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":697,"Cost":518,"Date":"1/10/2024"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":197,"Cost":178,"Date":"1/14/2024"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":331,"Cost":166,"Date":"1/20/2024"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":81,"Cost":65,"Date":"2/8/2024"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":586,"Cost":319,"Date":"2/25/2024"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":968,"Cost":767,"Date":"3/7/2024"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":582,"Cost":361,"Date":"3/14/2024"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":478,"Cost":395,"Date":"3/27/2024"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":861,"Cost":499,"Date":"4/5/2024"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":34,"Cost":28,"Date":"4/14/2024"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":721,"Cost":499,"Date":"5/3/2024"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":425,"Cost":247,"Date":"5/9/2024"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":673,"Cost":407,"Date":"5/15/2024"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":298,"Cost":275,"Date":"5/25/2024"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":346,"Cost":209,"Date":"5/26/2024"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":675,"Cost":405,"Date":"5/31/2024"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":847,"Cost":504,"Date":"7/27/2024"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":288,"Cost":170,"Date":"9/17/2024"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":376,"Cost":259,"Date":"10/6/2024"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":201,"Cost":129,"Date":"10/8/2024"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":504,"Cost":468,"Date":"10/26/2024"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":442,"Cost":372,"Date":"11/16/2024"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":163,"Cost":123,"Date":"11/18/2024"},{"Store":"Park Mall Stara Zagora","Brand":"COS","Country":"Bulgaria","Sale":141,"Cost":106,"Date":"12/1/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":828,"Cost":604,"Date":"2/9/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":59,"Cost":36,"Date":"2/11/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":648,"Cost":343,"Date":"3/10/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":542,"Cost":271,"Date":"3/16/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":389,"Cost":353,"Date":"3/18/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":619,"Cost":384,"Date":"3/20/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":896,"Cost":687,"Date":"3/26/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":339,"Cost":187,"Date":"6/2/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":275,"Cost":248,"Date":"6/10/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":359,"Cost":333,"Date":"6/16/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":186,"Cost":163,"Date":"6/25/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":633,"Cost":485,"Date":"7/19/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":672,"Cost":533,"Date":"7/21/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":730,"Cost":437,"Date":"7/25/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":448,"Cost":281,"Date":"8/4/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":714,"Cost":501,"Date":"9/2/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":607,"Cost":469,"Date":"9/4/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":143,"Cost":135,"Date":"9/19/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":412,"Cost":258,"Date":"9/29/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":639,"Cost":479,"Date":"10/2/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":899,"Cost":516,"Date":"10/15/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":144,"Cost":129,"Date":"10/30/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":143,"Cost":131,"Date":"11/9/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":295,"Cost":208,"Date":"11/23/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":704,"Cost":544,"Date":"11/30/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":894,"Cost":574,"Date":"12/8/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":180,"Cost":100,"Date":"12/11/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":704,"Cost":359,"Date":"1/15/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":993,"Cost":771,"Date":"1/24/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":115,"Cost":59,"Date":"2/3/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":995,"Cost":511,"Date":"2/4/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":221,"Cost":192,"Date":"3/9/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":57,"Cost":49,"Date":"3/12/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":958,"Cost":850,"Date":"4/19/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":483,"Cost":251,"Date":"5/3/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":832,"Cost":482,"Date":"5/4/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":596,"Cost":379,"Date":"6/8/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":262,"Cost":220,"Date":"6/26/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":256,"Cost":182,"Date":"7/4/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":65,"Cost":50,"Date":"7/13/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":833,"Cost":554,"Date":"8/8/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":870,"Cost":578,"Date":"8/26/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":215,"Cost":134,"Date":"9/2/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":490,"Cost":384,"Date":"9/29/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":522,"Cost":378,"Date":"10/12/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":611,"Cost":505,"Date":"11/2/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":504,"Cost":262,"Date":"11/4/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":980,"Cost":721,"Date":"11/7/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":62,"Cost":49,"Date":"12/1/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":327,"Cost":286,"Date":"12/4/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":85,"Cost":75,"Date":"12/7/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":171,"Cost":149,"Date":"12/18/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":99,"Cost":63,"Date":"12/20/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":541,"Cost":462,"Date":"12/20/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":616,"Cost":506,"Date":"12/21/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":554,"Cost":394,"Date":"1/9/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":480,"Cost":375,"Date":"2/5/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":967,"Cost":561,"Date":"2/16/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":48,"Cost":31,"Date":"2/16/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":226,"Cost":136,"Date":"2/18/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":77,"Cost":66,"Date":"2/22/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":319,"Cost":230,"Date":"2/25/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":871,"Cost":761,"Date":"3/8/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":714,"Cost":359,"Date":"4/2/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":789,"Cost":585,"Date":"4/3/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":487,"Cost":330,"Date":"4/9/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":165,"Cost":96,"Date":"4/10/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":758,"Cost":391,"Date":"4/19/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":214,"Cost":115,"Date":"5/17/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":699,"Cost":456,"Date":"5/22/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":15,"Cost":14,"Date":"6/20/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":735,"Cost":403,"Date":"7/1/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":150,"Cost":126,"Date":"7/4/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":490,"Cost":339,"Date":"7/8/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":187,"Cost":107,"Date":"7/9/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":776,"Cost":523,"Date":"7/14/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":355,"Cost":335,"Date":"7/19/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":503,"Cost":382,"Date":"8/1/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":279,"Cost":140,"Date":"8/6/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":353,"Cost":184,"Date":"8/7/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":624,"Cost":582,"Date":"8/22/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":16,"Cost":11,"Date":"8/31/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":462,"Cost":381,"Date":"9/1/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":767,"Cost":393,"Date":"9/1/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":395,"Cost":356,"Date":"9/17/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":742,"Cost":622,"Date":"9/29/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":277,"Cost":182,"Date":"11/7/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":187,"Cost":101,"Date":"11/26/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":757,"Cost":643,"Date":"11/27/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":436,"Cost":243,"Date":"12/5/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":204,"Cost":145,"Date":"12/26/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":555,"Cost":371,"Date":"12/31/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":415,"Cost":368,"Date":"1/20/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":416,"Cost":208,"Date":"2/2/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":291,"Cost":171,"Date":"2/8/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":313,"Cost":285,"Date":"2/27/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":614,"Cost":529,"Date":"3/1/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":308,"Cost":202,"Date":"3/1/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":727,"Cost":576,"Date":"3/19/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":891,"Cost":510,"Date":"3/28/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":904,"Cost":501,"Date":"5/21/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":729,"Cost":618,"Date":"7/21/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":332,"Cost":290,"Date":"8/5/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":716,"Cost":568,"Date":"8/12/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":722,"Cost":486,"Date":"8/21/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":213,"Cost":114,"Date":"8/23/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":11,"Cost":7,"Date":"9/3/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":682,"Cost":505,"Date":"9/5/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":962,"Cost":878,"Date":"10/6/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":30,"Cost":25,"Date":"10/19/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":649,"Cost":399,"Date":"11/15/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":148,"Cost":109,"Date":"12/8/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":711,"Cost":606,"Date":"1/8/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":279,"Cost":198,"Date":"1/14/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":256,"Cost":205,"Date":"1/19/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":672,"Cost":366,"Date":"1/28/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":657,"Cost":568,"Date":"1/31/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":930,"Cost":749,"Date":"3/27/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":250,"Cost":199,"Date":"4/20/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":675,"Cost":430,"Date":"4/24/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":927,"Cost":743,"Date":"4/28/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":640,"Cost":519,"Date":"5/15/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":184,"Cost":167,"Date":"5/16/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":174,"Cost":96,"Date":"5/18/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":888,"Cost":524,"Date":"6/2/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":319,"Cost":197,"Date":"6/3/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":141,"Cost":122,"Date":"6/5/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":881,"Cost":525,"Date":"6/7/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":295,"Cost":175,"Date":"6/14/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":254,"Cost":218,"Date":"6/20/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":817,"Cost":450,"Date":"6/24/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":752,"Cost":653,"Date":"7/4/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":860,"Cost":500,"Date":"7/9/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":202,"Cost":144,"Date":"7/12/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":87,"Cost":44,"Date":"8/14/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":272,"Cost":196,"Date":"8/16/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":744,"Cost":695,"Date":"8/23/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":778,"Cost":689,"Date":"9/2/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":984,"Cost":599,"Date":"9/3/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":738,"Cost":490,"Date":"9/16/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":576,"Cost":291,"Date":"10/4/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":197,"Cost":171,"Date":"11/1/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":486,"Cost":427,"Date":"11/2/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":310,"Cost":275,"Date":"12/17/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":108,"Cost":99,"Date":"2/10/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":445,"Cost":234,"Date":"2/28/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":20,"Cost":18,"Date":"3/4/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":790,"Cost":751,"Date":"3/9/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":771,"Cost":602,"Date":"3/9/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":489,"Cost":248,"Date":"3/11/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":598,"Cost":403,"Date":"3/17/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":112,"Cost":58,"Date":"3/17/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":253,"Cost":189,"Date":"3/23/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":971,"Cost":758,"Date":"4/1/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":964,"Cost":510,"Date":"5/7/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":543,"Cost":423,"Date":"5/10/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":470,"Cost":380,"Date":"5/20/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":632,"Cost":414,"Date":"6/2/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":152,"Cost":104,"Date":"6/11/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":523,"Cost":269,"Date":"6/16/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":867,"Cost":560,"Date":"6/16/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":695,"Cost":398,"Date":"7/10/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":102,"Cost":86,"Date":"7/11/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":625,"Cost":468,"Date":"8/28/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":246,"Cost":167,"Date":"8/29/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":727,"Cost":664,"Date":"8/31/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":842,"Cost":760,"Date":"9/8/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":701,"Cost":646,"Date":"9/13/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":758,"Cost":618,"Date":"9/14/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":92,"Cost":61,"Date":"9/19/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":509,"Cost":470,"Date":"9/25/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":83,"Cost":71,"Date":"10/4/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":233,"Cost":209,"Date":"10/10/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":654,"Cost":621,"Date":"10/17/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":96,"Cost":86,"Date":"10/28/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":812,"Cost":494,"Date":"10/30/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":792,"Cost":505,"Date":"11/1/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":369,"Cost":268,"Date":"11/15/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":923,"Cost":871,"Date":"11/25/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":348,"Cost":176,"Date":"1/10/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":284,"Cost":221,"Date":"1/14/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":711,"Cost":379,"Date":"1/20/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":279,"Cost":199,"Date":"2/8/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":709,"Cost":386,"Date":"2/25/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":271,"Cost":216,"Date":"3/7/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":894,"Cost":565,"Date":"3/14/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":504,"Cost":455,"Date":"3/27/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":117,"Cost":100,"Date":"4/5/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":293,"Cost":211,"Date":"4/14/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":592,"Cost":442,"Date":"5/3/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":659,"Cost":426,"Date":"5/9/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":384,"Cost":218,"Date":"5/15/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":315,"Cost":253,"Date":"5/25/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":382,"Cost":357,"Date":"5/26/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":991,"Cost":744,"Date":"5/31/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":644,"Cost":559,"Date":"7/27/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":115,"Cost":94,"Date":"9/17/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":256,"Cost":207,"Date":"10/6/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":68,"Cost":48,"Date":"10/8/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":830,"Cost":776,"Date":"10/26/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":720,"Cost":416,"Date":"11/16/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":349,"Cost":188,"Date":"11/18/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":865,"Cost":474,"Date":"12/1/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":947,"Cost":494,"Date":"2/9/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":661,"Cost":556,"Date":"2/11/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":179,"Cost":143,"Date":"3/10/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":673,"Cost":541,"Date":"3/16/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":548,"Cost":417,"Date":"3/18/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":569,"Cost":401,"Date":"3/20/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":742,"Cost":394,"Date":"3/26/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":43,"Cost":28,"Date":"6/2/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":413,"Cost":380,"Date":"6/10/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":437,"Cost":262,"Date":"6/16/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":89,"Cost":81,"Date":"6/25/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":429,"Cost":321,"Date":"7/19/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":397,"Cost":260,"Date":"7/21/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":733,"Cost":565,"Date":"7/25/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":935,"Cost":757,"Date":"8/4/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":423,"Cost":229,"Date":"9/2/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":586,"Cost":469,"Date":"9/4/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":851,"Cost":661,"Date":"9/19/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":823,"Cost":452,"Date":"9/29/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":929,"Cost":617,"Date":"10/2/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":686,"Cost":370,"Date":"10/15/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":422,"Cost":347,"Date":"10/30/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":190,"Cost":162,"Date":"11/9/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":795,"Cost":652,"Date":"11/23/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":388,"Cost":214,"Date":"11/30/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":525,"Cost":343,"Date":"12/8/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":993,"Cost":775,"Date":"12/11/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":418,"Cost":329,"Date":"1/15/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":677,"Cost":554,"Date":"1/24/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":973,"Cost":680,"Date":"2/3/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":367,"Cost":260,"Date":"2/4/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":901,"Cost":473,"Date":"3/9/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":141,"Cost":76,"Date":"3/12/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":877,"Cost":699,"Date":"4/19/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":842,"Cost":695,"Date":"5/3/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":836,"Cost":636,"Date":"5/4/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":16,"Cost":8,"Date":"6/8/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":378,"Cost":210,"Date":"6/26/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":612,"Cost":480,"Date":"7/4/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":340,"Cost":323,"Date":"7/13/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":509,"Cost":276,"Date":"8/8/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":740,"Cost":662,"Date":"8/26/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":902,"Cost":793,"Date":"9/2/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":475,"Cost":442,"Date":"9/29/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":54,"Cost":31,"Date":"10/12/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":511,"Cost":285,"Date":"11/2/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":68,"Cost":62,"Date":"11/4/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":498,"Cost":321,"Date":"11/7/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":394,"Cost":233,"Date":"12/1/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":826,"Cost":517,"Date":"12/4/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":403,"Cost":327,"Date":"12/7/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":930,"Cost":881,"Date":"12/18/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":560,"Cost":476,"Date":"12/20/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":532,"Cost":484,"Date":"12/20/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":777,"Cost":568,"Date":"12/21/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":342,"Cost":311,"Date":"1/9/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":577,"Cost":316,"Date":"2/5/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":162,"Cost":88,"Date":"2/16/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":581,"Cost":360,"Date":"2/16/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":67,"Cost":48,"Date":"2/18/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":256,"Cost":185,"Date":"2/22/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":821,"Cost":592,"Date":"2/25/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":655,"Cost":399,"Date":"3/8/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":32,"Cost":19,"Date":"4/2/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":532,"Cost":502,"Date":"4/3/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":439,"Cost":251,"Date":"4/9/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":377,"Cost":314,"Date":"4/10/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":756,"Cost":491,"Date":"4/19/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":660,"Cost":510,"Date":"5/17/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":985,"Cost":536,"Date":"5/22/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":113,"Cost":69,"Date":"6/20/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":207,"Cost":185,"Date":"7/1/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":387,"Cost":327,"Date":"7/4/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":884,"Cost":582,"Date":"7/8/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":161,"Cost":110,"Date":"7/9/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":251,"Cost":228,"Date":"7/14/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":741,"Cost":448,"Date":"7/19/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":270,"Cost":174,"Date":"8/1/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":276,"Cost":230,"Date":"8/6/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":190,"Cost":164,"Date":"8/7/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":772,"Cost":399,"Date":"8/22/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":35,"Cost":31,"Date":"8/31/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":31,"Cost":22,"Date":"9/1/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":421,"Cost":222,"Date":"9/1/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":953,"Cost":492,"Date":"9/17/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":80,"Cost":55,"Date":"9/29/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":474,"Cost":341,"Date":"11/7/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":15,"Cost":14,"Date":"11/26/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":439,"Cost":223,"Date":"11/27/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":731,"Cost":554,"Date":"12/5/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":759,"Cost":638,"Date":"12/26/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":931,"Cost":828,"Date":"12/31/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":563,"Cost":526,"Date":"1/20/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":391,"Cost":282,"Date":"2/2/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":917,"Cost":660,"Date":"2/8/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":887,"Cost":744,"Date":"2/27/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":322,"Cost":255,"Date":"3/1/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":564,"Cost":451,"Date":"3/1/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":533,"Cost":452,"Date":"3/19/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":254,"Cost":226,"Date":"3/28/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":452,"Cost":349,"Date":"5/21/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":21,"Cost":17,"Date":"7/21/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":36,"Cost":33,"Date":"8/5/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":623,"Cost":452,"Date":"8/12/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":558,"Cost":529,"Date":"8/21/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":20,"Cost":12,"Date":"8/23/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":12,"Cost":9,"Date":"9/3/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":809,"Cost":487,"Date":"9/5/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":994,"Cost":798,"Date":"10/6/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":678,"Cost":410,"Date":"10/19/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":89,"Cost":61,"Date":"11/15/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":155,"Cost":121,"Date":"12/8/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":941,"Cost":511,"Date":"1/8/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":821,"Cost":439,"Date":"1/14/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":887,"Cost":722,"Date":"1/19/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":92,"Cost":46,"Date":"1/28/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":448,"Cost":385,"Date":"1/31/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":959,"Cost":506,"Date":"3/27/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":44,"Cost":29,"Date":"4/20/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":40,"Cost":30,"Date":"4/24/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":879,"Cost":648,"Date":"4/28/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":861,"Cost":705,"Date":"5/15/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":647,"Cost":497,"Date":"5/16/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":492,"Cost":360,"Date":"5/18/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":960,"Cost":911,"Date":"6/2/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":292,"Cost":275,"Date":"6/3/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":155,"Cost":133,"Date":"6/5/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":240,"Cost":170,"Date":"6/7/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":113,"Cost":92,"Date":"6/14/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":729,"Cost":617,"Date":"6/20/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":474,"Cost":394,"Date":"6/24/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":633,"Cost":525,"Date":"7/4/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":521,"Cost":487,"Date":"7/9/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":404,"Cost":281,"Date":"7/12/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":917,"Cost":774,"Date":"8/14/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":260,"Cost":169,"Date":"8/16/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":728,"Cost":433,"Date":"8/23/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":936,"Cost":655,"Date":"9/2/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":545,"Cost":398,"Date":"9/3/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":705,"Cost":649,"Date":"9/16/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":421,"Cost":252,"Date":"10/4/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":727,"Cost":434,"Date":"11/1/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":844,"Cost":531,"Date":"11/2/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":641,"Cost":580,"Date":"12/17/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":867,"Cost":506,"Date":"2/10/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":921,"Cost":582,"Date":"2/28/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":331,"Cost":176,"Date":"3/4/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":944,"Cost":691,"Date":"3/9/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":383,"Cost":362,"Date":"3/9/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":581,"Cost":408,"Date":"3/11/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":755,"Cost":569,"Date":"3/17/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":286,"Cost":185,"Date":"3/17/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":486,"Cost":278,"Date":"3/23/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":867,"Cost":533,"Date":"4/1/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":851,"Cost":643,"Date":"5/7/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":523,"Cost":357,"Date":"5/10/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":145,"Cost":93,"Date":"5/20/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":115,"Cost":77,"Date":"6/2/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":954,"Cost":841,"Date":"6/11/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":376,"Cost":215,"Date":"6/16/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":978,"Cost":714,"Date":"6/16/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":624,"Cost":408,"Date":"7/10/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":46,"Cost":34,"Date":"7/11/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":144,"Cost":84,"Date":"8/28/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":857,"Cost":653,"Date":"8/29/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":51,"Cost":32,"Date":"8/31/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":112,"Cost":56,"Date":"9/8/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":862,"Cost":506,"Date":"9/13/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":172,"Cost":96,"Date":"9/14/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":481,"Cost":388,"Date":"9/19/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":291,"Cost":276,"Date":"9/25/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":694,"Cost":379,"Date":"10/4/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":210,"Cost":199,"Date":"10/10/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":286,"Cost":205,"Date":"10/17/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":203,"Cost":155,"Date":"10/28/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":342,"Cost":269,"Date":"10/30/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":419,"Cost":366,"Date":"11/1/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":332,"Cost":172,"Date":"11/15/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":995,"Cost":590,"Date":"11/25/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":967,"Cost":586,"Date":"1/10/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":521,"Cost":276,"Date":"1/14/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":197,"Cost":151,"Date":"1/20/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":790,"Cost":641,"Date":"2/8/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":982,"Cost":816,"Date":"2/25/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":425,"Cost":398,"Date":"3/7/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":355,"Cost":322,"Date":"3/14/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":101,"Cost":96,"Date":"3/27/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":418,"Cost":338,"Date":"4/5/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":513,"Cost":466,"Date":"4/14/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":271,"Cost":214,"Date":"5/3/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":147,"Cost":74,"Date":"5/9/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":789,"Cost":618,"Date":"5/15/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":791,"Cost":648,"Date":"5/25/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":695,"Cost":577,"Date":"5/26/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":379,"Cost":190,"Date":"5/31/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":729,"Cost":481,"Date":"7/27/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":79,"Cost":54,"Date":"9/17/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":4,"Cost":4,"Date":"10/6/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":653,"Cost":378,"Date":"10/8/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":426,"Cost":327,"Date":"10/26/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":939,"Cost":847,"Date":"11/16/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":600,"Cost":348,"Date":"11/18/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":995,"Cost":844,"Date":"12/1/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":383,"Cost":232,"Date":"2/9/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":311,"Cost":286,"Date":"2/11/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":358,"Cost":340,"Date":"3/10/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":981,"Cost":630,"Date":"3/16/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":457,"Cost":228,"Date":"3/18/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":233,"Cost":201,"Date":"3/20/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":957,"Cost":661,"Date":"3/26/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":518,"Cost":463,"Date":"6/2/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":806,"Cost":648,"Date":"6/10/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":141,"Cost":129,"Date":"6/16/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":996,"Cost":521,"Date":"6/25/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":81,"Cost":50,"Date":"7/19/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":121,"Cost":92,"Date":"7/21/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":701,"Cost":454,"Date":"7/25/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":889,"Cost":833,"Date":"8/4/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":558,"Cost":348,"Date":"9/2/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":76,"Cost":45,"Date":"9/4/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":396,"Cost":246,"Date":"9/19/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":173,"Cost":154,"Date":"9/29/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":702,"Cost":544,"Date":"10/2/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":878,"Cost":789,"Date":"10/15/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":453,"Cost":258,"Date":"10/30/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":813,"Cost":621,"Date":"11/9/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":859,"Cost":772,"Date":"11/23/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":613,"Cost":484,"Date":"11/30/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":905,"Cost":788,"Date":"12/8/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":690,"Cost":607,"Date":"12/11/2018"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":541,"Cost":456,"Date":"1/15/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":159,"Cost":120,"Date":"1/24/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":2,"Cost":1,"Date":"2/3/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":961,"Cost":493,"Date":"2/4/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":162,"Cost":139,"Date":"3/9/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":988,"Cost":857,"Date":"3/12/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":599,"Cost":305,"Date":"4/19/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":257,"Cost":146,"Date":"5/3/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":431,"Cost":322,"Date":"5/4/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":275,"Cost":244,"Date":"6/8/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":355,"Cost":319,"Date":"6/26/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":849,"Cost":779,"Date":"7/4/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":301,"Cost":242,"Date":"7/13/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":828,"Cost":434,"Date":"8/8/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":848,"Cost":436,"Date":"8/26/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":945,"Cost":512,"Date":"9/2/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":389,"Cost":268,"Date":"9/29/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":794,"Cost":638,"Date":"10/12/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":658,"Cost":525,"Date":"11/2/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":743,"Cost":585,"Date":"11/4/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":979,"Cost":803,"Date":"11/7/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":774,"Cost":593,"Date":"12/1/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":558,"Cost":428,"Date":"12/4/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":537,"Cost":365,"Date":"12/7/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":820,"Cost":534,"Date":"12/18/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":406,"Cost":259,"Date":"12/20/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":141,"Cost":132,"Date":"12/20/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":852,"Cost":631,"Date":"12/21/2019"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":115,"Cost":106,"Date":"1/9/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":684,"Cost":483,"Date":"2/5/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":539,"Cost":494,"Date":"2/16/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":35,"Cost":21,"Date":"2/16/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":217,"Cost":111,"Date":"2/18/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":675,"Cost":488,"Date":"2/22/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":748,"Cost":509,"Date":"2/25/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":17,"Cost":8,"Date":"3/8/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":251,"Cost":132,"Date":"4/2/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":81,"Cost":48,"Date":"4/3/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":821,"Cost":442,"Date":"4/9/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":15,"Cost":11,"Date":"4/10/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":271,"Cost":184,"Date":"4/19/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":577,"Cost":398,"Date":"5/17/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":557,"Cost":452,"Date":"5/22/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":436,"Cost":323,"Date":"6/20/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":686,"Cost":604,"Date":"7/1/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":255,"Cost":165,"Date":"7/4/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":801,"Cost":741,"Date":"7/8/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":574,"Cost":399,"Date":"7/9/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":77,"Cost":43,"Date":"7/14/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":488,"Cost":336,"Date":"7/19/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":177,"Cost":165,"Date":"8/1/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":232,"Cost":131,"Date":"8/6/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":876,"Cost":598,"Date":"8/7/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":345,"Cost":179,"Date":"8/22/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":129,"Cost":123,"Date":"8/31/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":910,"Cost":464,"Date":"9/1/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":88,"Cost":67,"Date":"9/1/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":59,"Cost":36,"Date":"9/17/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":239,"Cost":140,"Date":"9/29/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":457,"Cost":291,"Date":"11/7/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":258,"Cost":137,"Date":"11/26/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":738,"Cost":661,"Date":"11/27/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":210,"Cost":173,"Date":"12/5/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":237,"Cost":184,"Date":"12/26/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":907,"Cost":731,"Date":"12/31/2020"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":418,"Cost":381,"Date":"1/20/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":651,"Cost":372,"Date":"2/2/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":935,"Cost":662,"Date":"2/8/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":718,"Cost":546,"Date":"2/27/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":395,"Cost":356,"Date":"3/1/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":281,"Cost":203,"Date":"3/1/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":557,"Cost":466,"Date":"3/19/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":386,"Cost":294,"Date":"3/28/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":598,"Cost":527,"Date":"5/21/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":862,"Cost":716,"Date":"7/21/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":553,"Cost":408,"Date":"8/5/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":618,"Cost":428,"Date":"8/12/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":248,"Cost":219,"Date":"8/21/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":461,"Cost":398,"Date":"8/23/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":787,"Cost":659,"Date":"9/3/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":698,"Cost":609,"Date":"9/5/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":678,"Cost":344,"Date":"10/6/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":460,"Cost":369,"Date":"10/19/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":712,"Cost":500,"Date":"11/15/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":632,"Cost":511,"Date":"12/8/2021"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":437,"Cost":324,"Date":"1/8/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":332,"Cost":266,"Date":"1/14/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":582,"Cost":358,"Date":"1/19/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":435,"Cost":395,"Date":"1/28/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":573,"Cost":474,"Date":"1/31/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":909,"Cost":656,"Date":"3/27/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":36,"Cost":32,"Date":"4/20/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":194,"Cost":176,"Date":"4/24/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":106,"Cost":57,"Date":"4/28/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":43,"Cost":34,"Date":"5/15/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":790,"Cost":693,"Date":"5/16/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":314,"Cost":290,"Date":"5/18/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":878,"Cost":673,"Date":"6/2/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":829,"Cost":719,"Date":"6/3/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":352,"Cost":322,"Date":"6/5/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":88,"Cost":49,"Date":"6/7/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":528,"Cost":393,"Date":"6/14/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":20,"Cost":19,"Date":"6/20/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":267,"Cost":191,"Date":"6/24/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":851,"Cost":641,"Date":"7/4/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":500,"Cost":452,"Date":"7/9/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":711,"Cost":662,"Date":"7/12/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":639,"Cost":349,"Date":"8/14/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":401,"Cost":359,"Date":"8/16/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":900,"Cost":687,"Date":"8/23/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":578,"Cost":370,"Date":"9/2/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":377,"Cost":280,"Date":"9/3/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":362,"Cost":329,"Date":"9/16/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":882,"Cost":671,"Date":"10/4/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":826,"Cost":487,"Date":"11/1/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":197,"Cost":143,"Date":"11/2/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":79,"Cost":54,"Date":"12/17/2022"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":437,"Cost":307,"Date":"2/10/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":522,"Cost":394,"Date":"2/28/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":188,"Cost":155,"Date":"3/4/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":661,"Cost":591,"Date":"3/9/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":285,"Cost":244,"Date":"3/9/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":212,"Cost":127,"Date":"3/11/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":683,"Cost":589,"Date":"3/17/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":320,"Cost":225,"Date":"3/17/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":999,"Cost":937,"Date":"3/23/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":929,"Cost":510,"Date":"4/1/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":292,"Cost":186,"Date":"5/7/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":720,"Cost":618,"Date":"5/10/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":907,"Cost":500,"Date":"5/20/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":580,"Cost":521,"Date":"6/2/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":527,"Cost":479,"Date":"6/11/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":890,"Cost":607,"Date":"6/16/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":184,"Cost":130,"Date":"6/16/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":64,"Cost":32,"Date":"7/10/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":991,"Cost":789,"Date":"7/11/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":904,"Cost":590,"Date":"8/28/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":249,"Cost":134,"Date":"8/29/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":6,"Cost":3,"Date":"8/31/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":613,"Cost":563,"Date":"9/8/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":601,"Cost":559,"Date":"9/13/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":815,"Cost":600,"Date":"9/14/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":968,"Cost":499,"Date":"9/19/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":555,"Cost":396,"Date":"9/25/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":242,"Cost":193,"Date":"10/4/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":883,"Cost":460,"Date":"10/10/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":407,"Cost":339,"Date":"10/17/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":253,"Cost":184,"Date":"10/28/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":121,"Cost":90,"Date":"10/30/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":287,"Cost":165,"Date":"11/1/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":721,"Cost":380,"Date":"11/15/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":109,"Cost":73,"Date":"11/25/2023"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":22,"Cost":14,"Date":"1/10/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":898,"Cost":655,"Date":"1/14/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":483,"Cost":340,"Date":"1/20/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":510,"Cost":275,"Date":"2/8/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":937,"Cost":564,"Date":"2/25/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":388,"Cost":229,"Date":"3/7/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":774,"Cost":422,"Date":"3/14/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":819,"Cost":595,"Date":"3/27/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":131,"Cost":81,"Date":"4/5/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":283,"Cost":151,"Date":"4/14/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":639,"Cost":425,"Date":"5/3/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":229,"Cost":139,"Date":"5/9/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":240,"Cost":137,"Date":"5/15/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":486,"Cost":447,"Date":"5/25/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":15,"Cost":9,"Date":"5/26/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":388,"Cost":196,"Date":"5/31/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":545,"Cost":300,"Date":"7/27/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":797,"Cost":587,"Date":"9/17/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":316,"Cost":173,"Date":"10/6/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":529,"Cost":320,"Date":"10/8/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":426,"Cost":285,"Date":"10/26/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":252,"Cost":135,"Date":"11/16/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":910,"Cost":625,"Date":"11/18/2024"},{"Store":"Mall Veliko Tarnovo","Brand":"ARKET","Country":"Bulgaria","Sale":567,"Cost":315,"Date":"12/1/2024"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":625,"Cost":319,"Date":"2/9/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":948,"Cost":598,"Date":"2/11/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":178,"Cost":142,"Date":"3/10/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":500,"Cost":396,"Date":"3/16/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":421,"Cost":231,"Date":"3/18/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":301,"Cost":183,"Date":"3/20/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":436,"Cost":276,"Date":"3/26/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":129,"Cost":98,"Date":"6/2/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":452,"Cost":280,"Date":"6/10/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":1000,"Cost":669,"Date":"6/16/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":921,"Cost":576,"Date":"6/25/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":903,"Cost":771,"Date":"7/19/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":922,"Cost":788,"Date":"7/21/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":571,"Cost":310,"Date":"7/25/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":111,"Cost":75,"Date":"8/4/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":204,"Cost":173,"Date":"9/2/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":270,"Cost":175,"Date":"9/4/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":162,"Cost":90,"Date":"9/19/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":614,"Cost":582,"Date":"9/29/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":934,"Cost":805,"Date":"10/2/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":578,"Cost":469,"Date":"10/15/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":719,"Cost":495,"Date":"10/30/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":112,"Cost":81,"Date":"11/9/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":853,"Cost":496,"Date":"11/23/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":541,"Cost":403,"Date":"11/30/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":80,"Cost":68,"Date":"12/8/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":647,"Cost":487,"Date":"12/11/2018"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":708,"Cost":673,"Date":"1/15/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":927,"Cost":592,"Date":"1/24/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":260,"Cost":234,"Date":"2/3/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":786,"Cost":729,"Date":"2/4/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":941,"Cost":481,"Date":"3/9/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":915,"Cost":459,"Date":"3/12/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":173,"Cost":151,"Date":"4/19/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":19,"Cost":15,"Date":"5/3/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":554,"Cost":328,"Date":"5/4/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":776,"Cost":713,"Date":"6/8/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":18,"Cost":15,"Date":"6/26/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":264,"Cost":213,"Date":"7/4/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":375,"Cost":240,"Date":"7/13/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":847,"Cost":558,"Date":"8/8/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":88,"Cost":56,"Date":"8/26/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":998,"Cost":771,"Date":"9/2/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":373,"Cost":192,"Date":"9/29/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":570,"Cost":431,"Date":"10/12/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":578,"Cost":381,"Date":"11/2/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":683,"Cost":366,"Date":"11/4/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":950,"Cost":586,"Date":"11/7/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":764,"Cost":569,"Date":"12/1/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":240,"Cost":178,"Date":"12/4/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":293,"Cost":203,"Date":"12/7/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":810,"Cost":603,"Date":"12/18/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":435,"Cost":401,"Date":"12/20/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":140,"Cost":105,"Date":"12/20/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":590,"Cost":529,"Date":"12/21/2019"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":311,"Cost":203,"Date":"1/9/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":828,"Cost":612,"Date":"2/5/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":857,"Cost":431,"Date":"2/16/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":230,"Cost":121,"Date":"2/16/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":236,"Cost":144,"Date":"2/18/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":64,"Cost":35,"Date":"2/22/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":327,"Cost":286,"Date":"2/25/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":397,"Cost":364,"Date":"3/8/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":599,"Cost":404,"Date":"4/2/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":388,"Cost":276,"Date":"4/3/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":87,"Cost":81,"Date":"4/9/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":602,"Cost":424,"Date":"4/10/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":448,"Cost":373,"Date":"4/19/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":748,"Cost":377,"Date":"5/17/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":558,"Cost":418,"Date":"5/22/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":458,"Cost":324,"Date":"6/20/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":571,"Cost":476,"Date":"7/1/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":848,"Cost":564,"Date":"7/4/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":934,"Cost":472,"Date":"7/8/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":266,"Cost":135,"Date":"7/9/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":360,"Cost":271,"Date":"7/14/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":699,"Cost":508,"Date":"7/19/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":316,"Cost":290,"Date":"8/1/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":366,"Cost":337,"Date":"8/6/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":560,"Cost":337,"Date":"8/7/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":632,"Cost":399,"Date":"8/22/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":675,"Cost":571,"Date":"8/31/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":184,"Cost":161,"Date":"9/1/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":451,"Cost":409,"Date":"9/1/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":791,"Cost":616,"Date":"9/17/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":285,"Cost":190,"Date":"9/29/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":760,"Cost":409,"Date":"11/7/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":225,"Cost":130,"Date":"11/26/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":762,"Cost":712,"Date":"11/27/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":91,"Cost":81,"Date":"12/5/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":424,"Cost":396,"Date":"12/26/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":552,"Cost":485,"Date":"12/31/2020"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":66,"Cost":53,"Date":"1/20/2021"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":431,"Cost":285,"Date":"2/2/2021"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":17,"Cost":14,"Date":"2/8/2021"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":553,"Cost":280,"Date":"2/27/2021"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":68,"Cost":60,"Date":"3/1/2021"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":654,"Cost":482,"Date":"3/1/2021"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":944,"Cost":846,"Date":"3/19/2021"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":336,"Cost":302,"Date":"3/28/2021"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":976,"Cost":528,"Date":"5/21/2021"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":900,"Cost":689,"Date":"7/21/2021"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":335,"Cost":243,"Date":"8/5/2021"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":477,"Cost":431,"Date":"8/12/2021"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":654,"Cost":371,"Date":"8/21/2021"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":455,"Cost":294,"Date":"8/23/2021"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":904,"Cost":709,"Date":"9/3/2021"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":922,"Cost":544,"Date":"9/5/2021"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":773,"Cost":720,"Date":"10/6/2021"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":307,"Cost":182,"Date":"10/19/2021"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":120,"Cost":78,"Date":"11/15/2021"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":961,"Cost":607,"Date":"12/8/2021"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":443,"Cost":328,"Date":"1/8/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":550,"Cost":293,"Date":"1/14/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":399,"Cost":267,"Date":"1/19/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":174,"Cost":124,"Date":"1/28/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":323,"Cost":264,"Date":"1/31/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":476,"Cost":438,"Date":"3/27/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":809,"Cost":700,"Date":"4/20/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":996,"Cost":937,"Date":"4/24/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":310,"Cost":293,"Date":"4/28/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":148,"Cost":127,"Date":"5/15/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":806,"Cost":530,"Date":"5/16/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":383,"Cost":359,"Date":"5/18/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":97,"Cost":88,"Date":"6/2/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":635,"Cost":542,"Date":"6/3/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":903,"Cost":675,"Date":"6/5/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":511,"Cost":379,"Date":"6/7/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":214,"Cost":131,"Date":"6/14/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":656,"Cost":539,"Date":"6/20/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":411,"Cost":371,"Date":"6/24/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":310,"Cost":177,"Date":"7/4/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":343,"Cost":181,"Date":"7/9/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":561,"Cost":346,"Date":"7/12/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":146,"Cost":87,"Date":"8/14/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":563,"Cost":338,"Date":"8/16/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":442,"Cost":389,"Date":"8/23/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":587,"Cost":365,"Date":"9/2/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":417,"Cost":228,"Date":"9/3/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":699,"Cost":480,"Date":"9/16/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":544,"Cost":381,"Date":"10/4/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":714,"Cost":581,"Date":"11/1/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":613,"Cost":504,"Date":"11/2/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":142,"Cost":107,"Date":"12/17/2022"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":571,"Cost":435,"Date":"2/10/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":290,"Cost":232,"Date":"2/28/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":14,"Cost":7,"Date":"3/4/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":978,"Cost":515,"Date":"3/9/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":308,"Cost":224,"Date":"3/9/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":831,"Cost":702,"Date":"3/11/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":440,"Cost":296,"Date":"3/17/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":304,"Cost":209,"Date":"3/17/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":723,"Cost":608,"Date":"3/23/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":194,"Cost":133,"Date":"4/1/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":722,"Cost":623,"Date":"5/7/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":463,"Cost":282,"Date":"5/10/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":517,"Cost":407,"Date":"5/20/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":613,"Cost":392,"Date":"6/2/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":813,"Cost":616,"Date":"6/11/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":813,"Cost":651,"Date":"6/16/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":993,"Cost":926,"Date":"6/16/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":464,"Cost":342,"Date":"7/10/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":573,"Cost":328,"Date":"7/11/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":594,"Cost":522,"Date":"8/28/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":50,"Cost":27,"Date":"8/29/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":91,"Cost":47,"Date":"8/31/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":489,"Cost":353,"Date":"9/8/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":598,"Cost":446,"Date":"9/13/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":683,"Cost":616,"Date":"9/14/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":433,"Cost":399,"Date":"9/19/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":401,"Cost":273,"Date":"9/25/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":926,"Cost":698,"Date":"10/4/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":957,"Cost":763,"Date":"10/10/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":921,"Cost":547,"Date":"10/17/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":980,"Cost":683,"Date":"10/28/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":909,"Cost":630,"Date":"10/30/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":560,"Cost":306,"Date":"11/1/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":104,"Cost":67,"Date":"11/15/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":337,"Cost":211,"Date":"11/25/2023"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":123,"Cost":66,"Date":"1/10/2024"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":823,"Cost":537,"Date":"1/14/2024"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":796,"Cost":633,"Date":"1/20/2024"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":854,"Cost":623,"Date":"2/8/2024"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":311,"Cost":158,"Date":"2/25/2024"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":634,"Cost":487,"Date":"3/7/2024"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":462,"Cost":427,"Date":"3/14/2024"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":639,"Cost":420,"Date":"3/27/2024"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":452,"Cost":233,"Date":"4/5/2024"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":400,"Cost":267,"Date":"4/14/2024"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":205,"Cost":132,"Date":"5/3/2024"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":78,"Cost":55,"Date":"5/9/2024"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":459,"Cost":286,"Date":"5/15/2024"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":533,"Cost":381,"Date":"5/25/2024"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":908,"Cost":628,"Date":"5/26/2024"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":1000,"Cost":800,"Date":"5/31/2024"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":557,"Cost":318,"Date":"7/27/2024"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":883,"Cost":459,"Date":"9/17/2024"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":435,"Cost":260,"Date":"10/6/2024"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":94,"Cost":47,"Date":"10/8/2024"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":734,"Cost":505,"Date":"10/26/2024"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":835,"Cost":487,"Date":"11/16/2024"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":682,"Cost":474,"Date":"11/18/2024"},{"Store":"Shumen Mall","Brand":"ARKET","Country":"Bulgaria","Sale":212,"Cost":125,"Date":"12/1/2024"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":723,"Cost":600,"Date":"2/9/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":882,"Cost":810,"Date":"2/11/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":159,"Cost":146,"Date":"3/10/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":347,"Cost":293,"Date":"3/16/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":610,"Cost":359,"Date":"3/18/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":935,"Cost":674,"Date":"3/20/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":892,"Cost":539,"Date":"3/26/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":361,"Cost":222,"Date":"6/2/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":701,"Cost":664,"Date":"6/10/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":514,"Cost":313,"Date":"6/16/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":948,"Cost":768,"Date":"6/25/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":846,"Cost":713,"Date":"7/19/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":316,"Cost":208,"Date":"7/21/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":230,"Cost":128,"Date":"7/25/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":789,"Cost":663,"Date":"8/4/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":292,"Cost":238,"Date":"9/2/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":274,"Cost":257,"Date":"9/4/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":833,"Cost":526,"Date":"9/19/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":959,"Cost":896,"Date":"9/29/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":863,"Cost":664,"Date":"10/2/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":827,"Cost":770,"Date":"10/15/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":518,"Cost":384,"Date":"10/30/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":922,"Cost":707,"Date":"11/9/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":998,"Cost":585,"Date":"11/23/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":348,"Cost":253,"Date":"11/30/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":266,"Cost":242,"Date":"12/8/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":134,"Cost":113,"Date":"12/11/2018"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":550,"Cost":303,"Date":"1/15/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":695,"Cost":494,"Date":"1/24/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":538,"Cost":380,"Date":"2/3/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":633,"Cost":487,"Date":"2/4/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":715,"Cost":649,"Date":"3/9/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":455,"Cost":264,"Date":"3/12/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":11,"Cost":9,"Date":"4/19/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":753,"Cost":589,"Date":"5/3/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":947,"Cost":845,"Date":"5/4/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":499,"Cost":374,"Date":"6/8/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":643,"Cost":570,"Date":"6/26/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":271,"Cost":160,"Date":"7/4/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":796,"Cost":526,"Date":"7/13/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":806,"Cost":561,"Date":"8/8/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":883,"Cost":581,"Date":"8/26/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":255,"Cost":228,"Date":"9/2/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":781,"Cost":412,"Date":"9/29/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":93,"Cost":77,"Date":"10/12/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":273,"Cost":213,"Date":"11/2/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":199,"Cost":130,"Date":"11/4/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":695,"Cost":523,"Date":"11/7/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":237,"Cost":121,"Date":"12/1/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":714,"Cost":602,"Date":"12/4/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":770,"Cost":451,"Date":"12/7/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":31,"Cost":29,"Date":"12/18/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":307,"Cost":175,"Date":"12/20/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":591,"Cost":297,"Date":"12/20/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":99,"Cost":81,"Date":"12/21/2019"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":871,"Cost":532,"Date":"1/9/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":408,"Cost":354,"Date":"2/5/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":386,"Cost":314,"Date":"2/16/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":39,"Cost":30,"Date":"2/16/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":438,"Cost":322,"Date":"2/18/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":796,"Cost":721,"Date":"2/22/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":489,"Cost":449,"Date":"2/25/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":290,"Cost":186,"Date":"3/8/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":892,"Cost":667,"Date":"4/2/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":175,"Cost":153,"Date":"4/3/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":359,"Cost":217,"Date":"4/9/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":365,"Cost":250,"Date":"4/10/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":260,"Cost":201,"Date":"4/19/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":120,"Cost":110,"Date":"5/17/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":82,"Cost":47,"Date":"5/22/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":35,"Cost":18,"Date":"6/20/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":839,"Cost":708,"Date":"7/1/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":701,"Cost":432,"Date":"7/4/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":176,"Cost":159,"Date":"7/8/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":174,"Cost":142,"Date":"7/9/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":406,"Cost":331,"Date":"7/14/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":57,"Cost":52,"Date":"7/19/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":205,"Cost":149,"Date":"8/1/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":866,"Cost":513,"Date":"8/6/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":657,"Cost":593,"Date":"8/7/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":911,"Cost":488,"Date":"8/22/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":166,"Cost":92,"Date":"8/31/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":628,"Cost":505,"Date":"9/1/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":259,"Cost":232,"Date":"9/1/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":419,"Cost":304,"Date":"9/17/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":684,"Cost":595,"Date":"9/29/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":61,"Cost":56,"Date":"11/7/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":619,"Cost":558,"Date":"11/26/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":789,"Cost":718,"Date":"11/27/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":652,"Cost":577,"Date":"12/5/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":851,"Cost":541,"Date":"12/26/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":225,"Cost":205,"Date":"12/31/2020"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":632,"Cost":483,"Date":"1/20/2021"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":839,"Cost":779,"Date":"2/2/2021"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":323,"Cost":284,"Date":"2/8/2021"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":730,"Cost":414,"Date":"2/27/2021"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":905,"Cost":560,"Date":"3/1/2021"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":655,"Cost":593,"Date":"3/1/2021"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":377,"Cost":286,"Date":"3/19/2021"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":716,"Cost":584,"Date":"3/28/2021"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":898,"Cost":602,"Date":"5/21/2021"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":605,"Cost":374,"Date":"7/21/2021"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":783,"Cost":391,"Date":"8/5/2021"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":741,"Cost":649,"Date":"8/12/2021"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":77,"Cost":64,"Date":"8/21/2021"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":170,"Cost":118,"Date":"8/23/2021"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":187,"Cost":115,"Date":"9/3/2021"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":930,"Cost":855,"Date":"9/5/2021"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":292,"Cost":148,"Date":"10/6/2021"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":997,"Cost":892,"Date":"10/19/2021"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":161,"Cost":89,"Date":"11/15/2021"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":46,"Cost":30,"Date":"12/8/2021"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":261,"Cost":218,"Date":"1/8/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":655,"Cost":373,"Date":"1/14/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":917,"Cost":615,"Date":"1/19/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":757,"Cost":436,"Date":"1/28/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":192,"Cost":99,"Date":"1/31/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":642,"Cost":537,"Date":"3/27/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":716,"Cost":459,"Date":"4/20/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":499,"Cost":449,"Date":"4/24/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":127,"Cost":106,"Date":"4/28/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":723,"Cost":474,"Date":"5/15/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":707,"Cost":541,"Date":"5/16/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":664,"Cost":453,"Date":"5/18/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":830,"Cost":457,"Date":"6/2/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":429,"Cost":257,"Date":"6/3/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":751,"Cost":681,"Date":"6/5/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":999,"Cost":509,"Date":"6/7/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":512,"Cost":343,"Date":"6/14/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":101,"Cost":59,"Date":"6/20/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":225,"Cost":196,"Date":"6/24/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":853,"Cost":590,"Date":"7/4/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":96,"Cost":55,"Date":"7/9/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":805,"Cost":508,"Date":"7/12/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":856,"Cost":511,"Date":"8/14/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":433,"Cost":276,"Date":"8/16/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":991,"Cost":770,"Date":"8/23/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":423,"Cost":247,"Date":"9/2/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":134,"Cost":74,"Date":"9/3/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":763,"Cost":483,"Date":"9/16/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":254,"Cost":188,"Date":"10/4/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":236,"Cost":149,"Date":"11/1/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":83,"Cost":46,"Date":"11/2/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":307,"Cost":162,"Date":"12/17/2022"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":810,"Cost":630,"Date":"2/10/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":322,"Cost":295,"Date":"2/28/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":325,"Cost":172,"Date":"3/4/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":752,"Cost":624,"Date":"3/9/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":25,"Cost":20,"Date":"3/9/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":526,"Cost":474,"Date":"3/11/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":402,"Cost":212,"Date":"3/17/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":58,"Cost":47,"Date":"3/17/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":424,"Cost":217,"Date":"3/23/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":289,"Cost":271,"Date":"4/1/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":862,"Cost":639,"Date":"5/7/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":303,"Cost":237,"Date":"5/10/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":643,"Cost":543,"Date":"5/20/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":302,"Cost":163,"Date":"6/2/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":776,"Cost":662,"Date":"6/11/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":332,"Cost":240,"Date":"6/16/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":723,"Cost":632,"Date":"6/16/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":203,"Cost":181,"Date":"7/10/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":930,"Cost":640,"Date":"7/11/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":159,"Cost":100,"Date":"8/28/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":130,"Cost":69,"Date":"8/29/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":939,"Cost":800,"Date":"8/31/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":166,"Cost":84,"Date":"9/8/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":328,"Cost":213,"Date":"9/13/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":874,"Cost":527,"Date":"9/14/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":711,"Cost":372,"Date":"9/19/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":807,"Cost":673,"Date":"9/25/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":423,"Cost":285,"Date":"10/4/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":112,"Cost":73,"Date":"10/10/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":964,"Cost":713,"Date":"10/17/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":362,"Cost":289,"Date":"10/28/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":460,"Cost":287,"Date":"10/30/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":605,"Cost":477,"Date":"11/1/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":705,"Cost":380,"Date":"11/15/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":902,"Cost":808,"Date":"11/25/2023"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":845,"Cost":542,"Date":"1/10/2024"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":572,"Cost":515,"Date":"1/14/2024"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":831,"Cost":743,"Date":"1/20/2024"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":243,"Cost":220,"Date":"2/8/2024"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":20,"Cost":10,"Date":"2/25/2024"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":278,"Cost":139,"Date":"3/7/2024"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":116,"Cost":103,"Date":"3/14/2024"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":684,"Cost":567,"Date":"3/27/2024"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":469,"Cost":282,"Date":"4/5/2024"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":693,"Cost":384,"Date":"4/14/2024"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":595,"Cost":316,"Date":"5/3/2024"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":501,"Cost":304,"Date":"5/9/2024"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":562,"Cost":311,"Date":"5/15/2024"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":433,"Cost":285,"Date":"5/25/2024"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":798,"Cost":690,"Date":"5/26/2024"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":712,"Cost":414,"Date":"5/31/2024"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":803,"Cost":610,"Date":"7/27/2024"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":438,"Cost":308,"Date":"9/17/2024"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":538,"Cost":362,"Date":"10/6/2024"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":130,"Cost":99,"Date":"10/8/2024"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":466,"Cost":398,"Date":"10/26/2024"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":565,"Cost":350,"Date":"11/16/2024"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":279,"Cost":190,"Date":"11/18/2024"},{"Store":"Shumen Mall","Brand":"Jeans","Country":"Bulgaria","Sale":979,"Cost":553,"Date":"12/1/2024"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":853,"Cost":691,"Date":"2/9/2018"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":954,"Cost":888,"Date":"2/11/2018"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":712,"Cost":469,"Date":"3/10/2018"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":380,"Cost":327,"Date":"3/16/2018"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":579,"Cost":323,"Date":"3/18/2018"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":231,"Cost":138,"Date":"3/20/2018"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":779,"Cost":513,"Date":"3/26/2018"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":730,"Cost":503,"Date":"6/2/2018"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":62,"Cost":39,"Date":"6/10/2018"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":80,"Cost":49,"Date":"6/16/2018"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":691,"Cost":413,"Date":"6/25/2018"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":888,"Cost":597,"Date":"7/19/2018"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":629,"Cost":332,"Date":"7/21/2018"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":133,"Cost":69,"Date":"7/25/2018"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":788,"Cost":481,"Date":"8/4/2018"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":307,"Cost":161,"Date":"9/2/2018"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":559,"Cost":295,"Date":"9/4/2018"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":589,"Cost":451,"Date":"9/19/2018"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":623,"Cost":380,"Date":"9/29/2018"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":274,"Cost":216,"Date":"10/2/2018"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":388,"Cost":247,"Date":"10/15/2018"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":536,"Cost":391,"Date":"10/30/2018"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":855,"Cost":688,"Date":"11/9/2018"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":503,"Cost":431,"Date":"11/23/2018"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":948,"Cost":528,"Date":"11/30/2018"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":127,"Cost":77,"Date":"12/8/2018"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":997,"Cost":734,"Date":"12/11/2018"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":180,"Cost":148,"Date":"1/15/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":414,"Cost":348,"Date":"1/24/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":393,"Cost":252,"Date":"2/3/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":894,"Cost":710,"Date":"2/4/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":212,"Cost":161,"Date":"3/9/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":475,"Cost":260,"Date":"3/12/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":880,"Cost":565,"Date":"4/19/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":491,"Cost":262,"Date":"5/3/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":178,"Cost":119,"Date":"5/4/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":52,"Cost":29,"Date":"6/8/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":140,"Cost":106,"Date":"6/26/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":441,"Cost":354,"Date":"7/4/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":225,"Cost":116,"Date":"7/13/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":22,"Cost":18,"Date":"8/8/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":896,"Cost":505,"Date":"8/26/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":107,"Cost":54,"Date":"9/2/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":702,"Cost":596,"Date":"9/29/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":225,"Cost":214,"Date":"10/12/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":285,"Cost":256,"Date":"11/2/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":995,"Cost":832,"Date":"11/4/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":617,"Cost":358,"Date":"11/7/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":322,"Cost":276,"Date":"12/1/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":811,"Cost":560,"Date":"12/4/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":46,"Cost":25,"Date":"12/7/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":810,"Cost":502,"Date":"12/18/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":375,"Cost":230,"Date":"12/20/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":712,"Cost":546,"Date":"12/20/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":124,"Cost":77,"Date":"12/21/2019"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":691,"Cost":561,"Date":"1/9/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":434,"Cost":282,"Date":"2/5/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":366,"Cost":189,"Date":"2/16/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":826,"Cost":768,"Date":"2/16/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":421,"Cost":350,"Date":"2/18/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":608,"Cost":461,"Date":"2/22/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":709,"Cost":540,"Date":"2/25/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":250,"Cost":171,"Date":"3/8/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":73,"Cost":60,"Date":"4/2/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":908,"Cost":498,"Date":"4/3/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":636,"Cost":526,"Date":"4/9/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":93,"Cost":63,"Date":"4/10/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":513,"Cost":381,"Date":"4/19/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":883,"Cost":751,"Date":"5/17/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":834,"Cost":686,"Date":"5/22/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":81,"Cost":66,"Date":"6/20/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":804,"Cost":448,"Date":"7/1/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":973,"Cost":793,"Date":"7/4/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":919,"Cost":467,"Date":"7/8/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":288,"Cost":188,"Date":"7/9/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":725,"Cost":413,"Date":"7/14/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":25,"Cost":19,"Date":"7/19/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":275,"Cost":195,"Date":"8/1/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":568,"Cost":332,"Date":"8/6/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":942,"Cost":891,"Date":"8/7/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":136,"Cost":120,"Date":"8/22/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":725,"Cost":656,"Date":"8/31/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":419,"Cost":270,"Date":"9/1/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":526,"Cost":370,"Date":"9/1/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":686,"Cost":652,"Date":"9/17/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":694,"Cost":474,"Date":"9/29/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":755,"Cost":470,"Date":"11/7/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":966,"Cost":679,"Date":"11/26/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":632,"Cost":327,"Date":"11/27/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":529,"Cost":413,"Date":"12/5/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":956,"Cost":597,"Date":"12/26/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":697,"Cost":537,"Date":"12/31/2020"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":750,"Cost":666,"Date":"1/20/2021"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":229,"Cost":199,"Date":"2/2/2021"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":757,"Cost":498,"Date":"2/8/2021"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":176,"Cost":121,"Date":"2/27/2021"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":418,"Cost":364,"Date":"3/1/2021"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":826,"Cost":563,"Date":"3/1/2021"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":234,"Cost":216,"Date":"3/19/2021"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":189,"Cost":142,"Date":"3/28/2021"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":89,"Cost":62,"Date":"5/21/2021"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":903,"Cost":574,"Date":"7/21/2021"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":986,"Cost":668,"Date":"8/5/2021"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":525,"Cost":489,"Date":"8/12/2021"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":508,"Cost":480,"Date":"8/21/2021"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":777,"Cost":529,"Date":"8/23/2021"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":587,"Cost":415,"Date":"9/3/2021"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":319,"Cost":190,"Date":"9/5/2021"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":664,"Cost":447,"Date":"10/6/2021"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":674,"Cost":493,"Date":"10/19/2021"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":624,"Cost":538,"Date":"11/15/2021"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":988,"Cost":543,"Date":"12/8/2021"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":752,"Cost":398,"Date":"1/8/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":251,"Cost":213,"Date":"1/14/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":84,"Cost":61,"Date":"1/19/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":597,"Cost":461,"Date":"1/28/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":437,"Cost":410,"Date":"1/31/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":663,"Cost":521,"Date":"3/27/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":667,"Cost":337,"Date":"4/20/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":426,"Cost":252,"Date":"4/24/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":290,"Cost":239,"Date":"4/28/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":949,"Cost":875,"Date":"5/15/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":526,"Cost":349,"Date":"5/16/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":77,"Cost":70,"Date":"5/18/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":650,"Cost":360,"Date":"6/2/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":245,"Cost":225,"Date":"6/3/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":734,"Cost":498,"Date":"6/5/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":138,"Cost":104,"Date":"6/7/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":642,"Cost":342,"Date":"6/14/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":45,"Cost":35,"Date":"6/20/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":576,"Cost":324,"Date":"6/24/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":593,"Cost":555,"Date":"7/4/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":740,"Cost":609,"Date":"7/9/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":709,"Cost":621,"Date":"7/12/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":74,"Cost":45,"Date":"8/14/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":839,"Cost":605,"Date":"8/16/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":930,"Cost":600,"Date":"8/23/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":656,"Cost":522,"Date":"9/2/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":60,"Cost":46,"Date":"9/3/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":948,"Cost":686,"Date":"9/16/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":919,"Cost":497,"Date":"10/4/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":300,"Cost":253,"Date":"11/1/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":356,"Cost":314,"Date":"11/2/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":188,"Cost":177,"Date":"12/17/2022"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":731,"Cost":435,"Date":"2/10/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":276,"Cost":260,"Date":"2/28/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":583,"Cost":399,"Date":"3/4/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":78,"Cost":66,"Date":"3/9/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":936,"Cost":546,"Date":"3/9/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":28,"Cost":14,"Date":"3/11/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":464,"Cost":345,"Date":"3/17/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":162,"Cost":149,"Date":"3/17/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":624,"Cost":499,"Date":"3/23/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":668,"Cost":596,"Date":"4/1/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":539,"Cost":440,"Date":"5/7/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":499,"Cost":323,"Date":"5/10/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":832,"Cost":509,"Date":"5/20/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":871,"Cost":765,"Date":"6/2/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":957,"Cost":696,"Date":"6/11/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":465,"Cost":238,"Date":"6/16/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":41,"Cost":37,"Date":"6/16/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":775,"Cost":405,"Date":"7/10/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":863,"Cost":801,"Date":"7/11/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":703,"Cost":534,"Date":"8/28/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":469,"Cost":384,"Date":"8/29/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":600,"Cost":558,"Date":"8/31/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":851,"Cost":487,"Date":"9/8/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":803,"Cost":754,"Date":"9/13/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":883,"Cost":694,"Date":"9/14/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":592,"Cost":370,"Date":"9/19/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":322,"Cost":197,"Date":"9/25/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":740,"Cost":664,"Date":"10/4/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":300,"Cost":273,"Date":"10/10/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":629,"Cost":452,"Date":"10/17/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":986,"Cost":838,"Date":"10/28/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":52,"Cost":42,"Date":"10/30/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":176,"Cost":102,"Date":"11/1/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":142,"Cost":109,"Date":"11/15/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":340,"Cost":193,"Date":"11/25/2023"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":952,"Cost":560,"Date":"1/10/2024"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":730,"Cost":611,"Date":"1/14/2024"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":676,"Cost":593,"Date":"1/20/2024"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":239,"Cost":162,"Date":"2/8/2024"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":837,"Cost":468,"Date":"2/25/2024"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":706,"Cost":517,"Date":"3/7/2024"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":579,"Cost":475,"Date":"3/14/2024"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":633,"Cost":555,"Date":"3/27/2024"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":910,"Cost":590,"Date":"4/5/2024"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":638,"Cost":352,"Date":"4/14/2024"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":867,"Cost":810,"Date":"5/3/2024"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":319,"Cost":269,"Date":"5/9/2024"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":817,"Cost":546,"Date":"5/15/2024"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":764,"Cost":496,"Date":"5/25/2024"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":873,"Cost":444,"Date":"5/26/2024"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":138,"Cost":84,"Date":"5/31/2024"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":387,"Cost":227,"Date":"7/27/2024"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":507,"Cost":406,"Date":"9/17/2024"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":935,"Cost":562,"Date":"10/6/2024"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":37,"Cost":32,"Date":"10/8/2024"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":324,"Cost":219,"Date":"10/26/2024"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":808,"Cost":424,"Date":"11/16/2024"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":294,"Cost":277,"Date":"11/18/2024"},{"Store":"Shumen Mall","Brand":"HM","Country":"Bulgaria","Sale":701,"Cost":437,"Date":"12/1/2024"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":736,"Cost":486,"Date":"2/9/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":260,"Cost":219,"Date":"2/11/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":106,"Cost":61,"Date":"3/10/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":534,"Cost":385,"Date":"3/16/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":395,"Cost":331,"Date":"3/18/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":643,"Cost":461,"Date":"3/20/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":27,"Cost":13,"Date":"3/26/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":554,"Cost":324,"Date":"6/2/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":738,"Cost":448,"Date":"6/10/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":696,"Cost":598,"Date":"6/16/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":989,"Cost":562,"Date":"6/25/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":99,"Cost":89,"Date":"7/19/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":65,"Cost":53,"Date":"7/21/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":537,"Cost":475,"Date":"7/25/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":465,"Cost":433,"Date":"8/4/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":69,"Cost":52,"Date":"9/2/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":94,"Cost":74,"Date":"9/4/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":258,"Cost":201,"Date":"9/19/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":549,"Cost":428,"Date":"9/29/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":575,"Cost":438,"Date":"10/2/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":391,"Cost":230,"Date":"10/15/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":394,"Cost":372,"Date":"10/30/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":106,"Cost":68,"Date":"11/9/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":549,"Cost":518,"Date":"11/23/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":143,"Cost":83,"Date":"11/30/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":44,"Cost":22,"Date":"12/8/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":934,"Cost":700,"Date":"12/11/2018"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":624,"Cost":474,"Date":"1/15/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":683,"Cost":630,"Date":"1/24/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":667,"Cost":459,"Date":"2/3/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":131,"Cost":90,"Date":"2/4/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":622,"Cost":341,"Date":"3/9/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":714,"Cost":477,"Date":"3/12/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":246,"Cost":175,"Date":"4/19/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":756,"Cost":618,"Date":"5/3/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":513,"Cost":347,"Date":"5/4/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":551,"Cost":472,"Date":"6/8/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":764,"Cost":436,"Date":"6/26/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":279,"Cost":195,"Date":"7/4/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":929,"Cost":615,"Date":"7/13/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":347,"Cost":258,"Date":"8/8/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":249,"Cost":192,"Date":"8/26/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":988,"Cost":646,"Date":"9/2/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":68,"Cost":43,"Date":"9/29/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":136,"Cost":107,"Date":"10/12/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":504,"Cost":461,"Date":"11/2/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":433,"Cost":268,"Date":"11/4/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":660,"Cost":465,"Date":"11/7/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":997,"Cost":547,"Date":"12/1/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":187,"Cost":108,"Date":"12/4/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":805,"Cost":591,"Date":"12/7/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":489,"Cost":439,"Date":"12/18/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":258,"Cost":203,"Date":"12/20/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":251,"Cost":213,"Date":"12/20/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":973,"Cost":521,"Date":"12/21/2019"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":387,"Cost":261,"Date":"1/9/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":717,"Cost":582,"Date":"2/5/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":914,"Cost":744,"Date":"2/16/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":56,"Cost":33,"Date":"2/16/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":47,"Cost":43,"Date":"2/18/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":45,"Cost":26,"Date":"2/22/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":901,"Cost":757,"Date":"2/25/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":80,"Cost":71,"Date":"3/8/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":628,"Cost":450,"Date":"4/2/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":381,"Cost":351,"Date":"4/3/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":109,"Cost":75,"Date":"4/9/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":288,"Cost":159,"Date":"4/10/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":408,"Cost":327,"Date":"4/19/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":11,"Cost":7,"Date":"5/17/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":694,"Cost":526,"Date":"5/22/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":559,"Cost":302,"Date":"6/20/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":508,"Cost":372,"Date":"7/1/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":408,"Cost":342,"Date":"7/4/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":122,"Cost":80,"Date":"7/8/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":487,"Cost":256,"Date":"7/9/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":70,"Cost":52,"Date":"7/14/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":476,"Cost":377,"Date":"7/19/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":574,"Cost":294,"Date":"8/1/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":600,"Cost":481,"Date":"8/6/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":767,"Cost":530,"Date":"8/7/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":743,"Cost":406,"Date":"8/22/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":369,"Cost":218,"Date":"8/31/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":698,"Cost":632,"Date":"9/1/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":805,"Cost":474,"Date":"9/1/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":834,"Cost":555,"Date":"9/17/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":60,"Cost":30,"Date":"9/29/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":136,"Cost":94,"Date":"11/7/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":685,"Cost":531,"Date":"11/26/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":531,"Cost":270,"Date":"11/27/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":382,"Cost":201,"Date":"12/5/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":563,"Cost":412,"Date":"12/26/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":577,"Cost":432,"Date":"12/31/2020"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":101,"Cost":72,"Date":"1/20/2021"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":759,"Cost":606,"Date":"2/2/2021"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":606,"Cost":434,"Date":"2/8/2021"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":677,"Cost":538,"Date":"2/27/2021"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":802,"Cost":537,"Date":"3/1/2021"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":704,"Cost":564,"Date":"3/1/2021"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":509,"Cost":398,"Date":"3/19/2021"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":561,"Cost":369,"Date":"3/28/2021"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":985,"Cost":924,"Date":"5/21/2021"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":380,"Cost":220,"Date":"7/21/2021"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":658,"Cost":448,"Date":"8/5/2021"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":433,"Cost":337,"Date":"8/12/2021"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":929,"Cost":706,"Date":"8/21/2021"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":407,"Cost":264,"Date":"8/23/2021"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":728,"Cost":426,"Date":"9/3/2021"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":530,"Cost":346,"Date":"9/5/2021"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":229,"Cost":169,"Date":"10/6/2021"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":150,"Cost":88,"Date":"10/19/2021"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":632,"Cost":483,"Date":"11/15/2021"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":685,"Cost":533,"Date":"12/8/2021"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":727,"Cost":485,"Date":"1/8/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":591,"Cost":527,"Date":"1/14/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":241,"Cost":229,"Date":"1/19/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":446,"Cost":331,"Date":"1/28/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":991,"Cost":547,"Date":"1/31/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":605,"Cost":564,"Date":"3/27/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":876,"Cost":585,"Date":"4/20/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":609,"Cost":570,"Date":"4/24/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":615,"Cost":527,"Date":"4/28/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":331,"Cost":166,"Date":"5/15/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":645,"Cost":468,"Date":"5/16/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":207,"Cost":158,"Date":"5/18/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":298,"Cost":190,"Date":"6/2/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":963,"Cost":615,"Date":"6/3/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":275,"Cost":184,"Date":"6/5/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":816,"Cost":700,"Date":"6/7/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":677,"Cost":625,"Date":"6/14/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":610,"Cost":346,"Date":"6/20/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":149,"Cost":113,"Date":"6/24/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":359,"Cost":293,"Date":"7/4/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":541,"Cost":302,"Date":"7/9/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":800,"Cost":692,"Date":"7/12/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":664,"Cost":403,"Date":"8/14/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":186,"Cost":117,"Date":"8/16/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":924,"Cost":558,"Date":"8/23/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":976,"Cost":828,"Date":"9/2/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":817,"Cost":490,"Date":"9/3/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":27,"Cost":16,"Date":"9/16/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":944,"Cost":652,"Date":"10/4/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":889,"Cost":533,"Date":"11/1/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":72,"Cost":37,"Date":"11/2/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":525,"Cost":278,"Date":"12/17/2022"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":943,"Cost":473,"Date":"2/10/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":871,"Cost":666,"Date":"2/28/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":881,"Cost":796,"Date":"3/4/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":966,"Cost":643,"Date":"3/9/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":224,"Cost":125,"Date":"3/9/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":823,"Cost":739,"Date":"3/11/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":983,"Cost":766,"Date":"3/17/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":960,"Cost":853,"Date":"3/17/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":207,"Cost":122,"Date":"3/23/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":163,"Cost":96,"Date":"4/1/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":848,"Cost":611,"Date":"5/7/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":186,"Cost":136,"Date":"5/10/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":786,"Cost":607,"Date":"5/20/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":761,"Cost":392,"Date":"6/2/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":739,"Cost":383,"Date":"6/11/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":114,"Cost":57,"Date":"6/16/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":979,"Cost":732,"Date":"6/16/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":986,"Cost":873,"Date":"7/10/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":446,"Cost":273,"Date":"7/11/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":660,"Cost":529,"Date":"8/28/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":683,"Cost":497,"Date":"8/29/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":776,"Cost":448,"Date":"8/31/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":940,"Cost":799,"Date":"9/8/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":525,"Cost":276,"Date":"9/13/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":43,"Cost":34,"Date":"9/14/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":652,"Cost":478,"Date":"9/19/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":746,"Cost":589,"Date":"9/25/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":27,"Cost":23,"Date":"10/4/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":870,"Cost":797,"Date":"10/10/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":336,"Cost":216,"Date":"10/17/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":160,"Cost":96,"Date":"10/28/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":212,"Cost":172,"Date":"10/30/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":852,"Cost":529,"Date":"11/1/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":300,"Cost":204,"Date":"11/15/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":286,"Cost":256,"Date":"11/25/2023"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":349,"Cost":227,"Date":"1/10/2024"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":443,"Cost":246,"Date":"1/14/2024"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":5,"Cost":4,"Date":"1/20/2024"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":767,"Cost":462,"Date":"2/8/2024"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":37,"Cost":33,"Date":"2/25/2024"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":254,"Cost":155,"Date":"3/7/2024"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":416,"Cost":365,"Date":"3/14/2024"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":353,"Cost":231,"Date":"3/27/2024"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":153,"Cost":113,"Date":"4/5/2024"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":531,"Cost":481,"Date":"4/14/2024"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":160,"Cost":101,"Date":"5/3/2024"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":290,"Cost":218,"Date":"5/9/2024"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":99,"Cost":83,"Date":"5/15/2024"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":614,"Cost":440,"Date":"5/25/2024"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":12,"Cost":8,"Date":"5/26/2024"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":656,"Cost":576,"Date":"5/31/2024"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":552,"Cost":363,"Date":"7/27/2024"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":559,"Cost":484,"Date":"9/17/2024"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":863,"Cost":593,"Date":"10/6/2024"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":920,"Cost":543,"Date":"10/8/2024"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":283,"Cost":252,"Date":"10/26/2024"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":129,"Cost":72,"Date":"11/16/2024"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":886,"Cost":833,"Date":"11/18/2024"},{"Store":"Pleven Plaza","Brand":"Nova","Country":"Bulgaria","Sale":272,"Cost":240,"Date":"12/1/2024"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":606,"Cost":328,"Date":"2/9/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":627,"Cost":459,"Date":"2/11/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":370,"Cost":334,"Date":"3/10/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":727,"Cost":645,"Date":"3/16/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":169,"Cost":155,"Date":"3/18/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":613,"Cost":487,"Date":"3/20/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":730,"Cost":437,"Date":"3/26/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":7,"Cost":4,"Date":"6/2/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":685,"Cost":555,"Date":"6/10/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":116,"Cost":63,"Date":"6/16/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":893,"Cost":718,"Date":"6/25/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":502,"Cost":296,"Date":"7/19/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":41,"Cost":24,"Date":"7/21/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":202,"Cost":175,"Date":"7/25/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":528,"Cost":384,"Date":"8/4/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":504,"Cost":305,"Date":"9/2/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":937,"Cost":765,"Date":"9/4/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":267,"Cost":175,"Date":"9/19/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":603,"Cost":509,"Date":"9/29/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":725,"Cost":539,"Date":"10/2/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":449,"Cost":249,"Date":"10/15/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":874,"Cost":636,"Date":"10/30/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":122,"Cost":107,"Date":"11/9/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":727,"Cost":575,"Date":"11/23/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":229,"Cost":148,"Date":"11/30/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":355,"Cost":189,"Date":"12/8/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":167,"Cost":115,"Date":"12/11/2018"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":512,"Cost":375,"Date":"1/15/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":473,"Cost":272,"Date":"1/24/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":255,"Cost":233,"Date":"2/3/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":18,"Cost":9,"Date":"2/4/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":372,"Cost":344,"Date":"3/9/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":530,"Cost":285,"Date":"3/12/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":630,"Cost":332,"Date":"4/19/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":743,"Cost":376,"Date":"5/3/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":772,"Cost":529,"Date":"5/4/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":522,"Cost":306,"Date":"6/8/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":577,"Cost":362,"Date":"6/26/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":898,"Cost":458,"Date":"7/4/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":746,"Cost":510,"Date":"7/13/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":303,"Cost":277,"Date":"8/8/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":62,"Cost":44,"Date":"8/26/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":896,"Cost":851,"Date":"9/2/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":723,"Cost":402,"Date":"9/29/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":585,"Cost":553,"Date":"10/12/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":357,"Cost":252,"Date":"11/2/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":244,"Cost":151,"Date":"11/4/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":463,"Cost":415,"Date":"11/7/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":496,"Cost":417,"Date":"12/1/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":376,"Cost":323,"Date":"12/4/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":637,"Cost":375,"Date":"12/7/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":95,"Cost":66,"Date":"12/18/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":555,"Cost":413,"Date":"12/20/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":833,"Cost":499,"Date":"12/20/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":912,"Cost":482,"Date":"12/21/2019"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":484,"Cost":383,"Date":"1/9/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":42,"Cost":30,"Date":"2/5/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":416,"Cost":268,"Date":"2/16/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":676,"Cost":388,"Date":"2/16/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":182,"Cost":148,"Date":"2/18/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":361,"Cost":226,"Date":"2/22/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":772,"Cost":427,"Date":"2/25/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":244,"Cost":216,"Date":"3/8/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":683,"Cost":388,"Date":"4/2/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":176,"Cost":132,"Date":"4/3/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":398,"Cost":338,"Date":"4/9/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":26,"Cost":18,"Date":"4/10/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":388,"Cost":353,"Date":"4/19/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":697,"Cost":540,"Date":"5/17/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":728,"Cost":370,"Date":"5/22/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":480,"Cost":437,"Date":"6/20/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":18,"Cost":14,"Date":"7/1/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":83,"Cost":60,"Date":"7/4/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":55,"Cost":30,"Date":"7/8/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":332,"Cost":299,"Date":"7/9/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":940,"Cost":781,"Date":"7/14/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":751,"Cost":689,"Date":"7/19/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":771,"Cost":715,"Date":"8/1/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":521,"Cost":454,"Date":"8/6/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":643,"Cost":424,"Date":"8/7/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":95,"Cost":75,"Date":"8/22/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":24,"Cost":23,"Date":"8/31/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":433,"Cost":355,"Date":"9/1/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":670,"Cost":549,"Date":"9/1/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":6,"Cost":6,"Date":"9/17/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":18,"Cost":13,"Date":"9/29/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":615,"Cost":422,"Date":"11/7/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":949,"Cost":704,"Date":"11/26/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":692,"Cost":350,"Date":"11/27/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":606,"Cost":533,"Date":"12/5/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":5,"Cost":5,"Date":"12/26/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":48,"Cost":33,"Date":"12/31/2020"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":695,"Cost":527,"Date":"1/20/2021"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":466,"Cost":277,"Date":"2/2/2021"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":550,"Cost":306,"Date":"2/8/2021"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":296,"Cost":217,"Date":"2/27/2021"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":43,"Cost":26,"Date":"3/1/2021"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":105,"Cost":54,"Date":"3/1/2021"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":175,"Cost":106,"Date":"3/19/2021"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":145,"Cost":72,"Date":"3/28/2021"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":592,"Cost":301,"Date":"5/21/2021"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":233,"Cost":206,"Date":"7/21/2021"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":41,"Cost":38,"Date":"8/5/2021"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":324,"Cost":279,"Date":"8/12/2021"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":200,"Cost":174,"Date":"8/21/2021"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":66,"Cost":60,"Date":"8/23/2021"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":151,"Cost":109,"Date":"9/3/2021"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":329,"Cost":186,"Date":"9/5/2021"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":107,"Cost":62,"Date":"10/6/2021"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":796,"Cost":413,"Date":"10/19/2021"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":658,"Cost":451,"Date":"11/15/2021"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":822,"Cost":600,"Date":"12/8/2021"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":491,"Cost":449,"Date":"1/8/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":525,"Cost":422,"Date":"1/14/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":617,"Cost":351,"Date":"1/19/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":180,"Cost":98,"Date":"1/28/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":509,"Cost":422,"Date":"1/31/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":817,"Cost":665,"Date":"3/27/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":827,"Cost":750,"Date":"4/20/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":284,"Cost":242,"Date":"4/24/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":433,"Cost":253,"Date":"4/28/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":761,"Cost":545,"Date":"5/15/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":185,"Cost":152,"Date":"5/16/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":115,"Cost":106,"Date":"5/18/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":276,"Cost":262,"Date":"6/2/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":877,"Cost":748,"Date":"6/3/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":249,"Cost":124,"Date":"6/5/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":822,"Cost":614,"Date":"6/7/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":605,"Cost":476,"Date":"6/14/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":55,"Cost":39,"Date":"6/20/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":91,"Cost":84,"Date":"6/24/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":575,"Cost":538,"Date":"7/4/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":305,"Cost":230,"Date":"7/9/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":715,"Cost":450,"Date":"7/12/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":445,"Cost":223,"Date":"8/14/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":873,"Cost":569,"Date":"8/16/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":632,"Cost":494,"Date":"8/23/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":564,"Cost":346,"Date":"9/2/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":115,"Cost":78,"Date":"9/3/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":244,"Cost":224,"Date":"9/16/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":853,"Cost":604,"Date":"10/4/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":945,"Cost":753,"Date":"11/1/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":657,"Cost":397,"Date":"11/2/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":709,"Cost":538,"Date":"12/17/2022"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":918,"Cost":817,"Date":"2/10/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":969,"Cost":871,"Date":"2/28/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":325,"Cost":306,"Date":"3/4/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":56,"Cost":31,"Date":"3/9/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":411,"Cost":344,"Date":"3/9/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":480,"Cost":249,"Date":"3/11/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":155,"Cost":111,"Date":"3/17/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":638,"Cost":453,"Date":"3/17/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":632,"Cost":367,"Date":"3/23/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":679,"Cost":379,"Date":"4/1/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":191,"Cost":118,"Date":"5/7/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":476,"Cost":244,"Date":"5/10/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":346,"Cost":308,"Date":"5/20/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":282,"Cost":167,"Date":"6/2/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":575,"Cost":510,"Date":"6/11/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":191,"Cost":105,"Date":"6/16/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":335,"Cost":169,"Date":"6/16/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":275,"Cost":170,"Date":"7/10/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":375,"Cost":222,"Date":"7/11/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":334,"Cost":233,"Date":"8/28/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":662,"Cost":360,"Date":"8/29/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":283,"Cost":255,"Date":"8/31/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":116,"Cost":110,"Date":"9/8/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":37,"Cost":32,"Date":"9/13/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":721,"Cost":570,"Date":"9/14/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":387,"Cost":224,"Date":"9/19/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":416,"Cost":212,"Date":"9/25/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":875,"Cost":620,"Date":"10/4/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":880,"Cost":476,"Date":"10/10/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":907,"Cost":458,"Date":"10/17/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":865,"Cost":452,"Date":"10/28/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":122,"Cost":63,"Date":"10/30/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":69,"Cost":47,"Date":"11/1/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":812,"Cost":569,"Date":"11/15/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":125,"Cost":115,"Date":"11/25/2023"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":842,"Cost":443,"Date":"1/10/2024"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":849,"Cost":448,"Date":"1/14/2024"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":128,"Cost":69,"Date":"1/20/2024"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":700,"Cost":435,"Date":"2/8/2024"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":228,"Cost":146,"Date":"2/25/2024"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":653,"Cost":372,"Date":"3/7/2024"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":712,"Cost":568,"Date":"3/14/2024"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":414,"Cost":314,"Date":"3/27/2024"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":195,"Cost":164,"Date":"4/5/2024"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":424,"Cost":363,"Date":"4/14/2024"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":583,"Cost":409,"Date":"5/3/2024"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":618,"Cost":421,"Date":"5/9/2024"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":576,"Cost":434,"Date":"5/15/2024"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":730,"Cost":500,"Date":"5/25/2024"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":967,"Cost":787,"Date":"5/26/2024"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":722,"Cost":566,"Date":"5/31/2024"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":817,"Cost":654,"Date":"7/27/2024"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":152,"Cost":139,"Date":"9/17/2024"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":495,"Cost":358,"Date":"10/6/2024"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":665,"Cost":581,"Date":"10/8/2024"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":122,"Cost":115,"Date":"10/26/2024"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":533,"Cost":287,"Date":"11/16/2024"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":88,"Cost":84,"Date":"11/18/2024"},{"Store":"Pleven Plaza","Brand":"ARKET","Country":"Bulgaria","Sale":65,"Cost":49,"Date":"12/1/2024"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":666,"Cost":418,"Date":"2/9/2018"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":606,"Cost":366,"Date":"2/11/2018"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":880,"Cost":457,"Date":"3/10/2018"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":673,"Cost":499,"Date":"3/16/2018"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":49,"Cost":35,"Date":"3/18/2018"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":704,"Cost":509,"Date":"3/20/2018"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":444,"Cost":240,"Date":"3/26/2018"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":653,"Cost":539,"Date":"6/2/2018"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":668,"Cost":516,"Date":"6/10/2018"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":635,"Cost":562,"Date":"6/16/2018"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":99,"Cost":73,"Date":"6/25/2018"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":60,"Cost":55,"Date":"7/19/2018"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":763,"Cost":702,"Date":"7/21/2018"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":217,"Cost":144,"Date":"7/25/2018"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":880,"Cost":472,"Date":"8/4/2018"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":778,"Cost":595,"Date":"9/2/2018"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":645,"Cost":544,"Date":"9/4/2018"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":242,"Cost":213,"Date":"9/19/2018"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":511,"Cost":441,"Date":"9/29/2018"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":982,"Cost":879,"Date":"10/2/2018"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":355,"Cost":316,"Date":"10/15/2018"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":173,"Cost":110,"Date":"10/30/2018"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":588,"Cost":420,"Date":"11/9/2018"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":48,"Cost":38,"Date":"11/23/2018"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":774,"Cost":631,"Date":"11/30/2018"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":330,"Cost":176,"Date":"12/8/2018"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":289,"Cost":166,"Date":"12/11/2018"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":80,"Cost":50,"Date":"1/15/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":255,"Cost":182,"Date":"1/24/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":16,"Cost":12,"Date":"2/3/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":504,"Cost":321,"Date":"2/4/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":139,"Cost":125,"Date":"3/9/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":204,"Cost":192,"Date":"3/12/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":313,"Cost":283,"Date":"4/19/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":150,"Cost":142,"Date":"5/3/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":74,"Cost":55,"Date":"5/4/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":500,"Cost":284,"Date":"6/8/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":83,"Cost":78,"Date":"6/26/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":914,"Cost":550,"Date":"7/4/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":84,"Cost":64,"Date":"7/13/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":614,"Cost":439,"Date":"8/8/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":616,"Cost":509,"Date":"8/26/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":419,"Cost":287,"Date":"9/2/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":243,"Cost":184,"Date":"9/29/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":199,"Cost":114,"Date":"10/12/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":850,"Cost":448,"Date":"11/2/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":76,"Cost":57,"Date":"11/4/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":391,"Cost":196,"Date":"11/7/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":148,"Cost":94,"Date":"12/1/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":555,"Cost":345,"Date":"12/4/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":546,"Cost":476,"Date":"12/7/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":58,"Cost":43,"Date":"12/18/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":818,"Cost":594,"Date":"12/20/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":545,"Cost":293,"Date":"12/20/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":925,"Cost":520,"Date":"12/21/2019"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":24,"Cost":14,"Date":"1/9/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":852,"Cost":565,"Date":"2/5/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":23,"Cost":18,"Date":"2/16/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":995,"Cost":850,"Date":"2/16/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":875,"Cost":796,"Date":"2/18/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":131,"Cost":94,"Date":"2/22/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":472,"Cost":349,"Date":"2/25/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":352,"Cost":301,"Date":"3/8/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":109,"Cost":76,"Date":"4/2/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":134,"Cost":96,"Date":"4/3/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":752,"Cost":577,"Date":"4/9/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":677,"Cost":482,"Date":"4/10/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":768,"Cost":713,"Date":"4/19/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":682,"Cost":379,"Date":"5/17/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":993,"Cost":542,"Date":"5/22/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":169,"Cost":86,"Date":"6/20/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":366,"Cost":319,"Date":"7/1/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":29,"Cost":26,"Date":"7/4/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":81,"Cost":52,"Date":"7/8/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":962,"Cost":828,"Date":"7/9/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":897,"Cost":535,"Date":"7/14/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":784,"Cost":491,"Date":"7/19/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":437,"Cost":347,"Date":"8/1/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":62,"Cost":47,"Date":"8/6/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":386,"Cost":339,"Date":"8/7/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":947,"Cost":562,"Date":"8/22/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":950,"Cost":705,"Date":"8/31/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":523,"Cost":477,"Date":"9/1/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":325,"Cost":193,"Date":"9/1/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":618,"Cost":413,"Date":"9/17/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":733,"Cost":432,"Date":"9/29/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":793,"Cost":702,"Date":"11/7/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":339,"Cost":219,"Date":"11/26/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":806,"Cost":442,"Date":"11/27/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":131,"Cost":121,"Date":"12/5/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":201,"Cost":157,"Date":"12/26/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":872,"Cost":551,"Date":"12/31/2020"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":394,"Cost":339,"Date":"1/20/2021"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":116,"Cost":67,"Date":"2/2/2021"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":270,"Cost":197,"Date":"2/8/2021"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":293,"Cost":185,"Date":"2/27/2021"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":777,"Cost":689,"Date":"3/1/2021"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":234,"Cost":136,"Date":"3/1/2021"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":763,"Cost":563,"Date":"3/19/2021"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":756,"Cost":379,"Date":"3/28/2021"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":937,"Cost":536,"Date":"5/21/2021"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":311,"Cost":274,"Date":"7/21/2021"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":467,"Cost":430,"Date":"8/5/2021"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":555,"Cost":296,"Date":"8/12/2021"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":940,"Cost":875,"Date":"8/21/2021"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":455,"Cost":285,"Date":"8/23/2021"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":247,"Cost":228,"Date":"9/3/2021"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":40,"Cost":33,"Date":"9/5/2021"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":498,"Cost":416,"Date":"10/6/2021"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":933,"Cost":682,"Date":"10/19/2021"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":406,"Cost":304,"Date":"11/15/2021"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":751,"Cost":638,"Date":"12/8/2021"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":146,"Cost":120,"Date":"1/8/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":5,"Cost":4,"Date":"1/14/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":493,"Cost":290,"Date":"1/19/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":151,"Cost":142,"Date":"1/28/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":438,"Cost":281,"Date":"1/31/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":809,"Cost":626,"Date":"3/27/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":504,"Cost":387,"Date":"4/20/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":360,"Cost":305,"Date":"4/24/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":64,"Cost":58,"Date":"4/28/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":118,"Cost":102,"Date":"5/15/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":186,"Cost":170,"Date":"5/16/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":39,"Cost":21,"Date":"5/18/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":428,"Cost":225,"Date":"6/2/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":625,"Cost":363,"Date":"6/3/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":519,"Cost":473,"Date":"6/5/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":417,"Cost":215,"Date":"6/7/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":148,"Cost":134,"Date":"6/14/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":439,"Cost":382,"Date":"6/20/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":686,"Cost":503,"Date":"6/24/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":598,"Cost":469,"Date":"7/4/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":748,"Cost":467,"Date":"7/9/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":608,"Cost":433,"Date":"7/12/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":643,"Cost":582,"Date":"8/14/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":292,"Cost":166,"Date":"8/16/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":213,"Cost":195,"Date":"8/23/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":493,"Cost":418,"Date":"9/2/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":247,"Cost":209,"Date":"9/3/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":715,"Cost":616,"Date":"9/16/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":251,"Cost":169,"Date":"10/4/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":510,"Cost":260,"Date":"11/1/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":664,"Cost":547,"Date":"11/2/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":29,"Cost":19,"Date":"12/17/2022"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":319,"Cost":295,"Date":"2/10/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":3,"Cost":2,"Date":"2/28/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":236,"Cost":195,"Date":"3/4/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":492,"Cost":408,"Date":"3/9/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":785,"Cost":588,"Date":"3/9/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":900,"Cost":461,"Date":"3/11/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":676,"Cost":573,"Date":"3/17/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":389,"Cost":327,"Date":"3/17/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":508,"Cost":310,"Date":"3/23/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":182,"Cost":103,"Date":"4/1/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":593,"Cost":409,"Date":"5/7/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":922,"Cost":621,"Date":"5/10/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":1000,"Cost":592,"Date":"5/20/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":552,"Cost":495,"Date":"6/2/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":474,"Cost":417,"Date":"6/11/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":151,"Cost":104,"Date":"6/16/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":937,"Cost":705,"Date":"6/16/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":122,"Cost":108,"Date":"7/10/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":828,"Cost":426,"Date":"7/11/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":746,"Cost":670,"Date":"8/28/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":692,"Cost":502,"Date":"8/29/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":869,"Cost":512,"Date":"8/31/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":919,"Cost":704,"Date":"9/8/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":954,"Cost":886,"Date":"9/13/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":453,"Cost":429,"Date":"9/14/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":60,"Cost":54,"Date":"9/19/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":862,"Cost":598,"Date":"9/25/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":471,"Cost":370,"Date":"10/4/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":465,"Cost":296,"Date":"10/10/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":37,"Cost":28,"Date":"10/17/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":779,"Cost":604,"Date":"10/28/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":773,"Cost":464,"Date":"10/30/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":769,"Cost":697,"Date":"11/1/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":222,"Cost":167,"Date":"11/15/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":646,"Cost":440,"Date":"11/25/2023"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":830,"Cost":740,"Date":"1/10/2024"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":580,"Cost":448,"Date":"1/14/2024"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":12,"Cost":7,"Date":"1/20/2024"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":508,"Cost":451,"Date":"2/8/2024"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":317,"Cost":283,"Date":"2/25/2024"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":287,"Cost":193,"Date":"3/7/2024"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":590,"Cost":392,"Date":"3/14/2024"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":626,"Cost":455,"Date":"3/27/2024"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":652,"Cost":455,"Date":"4/5/2024"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":985,"Cost":686,"Date":"4/14/2024"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":71,"Cost":58,"Date":"5/3/2024"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":141,"Cost":102,"Date":"5/9/2024"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":489,"Cost":397,"Date":"5/15/2024"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":776,"Cost":726,"Date":"5/25/2024"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":125,"Cost":75,"Date":"5/26/2024"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":907,"Cost":842,"Date":"5/31/2024"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":128,"Cost":69,"Date":"7/27/2024"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":16,"Cost":10,"Date":"9/17/2024"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":390,"Cost":364,"Date":"10/6/2024"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":594,"Cost":388,"Date":"10/8/2024"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":664,"Cost":478,"Date":"10/26/2024"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":55,"Cost":43,"Date":"11/16/2024"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":172,"Cost":140,"Date":"11/18/2024"},{"Store":"Pleven Plaza","Brand":"COS","Country":"Bulgaria","Sale":793,"Cost":630,"Date":"12/1/2024"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":39,"Cost":19,"Date":"2/9/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":450,"Cost":256,"Date":"2/11/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":697,"Cost":377,"Date":"3/10/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":683,"Cost":599,"Date":"3/16/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":596,"Cost":465,"Date":"3/18/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":866,"Cost":473,"Date":"3/20/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":275,"Cost":173,"Date":"3/26/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":362,"Cost":213,"Date":"6/2/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":678,"Cost":468,"Date":"6/10/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":566,"Cost":416,"Date":"6/16/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":531,"Cost":349,"Date":"6/25/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":385,"Cost":328,"Date":"7/19/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":842,"Cost":594,"Date":"7/21/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":365,"Cost":286,"Date":"7/25/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":905,"Cost":617,"Date":"8/4/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":402,"Cost":279,"Date":"9/2/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":20,"Cost":16,"Date":"9/4/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":14,"Cost":11,"Date":"9/19/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":815,"Cost":442,"Date":"9/29/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":751,"Cost":598,"Date":"10/2/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":255,"Cost":223,"Date":"10/15/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":625,"Cost":431,"Date":"10/30/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":770,"Cost":537,"Date":"11/9/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":772,"Cost":436,"Date":"11/23/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":115,"Cost":82,"Date":"11/30/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":291,"Cost":243,"Date":"12/8/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":345,"Cost":199,"Date":"12/11/2018"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":422,"Cost":302,"Date":"1/15/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":221,"Cost":157,"Date":"1/24/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":590,"Cost":326,"Date":"2/3/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":602,"Cost":331,"Date":"2/4/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":564,"Cost":505,"Date":"3/9/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":961,"Cost":666,"Date":"3/12/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":598,"Cost":406,"Date":"4/19/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":885,"Cost":514,"Date":"5/3/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":783,"Cost":644,"Date":"5/4/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":458,"Cost":295,"Date":"6/8/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":932,"Cost":474,"Date":"6/26/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":551,"Cost":521,"Date":"7/4/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":707,"Cost":600,"Date":"7/13/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":941,"Cost":864,"Date":"8/8/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":512,"Cost":285,"Date":"8/26/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":287,"Cost":262,"Date":"9/2/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":432,"Cost":256,"Date":"9/29/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":702,"Cost":646,"Date":"10/12/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":593,"Cost":494,"Date":"11/2/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":754,"Cost":470,"Date":"11/4/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":90,"Cost":52,"Date":"11/7/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":464,"Cost":291,"Date":"12/1/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":489,"Cost":292,"Date":"12/4/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":55,"Cost":33,"Date":"12/7/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":79,"Cost":47,"Date":"12/18/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":265,"Cost":153,"Date":"12/20/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":781,"Cost":728,"Date":"12/20/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":270,"Cost":139,"Date":"12/21/2019"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":914,"Cost":847,"Date":"1/9/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":523,"Cost":268,"Date":"2/5/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":103,"Cost":56,"Date":"2/16/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":258,"Cost":160,"Date":"2/16/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":8,"Cost":7,"Date":"2/18/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":201,"Cost":113,"Date":"2/22/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":138,"Cost":105,"Date":"2/25/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":432,"Cost":257,"Date":"3/8/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":208,"Cost":133,"Date":"4/2/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":175,"Cost":128,"Date":"4/3/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":682,"Cost":367,"Date":"4/9/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":94,"Cost":61,"Date":"4/10/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":834,"Cost":496,"Date":"4/19/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":229,"Cost":203,"Date":"5/17/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":990,"Cost":841,"Date":"5/22/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":341,"Cost":222,"Date":"6/20/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":724,"Cost":661,"Date":"7/1/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":843,"Cost":725,"Date":"7/4/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":367,"Cost":204,"Date":"7/8/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":231,"Cost":197,"Date":"7/9/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":589,"Cost":518,"Date":"7/14/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":778,"Cost":574,"Date":"7/19/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":158,"Cost":107,"Date":"8/1/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":712,"Cost":583,"Date":"8/6/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":379,"Cost":249,"Date":"8/7/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":585,"Cost":522,"Date":"8/22/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":528,"Cost":318,"Date":"8/31/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":881,"Cost":606,"Date":"9/1/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":982,"Cost":541,"Date":"9/1/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":37,"Cost":32,"Date":"9/17/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":876,"Cost":573,"Date":"9/29/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":469,"Cost":270,"Date":"11/7/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":160,"Cost":113,"Date":"11/26/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":577,"Cost":546,"Date":"11/27/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":865,"Cost":599,"Date":"12/5/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":596,"Cost":436,"Date":"12/26/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":776,"Cost":496,"Date":"12/31/2020"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":769,"Cost":529,"Date":"1/20/2021"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":771,"Cost":680,"Date":"2/2/2021"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":650,"Cost":403,"Date":"2/8/2021"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":400,"Cost":203,"Date":"2/27/2021"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":767,"Cost":492,"Date":"3/1/2021"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":23,"Cost":15,"Date":"3/1/2021"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":33,"Cost":19,"Date":"3/19/2021"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":81,"Cost":64,"Date":"3/28/2021"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":685,"Cost":562,"Date":"5/21/2021"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":859,"Cost":700,"Date":"7/21/2021"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":718,"Cost":669,"Date":"8/5/2021"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":432,"Cost":270,"Date":"8/12/2021"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":849,"Cost":471,"Date":"8/21/2021"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":788,"Cost":721,"Date":"8/23/2021"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":749,"Cost":707,"Date":"9/3/2021"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":980,"Cost":852,"Date":"9/5/2021"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":534,"Cost":498,"Date":"10/6/2021"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":915,"Cost":640,"Date":"10/19/2021"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":41,"Cost":38,"Date":"11/15/2021"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":330,"Cost":174,"Date":"12/8/2021"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":370,"Cost":238,"Date":"1/8/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":22,"Cost":17,"Date":"1/14/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":484,"Cost":324,"Date":"1/19/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":657,"Cost":443,"Date":"1/28/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":394,"Cost":280,"Date":"1/31/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":495,"Cost":247,"Date":"3/27/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":970,"Cost":549,"Date":"4/20/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":645,"Cost":515,"Date":"4/24/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":340,"Cost":301,"Date":"4/28/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":213,"Cost":158,"Date":"5/15/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":338,"Cost":224,"Date":"5/16/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":814,"Cost":431,"Date":"5/18/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":77,"Cost":56,"Date":"6/2/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":101,"Cost":73,"Date":"6/3/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":111,"Cost":83,"Date":"6/5/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":975,"Cost":544,"Date":"6/7/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":603,"Cost":501,"Date":"6/14/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":842,"Cost":590,"Date":"6/20/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":623,"Cost":420,"Date":"6/24/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":606,"Cost":558,"Date":"7/4/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":399,"Cost":323,"Date":"7/9/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":585,"Cost":545,"Date":"7/12/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":328,"Cost":180,"Date":"8/14/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":324,"Cost":297,"Date":"8/16/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":867,"Cost":668,"Date":"8/23/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":312,"Cost":185,"Date":"9/2/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":448,"Cost":330,"Date":"9/3/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":438,"Cost":236,"Date":"9/16/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":411,"Cost":333,"Date":"10/4/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":244,"Cost":136,"Date":"11/1/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":265,"Cost":232,"Date":"11/2/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":316,"Cost":284,"Date":"12/17/2022"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":89,"Cost":60,"Date":"2/10/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":453,"Cost":274,"Date":"2/28/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":78,"Cost":73,"Date":"3/4/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":199,"Cost":153,"Date":"3/9/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":198,"Cost":161,"Date":"3/9/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":393,"Cost":335,"Date":"3/11/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":64,"Cost":49,"Date":"3/17/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":185,"Cost":132,"Date":"3/17/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":644,"Cost":558,"Date":"3/23/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":40,"Cost":29,"Date":"4/1/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":28,"Cost":21,"Date":"5/7/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":567,"Cost":408,"Date":"5/10/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":676,"Cost":562,"Date":"5/20/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":532,"Cost":369,"Date":"6/2/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":372,"Cost":255,"Date":"6/11/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":407,"Cost":337,"Date":"6/16/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":39,"Cost":26,"Date":"6/16/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":563,"Cost":434,"Date":"7/10/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":761,"Cost":579,"Date":"7/11/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":256,"Cost":155,"Date":"8/28/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":301,"Cost":193,"Date":"8/29/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":185,"Cost":166,"Date":"8/31/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":235,"Cost":137,"Date":"9/8/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":406,"Cost":233,"Date":"9/13/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":856,"Cost":753,"Date":"9/14/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":876,"Cost":672,"Date":"9/19/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":631,"Cost":538,"Date":"9/25/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":636,"Cost":436,"Date":"10/4/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":141,"Cost":108,"Date":"10/10/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":955,"Cost":574,"Date":"10/17/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":667,"Cost":606,"Date":"10/28/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":73,"Cost":65,"Date":"10/30/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":713,"Cost":518,"Date":"11/1/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":839,"Cost":566,"Date":"11/15/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":331,"Cost":249,"Date":"11/25/2023"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":360,"Cost":192,"Date":"1/10/2024"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":355,"Cost":270,"Date":"1/14/2024"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":169,"Cost":85,"Date":"1/20/2024"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":353,"Cost":219,"Date":"2/8/2024"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":212,"Cost":183,"Date":"2/25/2024"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":157,"Cost":144,"Date":"3/7/2024"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":298,"Cost":193,"Date":"3/14/2024"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":930,"Cost":668,"Date":"3/27/2024"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":790,"Cost":679,"Date":"4/5/2024"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":621,"Cost":355,"Date":"4/14/2024"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":2,"Cost":1,"Date":"5/3/2024"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":809,"Cost":637,"Date":"5/9/2024"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":96,"Cost":68,"Date":"5/15/2024"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":316,"Cost":230,"Date":"5/25/2024"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":909,"Cost":772,"Date":"5/26/2024"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":565,"Cost":537,"Date":"5/31/2024"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":3,"Cost":3,"Date":"7/27/2024"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":86,"Cost":67,"Date":"9/17/2024"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":624,"Cost":503,"Date":"10/6/2024"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":163,"Cost":140,"Date":"10/8/2024"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":39,"Cost":24,"Date":"10/26/2024"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":485,"Cost":415,"Date":"11/16/2024"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":392,"Cost":216,"Date":"11/18/2024"},{"Store":"Haskovo Mall","Brand":"Nova","Country":"Bulgaria","Sale":848,"Cost":792,"Date":"12/1/2024"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":507,"Cost":255,"Date":"2/9/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":740,"Cost":485,"Date":"2/11/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":258,"Cost":183,"Date":"3/10/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":696,"Cost":646,"Date":"3/16/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":195,"Cost":150,"Date":"3/18/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":939,"Cost":720,"Date":"3/20/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":715,"Cost":645,"Date":"3/26/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":376,"Cost":234,"Date":"6/2/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":421,"Cost":306,"Date":"6/10/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":284,"Cost":202,"Date":"6/16/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":878,"Cost":689,"Date":"6/25/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":493,"Cost":312,"Date":"7/19/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":218,"Cost":184,"Date":"7/21/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":13,"Cost":13,"Date":"7/25/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":413,"Cost":255,"Date":"8/4/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":160,"Cost":114,"Date":"9/2/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":747,"Cost":471,"Date":"9/4/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":291,"Cost":181,"Date":"9/19/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":421,"Cost":292,"Date":"9/29/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":656,"Cost":392,"Date":"10/2/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":528,"Cost":437,"Date":"10/15/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":58,"Cost":48,"Date":"10/30/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":968,"Cost":808,"Date":"11/9/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":165,"Cost":144,"Date":"11/23/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":196,"Cost":178,"Date":"11/30/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":625,"Cost":495,"Date":"12/8/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":530,"Cost":425,"Date":"12/11/2018"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":315,"Cost":298,"Date":"1/15/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":64,"Cost":58,"Date":"1/24/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":28,"Cost":14,"Date":"2/3/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":283,"Cost":180,"Date":"2/4/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":840,"Cost":629,"Date":"3/9/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":999,"Cost":741,"Date":"3/12/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":399,"Cost":211,"Date":"4/19/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":671,"Cost":408,"Date":"5/3/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":215,"Cost":163,"Date":"5/4/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":649,"Cost":359,"Date":"6/8/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":552,"Cost":389,"Date":"6/26/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":326,"Cost":197,"Date":"7/4/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":540,"Cost":481,"Date":"7/13/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":307,"Cost":226,"Date":"8/8/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":793,"Cost":655,"Date":"8/26/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":460,"Cost":360,"Date":"9/2/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":165,"Cost":137,"Date":"9/29/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":567,"Cost":481,"Date":"10/12/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":437,"Cost":370,"Date":"11/2/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":293,"Cost":254,"Date":"11/4/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":489,"Cost":358,"Date":"11/7/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":551,"Cost":366,"Date":"12/1/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":832,"Cost":644,"Date":"12/4/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":676,"Cost":508,"Date":"12/7/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":212,"Cost":174,"Date":"12/18/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":645,"Cost":613,"Date":"12/20/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":596,"Cost":442,"Date":"12/20/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":179,"Cost":100,"Date":"12/21/2019"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":764,"Cost":713,"Date":"1/9/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":71,"Cost":63,"Date":"2/5/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":345,"Cost":325,"Date":"2/16/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":834,"Cost":708,"Date":"2/16/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":166,"Cost":101,"Date":"2/18/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":403,"Cost":343,"Date":"2/22/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":979,"Cost":529,"Date":"2/25/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":655,"Cost":342,"Date":"3/8/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":627,"Cost":401,"Date":"4/2/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":713,"Cost":608,"Date":"4/3/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":31,"Cost":20,"Date":"4/9/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":741,"Cost":690,"Date":"4/10/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":255,"Cost":132,"Date":"4/19/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":819,"Cost":542,"Date":"5/17/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":644,"Cost":526,"Date":"5/22/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":319,"Cost":206,"Date":"6/20/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":980,"Cost":684,"Date":"7/1/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":386,"Cost":210,"Date":"7/4/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":92,"Cost":48,"Date":"7/8/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":269,"Cost":161,"Date":"7/9/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":474,"Cost":401,"Date":"7/14/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":630,"Cost":530,"Date":"7/19/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":53,"Cost":38,"Date":"8/1/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":191,"Cost":122,"Date":"8/6/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":717,"Cost":649,"Date":"8/7/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":822,"Cost":678,"Date":"8/22/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":863,"Cost":547,"Date":"8/31/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":273,"Cost":186,"Date":"9/1/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":366,"Cost":327,"Date":"9/1/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":452,"Cost":283,"Date":"9/17/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":498,"Cost":265,"Date":"9/29/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":789,"Cost":633,"Date":"11/7/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":84,"Cost":60,"Date":"11/26/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":345,"Cost":284,"Date":"11/27/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":780,"Cost":471,"Date":"12/5/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":124,"Cost":62,"Date":"12/26/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":468,"Cost":442,"Date":"12/31/2020"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":407,"Cost":346,"Date":"1/20/2021"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":568,"Cost":511,"Date":"2/2/2021"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":742,"Cost":496,"Date":"2/8/2021"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":30,"Cost":23,"Date":"2/27/2021"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":318,"Cost":235,"Date":"3/1/2021"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":40,"Cost":27,"Date":"3/1/2021"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":892,"Cost":594,"Date":"3/19/2021"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":89,"Cost":64,"Date":"3/28/2021"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":133,"Cost":117,"Date":"5/21/2021"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":686,"Cost":601,"Date":"7/21/2021"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":780,"Cost":573,"Date":"8/5/2021"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":12,"Cost":11,"Date":"8/12/2021"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":23,"Cost":22,"Date":"8/21/2021"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":630,"Cost":394,"Date":"8/23/2021"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":458,"Cost":251,"Date":"9/3/2021"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":315,"Cost":223,"Date":"9/5/2021"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":935,"Cost":737,"Date":"10/6/2021"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":470,"Cost":268,"Date":"10/19/2021"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":878,"Cost":584,"Date":"11/15/2021"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":795,"Cost":553,"Date":"12/8/2021"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":474,"Cost":348,"Date":"1/8/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":934,"Cost":835,"Date":"1/14/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":657,"Cost":372,"Date":"1/19/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":318,"Cost":205,"Date":"1/28/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":882,"Cost":578,"Date":"1/31/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":81,"Cost":55,"Date":"3/27/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":672,"Cost":546,"Date":"4/20/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":608,"Cost":566,"Date":"4/24/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":248,"Cost":157,"Date":"4/28/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":442,"Cost":299,"Date":"5/15/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":998,"Cost":924,"Date":"5/16/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":301,"Cost":179,"Date":"5/18/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":706,"Cost":397,"Date":"6/2/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":952,"Cost":882,"Date":"6/3/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":178,"Cost":144,"Date":"6/5/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":433,"Cost":280,"Date":"6/7/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":729,"Cost":402,"Date":"6/14/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":505,"Cost":399,"Date":"6/20/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":593,"Cost":337,"Date":"6/24/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":287,"Cost":149,"Date":"7/4/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":39,"Cost":31,"Date":"7/9/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":713,"Cost":508,"Date":"7/12/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":886,"Cost":675,"Date":"8/14/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":51,"Cost":27,"Date":"8/16/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":566,"Cost":538,"Date":"8/23/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":71,"Cost":49,"Date":"9/2/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":89,"Cost":48,"Date":"9/3/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":978,"Cost":754,"Date":"9/16/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":868,"Cost":570,"Date":"10/4/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":280,"Cost":247,"Date":"11/1/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":448,"Cost":364,"Date":"11/2/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":18,"Cost":14,"Date":"12/17/2022"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":467,"Cost":285,"Date":"2/10/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":205,"Cost":172,"Date":"2/28/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":334,"Cost":173,"Date":"3/4/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":736,"Cost":599,"Date":"3/9/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":464,"Cost":310,"Date":"3/9/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":326,"Cost":216,"Date":"3/11/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":322,"Cost":236,"Date":"3/17/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":198,"Cost":172,"Date":"3/17/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":155,"Cost":110,"Date":"3/23/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":25,"Cost":19,"Date":"4/1/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":867,"Cost":764,"Date":"5/7/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":318,"Cost":159,"Date":"5/10/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":616,"Cost":462,"Date":"5/20/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":942,"Cost":551,"Date":"6/2/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":988,"Cost":512,"Date":"6/11/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":32,"Cost":25,"Date":"6/16/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":745,"Cost":679,"Date":"6/16/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":771,"Cost":598,"Date":"7/10/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":430,"Cost":385,"Date":"7/11/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":37,"Cost":20,"Date":"8/28/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":182,"Cost":138,"Date":"8/29/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":178,"Cost":163,"Date":"8/31/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":25,"Cost":14,"Date":"9/8/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":605,"Cost":412,"Date":"9/13/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":428,"Cost":218,"Date":"9/14/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":93,"Cost":80,"Date":"9/19/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":635,"Cost":397,"Date":"9/25/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":308,"Cost":234,"Date":"10/4/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":242,"Cost":133,"Date":"10/10/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":112,"Cost":95,"Date":"10/17/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":139,"Cost":125,"Date":"10/28/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":791,"Cost":685,"Date":"10/30/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":172,"Cost":93,"Date":"11/1/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":967,"Cost":748,"Date":"11/15/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":178,"Cost":110,"Date":"11/25/2023"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":129,"Cost":96,"Date":"1/10/2024"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":764,"Cost":518,"Date":"1/14/2024"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":999,"Cost":908,"Date":"1/20/2024"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":272,"Cost":219,"Date":"2/8/2024"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":745,"Cost":489,"Date":"2/25/2024"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":982,"Cost":820,"Date":"3/7/2024"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":251,"Cost":163,"Date":"3/14/2024"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":237,"Cost":145,"Date":"3/27/2024"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":133,"Cost":99,"Date":"4/5/2024"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":249,"Cost":148,"Date":"4/14/2024"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":777,"Cost":730,"Date":"5/3/2024"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":134,"Cost":121,"Date":"5/9/2024"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":221,"Cost":164,"Date":"5/15/2024"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":493,"Cost":258,"Date":"5/25/2024"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":744,"Cost":622,"Date":"5/26/2024"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":121,"Cost":89,"Date":"5/31/2024"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":701,"Cost":564,"Date":"7/27/2024"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":130,"Cost":123,"Date":"9/17/2024"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":389,"Cost":226,"Date":"10/6/2024"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":464,"Cost":356,"Date":"10/8/2024"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":799,"Cost":645,"Date":"10/26/2024"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":89,"Cost":65,"Date":"11/16/2024"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":820,"Cost":517,"Date":"11/18/2024"},{"Store":"Haskovo Mall","Brand":"COS","Country":"Bulgaria","Sale":51,"Cost":32,"Date":"12/1/2024"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":898,"Cost":575,"Date":"2/9/2018"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":39,"Cost":24,"Date":"2/11/2018"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":264,"Cost":232,"Date":"3/10/2018"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":391,"Cost":203,"Date":"3/16/2018"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":604,"Cost":528,"Date":"3/18/2018"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":175,"Cost":120,"Date":"3/20/2018"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":288,"Cost":247,"Date":"3/26/2018"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":115,"Cost":88,"Date":"6/2/2018"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":574,"Cost":301,"Date":"6/10/2018"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":501,"Cost":353,"Date":"6/16/2018"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":705,"Cost":575,"Date":"6/25/2018"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":999,"Cost":915,"Date":"7/19/2018"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":507,"Cost":447,"Date":"7/21/2018"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":149,"Cost":80,"Date":"7/25/2018"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":661,"Cost":390,"Date":"8/4/2018"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":971,"Cost":540,"Date":"9/2/2018"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":852,"Cost":642,"Date":"9/4/2018"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":564,"Cost":480,"Date":"9/19/2018"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":27,"Cost":15,"Date":"9/29/2018"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":825,"Cost":702,"Date":"10/2/2018"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":47,"Cost":37,"Date":"10/15/2018"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":311,"Cost":199,"Date":"10/30/2018"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":907,"Cost":461,"Date":"11/9/2018"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":50,"Cost":44,"Date":"11/23/2018"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":157,"Cost":101,"Date":"11/30/2018"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":926,"Cost":482,"Date":"12/8/2018"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":24,"Cost":21,"Date":"12/11/2018"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":173,"Cost":118,"Date":"1/15/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":864,"Cost":604,"Date":"1/24/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":745,"Cost":388,"Date":"2/3/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":467,"Cost":349,"Date":"2/4/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":466,"Cost":296,"Date":"3/9/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":474,"Cost":433,"Date":"3/12/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":23,"Cost":11,"Date":"4/19/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":936,"Cost":553,"Date":"5/3/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":677,"Cost":553,"Date":"5/4/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":317,"Cost":289,"Date":"6/8/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":982,"Cost":864,"Date":"6/26/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":553,"Cost":334,"Date":"7/4/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":245,"Cost":207,"Date":"7/13/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":77,"Cost":40,"Date":"8/8/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":495,"Cost":369,"Date":"8/26/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":858,"Cost":577,"Date":"9/2/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":649,"Cost":529,"Date":"9/29/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":31,"Cost":20,"Date":"10/12/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":557,"Cost":408,"Date":"11/2/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":36,"Cost":28,"Date":"11/4/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":116,"Cost":108,"Date":"11/7/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":248,"Cost":180,"Date":"12/1/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":507,"Cost":403,"Date":"12/4/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":675,"Cost":411,"Date":"12/7/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":61,"Cost":56,"Date":"12/18/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":50,"Cost":48,"Date":"12/20/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":452,"Cost":274,"Date":"12/20/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":870,"Cost":552,"Date":"12/21/2019"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":918,"Cost":813,"Date":"1/9/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":440,"Cost":255,"Date":"2/5/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":436,"Cost":308,"Date":"2/16/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":800,"Cost":425,"Date":"2/16/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":82,"Cost":43,"Date":"2/18/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":434,"Cost":261,"Date":"2/22/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":545,"Cost":363,"Date":"2/25/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":612,"Cost":428,"Date":"3/8/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":215,"Cost":179,"Date":"4/2/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":534,"Cost":425,"Date":"4/3/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":825,"Cost":592,"Date":"4/9/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":619,"Cost":329,"Date":"4/10/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":663,"Cost":336,"Date":"4/19/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":797,"Cost":491,"Date":"5/17/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":170,"Cost":88,"Date":"5/22/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":349,"Cost":244,"Date":"6/20/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":546,"Cost":297,"Date":"7/1/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":370,"Cost":213,"Date":"7/4/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":715,"Cost":678,"Date":"7/8/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":193,"Cost":96,"Date":"7/9/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":213,"Cost":160,"Date":"7/14/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":411,"Cost":231,"Date":"7/19/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":456,"Cost":309,"Date":"8/1/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":512,"Cost":435,"Date":"8/6/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":900,"Cost":773,"Date":"8/7/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":931,"Cost":775,"Date":"8/22/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":363,"Cost":339,"Date":"8/31/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":684,"Cost":546,"Date":"9/1/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":587,"Cost":448,"Date":"9/1/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":427,"Cost":294,"Date":"9/17/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":207,"Cost":109,"Date":"9/29/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":918,"Cost":828,"Date":"11/7/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":35,"Cost":25,"Date":"11/26/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":356,"Cost":311,"Date":"11/27/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":436,"Cost":384,"Date":"12/5/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":361,"Cost":282,"Date":"12/26/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":533,"Cost":326,"Date":"12/31/2020"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":917,"Cost":603,"Date":"1/20/2021"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":523,"Cost":269,"Date":"2/2/2021"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":236,"Cost":132,"Date":"2/8/2021"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":537,"Cost":336,"Date":"2/27/2021"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":204,"Cost":113,"Date":"3/1/2021"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":525,"Cost":442,"Date":"3/1/2021"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":372,"Cost":284,"Date":"3/19/2021"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":293,"Cost":155,"Date":"3/28/2021"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":472,"Cost":330,"Date":"5/21/2021"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":211,"Cost":187,"Date":"7/21/2021"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":987,"Cost":852,"Date":"8/5/2021"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":942,"Cost":649,"Date":"8/12/2021"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":809,"Cost":621,"Date":"8/21/2021"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":312,"Cost":194,"Date":"8/23/2021"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":669,"Cost":606,"Date":"9/3/2021"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":180,"Cost":118,"Date":"9/5/2021"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":584,"Cost":505,"Date":"10/6/2021"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":888,"Cost":487,"Date":"10/19/2021"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":492,"Cost":408,"Date":"11/15/2021"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":310,"Cost":262,"Date":"12/8/2021"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":950,"Cost":518,"Date":"1/8/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":360,"Cost":230,"Date":"1/14/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":180,"Cost":166,"Date":"1/19/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":215,"Cost":116,"Date":"1/28/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":178,"Cost":89,"Date":"1/31/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":335,"Cost":170,"Date":"3/27/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":971,"Cost":869,"Date":"4/20/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":47,"Cost":23,"Date":"4/24/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":682,"Cost":484,"Date":"4/28/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":945,"Cost":734,"Date":"5/15/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":947,"Cost":861,"Date":"5/16/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":688,"Cost":599,"Date":"5/18/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":763,"Cost":620,"Date":"6/2/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":218,"Cost":137,"Date":"6/3/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":138,"Cost":100,"Date":"6/5/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":207,"Cost":126,"Date":"6/7/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":803,"Cost":584,"Date":"6/14/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":557,"Cost":501,"Date":"6/20/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":420,"Cost":357,"Date":"6/24/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":564,"Cost":474,"Date":"7/4/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":472,"Cost":347,"Date":"7/9/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":592,"Cost":334,"Date":"7/12/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":750,"Cost":458,"Date":"8/14/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":621,"Cost":318,"Date":"8/16/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":553,"Cost":509,"Date":"8/23/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":528,"Cost":501,"Date":"9/2/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":162,"Cost":106,"Date":"9/3/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":998,"Cost":792,"Date":"9/16/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":748,"Cost":569,"Date":"10/4/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":991,"Cost":747,"Date":"11/1/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":470,"Cost":250,"Date":"11/2/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":488,"Cost":400,"Date":"12/17/2022"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":92,"Cost":61,"Date":"2/10/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":310,"Cost":163,"Date":"2/28/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":66,"Cost":33,"Date":"3/4/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":826,"Cost":537,"Date":"3/9/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":106,"Cost":89,"Date":"3/9/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":19,"Cost":17,"Date":"3/11/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":647,"Cost":534,"Date":"3/17/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":590,"Cost":553,"Date":"3/17/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":751,"Cost":554,"Date":"3/23/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":211,"Cost":124,"Date":"4/1/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":450,"Cost":368,"Date":"5/7/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":760,"Cost":446,"Date":"5/10/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":80,"Cost":43,"Date":"5/20/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":43,"Cost":35,"Date":"6/2/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":652,"Cost":362,"Date":"6/11/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":198,"Cost":170,"Date":"6/16/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":661,"Cost":537,"Date":"6/16/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":380,"Cost":332,"Date":"7/10/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":434,"Cost":223,"Date":"7/11/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":4,"Cost":3,"Date":"8/28/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":4,"Cost":3,"Date":"8/29/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":381,"Cost":289,"Date":"8/31/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":687,"Cost":530,"Date":"9/8/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":296,"Cost":199,"Date":"9/13/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":932,"Cost":643,"Date":"9/14/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":740,"Cost":511,"Date":"9/19/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":425,"Cost":225,"Date":"9/25/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":537,"Cost":394,"Date":"10/4/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":133,"Cost":76,"Date":"10/10/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":203,"Cost":159,"Date":"10/17/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":116,"Cost":96,"Date":"10/28/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":730,"Cost":669,"Date":"10/30/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":172,"Cost":101,"Date":"11/1/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":161,"Cost":153,"Date":"11/15/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":889,"Cost":508,"Date":"11/25/2023"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":668,"Cost":622,"Date":"1/10/2024"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":994,"Cost":898,"Date":"1/14/2024"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":536,"Cost":396,"Date":"1/20/2024"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":420,"Cost":359,"Date":"2/8/2024"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":819,"Cost":591,"Date":"2/25/2024"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":451,"Cost":415,"Date":"3/7/2024"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":72,"Cost":65,"Date":"3/14/2024"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":348,"Cost":179,"Date":"3/27/2024"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":173,"Cost":104,"Date":"4/5/2024"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":948,"Cost":618,"Date":"4/14/2024"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":469,"Cost":415,"Date":"5/3/2024"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":947,"Cost":647,"Date":"5/9/2024"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":103,"Cost":96,"Date":"5/15/2024"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":808,"Cost":598,"Date":"5/25/2024"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":20,"Cost":18,"Date":"5/26/2024"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":452,"Cost":410,"Date":"5/31/2024"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":582,"Cost":508,"Date":"7/27/2024"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":197,"Cost":153,"Date":"9/17/2024"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":885,"Cost":448,"Date":"10/6/2024"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":780,"Cost":480,"Date":"10/8/2024"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":556,"Cost":428,"Date":"10/26/2024"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":870,"Cost":783,"Date":"11/16/2024"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":649,"Cost":425,"Date":"11/18/2024"},{"Store":"Haskovo Mall","Brand":"HM","Country":"Bulgaria","Sale":303,"Cost":253,"Date":"12/1/2024"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":149,"Cost":91,"Date":"2/9/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":45,"Cost":42,"Date":"2/11/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":769,"Cost":599,"Date":"3/10/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":246,"Cost":217,"Date":"3/16/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":305,"Cost":234,"Date":"3/18/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":208,"Cost":161,"Date":"3/20/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":229,"Cost":183,"Date":"3/26/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":996,"Cost":738,"Date":"6/2/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":852,"Cost":754,"Date":"6/10/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":959,"Cost":785,"Date":"6/16/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":359,"Cost":315,"Date":"6/25/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":170,"Cost":123,"Date":"7/19/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":128,"Cost":110,"Date":"7/21/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":755,"Cost":561,"Date":"7/25/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":282,"Cost":264,"Date":"8/4/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":415,"Cost":273,"Date":"9/2/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":550,"Cost":520,"Date":"9/4/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":141,"Cost":79,"Date":"9/19/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":997,"Cost":588,"Date":"9/29/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":875,"Cost":482,"Date":"10/2/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":84,"Cost":75,"Date":"10/15/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":835,"Cost":641,"Date":"10/30/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":708,"Cost":474,"Date":"11/9/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":579,"Cost":457,"Date":"11/23/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":433,"Cost":326,"Date":"11/30/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":3,"Cost":3,"Date":"12/8/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":433,"Cost":382,"Date":"12/11/2018"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":148,"Cost":85,"Date":"1/15/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":764,"Cost":665,"Date":"1/24/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":133,"Cost":111,"Date":"2/3/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":412,"Cost":338,"Date":"2/4/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":132,"Cost":100,"Date":"3/9/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":925,"Cost":491,"Date":"3/12/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":898,"Cost":691,"Date":"4/19/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":247,"Cost":222,"Date":"5/3/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":535,"Cost":392,"Date":"5/4/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":437,"Cost":334,"Date":"6/8/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":713,"Cost":566,"Date":"6/26/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":498,"Cost":366,"Date":"7/4/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":999,"Cost":794,"Date":"7/13/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":954,"Cost":600,"Date":"8/8/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":88,"Cost":79,"Date":"8/26/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":124,"Cost":97,"Date":"9/2/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":101,"Cost":91,"Date":"9/29/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":35,"Cost":23,"Date":"10/12/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":837,"Cost":722,"Date":"11/2/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":589,"Cost":347,"Date":"11/4/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":705,"Cost":469,"Date":"11/7/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":480,"Cost":373,"Date":"12/1/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":797,"Cost":417,"Date":"12/4/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":760,"Cost":489,"Date":"12/7/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":416,"Cost":324,"Date":"12/18/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":872,"Cost":791,"Date":"12/20/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":683,"Cost":418,"Date":"12/20/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":780,"Cost":708,"Date":"12/21/2019"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":718,"Cost":458,"Date":"1/9/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":208,"Cost":183,"Date":"2/5/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":869,"Cost":595,"Date":"2/16/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":17,"Cost":12,"Date":"2/16/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":359,"Cost":184,"Date":"2/18/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":509,"Cost":303,"Date":"2/22/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":981,"Cost":503,"Date":"2/25/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":865,"Cost":555,"Date":"3/8/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":355,"Cost":311,"Date":"4/2/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":390,"Cost":345,"Date":"4/3/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":703,"Cost":394,"Date":"4/9/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":45,"Cost":29,"Date":"4/10/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":750,"Cost":677,"Date":"4/19/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":346,"Cost":315,"Date":"5/17/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":75,"Cost":51,"Date":"5/22/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":851,"Cost":724,"Date":"6/20/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":252,"Cost":148,"Date":"7/1/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":928,"Cost":692,"Date":"7/4/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":866,"Cost":604,"Date":"7/8/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":127,"Cost":67,"Date":"7/9/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":948,"Cost":568,"Date":"7/14/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":870,"Cost":582,"Date":"7/19/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":212,"Cost":132,"Date":"8/1/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":582,"Cost":387,"Date":"8/6/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":533,"Cost":429,"Date":"8/7/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":92,"Cost":46,"Date":"8/22/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":593,"Cost":554,"Date":"8/31/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":745,"Cost":375,"Date":"9/1/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":664,"Cost":412,"Date":"9/1/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":717,"Cost":374,"Date":"9/17/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":104,"Cost":85,"Date":"9/29/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":164,"Cost":93,"Date":"11/7/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":161,"Cost":82,"Date":"11/26/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":653,"Cost":513,"Date":"11/27/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":804,"Cost":567,"Date":"12/5/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":39,"Cost":25,"Date":"12/26/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":446,"Cost":358,"Date":"12/31/2020"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":330,"Cost":168,"Date":"1/20/2021"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":765,"Cost":704,"Date":"2/2/2021"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":260,"Cost":191,"Date":"2/8/2021"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":502,"Cost":317,"Date":"2/27/2021"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":53,"Cost":46,"Date":"3/1/2021"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":132,"Cost":74,"Date":"3/1/2021"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":784,"Cost":550,"Date":"3/19/2021"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":906,"Cost":645,"Date":"3/28/2021"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":392,"Cost":256,"Date":"5/21/2021"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":118,"Cost":82,"Date":"7/21/2021"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":823,"Cost":697,"Date":"8/5/2021"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":882,"Cost":547,"Date":"8/12/2021"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":946,"Cost":660,"Date":"8/21/2021"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":479,"Cost":386,"Date":"8/23/2021"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":143,"Cost":86,"Date":"9/3/2021"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":140,"Cost":116,"Date":"9/5/2021"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":349,"Cost":283,"Date":"10/6/2021"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":391,"Cost":326,"Date":"10/19/2021"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":474,"Cost":281,"Date":"11/15/2021"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":717,"Cost":676,"Date":"12/8/2021"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":178,"Cost":100,"Date":"1/8/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":194,"Cost":184,"Date":"1/14/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":114,"Cost":100,"Date":"1/19/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":404,"Cost":212,"Date":"1/28/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":374,"Cost":272,"Date":"1/31/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":145,"Cost":95,"Date":"3/27/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":784,"Cost":578,"Date":"4/20/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":948,"Cost":847,"Date":"4/24/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":742,"Cost":663,"Date":"4/28/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":595,"Cost":298,"Date":"5/15/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":941,"Cost":758,"Date":"5/16/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":949,"Cost":655,"Date":"5/18/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":479,"Cost":377,"Date":"6/2/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":128,"Cost":73,"Date":"6/3/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":166,"Cost":118,"Date":"6/5/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":906,"Cost":615,"Date":"6/7/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":749,"Cost":378,"Date":"6/14/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":601,"Cost":514,"Date":"6/20/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":145,"Cost":92,"Date":"6/24/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":602,"Cost":550,"Date":"7/4/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":819,"Cost":751,"Date":"7/9/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":261,"Cost":234,"Date":"7/12/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":743,"Cost":512,"Date":"8/14/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":367,"Cost":294,"Date":"8/16/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":629,"Cost":518,"Date":"8/23/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":776,"Cost":724,"Date":"9/2/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":699,"Cost":477,"Date":"9/3/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":358,"Cost":212,"Date":"9/16/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":962,"Cost":752,"Date":"10/4/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":215,"Cost":156,"Date":"11/1/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":507,"Cost":383,"Date":"11/2/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":426,"Cost":247,"Date":"12/17/2022"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":416,"Cost":362,"Date":"2/10/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":897,"Cost":651,"Date":"2/28/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":480,"Cost":436,"Date":"3/4/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":151,"Cost":112,"Date":"3/9/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":354,"Cost":278,"Date":"3/9/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":634,"Cost":379,"Date":"3/11/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":925,"Cost":531,"Date":"3/17/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":294,"Cost":150,"Date":"3/17/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":13,"Cost":8,"Date":"3/23/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":811,"Cost":507,"Date":"4/1/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":146,"Cost":114,"Date":"5/7/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":552,"Cost":419,"Date":"5/10/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":916,"Cost":793,"Date":"5/20/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":143,"Cost":80,"Date":"6/2/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":566,"Cost":439,"Date":"6/11/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":193,"Cost":160,"Date":"6/16/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":49,"Cost":39,"Date":"6/16/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":527,"Cost":393,"Date":"7/10/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":728,"Cost":402,"Date":"7/11/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":196,"Cost":127,"Date":"8/28/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":971,"Cost":612,"Date":"8/29/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":839,"Cost":637,"Date":"8/31/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":384,"Cost":288,"Date":"9/8/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":914,"Cost":656,"Date":"9/13/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":184,"Cost":112,"Date":"9/14/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":171,"Cost":101,"Date":"9/19/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":527,"Cost":453,"Date":"9/25/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":204,"Cost":125,"Date":"10/4/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":851,"Cost":711,"Date":"10/10/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":473,"Cost":433,"Date":"10/17/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":105,"Cost":62,"Date":"10/28/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":842,"Cost":441,"Date":"10/30/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":935,"Cost":510,"Date":"11/1/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":242,"Cost":207,"Date":"11/15/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":422,"Cost":368,"Date":"11/25/2023"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":583,"Cost":367,"Date":"1/10/2024"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":457,"Cost":339,"Date":"1/14/2024"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":170,"Cost":114,"Date":"1/20/2024"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":814,"Cost":602,"Date":"2/8/2024"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":661,"Cost":574,"Date":"2/25/2024"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":794,"Cost":465,"Date":"3/7/2024"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":669,"Cost":341,"Date":"3/14/2024"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":273,"Cost":159,"Date":"3/27/2024"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":88,"Cost":51,"Date":"4/5/2024"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":798,"Cost":728,"Date":"4/14/2024"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":515,"Cost":438,"Date":"5/3/2024"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":37,"Cost":33,"Date":"5/9/2024"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":529,"Cost":305,"Date":"5/15/2024"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":466,"Cost":285,"Date":"5/25/2024"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":342,"Cost":324,"Date":"5/26/2024"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":386,"Cost":321,"Date":"5/31/2024"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":23,"Cost":13,"Date":"7/27/2024"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":688,"Cost":452,"Date":"9/17/2024"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":531,"Cost":409,"Date":"10/6/2024"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":209,"Cost":126,"Date":"10/8/2024"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":321,"Cost":245,"Date":"10/26/2024"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":85,"Cost":70,"Date":"11/16/2024"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":915,"Cost":477,"Date":"11/18/2024"},{"Store":"Kyustendil Mall","Brand":"Jeans","Country":"Bulgaria","Sale":100,"Cost":94,"Date":"12/1/2024"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":642,"Cost":592,"Date":"2/9/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":379,"Cost":242,"Date":"2/11/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":315,"Cost":253,"Date":"3/10/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":491,"Cost":385,"Date":"3/16/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":956,"Cost":591,"Date":"3/18/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":722,"Cost":686,"Date":"3/20/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":256,"Cost":216,"Date":"3/26/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":906,"Cost":805,"Date":"6/2/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":987,"Cost":527,"Date":"6/10/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":459,"Cost":369,"Date":"6/16/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":311,"Cost":271,"Date":"6/25/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":621,"Cost":363,"Date":"7/19/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":797,"Cost":420,"Date":"7/21/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":164,"Cost":143,"Date":"7/25/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":194,"Cost":137,"Date":"8/4/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":772,"Cost":596,"Date":"9/2/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":121,"Cost":87,"Date":"9/4/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":597,"Cost":340,"Date":"9/19/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":47,"Cost":31,"Date":"9/29/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":412,"Cost":385,"Date":"10/2/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":610,"Cost":317,"Date":"10/15/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":181,"Cost":171,"Date":"10/30/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":231,"Cost":182,"Date":"11/9/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":334,"Cost":310,"Date":"11/23/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":774,"Cost":582,"Date":"11/30/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":864,"Cost":554,"Date":"12/8/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":861,"Cost":554,"Date":"12/11/2018"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":777,"Cost":713,"Date":"1/15/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":34,"Cost":30,"Date":"1/24/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":951,"Cost":657,"Date":"2/3/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":525,"Cost":311,"Date":"2/4/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":791,"Cost":580,"Date":"3/9/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":752,"Cost":509,"Date":"3/12/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":4,"Cost":3,"Date":"4/19/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":159,"Cost":129,"Date":"5/3/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":759,"Cost":483,"Date":"5/4/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":256,"Cost":138,"Date":"6/8/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":746,"Cost":424,"Date":"6/26/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":91,"Cost":75,"Date":"7/4/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":622,"Cost":439,"Date":"7/13/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":472,"Cost":270,"Date":"8/8/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":62,"Cost":59,"Date":"8/26/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":19,"Cost":11,"Date":"9/2/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":796,"Cost":633,"Date":"9/29/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":253,"Cost":185,"Date":"10/12/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":433,"Cost":228,"Date":"11/2/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":622,"Cost":540,"Date":"11/4/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":118,"Cost":88,"Date":"11/7/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":427,"Cost":387,"Date":"12/1/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":219,"Cost":165,"Date":"12/4/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":945,"Cost":669,"Date":"12/7/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":766,"Cost":470,"Date":"12/18/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":327,"Cost":259,"Date":"12/20/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":73,"Cost":66,"Date":"12/20/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":186,"Cost":175,"Date":"12/21/2019"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":461,"Cost":324,"Date":"1/9/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":790,"Cost":521,"Date":"2/5/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":89,"Cost":85,"Date":"2/16/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":379,"Cost":240,"Date":"2/16/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":275,"Cost":160,"Date":"2/18/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":873,"Cost":609,"Date":"2/22/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":672,"Cost":527,"Date":"2/25/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":893,"Cost":825,"Date":"3/8/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":825,"Cost":769,"Date":"4/2/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":667,"Cost":439,"Date":"4/3/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":51,"Cost":28,"Date":"4/9/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":587,"Cost":340,"Date":"4/10/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":460,"Cost":294,"Date":"4/19/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":778,"Cost":605,"Date":"5/17/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":438,"Cost":249,"Date":"5/22/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":792,"Cost":697,"Date":"6/20/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":341,"Cost":208,"Date":"7/1/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":362,"Cost":302,"Date":"7/4/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":611,"Cost":440,"Date":"7/8/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":569,"Cost":358,"Date":"7/9/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":798,"Cost":694,"Date":"7/14/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":429,"Cost":347,"Date":"7/19/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":219,"Cost":124,"Date":"8/1/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":85,"Cost":62,"Date":"8/6/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":958,"Cost":832,"Date":"8/7/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":134,"Cost":125,"Date":"8/22/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":782,"Cost":455,"Date":"8/31/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":508,"Cost":437,"Date":"9/1/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":423,"Cost":287,"Date":"9/1/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":641,"Cost":380,"Date":"9/17/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":173,"Cost":109,"Date":"9/29/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":453,"Cost":247,"Date":"11/7/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":605,"Cost":477,"Date":"11/26/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":575,"Cost":348,"Date":"11/27/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":926,"Cost":568,"Date":"12/5/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":787,"Cost":619,"Date":"12/26/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":63,"Cost":35,"Date":"12/31/2020"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":842,"Cost":625,"Date":"1/20/2021"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":483,"Cost":411,"Date":"2/2/2021"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":588,"Cost":457,"Date":"2/8/2021"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":460,"Cost":364,"Date":"2/27/2021"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":789,"Cost":568,"Date":"3/1/2021"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":198,"Cost":103,"Date":"3/1/2021"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":972,"Cost":606,"Date":"3/19/2021"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":445,"Cost":312,"Date":"3/28/2021"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":608,"Cost":383,"Date":"5/21/2021"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":82,"Cost":66,"Date":"7/21/2021"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":780,"Cost":596,"Date":"8/5/2021"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":675,"Cost":441,"Date":"8/12/2021"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":742,"Cost":373,"Date":"8/21/2021"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":33,"Cost":31,"Date":"8/23/2021"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":75,"Cost":42,"Date":"9/3/2021"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":644,"Cost":519,"Date":"9/5/2021"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":498,"Cost":329,"Date":"10/6/2021"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":447,"Cost":309,"Date":"10/19/2021"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":624,"Cost":337,"Date":"11/15/2021"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":757,"Cost":403,"Date":"12/8/2021"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":321,"Cost":225,"Date":"1/8/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":273,"Cost":218,"Date":"1/14/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":216,"Cost":146,"Date":"1/19/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":239,"Cost":130,"Date":"1/28/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":713,"Cost":502,"Date":"1/31/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":846,"Cost":480,"Date":"3/27/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":373,"Cost":207,"Date":"4/20/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":248,"Cost":220,"Date":"4/24/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":606,"Cost":333,"Date":"4/28/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":908,"Cost":683,"Date":"5/15/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":58,"Cost":45,"Date":"5/16/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":916,"Cost":478,"Date":"5/18/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":311,"Cost":199,"Date":"6/2/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":7,"Cost":5,"Date":"6/3/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":811,"Cost":648,"Date":"6/5/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":240,"Cost":178,"Date":"6/7/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":672,"Cost":580,"Date":"6/14/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":992,"Cost":524,"Date":"6/20/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":611,"Cost":436,"Date":"6/24/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":304,"Cost":241,"Date":"7/4/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":377,"Cost":337,"Date":"7/9/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":739,"Cost":515,"Date":"7/12/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":169,"Cost":106,"Date":"8/14/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":189,"Cost":115,"Date":"8/16/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":744,"Cost":546,"Date":"8/23/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":856,"Cost":610,"Date":"9/2/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":471,"Cost":447,"Date":"9/3/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":723,"Cost":622,"Date":"9/16/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":307,"Cost":287,"Date":"10/4/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":362,"Cost":342,"Date":"11/1/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":163,"Cost":83,"Date":"11/2/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":75,"Cost":48,"Date":"12/17/2022"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":711,"Cost":397,"Date":"2/10/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":591,"Cost":442,"Date":"2/28/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":402,"Cost":356,"Date":"3/4/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":396,"Cost":290,"Date":"3/9/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":22,"Cost":21,"Date":"3/9/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":318,"Cost":275,"Date":"3/11/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":210,"Cost":164,"Date":"3/17/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":750,"Cost":580,"Date":"3/17/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":56,"Cost":33,"Date":"3/23/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":331,"Cost":198,"Date":"4/1/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":670,"Cost":618,"Date":"5/7/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":460,"Cost":373,"Date":"5/10/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":801,"Cost":617,"Date":"5/20/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":613,"Cost":487,"Date":"6/2/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":461,"Cost":403,"Date":"6/11/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":397,"Cost":316,"Date":"6/16/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":253,"Cost":239,"Date":"6/16/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":236,"Cost":194,"Date":"7/10/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":273,"Cost":238,"Date":"7/11/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":38,"Cost":34,"Date":"8/28/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":91,"Cost":67,"Date":"8/29/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":500,"Cost":270,"Date":"8/31/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":619,"Cost":508,"Date":"9/8/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":550,"Cost":450,"Date":"9/13/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":982,"Cost":738,"Date":"9/14/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":548,"Cost":497,"Date":"9/19/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":492,"Cost":421,"Date":"9/25/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":856,"Cost":538,"Date":"10/4/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":586,"Cost":512,"Date":"10/10/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":910,"Cost":826,"Date":"10/17/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":235,"Cost":119,"Date":"10/28/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":200,"Cost":147,"Date":"10/30/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":427,"Cost":372,"Date":"11/1/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":122,"Cost":81,"Date":"11/15/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":451,"Cost":400,"Date":"11/25/2023"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":377,"Cost":263,"Date":"1/10/2024"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":836,"Cost":529,"Date":"1/14/2024"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":866,"Cost":465,"Date":"1/20/2024"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":437,"Cost":255,"Date":"2/8/2024"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":559,"Cost":297,"Date":"2/25/2024"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":519,"Cost":483,"Date":"3/7/2024"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":803,"Cost":569,"Date":"3/14/2024"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":823,"Cost":672,"Date":"3/27/2024"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":665,"Cost":622,"Date":"4/5/2024"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":579,"Cost":457,"Date":"4/14/2024"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":595,"Cost":471,"Date":"5/3/2024"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":379,"Cost":353,"Date":"5/9/2024"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":349,"Cost":175,"Date":"5/15/2024"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":504,"Cost":457,"Date":"5/25/2024"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":913,"Cost":731,"Date":"5/26/2024"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":373,"Cost":232,"Date":"5/31/2024"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":62,"Cost":56,"Date":"7/27/2024"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":121,"Cost":65,"Date":"9/17/2024"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":941,"Cost":565,"Date":"10/6/2024"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":720,"Cost":584,"Date":"10/8/2024"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":204,"Cost":114,"Date":"10/26/2024"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":82,"Cost":73,"Date":"11/16/2024"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":389,"Cost":237,"Date":"11/18/2024"},{"Store":"Kyustendil Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":297,"Cost":268,"Date":"12/1/2024"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":380,"Cost":348,"Date":"2/9/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":230,"Cost":178,"Date":"2/11/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":683,"Cost":609,"Date":"3/10/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":92,"Cost":60,"Date":"3/16/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":751,"Cost":522,"Date":"3/18/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":504,"Cost":405,"Date":"3/20/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":97,"Cost":81,"Date":"3/26/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":616,"Cost":374,"Date":"6/2/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":239,"Cost":210,"Date":"6/10/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":303,"Cost":181,"Date":"6/16/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":222,"Cost":149,"Date":"6/25/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":314,"Cost":253,"Date":"7/19/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":902,"Cost":752,"Date":"7/21/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":846,"Cost":458,"Date":"7/25/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":922,"Cost":470,"Date":"8/4/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":766,"Cost":492,"Date":"9/2/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":376,"Cost":314,"Date":"9/4/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":58,"Cost":45,"Date":"9/19/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":711,"Cost":517,"Date":"9/29/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":987,"Cost":695,"Date":"10/2/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":254,"Cost":216,"Date":"10/15/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":899,"Cost":851,"Date":"10/30/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":651,"Cost":594,"Date":"11/9/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":934,"Cost":567,"Date":"11/23/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":53,"Cost":47,"Date":"11/30/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":49,"Cost":40,"Date":"12/8/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":212,"Cost":172,"Date":"12/11/2018"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":6,"Cost":4,"Date":"1/15/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":603,"Cost":366,"Date":"1/24/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":3,"Cost":2,"Date":"2/3/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":332,"Cost":268,"Date":"2/4/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":758,"Cost":688,"Date":"3/9/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":465,"Cost":255,"Date":"3/12/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":173,"Cost":89,"Date":"4/19/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":472,"Cost":278,"Date":"5/3/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":36,"Cost":31,"Date":"5/4/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":364,"Cost":198,"Date":"6/8/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":952,"Cost":853,"Date":"6/26/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":735,"Cost":523,"Date":"7/4/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":36,"Cost":26,"Date":"7/13/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":451,"Cost":290,"Date":"8/8/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":240,"Cost":149,"Date":"8/26/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":509,"Cost":262,"Date":"9/2/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":864,"Cost":478,"Date":"9/29/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":199,"Cost":116,"Date":"10/12/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":812,"Cost":659,"Date":"11/2/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":627,"Cost":564,"Date":"11/4/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":679,"Cost":548,"Date":"11/7/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":887,"Cost":499,"Date":"12/1/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":29,"Cost":19,"Date":"12/4/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":250,"Cost":237,"Date":"12/7/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":277,"Cost":235,"Date":"12/18/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":687,"Cost":625,"Date":"12/20/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":97,"Cost":85,"Date":"12/20/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":875,"Cost":606,"Date":"12/21/2019"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":834,"Cost":611,"Date":"1/9/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":441,"Cost":339,"Date":"2/5/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":144,"Cost":111,"Date":"2/16/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":317,"Cost":173,"Date":"2/16/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":110,"Cost":102,"Date":"2/18/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":51,"Cost":39,"Date":"2/22/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":673,"Cost":417,"Date":"2/25/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":557,"Cost":325,"Date":"3/8/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":1,"Cost":1,"Date":"4/2/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":37,"Cost":20,"Date":"4/3/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":158,"Cost":140,"Date":"4/9/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":420,"Cost":303,"Date":"4/10/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":691,"Cost":409,"Date":"4/19/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":605,"Cost":492,"Date":"5/17/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":798,"Cost":439,"Date":"5/22/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":184,"Cost":100,"Date":"6/20/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":174,"Cost":108,"Date":"7/1/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":387,"Cost":324,"Date":"7/4/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":636,"Cost":477,"Date":"7/8/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":574,"Cost":456,"Date":"7/9/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":384,"Cost":239,"Date":"7/14/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":456,"Cost":423,"Date":"7/19/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":158,"Cost":145,"Date":"8/1/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":122,"Cost":96,"Date":"8/6/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":292,"Cost":264,"Date":"8/7/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":363,"Cost":281,"Date":"8/22/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":134,"Cost":71,"Date":"8/31/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":474,"Cost":243,"Date":"9/1/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":546,"Cost":325,"Date":"9/1/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":146,"Cost":117,"Date":"9/17/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":402,"Cost":237,"Date":"9/29/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":226,"Cost":151,"Date":"11/7/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":360,"Cost":318,"Date":"11/26/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":809,"Cost":413,"Date":"11/27/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":22,"Cost":12,"Date":"12/5/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":285,"Cost":217,"Date":"12/26/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":594,"Cost":557,"Date":"12/31/2020"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":85,"Cost":55,"Date":"1/20/2021"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":890,"Cost":648,"Date":"2/2/2021"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":22,"Cost":18,"Date":"2/8/2021"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":959,"Cost":871,"Date":"2/27/2021"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":28,"Cost":19,"Date":"3/1/2021"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":342,"Cost":307,"Date":"3/1/2021"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":381,"Cost":327,"Date":"3/19/2021"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":586,"Cost":307,"Date":"3/28/2021"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":257,"Cost":210,"Date":"5/21/2021"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":560,"Cost":369,"Date":"7/21/2021"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":224,"Cost":164,"Date":"8/5/2021"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":415,"Cost":269,"Date":"8/12/2021"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":428,"Cost":389,"Date":"8/21/2021"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":178,"Cost":109,"Date":"8/23/2021"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":969,"Cost":891,"Date":"9/3/2021"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":791,"Cost":398,"Date":"9/5/2021"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":825,"Cost":584,"Date":"10/6/2021"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":718,"Cost":390,"Date":"10/19/2021"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":66,"Cost":55,"Date":"11/15/2021"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":901,"Cost":791,"Date":"12/8/2021"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":406,"Cost":261,"Date":"1/8/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":798,"Cost":698,"Date":"1/14/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":590,"Cost":416,"Date":"1/19/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":198,"Cost":106,"Date":"1/28/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":786,"Cost":543,"Date":"1/31/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":53,"Cost":32,"Date":"3/27/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":13,"Cost":11,"Date":"4/20/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":107,"Cost":81,"Date":"4/24/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":135,"Cost":104,"Date":"4/28/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":393,"Cost":219,"Date":"5/15/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":758,"Cost":702,"Date":"5/16/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":758,"Cost":420,"Date":"5/18/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":949,"Cost":595,"Date":"6/2/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":144,"Cost":86,"Date":"6/3/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":668,"Cost":353,"Date":"6/5/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":391,"Cost":353,"Date":"6/7/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":349,"Cost":286,"Date":"6/14/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":776,"Cost":693,"Date":"6/20/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":34,"Cost":23,"Date":"6/24/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":240,"Cost":129,"Date":"7/4/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":73,"Cost":63,"Date":"7/9/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":497,"Cost":335,"Date":"7/12/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":887,"Cost":665,"Date":"8/14/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":525,"Cost":483,"Date":"8/16/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":528,"Cost":462,"Date":"8/23/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":110,"Cost":83,"Date":"9/2/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":983,"Cost":802,"Date":"9/3/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":82,"Cost":42,"Date":"9/16/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":44,"Cost":38,"Date":"10/4/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":565,"Cost":452,"Date":"11/1/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":566,"Cost":406,"Date":"11/2/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":470,"Cost":403,"Date":"12/17/2022"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":522,"Cost":454,"Date":"2/10/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":180,"Cost":163,"Date":"2/28/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":851,"Cost":644,"Date":"3/4/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":550,"Cost":470,"Date":"3/9/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":293,"Cost":267,"Date":"3/9/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":521,"Cost":475,"Date":"3/11/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":603,"Cost":357,"Date":"3/17/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":177,"Cost":100,"Date":"3/17/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":478,"Cost":412,"Date":"3/23/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":382,"Cost":320,"Date":"4/1/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":291,"Cost":183,"Date":"5/7/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":669,"Cost":494,"Date":"5/10/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":372,"Cost":282,"Date":"5/20/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":390,"Cost":356,"Date":"6/2/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":827,"Cost":603,"Date":"6/11/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":916,"Cost":704,"Date":"6/16/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":842,"Cost":690,"Date":"6/16/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":128,"Cost":106,"Date":"7/10/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":999,"Cost":843,"Date":"7/11/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":20,"Cost":11,"Date":"8/28/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":881,"Cost":516,"Date":"8/29/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":573,"Cost":327,"Date":"8/31/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":739,"Cost":414,"Date":"9/8/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":907,"Cost":453,"Date":"9/13/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":941,"Cost":553,"Date":"9/14/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":159,"Cost":121,"Date":"9/19/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":502,"Cost":355,"Date":"9/25/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":290,"Cost":274,"Date":"10/4/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":772,"Cost":416,"Date":"10/10/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":544,"Cost":496,"Date":"10/17/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":205,"Cost":153,"Date":"10/28/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":229,"Cost":203,"Date":"10/30/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":259,"Cost":207,"Date":"11/1/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":149,"Cost":100,"Date":"11/15/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":823,"Cost":567,"Date":"11/25/2023"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":558,"Cost":281,"Date":"1/10/2024"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":377,"Cost":301,"Date":"1/14/2024"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":533,"Cost":410,"Date":"1/20/2024"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":486,"Cost":354,"Date":"2/8/2024"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":500,"Cost":438,"Date":"2/25/2024"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":412,"Cost":369,"Date":"3/7/2024"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":432,"Cost":226,"Date":"3/14/2024"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":761,"Cost":722,"Date":"3/27/2024"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":161,"Cost":93,"Date":"4/5/2024"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":317,"Cost":231,"Date":"4/14/2024"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":262,"Cost":143,"Date":"5/3/2024"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":490,"Cost":266,"Date":"5/9/2024"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":826,"Cost":559,"Date":"5/15/2024"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":919,"Cost":484,"Date":"5/25/2024"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":930,"Cost":813,"Date":"5/26/2024"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":830,"Cost":731,"Date":"5/31/2024"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":704,"Cost":444,"Date":"7/27/2024"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":889,"Cost":632,"Date":"9/17/2024"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":600,"Cost":463,"Date":"10/6/2024"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":643,"Cost":581,"Date":"10/8/2024"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":282,"Cost":182,"Date":"10/26/2024"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":249,"Cost":140,"Date":"11/16/2024"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":748,"Cost":479,"Date":"11/18/2024"},{"Store":"Kyustendil Mall","Brand":"Nova","Country":"Bulgaria","Sale":520,"Cost":417,"Date":"12/1/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":817,"Cost":745,"Date":"2/9/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":175,"Cost":124,"Date":"2/11/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":560,"Cost":391,"Date":"3/10/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":160,"Cost":147,"Date":"3/16/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":316,"Cost":219,"Date":"3/18/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":803,"Cost":651,"Date":"3/20/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":553,"Cost":407,"Date":"3/26/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":646,"Cost":518,"Date":"6/2/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":671,"Cost":379,"Date":"6/10/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":631,"Cost":368,"Date":"6/16/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":564,"Cost":335,"Date":"6/25/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":325,"Cost":277,"Date":"7/19/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":100,"Cost":78,"Date":"7/21/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":942,"Cost":825,"Date":"7/25/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":224,"Cost":193,"Date":"8/4/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":769,"Cost":691,"Date":"9/2/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":318,"Cost":273,"Date":"9/4/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":708,"Cost":401,"Date":"9/19/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":478,"Cost":256,"Date":"9/29/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":178,"Cost":157,"Date":"10/2/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":607,"Cost":329,"Date":"10/15/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":228,"Cost":190,"Date":"10/30/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":348,"Cost":277,"Date":"11/9/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":364,"Cost":197,"Date":"11/23/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":332,"Cost":261,"Date":"11/30/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":467,"Cost":262,"Date":"12/8/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":82,"Cost":48,"Date":"12/11/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":313,"Cost":249,"Date":"1/15/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":479,"Cost":349,"Date":"1/24/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":572,"Cost":442,"Date":"2/3/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":667,"Cost":341,"Date":"2/4/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":949,"Cost":721,"Date":"3/9/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":250,"Cost":234,"Date":"3/12/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":88,"Cost":65,"Date":"4/19/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":778,"Cost":423,"Date":"5/3/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":364,"Cost":254,"Date":"5/4/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":239,"Cost":194,"Date":"6/8/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":368,"Cost":228,"Date":"6/26/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":958,"Cost":584,"Date":"7/4/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":264,"Cost":133,"Date":"7/13/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":289,"Cost":210,"Date":"8/8/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":176,"Cost":102,"Date":"8/26/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":100,"Cost":84,"Date":"9/2/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":801,"Cost":500,"Date":"9/29/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":649,"Cost":464,"Date":"10/12/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":388,"Cost":244,"Date":"11/2/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":612,"Cost":492,"Date":"11/4/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":447,"Cost":423,"Date":"11/7/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":338,"Cost":308,"Date":"12/1/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":570,"Cost":480,"Date":"12/4/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":965,"Cost":613,"Date":"12/7/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":347,"Cost":260,"Date":"12/18/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":380,"Cost":224,"Date":"12/20/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":598,"Cost":323,"Date":"12/20/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":724,"Cost":438,"Date":"12/21/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":953,"Cost":536,"Date":"1/9/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":940,"Cost":792,"Date":"2/5/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":723,"Cost":667,"Date":"2/16/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":892,"Cost":679,"Date":"2/16/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":319,"Cost":240,"Date":"2/18/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":322,"Cost":177,"Date":"2/22/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":960,"Cost":544,"Date":"2/25/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":700,"Cost":498,"Date":"3/8/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":325,"Cost":176,"Date":"4/2/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":760,"Cost":590,"Date":"4/3/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":405,"Cost":282,"Date":"4/9/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":963,"Cost":495,"Date":"4/10/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":537,"Cost":468,"Date":"4/19/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":767,"Cost":551,"Date":"5/17/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":742,"Cost":539,"Date":"5/22/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":429,"Cost":344,"Date":"6/20/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":778,"Cost":472,"Date":"7/1/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":350,"Cost":289,"Date":"7/4/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":321,"Cost":277,"Date":"7/8/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":106,"Cost":86,"Date":"7/9/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":711,"Cost":653,"Date":"7/14/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":348,"Cost":204,"Date":"7/19/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":854,"Cost":736,"Date":"8/1/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":704,"Cost":449,"Date":"8/6/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":585,"Cost":506,"Date":"8/7/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":468,"Cost":373,"Date":"8/22/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":130,"Cost":107,"Date":"8/31/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":303,"Cost":151,"Date":"9/1/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":711,"Cost":564,"Date":"9/1/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":876,"Cost":638,"Date":"9/17/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":450,"Cost":287,"Date":"9/29/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":982,"Cost":646,"Date":"11/7/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":292,"Cost":260,"Date":"11/26/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":645,"Cost":561,"Date":"11/27/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":347,"Cost":228,"Date":"12/5/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":160,"Cost":85,"Date":"12/26/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":669,"Cost":364,"Date":"12/31/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":308,"Cost":237,"Date":"1/20/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":431,"Cost":317,"Date":"2/2/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":63,"Cost":34,"Date":"2/8/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":496,"Cost":364,"Date":"2/27/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":738,"Cost":613,"Date":"3/1/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":460,"Cost":388,"Date":"3/1/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":315,"Cost":220,"Date":"3/19/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":727,"Cost":658,"Date":"3/28/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":295,"Cost":214,"Date":"5/21/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":830,"Cost":701,"Date":"7/21/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":956,"Cost":557,"Date":"8/5/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":530,"Cost":288,"Date":"8/12/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":3,"Cost":3,"Date":"8/21/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":80,"Cost":69,"Date":"8/23/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":765,"Cost":439,"Date":"9/3/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":864,"Cost":438,"Date":"9/5/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":213,"Cost":111,"Date":"10/6/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":479,"Cost":330,"Date":"10/19/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":899,"Cost":456,"Date":"11/15/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":588,"Cost":454,"Date":"12/8/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":328,"Cost":228,"Date":"1/8/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":492,"Cost":289,"Date":"1/14/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":107,"Cost":67,"Date":"1/19/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":258,"Cost":156,"Date":"1/28/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":544,"Cost":460,"Date":"1/31/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":505,"Cost":471,"Date":"3/27/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":720,"Cost":544,"Date":"4/20/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":389,"Cost":241,"Date":"4/24/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":190,"Cost":152,"Date":"4/28/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":172,"Cost":87,"Date":"5/15/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":756,"Cost":409,"Date":"5/16/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":719,"Cost":483,"Date":"5/18/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":538,"Cost":322,"Date":"6/2/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":671,"Cost":627,"Date":"6/3/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":64,"Cost":61,"Date":"6/5/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":972,"Cost":906,"Date":"6/7/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":450,"Cost":250,"Date":"6/14/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":564,"Cost":343,"Date":"6/20/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":835,"Cost":541,"Date":"6/24/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":333,"Cost":317,"Date":"7/4/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":139,"Cost":114,"Date":"7/9/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":773,"Cost":423,"Date":"7/12/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":530,"Cost":496,"Date":"8/14/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":902,"Cost":577,"Date":"8/16/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":631,"Cost":458,"Date":"8/23/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":943,"Cost":492,"Date":"9/2/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":307,"Cost":184,"Date":"9/3/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":823,"Cost":713,"Date":"9/16/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":827,"Cost":418,"Date":"10/4/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":86,"Cost":44,"Date":"11/1/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":4,"Cost":3,"Date":"11/2/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":318,"Cost":236,"Date":"12/17/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":805,"Cost":620,"Date":"2/10/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":938,"Cost":595,"Date":"2/28/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":694,"Cost":458,"Date":"3/4/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":327,"Cost":211,"Date":"3/9/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":535,"Cost":351,"Date":"3/9/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":594,"Cost":332,"Date":"3/11/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":966,"Cost":569,"Date":"3/17/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":858,"Cost":432,"Date":"3/17/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":499,"Cost":313,"Date":"3/23/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":31,"Cost":24,"Date":"4/1/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":123,"Cost":96,"Date":"5/7/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":296,"Cost":222,"Date":"5/10/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":70,"Cost":42,"Date":"5/20/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":788,"Cost":745,"Date":"6/2/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":429,"Cost":333,"Date":"6/11/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":186,"Cost":145,"Date":"6/16/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":532,"Cost":333,"Date":"6/16/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":201,"Cost":119,"Date":"7/10/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":360,"Cost":211,"Date":"7/11/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":578,"Cost":390,"Date":"8/28/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":824,"Cost":576,"Date":"8/29/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":361,"Cost":291,"Date":"8/31/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":854,"Cost":756,"Date":"9/8/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":206,"Cost":107,"Date":"9/13/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":677,"Cost":498,"Date":"9/14/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":276,"Cost":182,"Date":"9/19/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":99,"Cost":67,"Date":"9/25/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":757,"Cost":530,"Date":"10/4/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":872,"Cost":721,"Date":"10/10/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":39,"Cost":27,"Date":"10/17/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":716,"Cost":647,"Date":"10/28/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":239,"Cost":146,"Date":"10/30/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":15,"Cost":8,"Date":"11/1/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":900,"Cost":555,"Date":"11/15/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":495,"Cost":353,"Date":"11/25/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":542,"Cost":400,"Date":"1/10/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":407,"Cost":241,"Date":"1/14/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":610,"Cost":334,"Date":"1/20/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":422,"Cost":230,"Date":"2/8/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":749,"Cost":548,"Date":"2/25/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":526,"Cost":397,"Date":"3/7/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":873,"Cost":717,"Date":"3/14/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":391,"Cost":234,"Date":"3/27/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":44,"Cost":42,"Date":"4/5/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":82,"Cost":78,"Date":"4/14/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":976,"Cost":520,"Date":"5/3/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":575,"Cost":328,"Date":"5/9/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":872,"Cost":551,"Date":"5/15/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":883,"Cost":561,"Date":"5/25/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":342,"Cost":228,"Date":"5/26/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":960,"Cost":673,"Date":"5/31/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":861,"Cost":640,"Date":"7/27/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":186,"Cost":160,"Date":"9/17/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":794,"Cost":506,"Date":"10/6/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":785,"Cost":587,"Date":"10/8/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":164,"Cost":99,"Date":"10/26/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":308,"Cost":224,"Date":"11/16/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":268,"Cost":167,"Date":"11/18/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":193,"Cost":109,"Date":"12/1/2024"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":622,"Cost":527,"Date":"2/9/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":72,"Cost":61,"Date":"2/11/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":556,"Cost":426,"Date":"3/10/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":200,"Cost":126,"Date":"3/16/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":128,"Cost":115,"Date":"3/18/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":662,"Cost":426,"Date":"3/20/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":742,"Cost":488,"Date":"3/26/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":25,"Cost":19,"Date":"6/2/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":741,"Cost":534,"Date":"6/10/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":26,"Cost":23,"Date":"6/16/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":235,"Cost":117,"Date":"6/25/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":532,"Cost":497,"Date":"7/19/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":362,"Cost":305,"Date":"7/21/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":763,"Cost":413,"Date":"7/25/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":925,"Cost":703,"Date":"8/4/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":925,"Cost":785,"Date":"9/2/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":869,"Cost":598,"Date":"9/4/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":798,"Cost":745,"Date":"9/19/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":308,"Cost":278,"Date":"9/29/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":692,"Cost":637,"Date":"10/2/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":242,"Cost":158,"Date":"10/15/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":930,"Cost":571,"Date":"10/30/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":413,"Cost":326,"Date":"11/9/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":960,"Cost":823,"Date":"11/23/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":841,"Cost":512,"Date":"11/30/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":257,"Cost":165,"Date":"12/8/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":198,"Cost":163,"Date":"12/11/2018"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":56,"Cost":40,"Date":"1/15/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":182,"Cost":133,"Date":"1/24/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":36,"Cost":30,"Date":"2/3/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":372,"Cost":258,"Date":"2/4/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":460,"Cost":266,"Date":"3/9/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":132,"Cost":119,"Date":"3/12/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":97,"Cost":73,"Date":"4/19/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":831,"Cost":711,"Date":"5/3/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":148,"Cost":133,"Date":"5/4/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":201,"Cost":105,"Date":"6/8/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":65,"Cost":35,"Date":"6/26/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":781,"Cost":656,"Date":"7/4/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":875,"Cost":739,"Date":"7/13/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":176,"Cost":118,"Date":"8/8/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":757,"Cost":673,"Date":"8/26/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":909,"Cost":671,"Date":"9/2/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":198,"Cost":155,"Date":"9/29/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":834,"Cost":448,"Date":"10/12/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":588,"Cost":345,"Date":"11/2/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":364,"Cost":203,"Date":"11/4/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":913,"Cost":811,"Date":"11/7/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":892,"Cost":643,"Date":"12/1/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":489,"Cost":289,"Date":"12/4/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":188,"Cost":124,"Date":"12/7/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":562,"Cost":402,"Date":"12/18/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":369,"Cost":324,"Date":"12/20/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":27,"Cost":23,"Date":"12/20/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":382,"Cost":304,"Date":"12/21/2019"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":351,"Cost":217,"Date":"1/9/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":562,"Cost":349,"Date":"2/5/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":828,"Cost":546,"Date":"2/16/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":795,"Cost":741,"Date":"2/16/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":310,"Cost":172,"Date":"2/18/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":35,"Cost":19,"Date":"2/22/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":489,"Cost":414,"Date":"2/25/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":639,"Cost":540,"Date":"3/8/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":704,"Cost":417,"Date":"4/2/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":628,"Cost":339,"Date":"4/3/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":4,"Cost":3,"Date":"4/9/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":581,"Cost":332,"Date":"4/10/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":526,"Cost":477,"Date":"4/19/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":650,"Cost":460,"Date":"5/17/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":843,"Cost":496,"Date":"5/22/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":222,"Cost":188,"Date":"6/20/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":989,"Cost":613,"Date":"7/1/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":378,"Cost":254,"Date":"7/4/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":532,"Cost":266,"Date":"7/8/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":764,"Cost":675,"Date":"7/9/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":192,"Cost":118,"Date":"7/14/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":410,"Cost":301,"Date":"7/19/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":597,"Cost":409,"Date":"8/1/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":611,"Cost":306,"Date":"8/6/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":97,"Cost":64,"Date":"8/7/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":694,"Cost":615,"Date":"8/22/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":922,"Cost":810,"Date":"8/31/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":576,"Cost":355,"Date":"9/1/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":867,"Cost":781,"Date":"9/1/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":147,"Cost":119,"Date":"9/17/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":110,"Cost":89,"Date":"9/29/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":54,"Cost":35,"Date":"11/7/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":655,"Cost":528,"Date":"11/26/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":776,"Cost":539,"Date":"11/27/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":991,"Cost":609,"Date":"12/5/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":28,"Cost":27,"Date":"12/26/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":635,"Cost":499,"Date":"12/31/2020"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":354,"Cost":250,"Date":"1/20/2021"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":544,"Cost":455,"Date":"2/2/2021"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":617,"Cost":568,"Date":"2/8/2021"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":308,"Cost":231,"Date":"2/27/2021"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":484,"Cost":366,"Date":"3/1/2021"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":589,"Cost":418,"Date":"3/1/2021"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":940,"Cost":883,"Date":"3/19/2021"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":105,"Cost":98,"Date":"3/28/2021"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":354,"Cost":276,"Date":"5/21/2021"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":843,"Cost":643,"Date":"7/21/2021"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":548,"Cost":423,"Date":"8/5/2021"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":694,"Cost":496,"Date":"8/12/2021"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":975,"Cost":530,"Date":"8/21/2021"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":461,"Cost":422,"Date":"8/23/2021"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":911,"Cost":509,"Date":"9/3/2021"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":701,"Cost":469,"Date":"9/5/2021"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":597,"Cost":536,"Date":"10/6/2021"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":236,"Cost":136,"Date":"10/19/2021"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":320,"Cost":222,"Date":"11/15/2021"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":611,"Cost":534,"Date":"12/8/2021"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":30,"Cost":22,"Date":"1/8/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":826,"Cost":495,"Date":"1/14/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":959,"Cost":584,"Date":"1/19/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":296,"Cost":204,"Date":"1/28/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":114,"Cost":93,"Date":"1/31/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":838,"Cost":468,"Date":"3/27/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":5,"Cost":4,"Date":"4/20/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":196,"Cost":178,"Date":"4/24/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":975,"Cost":849,"Date":"4/28/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":97,"Cost":80,"Date":"5/15/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":535,"Cost":365,"Date":"5/16/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":819,"Cost":537,"Date":"5/18/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":737,"Cost":688,"Date":"6/2/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":824,"Cost":503,"Date":"6/3/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":751,"Cost":404,"Date":"6/5/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":772,"Cost":666,"Date":"6/7/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":26,"Cost":21,"Date":"6/14/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":198,"Cost":106,"Date":"6/20/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":252,"Cost":147,"Date":"6/24/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":896,"Cost":696,"Date":"7/4/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":790,"Cost":675,"Date":"7/9/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":683,"Cost":492,"Date":"7/12/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":667,"Cost":532,"Date":"8/14/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":433,"Cost":350,"Date":"8/16/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":229,"Cost":158,"Date":"8/23/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":952,"Cost":847,"Date":"9/2/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":25,"Cost":18,"Date":"9/3/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":749,"Cost":553,"Date":"9/16/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":504,"Cost":427,"Date":"10/4/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":419,"Cost":276,"Date":"11/1/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":771,"Cost":433,"Date":"11/2/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":253,"Cost":128,"Date":"12/17/2022"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":636,"Cost":531,"Date":"2/10/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":704,"Cost":573,"Date":"2/28/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":580,"Cost":356,"Date":"3/4/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":740,"Cost":658,"Date":"3/9/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":242,"Cost":212,"Date":"3/9/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":958,"Cost":519,"Date":"3/11/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":870,"Cost":714,"Date":"3/17/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":588,"Cost":543,"Date":"3/17/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":464,"Cost":235,"Date":"3/23/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":542,"Cost":430,"Date":"4/1/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":755,"Cost":481,"Date":"5/7/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":494,"Cost":440,"Date":"5/10/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":223,"Cost":199,"Date":"5/20/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":895,"Cost":738,"Date":"6/2/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":599,"Cost":454,"Date":"6/11/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":677,"Cost":561,"Date":"6/16/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":102,"Cost":81,"Date":"6/16/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":814,"Cost":604,"Date":"7/10/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":265,"Cost":202,"Date":"7/11/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":694,"Cost":498,"Date":"8/28/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":661,"Cost":625,"Date":"8/29/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":42,"Cost":24,"Date":"8/31/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":300,"Cost":248,"Date":"9/8/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":310,"Cost":179,"Date":"9/13/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":962,"Cost":490,"Date":"9/14/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":350,"Cost":221,"Date":"9/19/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":923,"Cost":691,"Date":"9/25/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":17,"Cost":14,"Date":"10/4/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":965,"Cost":493,"Date":"10/10/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":860,"Cost":526,"Date":"10/17/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":488,"Cost":280,"Date":"10/28/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":729,"Cost":629,"Date":"10/30/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":329,"Cost":244,"Date":"11/1/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":867,"Cost":444,"Date":"11/15/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":84,"Cost":53,"Date":"11/25/2023"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":72,"Cost":65,"Date":"1/10/2024"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":690,"Cost":465,"Date":"1/14/2024"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":342,"Cost":313,"Date":"1/20/2024"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":214,"Cost":117,"Date":"2/8/2024"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":321,"Cost":202,"Date":"2/25/2024"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":480,"Cost":380,"Date":"3/7/2024"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":314,"Cost":243,"Date":"3/14/2024"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":724,"Cost":585,"Date":"3/27/2024"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":307,"Cost":157,"Date":"4/5/2024"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":313,"Cost":255,"Date":"4/14/2024"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":621,"Cost":581,"Date":"5/3/2024"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":107,"Cost":94,"Date":"5/9/2024"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":48,"Cost":46,"Date":"5/15/2024"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":743,"Cost":586,"Date":"5/25/2024"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":45,"Cost":28,"Date":"5/26/2024"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":9,"Cost":4,"Date":"5/31/2024"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":689,"Cost":630,"Date":"7/27/2024"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":912,"Cost":501,"Date":"9/17/2024"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":404,"Cost":364,"Date":"10/6/2024"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":946,"Cost":560,"Date":"10/8/2024"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":852,"Cost":725,"Date":"10/26/2024"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":60,"Cost":49,"Date":"11/16/2024"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":168,"Cost":124,"Date":"11/18/2024"},{"Store":"Montana Mall","Brand":"Nova","Country":"Bulgaria","Sale":945,"Cost":553,"Date":"12/1/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":244,"Cost":216,"Date":"2/9/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":399,"Cost":200,"Date":"2/11/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":855,"Cost":794,"Date":"3/10/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":472,"Cost":238,"Date":"3/16/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":834,"Cost":659,"Date":"3/18/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":559,"Cost":282,"Date":"3/20/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":835,"Cost":714,"Date":"3/26/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":206,"Cost":168,"Date":"6/2/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":532,"Cost":277,"Date":"6/10/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":791,"Cost":473,"Date":"6/16/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":717,"Cost":642,"Date":"6/25/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":706,"Cost":636,"Date":"7/19/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":178,"Cost":126,"Date":"7/21/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":654,"Cost":557,"Date":"7/25/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":105,"Cost":55,"Date":"8/4/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":378,"Cost":195,"Date":"9/2/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":221,"Cost":147,"Date":"9/4/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":99,"Cost":85,"Date":"9/19/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":150,"Cost":94,"Date":"9/29/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":518,"Cost":415,"Date":"10/2/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":289,"Cost":186,"Date":"10/15/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":416,"Cost":324,"Date":"10/30/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":661,"Cost":521,"Date":"11/9/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":966,"Cost":644,"Date":"11/23/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":924,"Cost":767,"Date":"11/30/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":286,"Cost":183,"Date":"12/8/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":7,"Cost":7,"Date":"12/11/2018"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":912,"Cost":748,"Date":"1/15/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":438,"Cost":314,"Date":"1/24/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":19,"Cost":14,"Date":"2/3/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":216,"Cost":183,"Date":"2/4/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":781,"Cost":424,"Date":"3/9/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":914,"Cost":479,"Date":"3/12/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":59,"Cost":37,"Date":"4/19/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":495,"Cost":354,"Date":"5/3/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":995,"Cost":904,"Date":"5/4/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":941,"Cost":491,"Date":"6/8/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":431,"Cost":342,"Date":"6/26/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":778,"Cost":738,"Date":"7/4/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":127,"Cost":103,"Date":"7/13/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":623,"Cost":492,"Date":"8/8/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":601,"Cost":495,"Date":"8/26/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":286,"Cost":215,"Date":"9/2/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":598,"Cost":454,"Date":"9/29/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":508,"Cost":323,"Date":"10/12/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":624,"Cost":534,"Date":"11/2/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":310,"Cost":184,"Date":"11/4/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":424,"Cost":327,"Date":"11/7/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":518,"Cost":366,"Date":"12/1/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":943,"Cost":799,"Date":"12/4/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":742,"Cost":411,"Date":"12/7/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":617,"Cost":331,"Date":"12/18/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":197,"Cost":147,"Date":"12/20/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":697,"Cost":379,"Date":"12/20/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":106,"Cost":71,"Date":"12/21/2019"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":898,"Cost":737,"Date":"1/9/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":21,"Cost":19,"Date":"2/5/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":971,"Cost":697,"Date":"2/16/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":156,"Cost":130,"Date":"2/16/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":147,"Cost":123,"Date":"2/18/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":649,"Cost":564,"Date":"2/22/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":856,"Cost":681,"Date":"2/25/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":975,"Cost":652,"Date":"3/8/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":844,"Cost":573,"Date":"4/2/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":724,"Cost":581,"Date":"4/3/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":136,"Cost":118,"Date":"4/9/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":141,"Cost":116,"Date":"4/10/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":480,"Cost":364,"Date":"4/19/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":288,"Cost":177,"Date":"5/17/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":373,"Cost":304,"Date":"5/22/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":583,"Cost":380,"Date":"6/20/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":447,"Cost":396,"Date":"7/1/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":331,"Cost":231,"Date":"7/4/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":930,"Cost":789,"Date":"7/8/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":417,"Cost":218,"Date":"7/9/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":25,"Cost":18,"Date":"7/14/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":808,"Cost":438,"Date":"7/19/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":433,"Cost":354,"Date":"8/1/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":703,"Cost":521,"Date":"8/6/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":292,"Cost":252,"Date":"8/7/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":731,"Cost":481,"Date":"8/22/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":295,"Cost":148,"Date":"8/31/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":442,"Cost":365,"Date":"9/1/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":59,"Cost":39,"Date":"9/1/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":943,"Cost":720,"Date":"9/17/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":227,"Cost":177,"Date":"9/29/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":471,"Cost":251,"Date":"11/7/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":419,"Cost":238,"Date":"11/26/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":257,"Cost":236,"Date":"11/27/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":761,"Cost":632,"Date":"12/5/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":168,"Cost":102,"Date":"12/26/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":971,"Cost":528,"Date":"12/31/2020"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":944,"Cost":770,"Date":"1/20/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":805,"Cost":413,"Date":"2/2/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":452,"Cost":429,"Date":"2/8/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":306,"Cost":164,"Date":"2/27/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":716,"Cost":564,"Date":"3/1/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":903,"Cost":788,"Date":"3/1/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":612,"Cost":369,"Date":"3/19/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":409,"Cost":236,"Date":"3/28/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":249,"Cost":209,"Date":"5/21/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":884,"Cost":490,"Date":"7/21/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":647,"Cost":526,"Date":"8/5/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":579,"Cost":468,"Date":"8/12/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":637,"Cost":452,"Date":"8/21/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":19,"Cost":11,"Date":"8/23/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":934,"Cost":673,"Date":"9/3/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":309,"Cost":171,"Date":"9/5/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":321,"Cost":303,"Date":"10/6/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":680,"Cost":584,"Date":"10/19/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":470,"Cost":313,"Date":"11/15/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":548,"Cost":330,"Date":"12/8/2021"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":364,"Cost":184,"Date":"1/8/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":721,"Cost":631,"Date":"1/14/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":78,"Cost":71,"Date":"1/19/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":176,"Cost":153,"Date":"1/28/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":536,"Cost":340,"Date":"1/31/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":138,"Cost":109,"Date":"3/27/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":359,"Cost":219,"Date":"4/20/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":80,"Cost":74,"Date":"4/24/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":199,"Cost":166,"Date":"4/28/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":507,"Cost":370,"Date":"5/15/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":903,"Cost":465,"Date":"5/16/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":331,"Cost":231,"Date":"5/18/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":588,"Cost":421,"Date":"6/2/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":982,"Cost":802,"Date":"6/3/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":103,"Cost":58,"Date":"6/5/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":827,"Cost":656,"Date":"6/7/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":783,"Cost":420,"Date":"6/14/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":932,"Cost":815,"Date":"6/20/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":206,"Cost":117,"Date":"6/24/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":579,"Cost":318,"Date":"7/4/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":209,"Cost":176,"Date":"7/9/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":74,"Cost":54,"Date":"7/12/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":243,"Cost":215,"Date":"8/14/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":418,"Cost":265,"Date":"8/16/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":431,"Cost":308,"Date":"8/23/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":461,"Cost":378,"Date":"9/2/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":385,"Cost":306,"Date":"9/3/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":412,"Cost":231,"Date":"9/16/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":858,"Cost":522,"Date":"10/4/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":143,"Cost":96,"Date":"11/1/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":410,"Cost":381,"Date":"11/2/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":50,"Cost":30,"Date":"12/17/2022"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":118,"Cost":110,"Date":"2/10/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":924,"Cost":644,"Date":"2/28/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":402,"Cost":358,"Date":"3/4/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":714,"Cost":499,"Date":"3/9/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":503,"Cost":374,"Date":"3/9/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":487,"Cost":331,"Date":"3/11/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":468,"Cost":391,"Date":"3/17/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":467,"Cost":294,"Date":"3/17/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":4,"Cost":3,"Date":"3/23/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":17,"Cost":9,"Date":"4/1/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":450,"Cost":291,"Date":"5/7/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":976,"Cost":488,"Date":"5/10/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":269,"Cost":208,"Date":"5/20/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":168,"Cost":120,"Date":"6/2/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":945,"Cost":524,"Date":"6/11/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":55,"Cost":32,"Date":"6/16/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":899,"Cost":843,"Date":"6/16/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":702,"Cost":576,"Date":"7/10/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":477,"Cost":339,"Date":"7/11/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":541,"Cost":377,"Date":"8/28/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":573,"Cost":333,"Date":"8/29/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":545,"Cost":405,"Date":"8/31/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":535,"Cost":439,"Date":"9/8/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":952,"Cost":499,"Date":"9/13/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":359,"Cost":248,"Date":"9/14/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":941,"Cost":516,"Date":"9/19/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":624,"Cost":557,"Date":"9/25/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":715,"Cost":534,"Date":"10/4/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":326,"Cost":246,"Date":"10/10/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":976,"Cost":563,"Date":"10/17/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":950,"Cost":806,"Date":"10/28/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":650,"Cost":465,"Date":"10/30/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":536,"Cost":478,"Date":"11/1/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":193,"Cost":174,"Date":"11/15/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":420,"Cost":254,"Date":"11/25/2023"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":6,"Cost":3,"Date":"1/10/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":322,"Cost":180,"Date":"1/14/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":504,"Cost":295,"Date":"1/20/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":137,"Cost":84,"Date":"2/8/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":384,"Cost":363,"Date":"2/25/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":889,"Cost":447,"Date":"3/7/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":717,"Cost":639,"Date":"3/14/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":718,"Cost":594,"Date":"3/27/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":875,"Cost":541,"Date":"4/5/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":552,"Cost":454,"Date":"4/14/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":178,"Cost":145,"Date":"5/3/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":395,"Cost":317,"Date":"5/9/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":796,"Cost":555,"Date":"5/15/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":999,"Cost":876,"Date":"5/25/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":658,"Cost":386,"Date":"5/26/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":145,"Cost":98,"Date":"5/31/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":116,"Cost":83,"Date":"7/27/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":16,"Cost":8,"Date":"9/17/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":765,"Cost":572,"Date":"10/6/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":895,"Cost":703,"Date":"10/8/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":136,"Cost":113,"Date":"10/26/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":476,"Cost":299,"Date":"11/16/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":131,"Cost":73,"Date":"11/18/2024"},{"Store":"Montana Mall","Brand":"COS","Country":"Bulgaria","Sale":746,"Cost":426,"Date":"12/1/2024"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":89,"Cost":56,"Date":"2/9/2018"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":626,"Cost":380,"Date":"2/11/2018"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":900,"Cost":716,"Date":"3/10/2018"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":966,"Cost":498,"Date":"3/16/2018"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":271,"Cost":186,"Date":"3/18/2018"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":558,"Cost":519,"Date":"3/20/2018"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":386,"Cost":263,"Date":"3/26/2018"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":757,"Cost":457,"Date":"6/2/2018"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":293,"Cost":276,"Date":"6/10/2018"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":186,"Cost":167,"Date":"6/16/2018"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":17,"Cost":13,"Date":"6/25/2018"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":824,"Cost":589,"Date":"7/19/2018"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":398,"Cost":294,"Date":"7/21/2018"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":682,"Cost":533,"Date":"7/25/2018"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":45,"Cost":23,"Date":"8/4/2018"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":621,"Cost":347,"Date":"9/2/2018"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":1000,"Cost":627,"Date":"9/4/2018"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":427,"Cost":296,"Date":"9/19/2018"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":86,"Cost":77,"Date":"9/29/2018"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":582,"Cost":298,"Date":"10/2/2018"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":158,"Cost":113,"Date":"10/15/2018"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":101,"Cost":67,"Date":"10/30/2018"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":14,"Cost":13,"Date":"11/9/2018"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":364,"Cost":295,"Date":"11/23/2018"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":283,"Cost":146,"Date":"11/30/2018"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":612,"Cost":576,"Date":"12/8/2018"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":303,"Cost":229,"Date":"12/11/2018"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":741,"Cost":476,"Date":"1/15/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":430,"Cost":252,"Date":"1/24/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":928,"Cost":838,"Date":"2/3/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":389,"Cost":212,"Date":"2/4/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":3,"Cost":1,"Date":"3/9/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":955,"Cost":675,"Date":"3/12/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":967,"Cost":838,"Date":"4/19/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":625,"Cost":537,"Date":"5/3/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":899,"Cost":769,"Date":"5/4/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":54,"Cost":37,"Date":"6/8/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":999,"Cost":843,"Date":"6/26/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":458,"Cost":313,"Date":"7/4/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":850,"Cost":477,"Date":"7/13/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":103,"Cost":61,"Date":"8/8/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":339,"Cost":262,"Date":"8/26/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":631,"Cost":580,"Date":"9/2/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":435,"Cost":335,"Date":"9/29/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":390,"Cost":341,"Date":"10/12/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":827,"Cost":614,"Date":"11/2/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":55,"Cost":44,"Date":"11/4/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":494,"Cost":359,"Date":"11/7/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":909,"Cost":556,"Date":"12/1/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":840,"Cost":443,"Date":"12/4/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":996,"Cost":663,"Date":"12/7/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":857,"Cost":656,"Date":"12/18/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":324,"Cost":276,"Date":"12/20/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":831,"Cost":554,"Date":"12/20/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":190,"Cost":103,"Date":"12/21/2019"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":222,"Cost":185,"Date":"1/9/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":88,"Cost":53,"Date":"2/5/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":72,"Cost":36,"Date":"2/16/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":267,"Cost":223,"Date":"2/16/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":110,"Cost":57,"Date":"2/18/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":793,"Cost":664,"Date":"2/22/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":422,"Cost":267,"Date":"2/25/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":270,"Cost":183,"Date":"3/8/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":243,"Cost":161,"Date":"4/2/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":136,"Cost":114,"Date":"4/3/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":903,"Cost":714,"Date":"4/9/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":949,"Cost":514,"Date":"4/10/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":666,"Cost":587,"Date":"4/19/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":987,"Cost":691,"Date":"5/17/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":575,"Cost":429,"Date":"5/22/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":748,"Cost":380,"Date":"6/20/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":76,"Cost":38,"Date":"7/1/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":12,"Cost":9,"Date":"7/4/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":866,"Cost":539,"Date":"7/8/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":748,"Cost":439,"Date":"7/9/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":852,"Cost":738,"Date":"7/14/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":281,"Cost":148,"Date":"7/19/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":911,"Cost":791,"Date":"8/1/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":131,"Cost":111,"Date":"8/6/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":142,"Cost":95,"Date":"8/7/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":257,"Cost":157,"Date":"8/22/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":534,"Cost":452,"Date":"8/31/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":552,"Cost":413,"Date":"9/1/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":912,"Cost":777,"Date":"9/1/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":172,"Cost":109,"Date":"9/17/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":644,"Cost":351,"Date":"9/29/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":165,"Cost":156,"Date":"11/7/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":189,"Cost":139,"Date":"11/26/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":441,"Cost":269,"Date":"11/27/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":547,"Cost":498,"Date":"12/5/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":914,"Cost":674,"Date":"12/26/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":771,"Cost":581,"Date":"12/31/2020"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":258,"Cost":135,"Date":"1/20/2021"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":965,"Cost":542,"Date":"2/2/2021"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":534,"Cost":432,"Date":"2/8/2021"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":991,"Cost":795,"Date":"2/27/2021"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":350,"Cost":329,"Date":"3/1/2021"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":321,"Cost":241,"Date":"3/1/2021"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":113,"Cost":69,"Date":"3/19/2021"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":567,"Cost":358,"Date":"3/28/2021"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":767,"Cost":437,"Date":"5/21/2021"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":501,"Cost":326,"Date":"7/21/2021"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":297,"Cost":149,"Date":"8/5/2021"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":832,"Cost":733,"Date":"8/12/2021"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":14,"Cost":7,"Date":"8/21/2021"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":956,"Cost":559,"Date":"8/23/2021"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":880,"Cost":721,"Date":"9/3/2021"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":6,"Cost":3,"Date":"9/5/2021"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":610,"Cost":373,"Date":"10/6/2021"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":497,"Cost":252,"Date":"10/19/2021"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":145,"Cost":93,"Date":"11/15/2021"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":855,"Cost":783,"Date":"12/8/2021"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":790,"Cost":409,"Date":"1/8/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":582,"Cost":300,"Date":"1/14/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":431,"Cost":288,"Date":"1/19/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":903,"Cost":842,"Date":"1/28/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":210,"Cost":178,"Date":"1/31/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":756,"Cost":481,"Date":"3/27/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":572,"Cost":432,"Date":"4/20/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":815,"Cost":539,"Date":"4/24/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":13,"Cost":8,"Date":"4/28/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":76,"Cost":70,"Date":"5/15/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":844,"Cost":542,"Date":"5/16/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":646,"Cost":446,"Date":"5/18/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":665,"Cost":478,"Date":"6/2/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":782,"Cost":627,"Date":"6/3/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":139,"Cost":81,"Date":"6/5/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":683,"Cost":553,"Date":"6/7/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":793,"Cost":427,"Date":"6/14/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":686,"Cost":519,"Date":"6/20/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":539,"Cost":355,"Date":"6/24/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":522,"Cost":325,"Date":"7/4/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":505,"Cost":335,"Date":"7/9/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":371,"Cost":229,"Date":"7/12/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":12,"Cost":11,"Date":"8/14/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":307,"Cost":173,"Date":"8/16/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":852,"Cost":533,"Date":"8/23/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":778,"Cost":460,"Date":"9/2/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":919,"Cost":672,"Date":"9/3/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":734,"Cost":489,"Date":"9/16/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":995,"Cost":686,"Date":"10/4/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":831,"Cost":582,"Date":"11/1/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":968,"Cost":489,"Date":"11/2/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":936,"Cost":676,"Date":"12/17/2022"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":559,"Cost":407,"Date":"2/10/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":529,"Cost":349,"Date":"2/28/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":928,"Cost":687,"Date":"3/4/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":694,"Cost":637,"Date":"3/9/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":379,"Cost":317,"Date":"3/9/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":207,"Cost":105,"Date":"3/11/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":516,"Cost":468,"Date":"3/17/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":971,"Cost":878,"Date":"3/17/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":937,"Cost":493,"Date":"3/23/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":117,"Cost":68,"Date":"4/1/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":767,"Cost":396,"Date":"5/7/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":175,"Cost":106,"Date":"5/10/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":172,"Cost":152,"Date":"5/20/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":957,"Cost":808,"Date":"6/2/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":630,"Cost":505,"Date":"6/11/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":342,"Cost":187,"Date":"6/16/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":337,"Cost":230,"Date":"6/16/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":892,"Cost":768,"Date":"7/10/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":870,"Cost":714,"Date":"7/11/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":24,"Cost":12,"Date":"8/28/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":344,"Cost":175,"Date":"8/29/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":949,"Cost":898,"Date":"8/31/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":842,"Cost":686,"Date":"9/8/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":823,"Cost":470,"Date":"9/13/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":856,"Cost":740,"Date":"9/14/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":445,"Cost":360,"Date":"9/19/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":774,"Cost":595,"Date":"9/25/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":627,"Cost":429,"Date":"10/4/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":535,"Cost":285,"Date":"10/10/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":964,"Cost":596,"Date":"10/17/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":830,"Cost":753,"Date":"10/28/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":854,"Cost":667,"Date":"10/30/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":897,"Cost":804,"Date":"11/1/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":377,"Cost":352,"Date":"11/15/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":456,"Cost":300,"Date":"11/25/2023"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":984,"Cost":835,"Date":"1/10/2024"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":434,"Cost":362,"Date":"1/14/2024"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":21,"Cost":13,"Date":"1/20/2024"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":670,"Cost":427,"Date":"2/8/2024"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":580,"Cost":454,"Date":"2/25/2024"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":482,"Cost":417,"Date":"3/7/2024"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":336,"Cost":194,"Date":"3/14/2024"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":30,"Cost":19,"Date":"3/27/2024"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":495,"Cost":290,"Date":"4/5/2024"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":556,"Cost":339,"Date":"4/14/2024"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":889,"Cost":623,"Date":"5/3/2024"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":305,"Cost":243,"Date":"5/9/2024"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":151,"Cost":86,"Date":"5/15/2024"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":503,"Cost":397,"Date":"5/25/2024"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":242,"Cost":214,"Date":"5/26/2024"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":798,"Cost":730,"Date":"5/31/2024"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":731,"Cost":562,"Date":"7/27/2024"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":138,"Cost":82,"Date":"9/17/2024"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":501,"Cost":426,"Date":"10/6/2024"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":79,"Cost":50,"Date":"10/8/2024"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":154,"Cost":106,"Date":"10/26/2024"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":351,"Cost":182,"Date":"11/16/2024"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":877,"Cost":608,"Date":"11/18/2024"},{"Store":"Blagoevgrad Mall","Brand":"HM","Country":"Bulgaria","Sale":352,"Cost":190,"Date":"12/1/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":89,"Cost":63,"Date":"2/9/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":296,"Cost":263,"Date":"2/11/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":789,"Cost":527,"Date":"3/10/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":979,"Cost":913,"Date":"3/16/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":60,"Cost":42,"Date":"3/18/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":177,"Cost":152,"Date":"3/20/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":462,"Cost":356,"Date":"3/26/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":120,"Cost":66,"Date":"6/2/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":514,"Cost":422,"Date":"6/10/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":238,"Cost":208,"Date":"6/16/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":717,"Cost":361,"Date":"6/25/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":202,"Cost":190,"Date":"7/19/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":437,"Cost":397,"Date":"7/21/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":809,"Cost":407,"Date":"7/25/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":123,"Cost":102,"Date":"8/4/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":875,"Cost":520,"Date":"9/2/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":679,"Cost":554,"Date":"9/4/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":730,"Cost":508,"Date":"9/19/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":75,"Cost":61,"Date":"9/29/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":589,"Cost":332,"Date":"10/2/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":336,"Cost":174,"Date":"10/15/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":454,"Cost":366,"Date":"10/30/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":188,"Cost":168,"Date":"11/9/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":158,"Cost":91,"Date":"11/23/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":983,"Cost":496,"Date":"11/30/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":420,"Cost":231,"Date":"12/8/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":494,"Cost":285,"Date":"12/11/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":124,"Cost":63,"Date":"1/15/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":801,"Cost":575,"Date":"1/24/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":885,"Cost":640,"Date":"2/3/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":898,"Cost":793,"Date":"2/4/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":842,"Cost":567,"Date":"3/9/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":916,"Cost":771,"Date":"3/12/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":56,"Cost":38,"Date":"4/19/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":686,"Cost":522,"Date":"5/3/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":916,"Cost":811,"Date":"5/4/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":685,"Cost":370,"Date":"6/8/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":565,"Cost":425,"Date":"6/26/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":661,"Cost":381,"Date":"7/4/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":753,"Cost":423,"Date":"7/13/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":856,"Cost":432,"Date":"8/8/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":679,"Cost":613,"Date":"8/26/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":996,"Cost":674,"Date":"9/2/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":866,"Cost":680,"Date":"9/29/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":565,"Cost":427,"Date":"10/12/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":657,"Cost":391,"Date":"11/2/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":160,"Cost":141,"Date":"11/4/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":887,"Cost":526,"Date":"11/7/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":69,"Cost":37,"Date":"12/1/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":329,"Cost":246,"Date":"12/4/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":633,"Cost":442,"Date":"12/7/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":745,"Cost":425,"Date":"12/18/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":773,"Cost":607,"Date":"12/20/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":839,"Cost":688,"Date":"12/20/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":852,"Cost":629,"Date":"12/21/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":846,"Cost":458,"Date":"1/9/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":5,"Cost":3,"Date":"2/5/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":584,"Cost":342,"Date":"2/16/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":602,"Cost":554,"Date":"2/16/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":442,"Cost":349,"Date":"2/18/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":961,"Cost":669,"Date":"2/22/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":310,"Cost":172,"Date":"2/25/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":940,"Cost":541,"Date":"3/8/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":319,"Cost":260,"Date":"4/2/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":777,"Cost":580,"Date":"4/3/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":55,"Cost":50,"Date":"4/9/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":80,"Cost":51,"Date":"4/10/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":555,"Cost":372,"Date":"4/19/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":115,"Cost":61,"Date":"5/17/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":252,"Cost":193,"Date":"5/22/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":995,"Cost":859,"Date":"6/20/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":754,"Cost":641,"Date":"7/1/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":760,"Cost":658,"Date":"7/4/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":122,"Cost":63,"Date":"7/8/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":567,"Cost":366,"Date":"7/9/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":982,"Cost":780,"Date":"7/14/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":92,"Cost":53,"Date":"7/19/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":903,"Cost":828,"Date":"8/1/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":707,"Cost":507,"Date":"8/6/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":231,"Cost":156,"Date":"8/7/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":270,"Cost":151,"Date":"8/22/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":941,"Cost":639,"Date":"8/31/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":76,"Cost":44,"Date":"9/1/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":735,"Cost":401,"Date":"9/1/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":280,"Cost":194,"Date":"9/17/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":341,"Cost":216,"Date":"9/29/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":710,"Cost":453,"Date":"11/7/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":494,"Cost":276,"Date":"11/26/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":420,"Cost":237,"Date":"11/27/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":972,"Cost":802,"Date":"12/5/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":283,"Cost":184,"Date":"12/26/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":188,"Cost":118,"Date":"12/31/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":652,"Cost":341,"Date":"1/20/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":963,"Cost":625,"Date":"2/2/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":428,"Cost":313,"Date":"2/8/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":497,"Cost":262,"Date":"2/27/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":409,"Cost":221,"Date":"3/1/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":898,"Cost":555,"Date":"3/1/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":38,"Cost":33,"Date":"3/19/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":915,"Cost":575,"Date":"3/28/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":732,"Cost":629,"Date":"5/21/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":39,"Cost":31,"Date":"7/21/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":865,"Cost":683,"Date":"8/5/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":889,"Cost":565,"Date":"8/12/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":796,"Cost":502,"Date":"8/21/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":848,"Cost":766,"Date":"8/23/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":397,"Cost":334,"Date":"9/3/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":61,"Cost":53,"Date":"9/5/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":708,"Cost":559,"Date":"10/6/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":872,"Cost":517,"Date":"10/19/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":957,"Cost":786,"Date":"11/15/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":386,"Cost":288,"Date":"12/8/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":856,"Cost":623,"Date":"1/8/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":4,"Cost":2,"Date":"1/14/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":834,"Cost":434,"Date":"1/19/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":793,"Cost":625,"Date":"1/28/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":404,"Cost":336,"Date":"1/31/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":39,"Cost":25,"Date":"3/27/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":22,"Cost":19,"Date":"4/20/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":365,"Cost":314,"Date":"4/24/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":590,"Cost":321,"Date":"4/28/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":133,"Cost":111,"Date":"5/15/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":601,"Cost":520,"Date":"5/16/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":195,"Cost":170,"Date":"5/18/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":615,"Cost":504,"Date":"6/2/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":635,"Cost":386,"Date":"6/3/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":814,"Cost":706,"Date":"6/5/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":137,"Cost":98,"Date":"6/7/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":79,"Cost":69,"Date":"6/14/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":449,"Cost":356,"Date":"6/20/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":895,"Cost":730,"Date":"6/24/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":332,"Cost":241,"Date":"7/4/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":581,"Cost":432,"Date":"7/9/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":96,"Cost":82,"Date":"7/12/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":228,"Cost":163,"Date":"8/14/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":477,"Cost":398,"Date":"8/16/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":709,"Cost":562,"Date":"8/23/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":727,"Cost":377,"Date":"9/2/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":692,"Cost":553,"Date":"9/3/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":524,"Cost":399,"Date":"9/16/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":432,"Cost":303,"Date":"10/4/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":403,"Cost":338,"Date":"11/1/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":16,"Cost":14,"Date":"11/2/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":305,"Cost":188,"Date":"12/17/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":586,"Cost":333,"Date":"2/10/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":88,"Cost":58,"Date":"2/28/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":75,"Cost":61,"Date":"3/4/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":546,"Cost":400,"Date":"3/9/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":340,"Cost":276,"Date":"3/9/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":198,"Cost":154,"Date":"3/11/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":234,"Cost":200,"Date":"3/17/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":933,"Cost":696,"Date":"3/17/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":127,"Cost":115,"Date":"3/23/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":748,"Cost":498,"Date":"4/1/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":235,"Cost":147,"Date":"5/7/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":595,"Cost":485,"Date":"5/10/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":789,"Cost":632,"Date":"5/20/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":395,"Cost":217,"Date":"6/2/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":821,"Cost":744,"Date":"6/11/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":129,"Cost":117,"Date":"6/16/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":501,"Cost":412,"Date":"6/16/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":622,"Cost":381,"Date":"7/10/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":148,"Cost":121,"Date":"7/11/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":891,"Cost":750,"Date":"8/28/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":921,"Cost":515,"Date":"8/29/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":160,"Cost":116,"Date":"8/31/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":844,"Cost":594,"Date":"9/8/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":6,"Cost":4,"Date":"9/13/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":979,"Cost":698,"Date":"9/14/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":281,"Cost":231,"Date":"9/19/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":485,"Cost":449,"Date":"9/25/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":558,"Cost":456,"Date":"10/4/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":733,"Cost":520,"Date":"10/10/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":543,"Cost":361,"Date":"10/17/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":229,"Cost":148,"Date":"10/28/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":325,"Cost":198,"Date":"10/30/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":275,"Cost":220,"Date":"11/1/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":820,"Cost":727,"Date":"11/15/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":237,"Cost":219,"Date":"11/25/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":301,"Cost":277,"Date":"1/10/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":871,"Cost":615,"Date":"1/14/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":216,"Cost":120,"Date":"1/20/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":308,"Cost":164,"Date":"2/8/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":288,"Cost":216,"Date":"2/25/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":882,"Cost":691,"Date":"3/7/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":487,"Cost":332,"Date":"3/14/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":391,"Cost":200,"Date":"3/27/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":283,"Cost":170,"Date":"4/5/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":698,"Cost":546,"Date":"4/14/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":834,"Cost":471,"Date":"5/3/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":554,"Cost":511,"Date":"5/9/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":958,"Cost":480,"Date":"5/15/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":668,"Cost":391,"Date":"5/25/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":250,"Cost":163,"Date":"5/26/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":395,"Cost":345,"Date":"5/31/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":923,"Cost":627,"Date":"7/27/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":675,"Cost":365,"Date":"9/17/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":991,"Cost":683,"Date":"10/6/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":963,"Cost":691,"Date":"10/8/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":465,"Cost":357,"Date":"10/26/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":836,"Cost":629,"Date":"11/16/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":325,"Cost":197,"Date":"11/18/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":55,"Cost":36,"Date":"12/1/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":149,"Cost":101,"Date":"2/9/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":722,"Cost":576,"Date":"2/11/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":699,"Cost":411,"Date":"3/10/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":700,"Cost":601,"Date":"3/16/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":313,"Cost":288,"Date":"3/18/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":395,"Cost":327,"Date":"3/20/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":143,"Cost":71,"Date":"3/26/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":531,"Cost":451,"Date":"6/2/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":597,"Cost":461,"Date":"6/10/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":49,"Cost":37,"Date":"6/16/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":614,"Cost":552,"Date":"6/25/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":614,"Cost":527,"Date":"7/19/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":826,"Cost":588,"Date":"7/21/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":414,"Cost":230,"Date":"7/25/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":283,"Cost":184,"Date":"8/4/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":808,"Cost":617,"Date":"9/2/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":751,"Cost":458,"Date":"9/4/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":366,"Cost":239,"Date":"9/19/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":377,"Cost":298,"Date":"9/29/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":992,"Cost":928,"Date":"10/2/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":379,"Cost":278,"Date":"10/15/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":554,"Cost":310,"Date":"10/30/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":863,"Cost":478,"Date":"11/9/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":94,"Cost":62,"Date":"11/23/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":97,"Cost":52,"Date":"11/30/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":276,"Cost":247,"Date":"12/8/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":508,"Cost":385,"Date":"12/11/2018"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":134,"Cost":81,"Date":"1/15/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":961,"Cost":850,"Date":"1/24/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":761,"Cost":680,"Date":"2/3/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":91,"Cost":59,"Date":"2/4/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":500,"Cost":271,"Date":"3/9/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":559,"Cost":362,"Date":"3/12/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":377,"Cost":350,"Date":"4/19/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":931,"Cost":817,"Date":"5/3/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":830,"Cost":762,"Date":"5/4/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":11,"Cost":9,"Date":"6/8/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":440,"Cost":374,"Date":"6/26/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":649,"Cost":350,"Date":"7/4/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":692,"Cost":541,"Date":"7/13/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":852,"Cost":694,"Date":"8/8/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":991,"Cost":662,"Date":"8/26/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":760,"Cost":459,"Date":"9/2/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":518,"Cost":476,"Date":"9/29/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":25,"Cost":14,"Date":"10/12/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":976,"Cost":896,"Date":"11/2/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":525,"Cost":406,"Date":"11/4/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":672,"Cost":529,"Date":"11/7/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":253,"Cost":203,"Date":"12/1/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":918,"Cost":730,"Date":"12/4/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":256,"Cost":190,"Date":"12/7/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":813,"Cost":653,"Date":"12/18/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":185,"Cost":125,"Date":"12/20/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":190,"Cost":109,"Date":"12/20/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":924,"Cost":727,"Date":"12/21/2019"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":742,"Cost":444,"Date":"1/9/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":185,"Cost":110,"Date":"2/5/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":808,"Cost":442,"Date":"2/16/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":4,"Cost":2,"Date":"2/16/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":743,"Cost":397,"Date":"2/18/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":419,"Cost":311,"Date":"2/22/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":754,"Cost":623,"Date":"2/25/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":282,"Cost":224,"Date":"3/8/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":983,"Cost":603,"Date":"4/2/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":184,"Cost":137,"Date":"4/3/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":252,"Cost":190,"Date":"4/9/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":179,"Cost":117,"Date":"4/10/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":603,"Cost":375,"Date":"4/19/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":453,"Cost":247,"Date":"5/17/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":812,"Cost":429,"Date":"5/22/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":307,"Cost":245,"Date":"6/20/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":606,"Cost":449,"Date":"7/1/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":549,"Cost":367,"Date":"7/4/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":726,"Cost":404,"Date":"7/8/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":744,"Cost":687,"Date":"7/9/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":666,"Cost":402,"Date":"7/14/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":964,"Cost":563,"Date":"7/19/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":915,"Cost":750,"Date":"8/1/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":720,"Cost":595,"Date":"8/6/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":283,"Cost":216,"Date":"8/7/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":982,"Cost":657,"Date":"8/22/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":204,"Cost":106,"Date":"8/31/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":792,"Cost":491,"Date":"9/1/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":503,"Cost":276,"Date":"9/1/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":588,"Cost":520,"Date":"9/17/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":7,"Cost":6,"Date":"9/29/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":282,"Cost":149,"Date":"11/7/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":337,"Cost":243,"Date":"11/26/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":78,"Cost":69,"Date":"11/27/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":394,"Cost":265,"Date":"12/5/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":213,"Cost":157,"Date":"12/26/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":776,"Cost":532,"Date":"12/31/2020"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":253,"Cost":205,"Date":"1/20/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":448,"Cost":379,"Date":"2/2/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":57,"Cost":44,"Date":"2/8/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":142,"Cost":125,"Date":"2/27/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":935,"Cost":470,"Date":"3/1/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":50,"Cost":26,"Date":"3/1/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":576,"Cost":377,"Date":"3/19/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":332,"Cost":183,"Date":"3/28/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":16,"Cost":10,"Date":"5/21/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":726,"Cost":498,"Date":"7/21/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":451,"Cost":251,"Date":"8/5/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":183,"Cost":99,"Date":"8/12/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":609,"Cost":480,"Date":"8/21/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":667,"Cost":465,"Date":"8/23/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":484,"Cost":372,"Date":"9/3/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":82,"Cost":46,"Date":"9/5/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":355,"Cost":205,"Date":"10/6/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":310,"Cost":164,"Date":"10/19/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":183,"Cost":137,"Date":"11/15/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":199,"Cost":142,"Date":"12/8/2021"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":975,"Cost":531,"Date":"1/8/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":601,"Cost":467,"Date":"1/14/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":635,"Cost":352,"Date":"1/19/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":64,"Cost":47,"Date":"1/28/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":619,"Cost":499,"Date":"1/31/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":972,"Cost":601,"Date":"3/27/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":90,"Cost":69,"Date":"4/20/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":475,"Cost":305,"Date":"4/24/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":166,"Cost":84,"Date":"4/28/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":91,"Cost":58,"Date":"5/15/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":775,"Cost":656,"Date":"5/16/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":235,"Cost":173,"Date":"5/18/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":474,"Cost":405,"Date":"6/2/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":432,"Cost":364,"Date":"6/3/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":167,"Cost":95,"Date":"6/5/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":309,"Cost":215,"Date":"6/7/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":143,"Cost":133,"Date":"6/14/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":286,"Cost":143,"Date":"6/20/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":350,"Cost":233,"Date":"6/24/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":902,"Cost":685,"Date":"7/4/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":878,"Cost":728,"Date":"7/9/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":282,"Cost":155,"Date":"7/12/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":189,"Cost":163,"Date":"8/14/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":655,"Cost":346,"Date":"8/16/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":298,"Cost":245,"Date":"8/23/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":608,"Cost":488,"Date":"9/2/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":632,"Cost":481,"Date":"9/3/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":138,"Cost":87,"Date":"9/16/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":995,"Cost":573,"Date":"10/4/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":339,"Cost":239,"Date":"11/1/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":443,"Cost":419,"Date":"11/2/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":322,"Cost":220,"Date":"12/17/2022"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":575,"Cost":360,"Date":"2/10/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":5,"Cost":2,"Date":"2/28/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":119,"Cost":96,"Date":"3/4/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":652,"Cost":615,"Date":"3/9/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":543,"Cost":379,"Date":"3/9/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":328,"Cost":195,"Date":"3/11/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":981,"Cost":842,"Date":"3/17/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":331,"Cost":192,"Date":"3/17/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":551,"Cost":510,"Date":"3/23/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":696,"Cost":578,"Date":"4/1/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":29,"Cost":27,"Date":"5/7/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":80,"Cost":75,"Date":"5/10/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":187,"Cost":178,"Date":"5/20/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":228,"Cost":129,"Date":"6/2/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":302,"Cost":244,"Date":"6/11/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":126,"Cost":68,"Date":"6/16/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":317,"Cost":270,"Date":"6/16/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":1000,"Cost":719,"Date":"7/10/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":448,"Cost":289,"Date":"7/11/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":404,"Cost":315,"Date":"8/28/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":728,"Cost":657,"Date":"8/29/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":881,"Cost":627,"Date":"8/31/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":824,"Cost":604,"Date":"9/8/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":36,"Cost":34,"Date":"9/13/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":802,"Cost":691,"Date":"9/14/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":633,"Cost":468,"Date":"9/19/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":22,"Cost":21,"Date":"9/25/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":916,"Cost":724,"Date":"10/4/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":442,"Cost":413,"Date":"10/10/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":122,"Cost":94,"Date":"10/17/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":969,"Cost":516,"Date":"10/28/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":703,"Cost":618,"Date":"10/30/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":536,"Cost":422,"Date":"11/1/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":101,"Cost":76,"Date":"11/15/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":669,"Cost":369,"Date":"11/25/2023"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":106,"Cost":67,"Date":"1/10/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":205,"Cost":174,"Date":"1/14/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":348,"Cost":198,"Date":"1/20/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":504,"Cost":410,"Date":"2/8/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":100,"Cost":59,"Date":"2/25/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":32,"Cost":16,"Date":"3/7/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":558,"Cost":445,"Date":"3/14/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":794,"Cost":503,"Date":"3/27/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":434,"Cost":263,"Date":"4/5/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":80,"Cost":49,"Date":"4/14/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":284,"Cost":196,"Date":"5/3/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":569,"Cost":409,"Date":"5/9/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":130,"Cost":85,"Date":"5/15/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":799,"Cost":700,"Date":"5/25/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":718,"Cost":507,"Date":"5/26/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":851,"Cost":450,"Date":"5/31/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":986,"Cost":686,"Date":"7/27/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":487,"Cost":370,"Date":"9/17/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":98,"Cost":75,"Date":"10/6/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":135,"Cost":102,"Date":"10/8/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":879,"Cost":472,"Date":"10/26/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":809,"Cost":681,"Date":"11/16/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":387,"Cost":310,"Date":"11/18/2024"},{"Store":"Blagoevgrad Mall","Brand":"Nova","Country":"Bulgaria","Sale":337,"Cost":208,"Date":"12/1/2024"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":319,"Cost":284,"Date":"2/9/2018"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":689,"Cost":655,"Date":"2/11/2018"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":902,"Cost":679,"Date":"3/10/2018"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":744,"Cost":432,"Date":"3/16/2018"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":467,"Cost":420,"Date":"3/18/2018"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":733,"Cost":453,"Date":"3/20/2018"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":472,"Cost":407,"Date":"3/26/2018"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":304,"Cost":253,"Date":"6/2/2018"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":861,"Cost":655,"Date":"6/10/2018"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":464,"Cost":394,"Date":"6/16/2018"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":601,"Cost":416,"Date":"6/25/2018"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":196,"Cost":152,"Date":"7/19/2018"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":31,"Cost":23,"Date":"7/21/2018"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":734,"Cost":595,"Date":"7/25/2018"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":111,"Cost":91,"Date":"8/4/2018"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":667,"Cost":452,"Date":"9/2/2018"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":971,"Cost":597,"Date":"9/4/2018"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":778,"Cost":581,"Date":"9/19/2018"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":836,"Cost":421,"Date":"9/29/2018"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":56,"Cost":30,"Date":"10/2/2018"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":454,"Cost":300,"Date":"10/15/2018"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":509,"Cost":311,"Date":"10/30/2018"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":427,"Cost":386,"Date":"11/9/2018"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":868,"Cost":585,"Date":"11/23/2018"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":320,"Cost":162,"Date":"11/30/2018"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":663,"Cost":463,"Date":"12/8/2018"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":177,"Cost":135,"Date":"12/11/2018"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":679,"Cost":619,"Date":"1/15/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":483,"Cost":405,"Date":"1/24/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":261,"Cost":150,"Date":"2/3/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":615,"Cost":336,"Date":"2/4/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":281,"Cost":193,"Date":"3/9/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":998,"Cost":588,"Date":"3/12/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":532,"Cost":447,"Date":"4/19/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":184,"Cost":105,"Date":"5/3/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":327,"Cost":296,"Date":"5/4/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":878,"Cost":719,"Date":"6/8/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":684,"Cost":503,"Date":"6/26/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":796,"Cost":485,"Date":"7/4/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":147,"Cost":90,"Date":"7/13/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":263,"Cost":175,"Date":"8/8/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":635,"Cost":539,"Date":"8/26/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":52,"Cost":35,"Date":"9/2/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":253,"Cost":240,"Date":"9/29/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":531,"Cost":316,"Date":"10/12/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":539,"Cost":444,"Date":"11/2/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":752,"Cost":598,"Date":"11/4/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":647,"Cost":528,"Date":"11/7/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":586,"Cost":325,"Date":"12/1/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":780,"Cost":558,"Date":"12/4/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":60,"Cost":54,"Date":"12/7/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":709,"Cost":367,"Date":"12/18/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":482,"Cost":422,"Date":"12/20/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":604,"Cost":348,"Date":"12/20/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":46,"Cost":33,"Date":"12/21/2019"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":865,"Cost":681,"Date":"1/9/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":621,"Cost":346,"Date":"2/5/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":363,"Cost":201,"Date":"2/16/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":831,"Cost":782,"Date":"2/16/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":398,"Cost":256,"Date":"2/18/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":544,"Cost":312,"Date":"2/22/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":472,"Cost":333,"Date":"2/25/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":843,"Cost":632,"Date":"3/8/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":485,"Cost":444,"Date":"4/2/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":857,"Cost":504,"Date":"4/3/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":618,"Cost":536,"Date":"4/9/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":961,"Cost":657,"Date":"4/10/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":457,"Cost":354,"Date":"4/19/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":298,"Cost":197,"Date":"5/17/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":518,"Cost":314,"Date":"5/22/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":447,"Cost":270,"Date":"6/20/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":622,"Cost":476,"Date":"7/1/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":341,"Cost":318,"Date":"7/4/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":422,"Cost":214,"Date":"7/8/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":217,"Cost":128,"Date":"7/9/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":424,"Cost":265,"Date":"7/14/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":424,"Cost":383,"Date":"7/19/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":446,"Cost":258,"Date":"8/1/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":129,"Cost":94,"Date":"8/6/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":48,"Cost":46,"Date":"8/7/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":664,"Cost":440,"Date":"8/22/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":859,"Cost":779,"Date":"8/31/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":312,"Cost":162,"Date":"9/1/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":947,"Cost":516,"Date":"9/1/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":923,"Cost":751,"Date":"9/17/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":233,"Cost":118,"Date":"9/29/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":103,"Cost":79,"Date":"11/7/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":854,"Cost":674,"Date":"11/26/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":585,"Cost":301,"Date":"11/27/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":831,"Cost":747,"Date":"12/5/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":35,"Cost":23,"Date":"12/26/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":400,"Cost":349,"Date":"12/31/2020"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":324,"Cost":296,"Date":"1/20/2021"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":377,"Cost":327,"Date":"2/2/2021"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":430,"Cost":367,"Date":"2/8/2021"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":379,"Cost":191,"Date":"2/27/2021"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":408,"Cost":323,"Date":"3/1/2021"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":358,"Cost":190,"Date":"3/1/2021"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":669,"Cost":381,"Date":"3/19/2021"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":878,"Cost":826,"Date":"3/28/2021"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":164,"Cost":86,"Date":"5/21/2021"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":944,"Cost":697,"Date":"7/21/2021"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":304,"Cost":244,"Date":"8/5/2021"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":570,"Cost":462,"Date":"8/12/2021"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":782,"Cost":645,"Date":"8/21/2021"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":325,"Cost":164,"Date":"8/23/2021"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":537,"Cost":386,"Date":"9/3/2021"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":509,"Cost":366,"Date":"9/5/2021"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":526,"Cost":292,"Date":"10/6/2021"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":287,"Cost":184,"Date":"10/19/2021"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":485,"Cost":427,"Date":"11/15/2021"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":999,"Cost":678,"Date":"12/8/2021"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":263,"Cost":242,"Date":"1/8/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":847,"Cost":507,"Date":"1/14/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":65,"Cost":34,"Date":"1/19/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":817,"Cost":641,"Date":"1/28/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":245,"Cost":172,"Date":"1/31/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":929,"Cost":528,"Date":"3/27/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":267,"Cost":168,"Date":"4/20/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":548,"Cost":310,"Date":"4/24/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":84,"Cost":65,"Date":"4/28/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":279,"Cost":232,"Date":"5/15/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":862,"Cost":615,"Date":"5/16/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":624,"Cost":324,"Date":"5/18/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":939,"Cost":507,"Date":"6/2/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":724,"Cost":549,"Date":"6/3/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":970,"Cost":815,"Date":"6/5/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":553,"Cost":376,"Date":"6/7/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":602,"Cost":307,"Date":"6/14/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":401,"Cost":311,"Date":"6/20/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":90,"Cost":56,"Date":"6/24/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":39,"Cost":36,"Date":"7/4/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":721,"Cost":508,"Date":"7/9/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":884,"Cost":797,"Date":"7/12/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":385,"Cost":335,"Date":"8/14/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":164,"Cost":96,"Date":"8/16/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":631,"Cost":367,"Date":"8/23/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":451,"Cost":231,"Date":"9/2/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":462,"Cost":435,"Date":"9/3/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":34,"Cost":32,"Date":"9/16/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":687,"Cost":548,"Date":"10/4/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":96,"Cost":52,"Date":"11/1/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":811,"Cost":691,"Date":"11/2/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":721,"Cost":597,"Date":"12/17/2022"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":746,"Cost":471,"Date":"2/10/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":37,"Cost":28,"Date":"2/28/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":911,"Cost":610,"Date":"3/4/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":285,"Cost":265,"Date":"3/9/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":215,"Cost":127,"Date":"3/9/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":143,"Cost":110,"Date":"3/11/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":777,"Cost":658,"Date":"3/17/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":247,"Cost":159,"Date":"3/17/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":48,"Cost":29,"Date":"3/23/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":388,"Cost":234,"Date":"4/1/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":538,"Cost":471,"Date":"5/7/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":746,"Cost":651,"Date":"5/10/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":375,"Cost":245,"Date":"5/20/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":998,"Cost":707,"Date":"6/2/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":457,"Cost":336,"Date":"6/11/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":711,"Cost":431,"Date":"6/16/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":108,"Cost":83,"Date":"6/16/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":5,"Cost":2,"Date":"7/10/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":90,"Cost":47,"Date":"7/11/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":640,"Cost":338,"Date":"8/28/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":47,"Cost":29,"Date":"8/29/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":417,"Cost":316,"Date":"8/31/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":356,"Cost":296,"Date":"9/8/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":659,"Cost":570,"Date":"9/13/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":735,"Cost":428,"Date":"9/14/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":399,"Cost":314,"Date":"9/19/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":463,"Cost":354,"Date":"9/25/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":809,"Cost":453,"Date":"10/4/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":440,"Cost":263,"Date":"10/10/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":593,"Cost":546,"Date":"10/17/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":56,"Cost":29,"Date":"10/28/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":572,"Cost":391,"Date":"10/30/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":116,"Cost":81,"Date":"11/1/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":197,"Cost":108,"Date":"11/15/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":396,"Cost":259,"Date":"11/25/2023"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":973,"Cost":540,"Date":"1/10/2024"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":624,"Cost":426,"Date":"1/14/2024"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":892,"Cost":549,"Date":"1/20/2024"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":787,"Cost":674,"Date":"2/8/2024"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":971,"Cost":564,"Date":"2/25/2024"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":644,"Cost":466,"Date":"3/7/2024"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":795,"Cost":575,"Date":"3/14/2024"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":792,"Cost":469,"Date":"3/27/2024"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":599,"Cost":558,"Date":"4/5/2024"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":307,"Cost":218,"Date":"4/14/2024"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":905,"Cost":468,"Date":"5/3/2024"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":12,"Cost":6,"Date":"5/9/2024"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":87,"Cost":70,"Date":"5/15/2024"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":237,"Cost":170,"Date":"5/25/2024"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":867,"Cost":689,"Date":"5/26/2024"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":82,"Cost":57,"Date":"5/31/2024"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":135,"Cost":96,"Date":"7/27/2024"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":770,"Cost":490,"Date":"9/17/2024"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":37,"Cost":20,"Date":"10/6/2024"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":500,"Cost":398,"Date":"10/8/2024"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":644,"Cost":530,"Date":"10/26/2024"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":777,"Cost":554,"Date":"11/16/2024"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":411,"Cost":279,"Date":"11/18/2024"},{"Store":"Mall Dobrich","Brand":"ARKET","Country":"Bulgaria","Sale":277,"Cost":237,"Date":"12/1/2024"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":527,"Cost":297,"Date":"2/9/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":119,"Cost":60,"Date":"2/11/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":75,"Cost":37,"Date":"3/10/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":605,"Cost":351,"Date":"3/16/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":318,"Cost":302,"Date":"3/18/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":282,"Cost":251,"Date":"3/20/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":292,"Cost":254,"Date":"3/26/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":716,"Cost":390,"Date":"6/2/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":174,"Cost":91,"Date":"6/10/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":643,"Cost":539,"Date":"6/16/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":961,"Cost":544,"Date":"6/25/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":865,"Cost":650,"Date":"7/19/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":234,"Cost":185,"Date":"7/21/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":752,"Cost":508,"Date":"7/25/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":374,"Cost":317,"Date":"8/4/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":825,"Cost":611,"Date":"9/2/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":359,"Cost":184,"Date":"9/4/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":224,"Cost":123,"Date":"9/19/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":868,"Cost":774,"Date":"9/29/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":39,"Cost":36,"Date":"10/2/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":24,"Cost":20,"Date":"10/15/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":765,"Cost":436,"Date":"10/30/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":688,"Cost":647,"Date":"11/9/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":952,"Cost":851,"Date":"11/23/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":690,"Cost":380,"Date":"11/30/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":240,"Cost":205,"Date":"12/8/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":125,"Cost":69,"Date":"12/11/2018"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":875,"Cost":446,"Date":"1/15/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":834,"Cost":753,"Date":"1/24/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":34,"Cost":33,"Date":"2/3/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":281,"Cost":180,"Date":"2/4/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":259,"Cost":168,"Date":"3/9/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":567,"Cost":285,"Date":"3/12/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":503,"Cost":398,"Date":"4/19/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":892,"Cost":666,"Date":"5/3/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":798,"Cost":485,"Date":"5/4/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":592,"Cost":375,"Date":"6/8/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":268,"Cost":200,"Date":"6/26/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":646,"Cost":351,"Date":"7/4/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":266,"Cost":199,"Date":"7/13/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":350,"Cost":324,"Date":"8/8/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":138,"Cost":88,"Date":"8/26/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":681,"Cost":596,"Date":"9/2/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":649,"Cost":467,"Date":"9/29/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":487,"Cost":301,"Date":"10/12/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":903,"Cost":604,"Date":"11/2/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":752,"Cost":519,"Date":"11/4/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":973,"Cost":646,"Date":"11/7/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":809,"Cost":656,"Date":"12/1/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":476,"Cost":440,"Date":"12/4/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":445,"Cost":283,"Date":"12/7/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":158,"Cost":91,"Date":"12/18/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":475,"Cost":339,"Date":"12/20/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":20,"Cost":18,"Date":"12/20/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":102,"Cost":52,"Date":"12/21/2019"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":823,"Cost":567,"Date":"1/9/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":597,"Cost":489,"Date":"2/5/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":350,"Cost":317,"Date":"2/16/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":833,"Cost":619,"Date":"2/16/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":623,"Cost":328,"Date":"2/18/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":664,"Cost":478,"Date":"2/22/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":931,"Cost":523,"Date":"2/25/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":868,"Cost":709,"Date":"3/8/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":825,"Cost":414,"Date":"4/2/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":900,"Cost":743,"Date":"4/3/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":636,"Cost":554,"Date":"4/9/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":168,"Cost":126,"Date":"4/10/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":197,"Cost":168,"Date":"4/19/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":373,"Cost":268,"Date":"5/17/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":26,"Cost":21,"Date":"5/22/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":8,"Cost":8,"Date":"6/20/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":795,"Cost":644,"Date":"7/1/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":514,"Cost":459,"Date":"7/4/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":907,"Cost":745,"Date":"7/8/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":947,"Cost":515,"Date":"7/9/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":332,"Cost":267,"Date":"7/14/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":496,"Cost":343,"Date":"7/19/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":546,"Cost":305,"Date":"8/1/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":879,"Cost":731,"Date":"8/6/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":112,"Cost":59,"Date":"8/7/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":738,"Cost":380,"Date":"8/22/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":20,"Cost":12,"Date":"8/31/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":538,"Cost":322,"Date":"9/1/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":362,"Cost":213,"Date":"9/1/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":461,"Cost":437,"Date":"9/17/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":716,"Cost":551,"Date":"9/29/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":277,"Cost":215,"Date":"11/7/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":623,"Cost":354,"Date":"11/26/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":560,"Cost":411,"Date":"11/27/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":921,"Cost":834,"Date":"12/5/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":889,"Cost":695,"Date":"12/26/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":396,"Cost":250,"Date":"12/31/2020"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":372,"Cost":338,"Date":"1/20/2021"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":950,"Cost":565,"Date":"2/2/2021"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":518,"Cost":483,"Date":"2/8/2021"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":467,"Cost":241,"Date":"2/27/2021"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":885,"Cost":561,"Date":"3/1/2021"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":137,"Cost":104,"Date":"3/1/2021"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":46,"Cost":29,"Date":"3/19/2021"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":232,"Cost":118,"Date":"3/28/2021"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":537,"Cost":442,"Date":"5/21/2021"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":705,"Cost":389,"Date":"7/21/2021"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":527,"Cost":416,"Date":"8/5/2021"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":141,"Cost":88,"Date":"8/12/2021"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":753,"Cost":498,"Date":"8/21/2021"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":208,"Cost":150,"Date":"8/23/2021"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":660,"Cost":504,"Date":"9/3/2021"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":928,"Cost":569,"Date":"9/5/2021"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":358,"Cost":276,"Date":"10/6/2021"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":499,"Cost":428,"Date":"10/19/2021"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":16,"Cost":10,"Date":"11/15/2021"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":29,"Cost":15,"Date":"12/8/2021"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":402,"Cost":362,"Date":"1/8/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":319,"Cost":260,"Date":"1/14/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":370,"Cost":330,"Date":"1/19/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":392,"Cost":272,"Date":"1/28/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":603,"Cost":310,"Date":"1/31/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":115,"Cost":109,"Date":"3/27/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":954,"Cost":500,"Date":"4/20/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":372,"Cost":187,"Date":"4/24/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":602,"Cost":384,"Date":"4/28/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":677,"Cost":533,"Date":"5/15/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":58,"Cost":32,"Date":"5/16/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":90,"Cost":81,"Date":"5/18/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":181,"Cost":142,"Date":"6/2/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":912,"Cost":767,"Date":"6/3/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":38,"Cost":22,"Date":"6/5/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":761,"Cost":409,"Date":"6/7/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":504,"Cost":417,"Date":"6/14/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":369,"Cost":221,"Date":"6/20/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":165,"Cost":134,"Date":"6/24/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":547,"Cost":487,"Date":"7/4/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":383,"Cost":203,"Date":"7/9/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":784,"Cost":575,"Date":"7/12/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":397,"Cost":274,"Date":"8/14/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":352,"Cost":323,"Date":"8/16/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":605,"Cost":428,"Date":"8/23/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":347,"Cost":264,"Date":"9/2/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":983,"Cost":907,"Date":"9/3/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":387,"Cost":242,"Date":"9/16/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":686,"Cost":597,"Date":"10/4/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":416,"Cost":242,"Date":"11/1/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":512,"Cost":359,"Date":"11/2/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":112,"Cost":82,"Date":"12/17/2022"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":814,"Cost":576,"Date":"2/10/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":670,"Cost":386,"Date":"2/28/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":834,"Cost":609,"Date":"3/4/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":619,"Cost":497,"Date":"3/9/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":449,"Cost":374,"Date":"3/9/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":190,"Cost":100,"Date":"3/11/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":168,"Cost":101,"Date":"3/17/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":968,"Cost":705,"Date":"3/17/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":627,"Cost":510,"Date":"3/23/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":901,"Cost":812,"Date":"4/1/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":152,"Cost":122,"Date":"5/7/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":70,"Cost":40,"Date":"5/10/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":173,"Cost":117,"Date":"5/20/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":213,"Cost":161,"Date":"6/2/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":141,"Cost":127,"Date":"6/11/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":864,"Cost":548,"Date":"6/16/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":518,"Cost":391,"Date":"6/16/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":158,"Cost":114,"Date":"7/10/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":453,"Cost":240,"Date":"7/11/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":25,"Cost":16,"Date":"8/28/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":294,"Cost":198,"Date":"8/29/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":554,"Cost":454,"Date":"8/31/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":140,"Cost":120,"Date":"9/8/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":763,"Cost":594,"Date":"9/13/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":357,"Cost":271,"Date":"9/14/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":978,"Cost":623,"Date":"9/19/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":80,"Cost":68,"Date":"9/25/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":556,"Cost":359,"Date":"10/4/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":209,"Cost":115,"Date":"10/10/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":76,"Cost":48,"Date":"10/17/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":289,"Cost":219,"Date":"10/28/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":241,"Cost":225,"Date":"10/30/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":447,"Cost":247,"Date":"11/1/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":37,"Cost":28,"Date":"11/15/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":965,"Cost":623,"Date":"11/25/2023"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":599,"Cost":477,"Date":"1/10/2024"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":460,"Cost":351,"Date":"1/14/2024"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":283,"Cost":233,"Date":"1/20/2024"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":834,"Cost":549,"Date":"2/8/2024"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":867,"Cost":691,"Date":"2/25/2024"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":623,"Cost":337,"Date":"3/7/2024"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":360,"Cost":268,"Date":"3/14/2024"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":853,"Cost":475,"Date":"3/27/2024"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":336,"Cost":237,"Date":"4/5/2024"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":30,"Cost":16,"Date":"4/14/2024"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":996,"Cost":771,"Date":"5/3/2024"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":737,"Cost":445,"Date":"5/9/2024"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":962,"Cost":549,"Date":"5/15/2024"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":95,"Cost":68,"Date":"5/25/2024"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":316,"Cost":224,"Date":"5/26/2024"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":49,"Cost":36,"Date":"5/31/2024"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":177,"Cost":97,"Date":"7/27/2024"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":728,"Cost":593,"Date":"9/17/2024"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":293,"Cost":154,"Date":"10/6/2024"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":833,"Cost":599,"Date":"10/8/2024"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":860,"Cost":496,"Date":"10/26/2024"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":158,"Cost":145,"Date":"11/16/2024"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":70,"Cost":40,"Date":"11/18/2024"},{"Store":"Mall Dobrich","Brand":"Nova","Country":"Bulgaria","Sale":708,"Cost":467,"Date":"12/1/2024"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":421,"Cost":216,"Date":"2/9/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":847,"Cost":649,"Date":"2/11/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":777,"Cost":401,"Date":"3/10/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":224,"Cost":130,"Date":"3/16/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":264,"Cost":138,"Date":"3/18/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":606,"Cost":417,"Date":"3/20/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":252,"Cost":133,"Date":"3/26/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":420,"Cost":344,"Date":"6/2/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":411,"Cost":371,"Date":"6/10/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":472,"Cost":357,"Date":"6/16/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":877,"Cost":770,"Date":"6/25/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":170,"Cost":148,"Date":"7/19/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":727,"Cost":422,"Date":"7/21/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":956,"Cost":567,"Date":"7/25/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":949,"Cost":735,"Date":"8/4/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":594,"Cost":528,"Date":"9/2/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":92,"Cost":75,"Date":"9/4/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":860,"Cost":507,"Date":"9/19/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":291,"Cost":188,"Date":"9/29/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":214,"Cost":138,"Date":"10/2/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":890,"Cost":609,"Date":"10/15/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":547,"Cost":349,"Date":"10/30/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":656,"Cost":423,"Date":"11/9/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":711,"Cost":466,"Date":"11/23/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":231,"Cost":188,"Date":"11/30/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":341,"Cost":288,"Date":"12/8/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":908,"Cost":619,"Date":"12/11/2018"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":770,"Cost":529,"Date":"1/15/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":363,"Cost":283,"Date":"1/24/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":883,"Cost":474,"Date":"2/3/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":245,"Cost":213,"Date":"2/4/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":972,"Cost":910,"Date":"3/9/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":613,"Cost":329,"Date":"3/12/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":771,"Cost":574,"Date":"4/19/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":817,"Cost":567,"Date":"5/3/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":11,"Cost":6,"Date":"5/4/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":213,"Cost":185,"Date":"6/8/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":98,"Cost":80,"Date":"6/26/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":472,"Cost":275,"Date":"7/4/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":60,"Cost":55,"Date":"7/13/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":580,"Cost":403,"Date":"8/8/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":208,"Cost":159,"Date":"8/26/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":980,"Cost":851,"Date":"9/2/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":837,"Cost":421,"Date":"9/29/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":844,"Cost":695,"Date":"10/12/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":499,"Cost":326,"Date":"11/2/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":742,"Cost":385,"Date":"11/4/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":196,"Cost":145,"Date":"11/7/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":525,"Cost":361,"Date":"12/1/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":854,"Cost":553,"Date":"12/4/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":333,"Cost":267,"Date":"12/7/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":750,"Cost":573,"Date":"12/18/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":24,"Cost":21,"Date":"12/20/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":487,"Cost":337,"Date":"12/20/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":852,"Cost":454,"Date":"12/21/2019"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":846,"Cost":583,"Date":"1/9/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":88,"Cost":74,"Date":"2/5/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":892,"Cost":600,"Date":"2/16/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":199,"Cost":182,"Date":"2/16/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":402,"Cost":201,"Date":"2/18/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":683,"Cost":588,"Date":"2/22/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":210,"Cost":135,"Date":"2/25/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":25,"Cost":15,"Date":"3/8/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":294,"Cost":176,"Date":"4/2/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":376,"Cost":321,"Date":"4/3/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":982,"Cost":825,"Date":"4/9/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":717,"Cost":432,"Date":"4/10/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":262,"Cost":175,"Date":"4/19/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":382,"Cost":273,"Date":"5/17/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":428,"Cost":321,"Date":"5/22/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":5,"Cost":4,"Date":"6/20/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":88,"Cost":52,"Date":"7/1/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":398,"Cost":216,"Date":"7/4/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":101,"Cost":87,"Date":"7/8/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":468,"Cost":414,"Date":"7/9/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":484,"Cost":354,"Date":"7/14/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":94,"Cost":62,"Date":"7/19/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":163,"Cost":137,"Date":"8/1/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":618,"Cost":562,"Date":"8/6/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":902,"Cost":503,"Date":"8/7/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":313,"Cost":266,"Date":"8/22/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":506,"Cost":291,"Date":"8/31/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":242,"Cost":200,"Date":"9/1/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":670,"Cost":416,"Date":"9/1/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":226,"Cost":144,"Date":"9/17/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":96,"Cost":71,"Date":"9/29/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":418,"Cost":390,"Date":"11/7/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":316,"Cost":213,"Date":"11/26/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":356,"Cost":270,"Date":"11/27/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":379,"Cost":354,"Date":"12/5/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":932,"Cost":855,"Date":"12/26/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":761,"Cost":708,"Date":"12/31/2020"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":422,"Cost":303,"Date":"1/20/2021"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":479,"Cost":283,"Date":"2/2/2021"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":24,"Cost":22,"Date":"2/8/2021"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":530,"Cost":332,"Date":"2/27/2021"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":26,"Cost":14,"Date":"3/1/2021"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":339,"Cost":297,"Date":"3/1/2021"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":742,"Cost":572,"Date":"3/19/2021"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":580,"Cost":516,"Date":"3/28/2021"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":793,"Cost":699,"Date":"5/21/2021"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":652,"Cost":371,"Date":"7/21/2021"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":890,"Cost":552,"Date":"8/5/2021"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":679,"Cost":538,"Date":"8/12/2021"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":653,"Cost":504,"Date":"8/21/2021"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":713,"Cost":535,"Date":"8/23/2021"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":89,"Cost":50,"Date":"9/3/2021"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":827,"Cost":570,"Date":"9/5/2021"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":223,"Cost":193,"Date":"10/6/2021"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":773,"Cost":394,"Date":"10/19/2021"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":788,"Cost":719,"Date":"11/15/2021"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":321,"Cost":224,"Date":"12/8/2021"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":258,"Cost":193,"Date":"1/8/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":629,"Cost":399,"Date":"1/14/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":426,"Cost":402,"Date":"1/19/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":565,"Cost":440,"Date":"1/28/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":452,"Cost":330,"Date":"1/31/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":464,"Cost":234,"Date":"3/27/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":688,"Cost":362,"Date":"4/20/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":420,"Cost":301,"Date":"4/24/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":560,"Cost":302,"Date":"4/28/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":454,"Cost":306,"Date":"5/15/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":383,"Cost":242,"Date":"5/16/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":56,"Cost":31,"Date":"5/18/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":90,"Cost":82,"Date":"6/2/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":496,"Cost":254,"Date":"6/3/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":759,"Cost":659,"Date":"6/5/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":155,"Cost":95,"Date":"6/7/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":685,"Cost":354,"Date":"6/14/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":167,"Cost":159,"Date":"6/20/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":219,"Cost":178,"Date":"6/24/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":152,"Cost":134,"Date":"7/4/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":153,"Cost":113,"Date":"7/9/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":486,"Cost":423,"Date":"7/12/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":511,"Cost":398,"Date":"8/14/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":716,"Cost":492,"Date":"8/16/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":506,"Cost":293,"Date":"8/23/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":741,"Cost":388,"Date":"9/2/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":756,"Cost":696,"Date":"9/3/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":645,"Cost":330,"Date":"9/16/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":575,"Cost":329,"Date":"10/4/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":101,"Cost":62,"Date":"11/1/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":131,"Cost":86,"Date":"11/2/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":499,"Cost":329,"Date":"12/17/2022"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":42,"Cost":30,"Date":"2/10/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":750,"Cost":403,"Date":"2/28/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":95,"Cost":52,"Date":"3/4/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":257,"Cost":213,"Date":"3/9/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":125,"Cost":78,"Date":"3/9/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":381,"Cost":325,"Date":"3/11/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":509,"Cost":434,"Date":"3/17/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":156,"Cost":115,"Date":"3/17/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":243,"Cost":213,"Date":"3/23/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":65,"Cost":32,"Date":"4/1/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":330,"Cost":166,"Date":"5/7/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":474,"Cost":423,"Date":"5/10/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":509,"Cost":288,"Date":"5/20/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":384,"Cost":204,"Date":"6/2/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":590,"Cost":373,"Date":"6/11/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":191,"Cost":149,"Date":"6/16/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":132,"Cost":66,"Date":"6/16/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":823,"Cost":660,"Date":"7/10/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":553,"Cost":429,"Date":"7/11/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":124,"Cost":65,"Date":"8/28/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":424,"Cost":324,"Date":"8/29/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":806,"Cost":621,"Date":"8/31/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":1000,"Cost":698,"Date":"9/8/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":540,"Cost":442,"Date":"9/13/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":193,"Cost":117,"Date":"9/14/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":183,"Cost":116,"Date":"9/19/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":821,"Cost":639,"Date":"9/25/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":255,"Cost":217,"Date":"10/4/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":552,"Cost":442,"Date":"10/10/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":856,"Cost":626,"Date":"10/17/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":801,"Cost":707,"Date":"10/28/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":460,"Cost":412,"Date":"10/30/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":148,"Cost":124,"Date":"11/1/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":206,"Cost":155,"Date":"11/15/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":173,"Cost":113,"Date":"11/25/2023"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":542,"Cost":348,"Date":"1/10/2024"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":724,"Cost":442,"Date":"1/14/2024"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":265,"Cost":135,"Date":"1/20/2024"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":978,"Cost":737,"Date":"2/8/2024"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":47,"Cost":35,"Date":"2/25/2024"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":144,"Cost":84,"Date":"3/7/2024"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":948,"Cost":822,"Date":"3/14/2024"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":436,"Cost":411,"Date":"3/27/2024"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":313,"Cost":197,"Date":"4/5/2024"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":908,"Cost":755,"Date":"4/14/2024"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":557,"Cost":461,"Date":"5/3/2024"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":16,"Cost":9,"Date":"5/9/2024"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":189,"Cost":94,"Date":"5/15/2024"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":876,"Cost":460,"Date":"5/25/2024"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":189,"Cost":165,"Date":"5/26/2024"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":172,"Cost":159,"Date":"5/31/2024"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":995,"Cost":790,"Date":"7/27/2024"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":735,"Cost":646,"Date":"9/17/2024"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":117,"Cost":75,"Date":"10/6/2024"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":141,"Cost":84,"Date":"10/8/2024"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":60,"Cost":30,"Date":"10/26/2024"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":803,"Cost":506,"Date":"11/16/2024"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":390,"Cost":336,"Date":"11/18/2024"},{"Store":"Mall Dobrich","Brand":"COS","Country":"Bulgaria","Sale":733,"Cost":619,"Date":"12/1/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":827,"Cost":513,"Date":"2/9/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":676,"Cost":430,"Date":"2/11/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":109,"Cost":68,"Date":"3/10/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":732,"Cost":677,"Date":"3/16/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":160,"Cost":149,"Date":"3/18/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":894,"Cost":718,"Date":"3/20/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":188,"Cost":117,"Date":"3/26/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":547,"Cost":283,"Date":"6/2/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":434,"Cost":293,"Date":"6/10/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":892,"Cost":793,"Date":"6/16/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":326,"Cost":211,"Date":"6/25/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":147,"Cost":138,"Date":"7/19/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":569,"Cost":373,"Date":"7/21/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":347,"Cost":185,"Date":"7/25/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":557,"Cost":406,"Date":"8/4/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":621,"Cost":521,"Date":"9/2/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":986,"Cost":501,"Date":"9/4/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":500,"Cost":398,"Date":"9/19/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":969,"Cost":705,"Date":"9/29/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":794,"Cost":652,"Date":"10/2/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":606,"Cost":427,"Date":"10/15/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":11,"Cost":11,"Date":"10/30/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":586,"Cost":416,"Date":"11/9/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":728,"Cost":440,"Date":"11/23/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":615,"Cost":494,"Date":"11/30/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":452,"Cost":291,"Date":"12/8/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":753,"Cost":456,"Date":"12/11/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":944,"Cost":522,"Date":"1/15/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":745,"Cost":447,"Date":"1/24/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":769,"Cost":408,"Date":"2/3/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":722,"Cost":573,"Date":"2/4/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":554,"Cost":485,"Date":"3/9/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":532,"Cost":340,"Date":"3/12/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":736,"Cost":462,"Date":"4/19/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":251,"Cost":152,"Date":"5/3/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":531,"Cost":357,"Date":"5/4/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":341,"Cost":256,"Date":"6/8/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":424,"Cost":297,"Date":"6/26/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":216,"Cost":138,"Date":"7/4/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":408,"Cost":264,"Date":"7/13/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":586,"Cost":390,"Date":"8/8/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":491,"Cost":280,"Date":"8/26/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":572,"Cost":414,"Date":"9/2/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":851,"Cost":656,"Date":"9/29/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":532,"Cost":478,"Date":"10/12/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":461,"Cost":243,"Date":"11/2/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":606,"Cost":317,"Date":"11/4/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":3,"Cost":1,"Date":"11/7/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":141,"Cost":122,"Date":"12/1/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":724,"Cost":593,"Date":"12/4/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":192,"Cost":170,"Date":"12/7/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":287,"Cost":267,"Date":"12/18/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":545,"Cost":308,"Date":"12/20/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":357,"Cost":320,"Date":"12/20/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":542,"Cost":307,"Date":"12/21/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":758,"Cost":436,"Date":"1/9/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":61,"Cost":45,"Date":"2/5/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":870,"Cost":517,"Date":"2/16/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":533,"Cost":487,"Date":"2/16/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":978,"Cost":856,"Date":"2/18/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":445,"Cost":362,"Date":"2/22/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":273,"Cost":239,"Date":"2/25/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":116,"Cost":99,"Date":"3/8/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":813,"Cost":530,"Date":"4/2/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":932,"Cost":706,"Date":"4/3/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":492,"Cost":253,"Date":"4/9/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":222,"Cost":152,"Date":"4/10/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":115,"Cost":68,"Date":"4/19/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":332,"Cost":222,"Date":"5/17/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":767,"Cost":668,"Date":"5/22/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":292,"Cost":216,"Date":"6/20/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":99,"Cost":51,"Date":"7/1/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":599,"Cost":340,"Date":"7/4/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":509,"Cost":460,"Date":"7/8/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":207,"Cost":119,"Date":"7/9/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":360,"Cost":200,"Date":"7/14/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":342,"Cost":177,"Date":"7/19/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":43,"Cost":26,"Date":"8/1/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":874,"Cost":644,"Date":"8/6/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":841,"Cost":650,"Date":"8/7/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":439,"Cost":371,"Date":"8/22/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":352,"Cost":294,"Date":"8/31/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":971,"Cost":491,"Date":"9/1/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":180,"Cost":130,"Date":"9/1/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":921,"Cost":503,"Date":"9/17/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":231,"Cost":122,"Date":"9/29/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":245,"Cost":137,"Date":"11/7/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":585,"Cost":517,"Date":"11/26/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":296,"Cost":274,"Date":"11/27/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":87,"Cost":79,"Date":"12/5/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":643,"Cost":405,"Date":"12/26/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":798,"Cost":534,"Date":"12/31/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":742,"Cost":550,"Date":"1/20/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":932,"Cost":616,"Date":"2/2/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":351,"Cost":317,"Date":"2/8/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":321,"Cost":265,"Date":"2/27/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":949,"Cost":892,"Date":"3/1/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":820,"Cost":623,"Date":"3/1/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":328,"Cost":194,"Date":"3/19/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":668,"Cost":509,"Date":"3/28/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":244,"Cost":150,"Date":"5/21/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":233,"Cost":137,"Date":"7/21/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":267,"Cost":152,"Date":"8/5/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":205,"Cost":166,"Date":"8/12/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":839,"Cost":513,"Date":"8/21/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":375,"Cost":233,"Date":"8/23/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":60,"Cost":31,"Date":"9/3/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":872,"Cost":466,"Date":"9/5/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":587,"Cost":526,"Date":"10/6/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":423,"Cost":285,"Date":"10/19/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":666,"Cost":606,"Date":"11/15/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":651,"Cost":462,"Date":"12/8/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":99,"Cost":73,"Date":"1/8/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":500,"Cost":434,"Date":"1/14/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":794,"Cost":524,"Date":"1/19/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":798,"Cost":508,"Date":"1/28/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":174,"Cost":165,"Date":"1/31/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":463,"Cost":249,"Date":"3/27/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":915,"Cost":715,"Date":"4/20/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":95,"Cost":64,"Date":"4/24/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":36,"Cost":29,"Date":"4/28/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":290,"Cost":185,"Date":"5/15/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":53,"Cost":30,"Date":"5/16/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":372,"Cost":187,"Date":"5/18/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":935,"Cost":834,"Date":"6/2/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":163,"Cost":147,"Date":"6/3/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":414,"Cost":213,"Date":"6/5/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":118,"Cost":68,"Date":"6/7/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":335,"Cost":214,"Date":"6/14/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":391,"Cost":333,"Date":"6/20/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":986,"Cost":497,"Date":"6/24/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":383,"Cost":203,"Date":"7/4/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":728,"Cost":567,"Date":"7/9/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":456,"Cost":231,"Date":"7/12/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":485,"Cost":413,"Date":"8/14/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":600,"Cost":506,"Date":"8/16/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":888,"Cost":521,"Date":"8/23/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":621,"Cost":325,"Date":"9/2/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":914,"Cost":727,"Date":"9/3/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":615,"Cost":385,"Date":"9/16/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":340,"Cost":283,"Date":"10/4/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":633,"Cost":395,"Date":"11/1/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":844,"Cost":783,"Date":"11/2/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":763,"Cost":601,"Date":"12/17/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":350,"Cost":209,"Date":"2/10/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":601,"Cost":423,"Date":"2/28/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":79,"Cost":72,"Date":"3/4/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":623,"Cost":464,"Date":"3/9/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":901,"Cost":560,"Date":"3/9/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":137,"Cost":119,"Date":"3/11/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":53,"Cost":49,"Date":"3/17/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":53,"Cost":26,"Date":"3/17/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":220,"Cost":180,"Date":"3/23/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":655,"Cost":579,"Date":"4/1/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":959,"Cost":909,"Date":"5/7/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":42,"Cost":34,"Date":"5/10/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":788,"Cost":575,"Date":"5/20/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":357,"Cost":284,"Date":"6/2/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":960,"Cost":578,"Date":"6/11/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":50,"Cost":32,"Date":"6/16/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":128,"Cost":91,"Date":"6/16/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":636,"Cost":401,"Date":"7/10/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":719,"Cost":609,"Date":"7/11/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":92,"Cost":54,"Date":"8/28/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":585,"Cost":409,"Date":"8/29/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":771,"Cost":678,"Date":"8/31/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":878,"Cost":530,"Date":"9/8/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":82,"Cost":57,"Date":"9/13/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":278,"Cost":259,"Date":"9/14/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":199,"Cost":141,"Date":"9/19/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":257,"Cost":208,"Date":"9/25/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":71,"Cost":63,"Date":"10/4/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":86,"Cost":64,"Date":"10/10/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":425,"Cost":292,"Date":"10/17/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":786,"Cost":668,"Date":"10/28/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":354,"Cost":254,"Date":"10/30/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":169,"Cost":101,"Date":"11/1/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":48,"Cost":30,"Date":"11/15/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":845,"Cost":763,"Date":"11/25/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":720,"Cost":576,"Date":"1/10/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":311,"Cost":176,"Date":"1/14/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":777,"Cost":679,"Date":"1/20/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":444,"Cost":331,"Date":"2/8/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":508,"Cost":321,"Date":"2/25/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":16,"Cost":10,"Date":"3/7/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":546,"Cost":510,"Date":"3/14/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":509,"Cost":314,"Date":"3/27/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":667,"Cost":460,"Date":"4/5/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":682,"Cost":399,"Date":"4/14/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":506,"Cost":305,"Date":"5/3/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":627,"Cost":589,"Date":"5/9/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":297,"Cost":194,"Date":"5/15/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":272,"Cost":194,"Date":"5/25/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":169,"Cost":140,"Date":"5/26/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":185,"Cost":147,"Date":"5/31/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":452,"Cost":309,"Date":"7/27/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":475,"Cost":387,"Date":"9/17/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":562,"Cost":457,"Date":"10/6/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":328,"Cost":200,"Date":"10/8/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":469,"Cost":272,"Date":"10/26/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":823,"Cost":606,"Date":"11/16/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":328,"Cost":191,"Date":"11/18/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":237,"Cost":217,"Date":"12/1/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":323,"Cost":271,"Date":"2/9/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":655,"Cost":520,"Date":"2/11/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":958,"Cost":538,"Date":"3/10/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":619,"Cost":428,"Date":"3/16/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":79,"Cost":55,"Date":"3/18/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":857,"Cost":612,"Date":"3/20/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":21,"Cost":20,"Date":"3/26/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":261,"Cost":142,"Date":"6/2/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":203,"Cost":192,"Date":"6/10/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":941,"Cost":800,"Date":"6/16/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":139,"Cost":80,"Date":"6/25/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":551,"Cost":405,"Date":"7/19/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":678,"Cost":616,"Date":"7/21/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":833,"Cost":555,"Date":"7/25/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":682,"Cost":445,"Date":"8/4/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":369,"Cost":286,"Date":"9/2/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":277,"Cost":197,"Date":"9/4/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":10,"Cost":6,"Date":"9/19/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":899,"Cost":500,"Date":"9/29/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":218,"Cost":118,"Date":"10/2/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":477,"Cost":355,"Date":"10/15/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":540,"Cost":370,"Date":"10/30/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":534,"Cost":427,"Date":"11/9/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":282,"Cost":237,"Date":"11/23/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":771,"Cost":528,"Date":"11/30/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":680,"Cost":387,"Date":"12/8/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":751,"Cost":560,"Date":"12/11/2018"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":186,"Cost":162,"Date":"1/15/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":599,"Cost":429,"Date":"1/24/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":270,"Cost":192,"Date":"2/3/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":92,"Cost":67,"Date":"2/4/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":441,"Cost":267,"Date":"3/9/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":719,"Cost":469,"Date":"3/12/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":741,"Cost":593,"Date":"4/19/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":675,"Cost":463,"Date":"5/3/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":996,"Cost":922,"Date":"5/4/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":520,"Cost":448,"Date":"6/8/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":504,"Cost":394,"Date":"6/26/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":626,"Cost":530,"Date":"7/4/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":364,"Cost":235,"Date":"7/13/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":214,"Cost":180,"Date":"8/8/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":600,"Cost":507,"Date":"8/26/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":268,"Cost":194,"Date":"9/2/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":242,"Cost":216,"Date":"9/29/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":72,"Cost":43,"Date":"10/12/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":944,"Cost":773,"Date":"11/2/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":628,"Cost":387,"Date":"11/4/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":839,"Cost":733,"Date":"11/7/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":170,"Cost":130,"Date":"12/1/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":656,"Cost":478,"Date":"12/4/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":246,"Cost":189,"Date":"12/7/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":611,"Cost":570,"Date":"12/18/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":368,"Cost":323,"Date":"12/20/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":689,"Cost":465,"Date":"12/20/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":614,"Cost":450,"Date":"12/21/2019"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":973,"Cost":787,"Date":"1/9/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":967,"Cost":728,"Date":"2/5/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":273,"Cost":145,"Date":"2/16/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":334,"Cost":250,"Date":"2/16/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":694,"Cost":552,"Date":"2/18/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":378,"Cost":204,"Date":"2/22/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":568,"Cost":422,"Date":"2/25/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":291,"Cost":264,"Date":"3/8/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":527,"Cost":298,"Date":"4/2/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":915,"Cost":853,"Date":"4/3/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":285,"Cost":241,"Date":"4/9/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":278,"Cost":206,"Date":"4/10/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":947,"Cost":484,"Date":"4/19/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":941,"Cost":483,"Date":"5/17/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":821,"Cost":682,"Date":"5/22/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":495,"Cost":464,"Date":"6/20/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":951,"Cost":723,"Date":"7/1/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":95,"Cost":77,"Date":"7/4/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":3,"Cost":2,"Date":"7/8/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":148,"Cost":125,"Date":"7/9/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":533,"Cost":372,"Date":"7/14/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":853,"Cost":809,"Date":"7/19/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":55,"Cost":49,"Date":"8/1/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":527,"Cost":293,"Date":"8/6/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":269,"Cost":163,"Date":"8/7/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":879,"Cost":722,"Date":"8/22/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":70,"Cost":44,"Date":"8/31/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":253,"Cost":156,"Date":"9/1/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":874,"Cost":649,"Date":"9/1/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":467,"Cost":373,"Date":"9/17/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":643,"Cost":363,"Date":"9/29/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":158,"Cost":86,"Date":"11/7/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":894,"Cost":598,"Date":"11/26/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":204,"Cost":127,"Date":"11/27/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":18,"Cost":14,"Date":"12/5/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":843,"Cost":424,"Date":"12/26/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":157,"Cost":91,"Date":"12/31/2020"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":565,"Cost":477,"Date":"1/20/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":204,"Cost":146,"Date":"2/2/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":989,"Cost":785,"Date":"2/8/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":757,"Cost":651,"Date":"2/27/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":703,"Cost":396,"Date":"3/1/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":573,"Cost":358,"Date":"3/1/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":627,"Cost":384,"Date":"3/19/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":698,"Cost":642,"Date":"3/28/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":57,"Cost":33,"Date":"5/21/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":830,"Cost":576,"Date":"7/21/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":320,"Cost":186,"Date":"8/5/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":184,"Cost":150,"Date":"8/12/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":538,"Cost":269,"Date":"8/21/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":907,"Cost":726,"Date":"8/23/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":608,"Cost":381,"Date":"9/3/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":385,"Cost":280,"Date":"9/5/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":168,"Cost":99,"Date":"10/6/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":590,"Cost":407,"Date":"10/19/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":698,"Cost":471,"Date":"11/15/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":703,"Cost":485,"Date":"12/8/2021"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":564,"Cost":468,"Date":"1/8/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":979,"Cost":593,"Date":"1/14/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":934,"Cost":539,"Date":"1/19/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":512,"Cost":484,"Date":"1/28/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":636,"Cost":521,"Date":"1/31/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":727,"Cost":393,"Date":"3/27/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":555,"Cost":503,"Date":"4/20/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":873,"Cost":651,"Date":"4/24/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":653,"Cost":504,"Date":"4/28/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":780,"Cost":397,"Date":"5/15/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":116,"Cost":67,"Date":"5/16/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":919,"Cost":771,"Date":"5/18/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":240,"Cost":121,"Date":"6/2/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":654,"Cost":571,"Date":"6/3/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":149,"Cost":94,"Date":"6/5/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":735,"Cost":570,"Date":"6/7/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":329,"Cost":251,"Date":"6/14/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":786,"Cost":541,"Date":"6/20/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":583,"Cost":386,"Date":"6/24/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":918,"Cost":637,"Date":"7/4/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":138,"Cost":86,"Date":"7/9/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":862,"Cost":813,"Date":"7/12/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":833,"Cost":464,"Date":"8/14/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":975,"Cost":542,"Date":"8/16/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":941,"Cost":632,"Date":"8/23/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":734,"Cost":619,"Date":"9/2/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":285,"Cost":189,"Date":"9/3/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":988,"Cost":526,"Date":"9/16/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":494,"Cost":310,"Date":"10/4/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":112,"Cost":66,"Date":"11/1/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":725,"Cost":652,"Date":"11/2/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":271,"Cost":211,"Date":"12/17/2022"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":389,"Cost":231,"Date":"2/10/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":153,"Cost":88,"Date":"2/28/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":578,"Cost":293,"Date":"3/4/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":263,"Cost":245,"Date":"3/9/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":189,"Cost":167,"Date":"3/9/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":691,"Cost":345,"Date":"3/11/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":366,"Cost":324,"Date":"3/17/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":618,"Cost":496,"Date":"3/17/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":89,"Cost":72,"Date":"3/23/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":134,"Cost":73,"Date":"4/1/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":756,"Cost":685,"Date":"5/7/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":513,"Cost":284,"Date":"5/10/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":250,"Cost":217,"Date":"5/20/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":408,"Cost":274,"Date":"6/2/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":384,"Cost":319,"Date":"6/11/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":397,"Cost":265,"Date":"6/16/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":25,"Cost":13,"Date":"6/16/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":909,"Cost":783,"Date":"7/10/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":816,"Cost":730,"Date":"7/11/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":39,"Cost":20,"Date":"8/28/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":965,"Cost":801,"Date":"8/29/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":438,"Cost":371,"Date":"8/31/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":723,"Cost":364,"Date":"9/8/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":538,"Cost":294,"Date":"9/13/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":694,"Cost":364,"Date":"9/14/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":339,"Cost":259,"Date":"9/19/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":827,"Cost":750,"Date":"9/25/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":824,"Cost":515,"Date":"10/4/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":700,"Cost":410,"Date":"10/10/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":122,"Cost":87,"Date":"10/17/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":302,"Cost":225,"Date":"10/28/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":354,"Cost":226,"Date":"10/30/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":657,"Cost":394,"Date":"11/1/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":291,"Cost":237,"Date":"11/15/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":336,"Cost":288,"Date":"11/25/2023"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":839,"Cost":597,"Date":"1/10/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":601,"Cost":414,"Date":"1/14/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":123,"Cost":86,"Date":"1/20/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":310,"Cost":221,"Date":"2/8/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":514,"Cost":317,"Date":"2/25/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":707,"Cost":593,"Date":"3/7/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":230,"Cost":177,"Date":"3/14/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":77,"Cost":66,"Date":"3/27/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":707,"Cost":616,"Date":"4/5/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":794,"Cost":628,"Date":"4/14/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":909,"Cost":604,"Date":"5/3/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":128,"Cost":65,"Date":"5/9/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":935,"Cost":575,"Date":"5/15/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":608,"Cost":362,"Date":"5/25/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":376,"Cost":230,"Date":"5/26/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":832,"Cost":563,"Date":"5/31/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":767,"Cost":412,"Date":"7/27/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":87,"Cost":66,"Date":"9/17/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":22,"Cost":21,"Date":"10/6/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":530,"Cost":349,"Date":"10/8/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":557,"Cost":319,"Date":"10/26/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":317,"Cost":279,"Date":"11/16/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":579,"Cost":362,"Date":"11/18/2024"},{"Store":"Sliven Mall","Brand":"Nova","Country":"Bulgaria","Sale":712,"Cost":660,"Date":"12/1/2024"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":551,"Cost":345,"Date":"2/9/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":454,"Cost":289,"Date":"2/11/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":933,"Cost":855,"Date":"3/10/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":997,"Cost":852,"Date":"3/16/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":99,"Cost":84,"Date":"3/18/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":304,"Cost":258,"Date":"3/20/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":667,"Cost":371,"Date":"3/26/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":200,"Cost":116,"Date":"6/2/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":950,"Cost":658,"Date":"6/10/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":320,"Cost":167,"Date":"6/16/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":851,"Cost":780,"Date":"6/25/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":279,"Cost":155,"Date":"7/19/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":138,"Cost":107,"Date":"7/21/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":534,"Cost":502,"Date":"7/25/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":530,"Cost":490,"Date":"8/4/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":898,"Cost":550,"Date":"9/2/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":898,"Cost":769,"Date":"9/4/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":945,"Cost":769,"Date":"9/19/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":583,"Cost":497,"Date":"9/29/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":333,"Cost":272,"Date":"10/2/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":754,"Cost":683,"Date":"10/15/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":696,"Cost":459,"Date":"10/30/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":972,"Cost":552,"Date":"11/9/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":907,"Cost":620,"Date":"11/23/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":505,"Cost":312,"Date":"11/30/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":103,"Cost":63,"Date":"12/8/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":463,"Cost":431,"Date":"12/11/2018"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":913,"Cost":716,"Date":"1/15/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":983,"Cost":682,"Date":"1/24/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":750,"Cost":479,"Date":"2/3/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":515,"Cost":361,"Date":"2/4/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":296,"Cost":212,"Date":"3/9/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":600,"Cost":565,"Date":"3/12/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":207,"Cost":161,"Date":"4/19/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":96,"Cost":51,"Date":"5/3/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":305,"Cost":283,"Date":"5/4/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":686,"Cost":644,"Date":"6/8/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":532,"Cost":393,"Date":"6/26/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":249,"Cost":144,"Date":"7/4/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":139,"Cost":89,"Date":"7/13/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":473,"Cost":382,"Date":"8/8/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":266,"Cost":202,"Date":"8/26/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":140,"Cost":102,"Date":"9/2/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":588,"Cost":404,"Date":"9/29/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":284,"Cost":188,"Date":"10/12/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":704,"Cost":529,"Date":"11/2/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":286,"Cost":268,"Date":"11/4/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":491,"Cost":433,"Date":"11/7/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":37,"Cost":32,"Date":"12/1/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":809,"Cost":537,"Date":"12/4/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":550,"Cost":336,"Date":"12/7/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":901,"Cost":720,"Date":"12/18/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":294,"Cost":233,"Date":"12/20/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":526,"Cost":430,"Date":"12/20/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":231,"Cost":136,"Date":"12/21/2019"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":875,"Cost":664,"Date":"1/9/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":319,"Cost":259,"Date":"2/5/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":3,"Cost":3,"Date":"2/16/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":886,"Cost":550,"Date":"2/16/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":912,"Cost":617,"Date":"2/18/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":900,"Cost":499,"Date":"2/22/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":281,"Cost":162,"Date":"2/25/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":313,"Cost":221,"Date":"3/8/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":813,"Cost":685,"Date":"4/2/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":269,"Cost":187,"Date":"4/3/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":57,"Cost":44,"Date":"4/9/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":131,"Cost":108,"Date":"4/10/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":35,"Cost":23,"Date":"4/19/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":584,"Cost":316,"Date":"5/17/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":830,"Cost":727,"Date":"5/22/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":313,"Cost":244,"Date":"6/20/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":935,"Cost":593,"Date":"7/1/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":968,"Cost":611,"Date":"7/4/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":207,"Cost":154,"Date":"7/8/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":720,"Cost":636,"Date":"7/9/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":54,"Cost":51,"Date":"7/14/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":584,"Cost":522,"Date":"7/19/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":2,"Cost":1,"Date":"8/1/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":265,"Cost":236,"Date":"8/6/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":768,"Cost":471,"Date":"8/7/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":512,"Cost":376,"Date":"8/22/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":624,"Cost":479,"Date":"8/31/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":68,"Cost":60,"Date":"9/1/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":115,"Cost":108,"Date":"9/1/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":440,"Cost":275,"Date":"9/17/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":193,"Cost":146,"Date":"9/29/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":1,"Cost":1,"Date":"11/7/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":843,"Cost":581,"Date":"11/26/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":838,"Cost":536,"Date":"11/27/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":557,"Cost":492,"Date":"12/5/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":798,"Cost":746,"Date":"12/26/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":709,"Cost":426,"Date":"12/31/2020"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":885,"Cost":816,"Date":"1/20/2021"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":25,"Cost":18,"Date":"2/2/2021"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":304,"Cost":252,"Date":"2/8/2021"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":925,"Cost":497,"Date":"2/27/2021"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":371,"Cost":207,"Date":"3/1/2021"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":929,"Cost":869,"Date":"3/1/2021"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":837,"Cost":701,"Date":"3/19/2021"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":256,"Cost":151,"Date":"3/28/2021"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":52,"Cost":31,"Date":"5/21/2021"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":202,"Cost":188,"Date":"7/21/2021"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":781,"Cost":447,"Date":"8/5/2021"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":154,"Cost":126,"Date":"8/12/2021"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":148,"Cost":121,"Date":"8/21/2021"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":89,"Cost":61,"Date":"8/23/2021"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":62,"Cost":34,"Date":"9/3/2021"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":143,"Cost":104,"Date":"9/5/2021"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":323,"Cost":239,"Date":"10/6/2021"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":221,"Cost":196,"Date":"10/19/2021"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":267,"Cost":205,"Date":"11/15/2021"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":337,"Cost":186,"Date":"12/8/2021"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":228,"Cost":173,"Date":"1/8/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":850,"Cost":681,"Date":"1/14/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":187,"Cost":118,"Date":"1/19/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":555,"Cost":488,"Date":"1/28/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":300,"Cost":271,"Date":"1/31/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":702,"Cost":441,"Date":"3/27/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":43,"Cost":35,"Date":"4/20/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":199,"Cost":127,"Date":"4/24/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":224,"Cost":178,"Date":"4/28/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":189,"Cost":143,"Date":"5/15/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":237,"Cost":196,"Date":"5/16/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":621,"Cost":335,"Date":"5/18/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":679,"Cost":603,"Date":"6/2/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":991,"Cost":885,"Date":"6/3/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":512,"Cost":372,"Date":"6/5/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":962,"Cost":654,"Date":"6/7/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":377,"Cost":232,"Date":"6/14/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":464,"Cost":384,"Date":"6/20/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":360,"Cost":270,"Date":"6/24/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":852,"Cost":534,"Date":"7/4/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":298,"Cost":213,"Date":"7/9/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":217,"Cost":189,"Date":"7/12/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":863,"Cost":714,"Date":"8/14/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":37,"Cost":34,"Date":"8/16/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":570,"Cost":334,"Date":"8/23/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":261,"Cost":219,"Date":"9/2/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":326,"Cost":233,"Date":"9/3/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":882,"Cost":750,"Date":"9/16/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":201,"Cost":104,"Date":"10/4/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":74,"Cost":57,"Date":"11/1/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":173,"Cost":164,"Date":"11/2/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":429,"Cost":381,"Date":"12/17/2022"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":566,"Cost":308,"Date":"2/10/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":625,"Cost":393,"Date":"2/28/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":934,"Cost":571,"Date":"3/4/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":698,"Cost":442,"Date":"3/9/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":179,"Cost":148,"Date":"3/9/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":643,"Cost":356,"Date":"3/11/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":662,"Cost":475,"Date":"3/17/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":378,"Cost":290,"Date":"3/17/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":653,"Cost":614,"Date":"3/23/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":993,"Cost":581,"Date":"4/1/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":507,"Cost":433,"Date":"5/7/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":640,"Cost":374,"Date":"5/10/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":784,"Cost":595,"Date":"5/20/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":840,"Cost":589,"Date":"6/2/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":853,"Cost":519,"Date":"6/11/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":237,"Cost":154,"Date":"6/16/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":752,"Cost":661,"Date":"6/16/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":427,"Cost":244,"Date":"7/10/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":811,"Cost":634,"Date":"7/11/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":835,"Cost":582,"Date":"8/28/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":185,"Cost":108,"Date":"8/29/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":317,"Cost":264,"Date":"8/31/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":812,"Cost":760,"Date":"9/8/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":568,"Cost":355,"Date":"9/13/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":259,"Cost":183,"Date":"9/14/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":830,"Cost":698,"Date":"9/19/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":672,"Cost":369,"Date":"9/25/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":251,"Cost":152,"Date":"10/4/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":125,"Cost":102,"Date":"10/10/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":725,"Cost":476,"Date":"10/17/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":493,"Cost":409,"Date":"10/28/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":498,"Cost":384,"Date":"10/30/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":260,"Cost":201,"Date":"11/1/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":991,"Cost":624,"Date":"11/15/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":940,"Cost":529,"Date":"11/25/2023"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":363,"Cost":217,"Date":"1/10/2024"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":242,"Cost":203,"Date":"1/14/2024"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":438,"Cost":346,"Date":"1/20/2024"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":235,"Cost":120,"Date":"2/8/2024"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":702,"Cost":393,"Date":"2/25/2024"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":547,"Cost":309,"Date":"3/7/2024"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":562,"Cost":359,"Date":"3/14/2024"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":506,"Cost":312,"Date":"3/27/2024"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":24,"Cost":15,"Date":"4/5/2024"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":423,"Cost":212,"Date":"4/14/2024"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":969,"Cost":832,"Date":"5/3/2024"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":419,"Cost":376,"Date":"5/9/2024"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":823,"Cost":584,"Date":"5/15/2024"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":571,"Cost":411,"Date":"5/25/2024"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":737,"Cost":560,"Date":"5/26/2024"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":582,"Cost":385,"Date":"5/31/2024"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":736,"Cost":668,"Date":"7/27/2024"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":681,"Cost":611,"Date":"9/17/2024"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":565,"Cost":352,"Date":"10/6/2024"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":636,"Cost":416,"Date":"10/8/2024"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":872,"Cost":454,"Date":"10/26/2024"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":533,"Cost":501,"Date":"11/16/2024"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":363,"Cost":209,"Date":"11/18/2024"},{"Store":"Sliven Mall","Brand":"Jeans","Country":"Bulgaria","Sale":188,"Cost":152,"Date":"12/1/2024"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":589,"Cost":543,"Date":"2/9/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":771,"Cost":416,"Date":"2/11/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":529,"Cost":435,"Date":"3/10/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":686,"Cost":506,"Date":"3/16/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":235,"Cost":146,"Date":"3/18/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":270,"Cost":242,"Date":"3/20/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":242,"Cost":124,"Date":"3/26/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":166,"Cost":90,"Date":"6/2/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":170,"Cost":143,"Date":"6/10/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":535,"Cost":415,"Date":"6/16/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":481,"Cost":328,"Date":"6/25/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":712,"Cost":418,"Date":"7/19/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":421,"Cost":397,"Date":"7/21/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":763,"Cost":469,"Date":"7/25/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":481,"Cost":291,"Date":"8/4/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":74,"Cost":62,"Date":"9/2/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":695,"Cost":637,"Date":"9/4/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":819,"Cost":418,"Date":"9/19/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":824,"Cost":526,"Date":"9/29/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":391,"Cost":234,"Date":"10/2/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":855,"Cost":740,"Date":"10/15/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":635,"Cost":457,"Date":"10/30/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":63,"Cost":39,"Date":"11/9/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":900,"Cost":768,"Date":"11/23/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":567,"Cost":324,"Date":"11/30/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":595,"Cost":418,"Date":"12/8/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":464,"Cost":374,"Date":"12/11/2018"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":488,"Cost":338,"Date":"1/15/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":388,"Cost":256,"Date":"1/24/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":661,"Cost":526,"Date":"2/3/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":902,"Cost":709,"Date":"2/4/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":99,"Cost":74,"Date":"3/9/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":461,"Cost":278,"Date":"3/12/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":745,"Cost":391,"Date":"4/19/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":793,"Cost":667,"Date":"5/3/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":358,"Cost":300,"Date":"5/4/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":190,"Cost":146,"Date":"6/8/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":183,"Cost":154,"Date":"6/26/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":444,"Cost":255,"Date":"7/4/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":278,"Cost":260,"Date":"7/13/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":585,"Cost":475,"Date":"8/8/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":433,"Cost":227,"Date":"8/26/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":618,"Cost":564,"Date":"9/2/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":553,"Cost":425,"Date":"9/29/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":918,"Cost":681,"Date":"10/12/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":196,"Cost":169,"Date":"11/2/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":669,"Cost":565,"Date":"11/4/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":242,"Cost":133,"Date":"11/7/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":16,"Cost":11,"Date":"12/1/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":305,"Cost":217,"Date":"12/4/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":525,"Cost":391,"Date":"12/7/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":61,"Cost":52,"Date":"12/18/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":255,"Cost":189,"Date":"12/20/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":383,"Cost":267,"Date":"12/20/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":395,"Cost":328,"Date":"12/21/2019"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":810,"Cost":408,"Date":"1/9/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":362,"Cost":244,"Date":"2/5/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":770,"Cost":387,"Date":"2/16/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":247,"Cost":134,"Date":"2/16/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":198,"Cost":166,"Date":"2/18/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":911,"Cost":568,"Date":"2/22/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":73,"Cost":40,"Date":"2/25/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":762,"Cost":686,"Date":"3/8/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":505,"Cost":259,"Date":"4/2/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":751,"Cost":494,"Date":"4/3/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":312,"Cost":177,"Date":"4/9/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":783,"Cost":684,"Date":"4/10/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":785,"Cost":501,"Date":"4/19/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":730,"Cost":548,"Date":"5/17/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":692,"Cost":440,"Date":"5/22/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":164,"Cost":111,"Date":"6/20/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":115,"Cost":92,"Date":"7/1/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":320,"Cost":197,"Date":"7/4/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":4,"Cost":3,"Date":"7/8/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":104,"Cost":99,"Date":"7/9/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":553,"Cost":386,"Date":"7/14/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":573,"Cost":387,"Date":"7/19/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":235,"Cost":199,"Date":"8/1/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":564,"Cost":464,"Date":"8/6/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":488,"Cost":364,"Date":"8/7/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":486,"Cost":317,"Date":"8/22/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":567,"Cost":325,"Date":"8/31/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":798,"Cost":535,"Date":"9/1/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":499,"Cost":360,"Date":"9/1/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":158,"Cost":124,"Date":"9/17/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":556,"Cost":510,"Date":"9/29/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":542,"Cost":324,"Date":"11/7/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":382,"Cost":267,"Date":"11/26/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":679,"Cost":444,"Date":"11/27/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":211,"Cost":189,"Date":"12/5/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":149,"Cost":104,"Date":"12/26/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":816,"Cost":769,"Date":"12/31/2020"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":766,"Cost":491,"Date":"1/20/2021"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":111,"Cost":90,"Date":"2/2/2021"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":614,"Cost":443,"Date":"2/8/2021"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":978,"Cost":891,"Date":"2/27/2021"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":707,"Cost":597,"Date":"3/1/2021"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":601,"Cost":381,"Date":"3/1/2021"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":416,"Cost":380,"Date":"3/19/2021"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":619,"Cost":400,"Date":"3/28/2021"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":269,"Cost":208,"Date":"5/21/2021"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":937,"Cost":523,"Date":"7/21/2021"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":482,"Cost":313,"Date":"8/5/2021"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":206,"Cost":171,"Date":"8/12/2021"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":435,"Cost":358,"Date":"8/21/2021"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":810,"Cost":708,"Date":"8/23/2021"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":542,"Cost":328,"Date":"9/3/2021"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":263,"Cost":232,"Date":"9/5/2021"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":642,"Cost":499,"Date":"10/6/2021"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":715,"Cost":625,"Date":"10/19/2021"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":516,"Cost":485,"Date":"11/15/2021"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":549,"Cost":392,"Date":"12/8/2021"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":629,"Cost":588,"Date":"1/8/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":391,"Cost":313,"Date":"1/14/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":394,"Cost":343,"Date":"1/19/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":260,"Cost":213,"Date":"1/28/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":971,"Cost":513,"Date":"1/31/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":460,"Cost":265,"Date":"3/27/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":650,"Cost":526,"Date":"4/20/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":409,"Cost":309,"Date":"4/24/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":92,"Cost":82,"Date":"4/28/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":363,"Cost":188,"Date":"5/15/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":666,"Cost":443,"Date":"5/16/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":593,"Cost":371,"Date":"5/18/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":906,"Cost":519,"Date":"6/2/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":355,"Cost":182,"Date":"6/3/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":490,"Cost":326,"Date":"6/5/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":190,"Cost":111,"Date":"6/7/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":856,"Cost":687,"Date":"6/14/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":217,"Cost":151,"Date":"6/20/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":683,"Cost":420,"Date":"6/24/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":505,"Cost":364,"Date":"7/4/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":812,"Cost":733,"Date":"7/9/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":334,"Cost":214,"Date":"7/12/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":141,"Cost":81,"Date":"8/14/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":600,"Cost":446,"Date":"8/16/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":589,"Cost":453,"Date":"8/23/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":285,"Cost":161,"Date":"9/2/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":914,"Cost":465,"Date":"9/3/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":961,"Cost":676,"Date":"9/16/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":678,"Cost":623,"Date":"10/4/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":926,"Cost":528,"Date":"11/1/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":956,"Cost":631,"Date":"11/2/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":419,"Cost":324,"Date":"12/17/2022"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":627,"Cost":466,"Date":"2/10/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":870,"Cost":809,"Date":"2/28/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":65,"Cost":32,"Date":"3/4/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":415,"Cost":273,"Date":"3/9/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":326,"Cost":198,"Date":"3/9/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":58,"Cost":44,"Date":"3/11/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":646,"Cost":444,"Date":"3/17/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":380,"Cost":299,"Date":"3/17/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":617,"Cost":394,"Date":"3/23/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":812,"Cost":620,"Date":"4/1/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":280,"Cost":241,"Date":"5/7/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":728,"Cost":507,"Date":"5/10/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":375,"Cost":290,"Date":"5/20/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":197,"Cost":182,"Date":"6/2/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":935,"Cost":560,"Date":"6/11/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":943,"Cost":864,"Date":"6/16/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":16,"Cost":10,"Date":"6/16/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":191,"Cost":167,"Date":"7/10/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":392,"Cost":308,"Date":"7/11/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":563,"Cost":437,"Date":"8/28/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":446,"Cost":363,"Date":"8/29/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":367,"Cost":219,"Date":"8/31/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":654,"Cost":357,"Date":"9/8/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":122,"Cost":106,"Date":"9/13/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":686,"Cost":648,"Date":"9/14/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":187,"Cost":165,"Date":"9/19/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":366,"Cost":216,"Date":"9/25/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":436,"Cost":269,"Date":"10/4/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":621,"Cost":564,"Date":"10/10/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":896,"Cost":611,"Date":"10/17/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":647,"Cost":592,"Date":"10/28/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":799,"Cost":633,"Date":"10/30/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":264,"Cost":209,"Date":"11/1/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":179,"Cost":138,"Date":"11/15/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":896,"Cost":561,"Date":"11/25/2023"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":478,"Cost":239,"Date":"1/10/2024"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":851,"Cost":723,"Date":"1/14/2024"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":596,"Cost":341,"Date":"1/20/2024"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":858,"Cost":785,"Date":"2/8/2024"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":83,"Cost":57,"Date":"2/25/2024"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":862,"Cost":700,"Date":"3/7/2024"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":146,"Cost":102,"Date":"3/14/2024"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":496,"Cost":362,"Date":"3/27/2024"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":130,"Cost":112,"Date":"4/5/2024"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":847,"Cost":578,"Date":"4/14/2024"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":571,"Cost":537,"Date":"5/3/2024"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":280,"Cost":200,"Date":"5/9/2024"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":363,"Cost":320,"Date":"5/15/2024"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":72,"Cost":36,"Date":"5/25/2024"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":349,"Cost":315,"Date":"5/26/2024"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":939,"Cost":547,"Date":"5/31/2024"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":945,"Cost":524,"Date":"7/27/2024"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":279,"Cost":177,"Date":"9/17/2024"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":541,"Cost":486,"Date":"10/6/2024"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":564,"Cost":366,"Date":"10/8/2024"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":794,"Cost":642,"Date":"10/26/2024"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":758,"Cost":402,"Date":"11/16/2024"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":470,"Cost":379,"Date":"11/18/2024"},{"Store":"Botevgrad Mall","Brand":"Sellpy","Country":"Bulgaria","Sale":420,"Cost":225,"Date":"12/1/2024"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":507,"Cost":424,"Date":"2/9/2018"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":725,"Cost":655,"Date":"2/11/2018"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":299,"Cost":263,"Date":"3/10/2018"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":248,"Cost":131,"Date":"3/16/2018"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":283,"Cost":221,"Date":"3/18/2018"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":177,"Cost":157,"Date":"3/20/2018"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":556,"Cost":468,"Date":"3/26/2018"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":111,"Cost":82,"Date":"6/2/2018"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":493,"Cost":349,"Date":"6/10/2018"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":303,"Cost":193,"Date":"6/16/2018"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":979,"Cost":809,"Date":"6/25/2018"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":125,"Cost":85,"Date":"7/19/2018"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":11,"Cost":8,"Date":"7/21/2018"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":340,"Cost":263,"Date":"7/25/2018"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":205,"Cost":178,"Date":"8/4/2018"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":557,"Cost":280,"Date":"9/2/2018"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":355,"Cost":263,"Date":"9/4/2018"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":570,"Cost":532,"Date":"9/19/2018"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":964,"Cost":669,"Date":"9/29/2018"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":785,"Cost":439,"Date":"10/2/2018"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":398,"Cost":304,"Date":"10/15/2018"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":885,"Cost":571,"Date":"10/30/2018"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":846,"Cost":762,"Date":"11/9/2018"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":833,"Cost":764,"Date":"11/23/2018"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":15,"Cost":8,"Date":"11/30/2018"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":441,"Cost":325,"Date":"12/8/2018"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":554,"Cost":370,"Date":"12/11/2018"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":628,"Cost":430,"Date":"1/15/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":628,"Cost":551,"Date":"1/24/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":736,"Cost":462,"Date":"2/3/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":621,"Cost":509,"Date":"2/4/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":676,"Cost":618,"Date":"3/9/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":997,"Cost":534,"Date":"3/12/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":867,"Cost":683,"Date":"4/19/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":369,"Cost":193,"Date":"5/3/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":522,"Cost":417,"Date":"5/4/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":570,"Cost":432,"Date":"6/8/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":82,"Cost":66,"Date":"6/26/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":195,"Cost":126,"Date":"7/4/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":793,"Cost":708,"Date":"7/13/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":62,"Cost":41,"Date":"8/8/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":144,"Cost":100,"Date":"8/26/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":487,"Cost":405,"Date":"9/2/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":269,"Cost":136,"Date":"9/29/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":673,"Cost":619,"Date":"10/12/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":952,"Cost":696,"Date":"11/2/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":495,"Cost":371,"Date":"11/4/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":462,"Cost":431,"Date":"11/7/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":990,"Cost":716,"Date":"12/1/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":912,"Cost":584,"Date":"12/4/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":69,"Cost":60,"Date":"12/7/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":801,"Cost":459,"Date":"12/18/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":433,"Cost":379,"Date":"12/20/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":59,"Cost":33,"Date":"12/20/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":567,"Cost":308,"Date":"12/21/2019"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":819,"Cost":756,"Date":"1/9/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":365,"Cost":205,"Date":"2/5/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":428,"Cost":334,"Date":"2/16/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":279,"Cost":223,"Date":"2/16/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":842,"Cost":673,"Date":"2/18/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":434,"Cost":366,"Date":"2/22/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":361,"Cost":299,"Date":"2/25/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":482,"Cost":433,"Date":"3/8/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":43,"Cost":24,"Date":"4/2/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":2,"Cost":2,"Date":"4/3/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":275,"Cost":210,"Date":"4/9/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":712,"Cost":677,"Date":"4/10/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":447,"Cost":338,"Date":"4/19/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":243,"Cost":132,"Date":"5/17/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":185,"Cost":156,"Date":"5/22/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":538,"Cost":301,"Date":"6/20/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":504,"Cost":456,"Date":"7/1/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":687,"Cost":417,"Date":"7/4/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":303,"Cost":182,"Date":"7/8/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":155,"Cost":98,"Date":"7/9/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":528,"Cost":456,"Date":"7/14/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":985,"Cost":732,"Date":"7/19/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":922,"Cost":770,"Date":"8/1/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":740,"Cost":427,"Date":"8/6/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":914,"Cost":782,"Date":"8/7/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":308,"Cost":281,"Date":"8/22/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":971,"Cost":491,"Date":"8/31/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":411,"Cost":281,"Date":"9/1/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":333,"Cost":247,"Date":"9/1/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":992,"Cost":690,"Date":"9/17/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":260,"Cost":193,"Date":"9/29/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":298,"Cost":232,"Date":"11/7/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":679,"Cost":513,"Date":"11/26/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":166,"Cost":155,"Date":"11/27/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":264,"Cost":134,"Date":"12/5/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":457,"Cost":295,"Date":"12/26/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":985,"Cost":590,"Date":"12/31/2020"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":246,"Cost":124,"Date":"1/20/2021"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":316,"Cost":262,"Date":"2/2/2021"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":739,"Cost":500,"Date":"2/8/2021"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":295,"Cost":268,"Date":"2/27/2021"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":942,"Cost":572,"Date":"3/1/2021"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":505,"Cost":288,"Date":"3/1/2021"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":459,"Cost":435,"Date":"3/19/2021"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":242,"Cost":123,"Date":"3/28/2021"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":658,"Cost":504,"Date":"5/21/2021"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":75,"Cost":57,"Date":"7/21/2021"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":256,"Cost":168,"Date":"8/5/2021"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":395,"Cost":279,"Date":"8/12/2021"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":208,"Cost":136,"Date":"8/21/2021"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":953,"Cost":530,"Date":"8/23/2021"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":678,"Cost":469,"Date":"9/3/2021"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":8,"Cost":4,"Date":"9/5/2021"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":354,"Cost":282,"Date":"10/6/2021"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":655,"Cost":540,"Date":"10/19/2021"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":628,"Cost":499,"Date":"11/15/2021"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":706,"Cost":392,"Date":"12/8/2021"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":663,"Cost":411,"Date":"1/8/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":833,"Cost":740,"Date":"1/14/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":803,"Cost":573,"Date":"1/19/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":269,"Cost":231,"Date":"1/28/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":192,"Cost":98,"Date":"1/31/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":38,"Cost":33,"Date":"3/27/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":911,"Cost":864,"Date":"4/20/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":527,"Cost":368,"Date":"4/24/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":430,"Cost":330,"Date":"4/28/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":683,"Cost":563,"Date":"5/15/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":396,"Cost":243,"Date":"5/16/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":212,"Cost":147,"Date":"5/18/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":69,"Cost":38,"Date":"6/2/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":214,"Cost":112,"Date":"6/3/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":517,"Cost":346,"Date":"6/5/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":551,"Cost":336,"Date":"6/7/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":506,"Cost":400,"Date":"6/14/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":607,"Cost":453,"Date":"6/20/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":560,"Cost":395,"Date":"6/24/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":201,"Cost":142,"Date":"7/4/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":185,"Cost":127,"Date":"7/9/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":764,"Cost":536,"Date":"7/12/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":126,"Cost":114,"Date":"8/14/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":820,"Cost":731,"Date":"8/16/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":303,"Cost":226,"Date":"8/23/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":835,"Cost":785,"Date":"9/2/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":480,"Cost":305,"Date":"9/3/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":701,"Cost":466,"Date":"9/16/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":169,"Cost":112,"Date":"10/4/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":763,"Cost":415,"Date":"11/1/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":593,"Cost":409,"Date":"11/2/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":232,"Cost":172,"Date":"12/17/2022"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":42,"Cost":25,"Date":"2/10/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":132,"Cost":97,"Date":"2/28/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":658,"Cost":615,"Date":"3/4/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":924,"Cost":826,"Date":"3/9/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":114,"Cost":107,"Date":"3/9/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":338,"Cost":310,"Date":"3/11/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":208,"Cost":130,"Date":"3/17/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":555,"Cost":388,"Date":"3/17/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":888,"Cost":651,"Date":"3/23/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":778,"Cost":531,"Date":"4/1/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":588,"Cost":330,"Date":"5/7/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":114,"Cost":81,"Date":"5/10/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":57,"Cost":34,"Date":"5/20/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":382,"Cost":343,"Date":"6/2/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":990,"Cost":569,"Date":"6/11/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":162,"Cost":104,"Date":"6/16/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":883,"Cost":545,"Date":"6/16/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":129,"Cost":118,"Date":"7/10/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":461,"Cost":416,"Date":"7/11/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":553,"Cost":343,"Date":"8/28/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":687,"Cost":357,"Date":"8/29/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":416,"Cost":235,"Date":"8/31/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":389,"Cost":260,"Date":"9/8/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":334,"Cost":232,"Date":"9/13/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":960,"Cost":594,"Date":"9/14/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":401,"Cost":212,"Date":"9/19/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":403,"Cost":374,"Date":"9/25/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":334,"Cost":314,"Date":"10/4/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":86,"Cost":58,"Date":"10/10/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":113,"Cost":72,"Date":"10/17/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":282,"Cost":231,"Date":"10/28/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":221,"Cost":140,"Date":"10/30/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":1,"Cost":1,"Date":"11/1/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":721,"Cost":516,"Date":"11/15/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":609,"Cost":404,"Date":"11/25/2023"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":676,"Cost":450,"Date":"1/10/2024"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":329,"Cost":310,"Date":"1/14/2024"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":821,"Cost":488,"Date":"1/20/2024"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":361,"Cost":193,"Date":"2/8/2024"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":844,"Cost":589,"Date":"2/25/2024"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":32,"Cost":20,"Date":"3/7/2024"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":238,"Cost":124,"Date":"3/14/2024"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":590,"Cost":312,"Date":"3/27/2024"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":604,"Cost":377,"Date":"4/5/2024"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":345,"Cost":244,"Date":"4/14/2024"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":75,"Cost":50,"Date":"5/3/2024"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":157,"Cost":102,"Date":"5/9/2024"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":648,"Cost":525,"Date":"5/15/2024"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":788,"Cost":732,"Date":"5/25/2024"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":358,"Cost":210,"Date":"5/26/2024"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":207,"Cost":177,"Date":"5/31/2024"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":12,"Cost":7,"Date":"7/27/2024"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":178,"Cost":120,"Date":"9/17/2024"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":710,"Cost":596,"Date":"10/6/2024"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":724,"Cost":498,"Date":"10/8/2024"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":634,"Cost":477,"Date":"10/26/2024"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":858,"Cost":562,"Date":"11/16/2024"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":817,"Cost":587,"Date":"11/18/2024"},{"Store":"Botevgrad Mall","Brand":"ARKET","Country":"Bulgaria","Sale":571,"Cost":516,"Date":"12/1/2024"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":478,"Cost":347,"Date":"2/9/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":296,"Cost":155,"Date":"2/11/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":480,"Cost":350,"Date":"3/10/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":394,"Cost":214,"Date":"3/16/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":671,"Cost":400,"Date":"3/18/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":76,"Cost":64,"Date":"3/20/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":509,"Cost":260,"Date":"3/26/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":226,"Cost":186,"Date":"6/2/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":965,"Cost":787,"Date":"6/10/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":101,"Cost":76,"Date":"6/16/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":974,"Cost":621,"Date":"6/25/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":247,"Cost":153,"Date":"7/19/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":819,"Cost":583,"Date":"7/21/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":959,"Cost":712,"Date":"7/25/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":224,"Cost":150,"Date":"8/4/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":633,"Cost":423,"Date":"9/2/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":897,"Cost":768,"Date":"9/4/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":507,"Cost":304,"Date":"9/19/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":405,"Cost":377,"Date":"9/29/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":986,"Cost":883,"Date":"10/2/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":796,"Cost":645,"Date":"10/15/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":832,"Cost":740,"Date":"10/30/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":627,"Cost":544,"Date":"11/9/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":639,"Cost":590,"Date":"11/23/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":694,"Cost":364,"Date":"11/30/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":999,"Cost":811,"Date":"12/8/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":831,"Cost":643,"Date":"12/11/2018"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":501,"Cost":364,"Date":"1/15/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":764,"Cost":473,"Date":"1/24/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":450,"Cost":249,"Date":"2/3/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":413,"Cost":356,"Date":"2/4/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":400,"Cost":351,"Date":"3/9/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":420,"Cost":241,"Date":"3/12/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":971,"Cost":827,"Date":"4/19/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":919,"Cost":680,"Date":"5/3/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":533,"Cost":348,"Date":"5/4/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":807,"Cost":541,"Date":"6/8/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":278,"Cost":209,"Date":"6/26/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":353,"Cost":215,"Date":"7/4/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":433,"Cost":242,"Date":"7/13/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":564,"Cost":348,"Date":"8/8/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":114,"Cost":109,"Date":"8/26/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":793,"Cost":565,"Date":"9/2/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":945,"Cost":554,"Date":"9/29/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":10,"Cost":8,"Date":"10/12/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":404,"Cost":284,"Date":"11/2/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":855,"Cost":509,"Date":"11/4/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":932,"Cost":727,"Date":"11/7/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":811,"Cost":578,"Date":"12/1/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":920,"Cost":601,"Date":"12/4/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":998,"Cost":528,"Date":"12/7/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":498,"Cost":281,"Date":"12/18/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":51,"Cost":25,"Date":"12/20/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":637,"Cost":477,"Date":"12/20/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":97,"Cost":80,"Date":"12/21/2019"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":795,"Cost":725,"Date":"1/9/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":180,"Cost":109,"Date":"2/5/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":327,"Cost":261,"Date":"2/16/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":958,"Cost":793,"Date":"2/16/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":342,"Cost":176,"Date":"2/18/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":828,"Cost":746,"Date":"2/22/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":227,"Cost":155,"Date":"2/25/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":447,"Cost":260,"Date":"3/8/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":453,"Cost":430,"Date":"4/2/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":807,"Cost":560,"Date":"4/3/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":137,"Cost":108,"Date":"4/9/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":92,"Cost":65,"Date":"4/10/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":291,"Cost":228,"Date":"4/19/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":231,"Cost":212,"Date":"5/17/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":764,"Cost":603,"Date":"5/22/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":287,"Cost":155,"Date":"6/20/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":567,"Cost":530,"Date":"7/1/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":56,"Cost":39,"Date":"7/4/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":188,"Cost":117,"Date":"7/8/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":616,"Cost":392,"Date":"7/9/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":982,"Cost":555,"Date":"7/14/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":988,"Cost":600,"Date":"7/19/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":421,"Cost":249,"Date":"8/1/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":692,"Cost":577,"Date":"8/6/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":713,"Cost":365,"Date":"8/7/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":136,"Cost":104,"Date":"8/22/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":713,"Cost":615,"Date":"8/31/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":682,"Cost":604,"Date":"9/1/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":359,"Cost":261,"Date":"9/1/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":657,"Cost":394,"Date":"9/17/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":574,"Cost":450,"Date":"9/29/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":376,"Cost":256,"Date":"11/7/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":891,"Cost":514,"Date":"11/26/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":436,"Cost":347,"Date":"11/27/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":271,"Cost":136,"Date":"12/5/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":644,"Cost":334,"Date":"12/26/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":701,"Cost":410,"Date":"12/31/2020"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":147,"Cost":90,"Date":"1/20/2021"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":379,"Cost":278,"Date":"2/2/2021"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":908,"Cost":503,"Date":"2/8/2021"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":977,"Cost":692,"Date":"2/27/2021"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":837,"Cost":706,"Date":"3/1/2021"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":809,"Cost":491,"Date":"3/1/2021"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":956,"Cost":908,"Date":"3/19/2021"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":12,"Cost":10,"Date":"3/28/2021"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":366,"Cost":348,"Date":"5/21/2021"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":826,"Cost":735,"Date":"7/21/2021"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":605,"Cost":376,"Date":"8/5/2021"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":165,"Cost":115,"Date":"8/12/2021"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":699,"Cost":563,"Date":"8/21/2021"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":127,"Cost":96,"Date":"8/23/2021"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":411,"Cost":252,"Date":"9/3/2021"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":465,"Cost":259,"Date":"9/5/2021"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":475,"Cost":427,"Date":"10/6/2021"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":949,"Cost":551,"Date":"10/19/2021"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":934,"Cost":714,"Date":"11/15/2021"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":393,"Cost":228,"Date":"12/8/2021"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":8,"Cost":7,"Date":"1/8/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":265,"Cost":239,"Date":"1/14/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":150,"Cost":113,"Date":"1/19/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":433,"Cost":247,"Date":"1/28/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":675,"Cost":528,"Date":"1/31/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":314,"Cost":246,"Date":"3/27/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":62,"Cost":46,"Date":"4/20/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":287,"Cost":242,"Date":"4/24/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":755,"Cost":493,"Date":"4/28/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":84,"Cost":64,"Date":"5/15/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":931,"Cost":781,"Date":"5/16/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":186,"Cost":170,"Date":"5/18/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":806,"Cost":671,"Date":"6/2/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":234,"Cost":142,"Date":"6/3/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":291,"Cost":208,"Date":"6/5/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":399,"Cost":283,"Date":"6/7/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":616,"Cost":343,"Date":"6/14/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":443,"Cost":237,"Date":"6/20/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":926,"Cost":776,"Date":"6/24/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":97,"Cost":49,"Date":"7/4/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":797,"Cost":413,"Date":"7/9/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":868,"Cost":592,"Date":"7/12/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":286,"Cost":220,"Date":"8/14/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":817,"Cost":544,"Date":"8/16/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":646,"Cost":507,"Date":"8/23/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":577,"Cost":466,"Date":"9/2/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":99,"Cost":94,"Date":"9/3/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":800,"Cost":699,"Date":"9/16/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":198,"Cost":183,"Date":"10/4/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":126,"Cost":102,"Date":"11/1/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":885,"Cost":750,"Date":"11/2/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":389,"Cost":269,"Date":"12/17/2022"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":306,"Cost":202,"Date":"2/10/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":473,"Cost":273,"Date":"2/28/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":459,"Cost":273,"Date":"3/4/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":921,"Cost":843,"Date":"3/9/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":443,"Cost":228,"Date":"3/9/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":799,"Cost":433,"Date":"3/11/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":43,"Cost":41,"Date":"3/17/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":928,"Cost":847,"Date":"3/17/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":888,"Cost":578,"Date":"3/23/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":555,"Cost":368,"Date":"4/1/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":812,"Cost":693,"Date":"5/7/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":188,"Cost":157,"Date":"5/10/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":862,"Cost":501,"Date":"5/20/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":310,"Cost":290,"Date":"6/2/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":605,"Cost":465,"Date":"6/11/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":553,"Cost":404,"Date":"6/16/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":839,"Cost":470,"Date":"6/16/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":401,"Cost":217,"Date":"7/10/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":992,"Cost":516,"Date":"7/11/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":486,"Cost":278,"Date":"8/28/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":805,"Cost":537,"Date":"8/29/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":181,"Cost":101,"Date":"8/31/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":884,"Cost":480,"Date":"9/8/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":569,"Cost":328,"Date":"9/13/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":96,"Cost":53,"Date":"9/14/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":473,"Cost":313,"Date":"9/19/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":335,"Cost":180,"Date":"9/25/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":313,"Cost":259,"Date":"10/4/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":341,"Cost":319,"Date":"10/10/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":624,"Cost":570,"Date":"10/17/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":644,"Cost":432,"Date":"10/28/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":198,"Cost":169,"Date":"10/30/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":104,"Cost":94,"Date":"11/1/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":24,"Cost":15,"Date":"11/15/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":730,"Cost":468,"Date":"11/25/2023"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":154,"Cost":102,"Date":"1/10/2024"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":24,"Cost":13,"Date":"1/14/2024"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":754,"Cost":468,"Date":"1/20/2024"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":91,"Cost":68,"Date":"2/8/2024"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":565,"Cost":450,"Date":"2/25/2024"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":456,"Cost":433,"Date":"3/7/2024"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":711,"Cost":402,"Date":"3/14/2024"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":535,"Cost":371,"Date":"3/27/2024"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":941,"Cost":773,"Date":"4/5/2024"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":430,"Cost":242,"Date":"4/14/2024"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":715,"Cost":536,"Date":"5/3/2024"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":135,"Cost":107,"Date":"5/9/2024"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":809,"Cost":680,"Date":"5/15/2024"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":117,"Cost":89,"Date":"5/25/2024"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":562,"Cost":382,"Date":"5/26/2024"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":214,"Cost":191,"Date":"5/31/2024"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":222,"Cost":204,"Date":"7/27/2024"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":288,"Cost":264,"Date":"9/17/2024"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":524,"Cost":355,"Date":"10/6/2024"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":240,"Cost":128,"Date":"10/8/2024"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":636,"Cost":596,"Date":"10/26/2024"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":384,"Cost":276,"Date":"11/16/2024"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":241,"Cost":207,"Date":"11/18/2024"},{"Store":"Botevgrad Mall","Brand":"Jeans","Country":"Bulgaria","Sale":420,"Cost":329,"Date":"12/1/2024"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":558,"Cost":425,"Date":"2/9/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":5,"Cost":2,"Date":"2/11/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":878,"Cost":537,"Date":"3/10/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":151,"Cost":81,"Date":"3/16/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":668,"Cost":494,"Date":"3/18/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":467,"Cost":247,"Date":"3/20/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":371,"Cost":349,"Date":"3/26/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":80,"Cost":74,"Date":"6/2/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":675,"Cost":584,"Date":"6/10/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":549,"Cost":417,"Date":"6/16/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":644,"Cost":511,"Date":"6/25/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":829,"Cost":768,"Date":"7/19/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":556,"Cost":523,"Date":"7/21/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":161,"Cost":113,"Date":"7/25/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":367,"Cost":223,"Date":"8/4/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":423,"Cost":358,"Date":"9/2/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":269,"Cost":149,"Date":"9/4/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":570,"Cost":356,"Date":"9/19/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":902,"Cost":700,"Date":"9/29/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":567,"Cost":403,"Date":"10/2/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":894,"Cost":596,"Date":"10/15/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":802,"Cost":491,"Date":"10/30/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":875,"Cost":819,"Date":"11/9/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":521,"Cost":403,"Date":"11/23/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":87,"Cost":55,"Date":"11/30/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":501,"Cost":456,"Date":"12/8/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":846,"Cost":563,"Date":"12/11/2018"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":358,"Cost":229,"Date":"1/15/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":421,"Cost":233,"Date":"1/24/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":146,"Cost":118,"Date":"2/3/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":113,"Cost":56,"Date":"2/4/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":85,"Cost":72,"Date":"3/9/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":759,"Cost":437,"Date":"3/12/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":503,"Cost":328,"Date":"4/19/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":918,"Cost":529,"Date":"5/3/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":762,"Cost":534,"Date":"5/4/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":556,"Cost":315,"Date":"6/8/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":275,"Cost":167,"Date":"6/26/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":873,"Cost":445,"Date":"7/4/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":715,"Cost":487,"Date":"7/13/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":745,"Cost":398,"Date":"8/8/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":853,"Cost":699,"Date":"8/26/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":430,"Cost":233,"Date":"9/2/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":90,"Cost":56,"Date":"9/29/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":576,"Cost":382,"Date":"10/12/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":593,"Cost":414,"Date":"11/2/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":192,"Cost":167,"Date":"11/4/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":926,"Cost":815,"Date":"11/7/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":869,"Cost":576,"Date":"12/1/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":7,"Cost":4,"Date":"12/4/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":633,"Cost":497,"Date":"12/7/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":621,"Cost":424,"Date":"12/18/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":758,"Cost":587,"Date":"12/20/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":294,"Cost":225,"Date":"12/20/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":126,"Cost":111,"Date":"12/21/2019"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":175,"Cost":121,"Date":"1/9/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":529,"Cost":326,"Date":"2/5/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":414,"Cost":364,"Date":"2/16/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":621,"Cost":491,"Date":"2/16/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":462,"Cost":402,"Date":"2/18/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":458,"Cost":420,"Date":"2/22/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":758,"Cost":469,"Date":"2/25/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":493,"Cost":320,"Date":"3/8/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":400,"Cost":281,"Date":"4/2/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":851,"Cost":561,"Date":"4/3/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":844,"Cost":673,"Date":"4/9/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":407,"Cost":369,"Date":"4/10/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":917,"Cost":514,"Date":"4/19/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":208,"Cost":177,"Date":"5/17/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":75,"Cost":52,"Date":"5/22/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":466,"Cost":393,"Date":"6/20/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":92,"Cost":55,"Date":"7/1/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":330,"Cost":178,"Date":"7/4/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":465,"Cost":338,"Date":"7/8/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":86,"Cost":58,"Date":"7/9/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":631,"Cost":518,"Date":"7/14/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":588,"Cost":369,"Date":"7/19/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":816,"Cost":632,"Date":"8/1/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":231,"Cost":215,"Date":"8/6/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":484,"Cost":292,"Date":"8/7/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":458,"Cost":269,"Date":"8/22/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":195,"Cost":184,"Date":"8/31/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":364,"Cost":210,"Date":"9/1/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":414,"Cost":355,"Date":"9/1/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":279,"Cost":232,"Date":"9/17/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":500,"Cost":271,"Date":"9/29/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":168,"Cost":152,"Date":"11/7/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":540,"Cost":482,"Date":"11/26/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":28,"Cost":24,"Date":"11/27/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":254,"Cost":127,"Date":"12/5/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":508,"Cost":430,"Date":"12/26/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":542,"Cost":296,"Date":"12/31/2020"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":239,"Cost":138,"Date":"1/20/2021"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":913,"Cost":679,"Date":"2/2/2021"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":105,"Cost":87,"Date":"2/8/2021"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":58,"Cost":51,"Date":"2/27/2021"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":811,"Cost":663,"Date":"3/1/2021"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":301,"Cost":211,"Date":"3/1/2021"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":33,"Cost":17,"Date":"3/19/2021"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":360,"Cost":248,"Date":"3/28/2021"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":476,"Cost":333,"Date":"5/21/2021"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":922,"Cost":722,"Date":"7/21/2021"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":159,"Cost":112,"Date":"8/5/2021"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":332,"Cost":246,"Date":"8/12/2021"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":598,"Cost":339,"Date":"8/21/2021"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":439,"Cost":294,"Date":"8/23/2021"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":341,"Cost":274,"Date":"9/3/2021"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":649,"Cost":362,"Date":"9/5/2021"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":908,"Cost":532,"Date":"10/6/2021"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":574,"Cost":453,"Date":"10/19/2021"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":788,"Cost":502,"Date":"11/15/2021"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":531,"Cost":486,"Date":"12/8/2021"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":18,"Cost":11,"Date":"1/8/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":30,"Cost":27,"Date":"1/14/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":783,"Cost":642,"Date":"1/19/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":257,"Cost":231,"Date":"1/28/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":524,"Cost":338,"Date":"1/31/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":781,"Cost":506,"Date":"3/27/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":977,"Cost":594,"Date":"4/20/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":388,"Cost":305,"Date":"4/24/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":726,"Cost":468,"Date":"4/28/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":827,"Cost":472,"Date":"5/15/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":144,"Cost":76,"Date":"5/16/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":660,"Cost":476,"Date":"5/18/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":458,"Cost":334,"Date":"6/2/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":628,"Cost":443,"Date":"6/3/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":900,"Cost":694,"Date":"6/5/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":647,"Cost":547,"Date":"6/7/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":319,"Cost":285,"Date":"6/14/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":518,"Cost":456,"Date":"6/20/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":141,"Cost":106,"Date":"6/24/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":663,"Cost":588,"Date":"7/4/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":665,"Cost":617,"Date":"7/9/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":774,"Cost":589,"Date":"7/12/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":403,"Cost":239,"Date":"8/14/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":349,"Cost":210,"Date":"8/16/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":700,"Cost":638,"Date":"8/23/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":634,"Cost":367,"Date":"9/2/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":389,"Cost":364,"Date":"9/3/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":521,"Cost":306,"Date":"9/16/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":510,"Cost":475,"Date":"10/4/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":215,"Cost":125,"Date":"11/1/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":631,"Cost":577,"Date":"11/2/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":589,"Cost":413,"Date":"12/17/2022"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":454,"Cost":311,"Date":"2/10/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":112,"Cost":88,"Date":"2/28/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":156,"Cost":144,"Date":"3/4/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":683,"Cost":630,"Date":"3/9/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":389,"Cost":365,"Date":"3/9/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":31,"Cost":17,"Date":"3/11/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":24,"Cost":22,"Date":"3/17/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":254,"Cost":230,"Date":"3/17/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":132,"Cost":97,"Date":"3/23/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":714,"Cost":633,"Date":"4/1/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":890,"Cost":512,"Date":"5/7/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":649,"Cost":384,"Date":"5/10/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":946,"Cost":784,"Date":"5/20/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":821,"Cost":581,"Date":"6/2/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":883,"Cost":559,"Date":"6/11/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":856,"Cost":623,"Date":"6/16/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":387,"Cost":343,"Date":"6/16/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":742,"Cost":664,"Date":"7/10/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":117,"Cost":59,"Date":"7/11/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":779,"Cost":666,"Date":"8/28/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":752,"Cost":663,"Date":"8/29/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":69,"Cost":34,"Date":"8/31/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":342,"Cost":249,"Date":"9/8/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":168,"Cost":146,"Date":"9/13/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":872,"Cost":483,"Date":"9/14/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":215,"Cost":169,"Date":"9/19/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":589,"Cost":381,"Date":"9/25/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":89,"Cost":70,"Date":"10/4/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":369,"Cost":283,"Date":"10/10/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":124,"Cost":82,"Date":"10/17/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":706,"Cost":474,"Date":"10/28/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":946,"Cost":779,"Date":"10/30/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":401,"Cost":336,"Date":"11/1/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":436,"Cost":351,"Date":"11/15/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":821,"Cost":437,"Date":"11/25/2023"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":356,"Cost":239,"Date":"1/10/2024"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":375,"Cost":247,"Date":"1/14/2024"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":521,"Cost":495,"Date":"1/20/2024"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":707,"Cost":571,"Date":"2/8/2024"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":675,"Cost":554,"Date":"2/25/2024"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":690,"Cost":377,"Date":"3/7/2024"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":611,"Cost":338,"Date":"3/14/2024"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":254,"Cost":149,"Date":"3/27/2024"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":271,"Cost":209,"Date":"4/5/2024"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":969,"Cost":777,"Date":"4/14/2024"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":97,"Cost":75,"Date":"5/3/2024"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":256,"Cost":222,"Date":"5/9/2024"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":909,"Cost":815,"Date":"5/15/2024"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":558,"Cost":441,"Date":"5/25/2024"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":836,"Cost":622,"Date":"5/26/2024"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":469,"Cost":438,"Date":"5/31/2024"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":343,"Cost":219,"Date":"7/27/2024"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":390,"Cost":216,"Date":"9/17/2024"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":996,"Cost":656,"Date":"10/6/2024"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":138,"Cost":124,"Date":"10/8/2024"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":931,"Cost":557,"Date":"10/26/2024"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":18,"Cost":11,"Date":"11/16/2024"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":327,"Cost":241,"Date":"11/18/2024"},{"Store":"Vratsa Mall","Brand":"HM Home","Country":"Bulgaria","Sale":342,"Cost":184,"Date":"12/1/2024"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":86,"Cost":52,"Date":"2/9/2018"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":359,"Cost":244,"Date":"2/11/2018"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":611,"Cost":461,"Date":"3/10/2018"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":588,"Cost":405,"Date":"3/16/2018"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":1,"Cost":0,"Date":"3/18/2018"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":689,"Cost":466,"Date":"3/20/2018"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":180,"Cost":95,"Date":"3/26/2018"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":852,"Cost":514,"Date":"6/2/2018"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":391,"Cost":221,"Date":"6/10/2018"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":432,"Cost":249,"Date":"6/16/2018"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":9,"Cost":4,"Date":"6/25/2018"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":516,"Cost":375,"Date":"7/19/2018"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":639,"Cost":372,"Date":"7/21/2018"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":168,"Cost":131,"Date":"7/25/2018"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":776,"Cost":668,"Date":"8/4/2018"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":694,"Cost":579,"Date":"9/2/2018"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":2,"Cost":2,"Date":"9/4/2018"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":635,"Cost":535,"Date":"9/19/2018"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":157,"Cost":80,"Date":"9/29/2018"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":696,"Cost":377,"Date":"10/2/2018"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":31,"Cost":20,"Date":"10/15/2018"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":459,"Cost":352,"Date":"10/30/2018"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":139,"Cost":73,"Date":"11/9/2018"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":547,"Cost":474,"Date":"11/23/2018"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":613,"Cost":312,"Date":"11/30/2018"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":361,"Cost":266,"Date":"12/8/2018"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":767,"Cost":685,"Date":"12/11/2018"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":825,"Cost":500,"Date":"1/15/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":734,"Cost":430,"Date":"1/24/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":863,"Cost":744,"Date":"2/3/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":538,"Cost":311,"Date":"2/4/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":74,"Cost":49,"Date":"3/9/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":819,"Cost":561,"Date":"3/12/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":178,"Cost":116,"Date":"4/19/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":594,"Cost":333,"Date":"5/3/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":297,"Cost":211,"Date":"5/4/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":598,"Cost":435,"Date":"6/8/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":843,"Cost":430,"Date":"6/26/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":258,"Cost":218,"Date":"7/4/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":280,"Cost":179,"Date":"7/13/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":260,"Cost":175,"Date":"8/8/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":316,"Cost":265,"Date":"8/26/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":869,"Cost":698,"Date":"9/2/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":896,"Cost":848,"Date":"9/29/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":885,"Cost":743,"Date":"10/12/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":573,"Cost":510,"Date":"11/2/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":195,"Cost":117,"Date":"11/4/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":803,"Cost":527,"Date":"11/7/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":233,"Cost":159,"Date":"12/1/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":447,"Cost":333,"Date":"12/4/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":317,"Cost":215,"Date":"12/7/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":581,"Cost":545,"Date":"12/18/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":927,"Cost":696,"Date":"12/20/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":732,"Cost":382,"Date":"12/20/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":237,"Cost":218,"Date":"12/21/2019"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":799,"Cost":555,"Date":"1/9/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":267,"Cost":146,"Date":"2/5/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":519,"Cost":372,"Date":"2/16/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":540,"Cost":482,"Date":"2/16/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":465,"Cost":400,"Date":"2/18/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":31,"Cost":16,"Date":"2/22/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":505,"Cost":355,"Date":"2/25/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":649,"Cost":406,"Date":"3/8/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":131,"Cost":89,"Date":"4/2/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":958,"Cost":521,"Date":"4/3/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":515,"Cost":378,"Date":"4/9/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":702,"Cost":469,"Date":"4/10/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":611,"Cost":427,"Date":"4/19/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":52,"Cost":32,"Date":"5/17/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":275,"Cost":213,"Date":"5/22/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":607,"Cost":344,"Date":"6/20/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":132,"Cost":84,"Date":"7/1/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":75,"Cost":61,"Date":"7/4/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":244,"Cost":181,"Date":"7/8/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":578,"Cost":382,"Date":"7/9/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":705,"Cost":526,"Date":"7/14/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":943,"Cost":855,"Date":"7/19/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":304,"Cost":253,"Date":"8/1/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":872,"Cost":688,"Date":"8/6/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":492,"Cost":407,"Date":"8/7/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":68,"Cost":62,"Date":"8/22/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":106,"Cost":66,"Date":"8/31/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":445,"Cost":327,"Date":"9/1/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":56,"Cost":29,"Date":"9/1/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":258,"Cost":154,"Date":"9/17/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":563,"Cost":368,"Date":"9/29/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":241,"Cost":164,"Date":"11/7/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":257,"Cost":167,"Date":"11/26/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":179,"Cost":93,"Date":"11/27/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":37,"Cost":21,"Date":"12/5/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":996,"Cost":890,"Date":"12/26/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":395,"Cost":363,"Date":"12/31/2020"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":368,"Cost":330,"Date":"1/20/2021"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":986,"Cost":629,"Date":"2/2/2021"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":796,"Cost":631,"Date":"2/8/2021"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":146,"Cost":98,"Date":"2/27/2021"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":233,"Cost":137,"Date":"3/1/2021"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":511,"Cost":426,"Date":"3/1/2021"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":194,"Cost":129,"Date":"3/19/2021"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":220,"Cost":181,"Date":"3/28/2021"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":858,"Cost":440,"Date":"5/21/2021"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":202,"Cost":169,"Date":"7/21/2021"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":726,"Cost":580,"Date":"8/5/2021"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":955,"Cost":773,"Date":"8/12/2021"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":610,"Cost":330,"Date":"8/21/2021"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":742,"Cost":481,"Date":"8/23/2021"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":48,"Cost":25,"Date":"9/3/2021"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":215,"Cost":159,"Date":"9/5/2021"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":506,"Cost":387,"Date":"10/6/2021"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":143,"Cost":81,"Date":"10/19/2021"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":139,"Cost":94,"Date":"11/15/2021"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":154,"Cost":132,"Date":"12/8/2021"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":126,"Cost":105,"Date":"1/8/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":930,"Cost":649,"Date":"1/14/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":908,"Cost":647,"Date":"1/19/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":825,"Cost":453,"Date":"1/28/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":185,"Cost":159,"Date":"1/31/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":41,"Cost":34,"Date":"3/27/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":805,"Cost":721,"Date":"4/20/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":539,"Cost":359,"Date":"4/24/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":302,"Cost":246,"Date":"4/28/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":656,"Cost":577,"Date":"5/15/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":243,"Cost":138,"Date":"5/16/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":155,"Cost":113,"Date":"5/18/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":632,"Cost":523,"Date":"6/2/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":293,"Cost":265,"Date":"6/3/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":831,"Cost":604,"Date":"6/5/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":779,"Cost":720,"Date":"6/7/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":312,"Cost":274,"Date":"6/14/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":904,"Cost":523,"Date":"6/20/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":13,"Cost":7,"Date":"6/24/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":366,"Cost":307,"Date":"7/4/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":802,"Cost":657,"Date":"7/9/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":158,"Cost":114,"Date":"7/12/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":284,"Cost":192,"Date":"8/14/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":17,"Cost":11,"Date":"8/16/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":663,"Cost":485,"Date":"8/23/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":831,"Cost":467,"Date":"9/2/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":704,"Cost":471,"Date":"9/3/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":834,"Cost":701,"Date":"9/16/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":722,"Cost":428,"Date":"10/4/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":485,"Cost":323,"Date":"11/1/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":844,"Cost":729,"Date":"11/2/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":262,"Cost":244,"Date":"12/17/2022"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":734,"Cost":390,"Date":"2/10/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":915,"Cost":470,"Date":"2/28/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":609,"Cost":385,"Date":"3/4/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":337,"Cost":223,"Date":"3/9/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":389,"Cost":257,"Date":"3/9/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":962,"Cost":541,"Date":"3/11/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":158,"Cost":85,"Date":"3/17/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":928,"Cost":846,"Date":"3/17/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":903,"Cost":523,"Date":"3/23/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":785,"Cost":516,"Date":"4/1/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":240,"Cost":182,"Date":"5/7/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":834,"Cost":424,"Date":"5/10/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":472,"Cost":348,"Date":"5/20/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":349,"Cost":301,"Date":"6/2/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":294,"Cost":226,"Date":"6/11/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":618,"Cost":580,"Date":"6/16/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":174,"Cost":146,"Date":"6/16/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":203,"Cost":102,"Date":"7/10/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":235,"Cost":190,"Date":"7/11/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":278,"Cost":194,"Date":"8/28/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":322,"Cost":180,"Date":"8/29/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":501,"Cost":371,"Date":"8/31/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":69,"Cost":45,"Date":"9/8/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":469,"Cost":256,"Date":"9/13/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":363,"Cost":265,"Date":"9/14/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":974,"Cost":898,"Date":"9/19/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":136,"Cost":123,"Date":"9/25/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":542,"Cost":287,"Date":"10/4/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":484,"Cost":350,"Date":"10/10/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":454,"Cost":414,"Date":"10/17/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":143,"Cost":121,"Date":"10/28/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":854,"Cost":783,"Date":"10/30/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":920,"Cost":532,"Date":"11/1/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":890,"Cost":565,"Date":"11/15/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":111,"Cost":92,"Date":"11/25/2023"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":228,"Cost":157,"Date":"1/10/2024"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":338,"Cost":172,"Date":"1/14/2024"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":765,"Cost":658,"Date":"1/20/2024"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":564,"Cost":317,"Date":"2/8/2024"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":295,"Cost":209,"Date":"2/25/2024"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":382,"Cost":315,"Date":"3/7/2024"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":862,"Cost":545,"Date":"3/14/2024"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":930,"Cost":748,"Date":"3/27/2024"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":169,"Cost":112,"Date":"4/5/2024"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":417,"Cost":326,"Date":"4/14/2024"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":456,"Cost":402,"Date":"5/3/2024"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":471,"Cost":361,"Date":"5/9/2024"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":785,"Cost":576,"Date":"5/15/2024"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":857,"Cost":663,"Date":"5/25/2024"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":360,"Cost":204,"Date":"5/26/2024"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":579,"Cost":539,"Date":"5/31/2024"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":701,"Cost":570,"Date":"7/27/2024"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":953,"Cost":826,"Date":"9/17/2024"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":476,"Cost":367,"Date":"10/6/2024"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":892,"Cost":810,"Date":"10/8/2024"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":992,"Cost":541,"Date":"10/26/2024"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":29,"Cost":14,"Date":"11/16/2024"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":163,"Cost":131,"Date":"11/18/2024"},{"Store":"Vratsa Mall","Brand":"Nova","Country":"Bulgaria","Sale":901,"Cost":521,"Date":"12/1/2024"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":553,"Cost":417,"Date":"2/9/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":83,"Cost":71,"Date":"2/11/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":514,"Cost":416,"Date":"3/10/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":121,"Cost":70,"Date":"3/16/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":203,"Cost":191,"Date":"3/18/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":179,"Cost":152,"Date":"3/20/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":417,"Cost":328,"Date":"3/26/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":759,"Cost":509,"Date":"6/2/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":400,"Cost":320,"Date":"6/10/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":399,"Cost":324,"Date":"6/16/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":359,"Cost":298,"Date":"6/25/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":538,"Cost":272,"Date":"7/19/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":732,"Cost":575,"Date":"7/21/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":381,"Cost":260,"Date":"7/25/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":226,"Cost":120,"Date":"8/4/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":142,"Cost":101,"Date":"9/2/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":211,"Cost":192,"Date":"9/4/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":742,"Cost":665,"Date":"9/19/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":698,"Cost":631,"Date":"9/29/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":120,"Cost":62,"Date":"10/2/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":633,"Cost":336,"Date":"10/15/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":52,"Cost":43,"Date":"10/30/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":584,"Cost":410,"Date":"11/9/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":775,"Cost":628,"Date":"11/23/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":138,"Cost":119,"Date":"11/30/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":581,"Cost":400,"Date":"12/8/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":254,"Cost":181,"Date":"12/11/2018"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":656,"Cost":390,"Date":"1/15/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":69,"Cost":46,"Date":"1/24/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":909,"Cost":555,"Date":"2/3/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":632,"Cost":394,"Date":"2/4/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":566,"Cost":431,"Date":"3/9/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":709,"Cost":361,"Date":"3/12/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":981,"Cost":895,"Date":"4/19/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":744,"Cost":656,"Date":"5/3/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":387,"Cost":330,"Date":"5/4/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":651,"Cost":463,"Date":"6/8/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":143,"Cost":78,"Date":"6/26/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":673,"Cost":542,"Date":"7/4/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":365,"Cost":238,"Date":"7/13/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":186,"Cost":173,"Date":"8/8/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":334,"Cost":197,"Date":"8/26/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":659,"Cost":478,"Date":"9/2/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":405,"Cost":261,"Date":"9/29/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":721,"Cost":520,"Date":"10/12/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":131,"Cost":96,"Date":"11/2/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":110,"Cost":92,"Date":"11/4/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":173,"Cost":125,"Date":"11/7/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":244,"Cost":157,"Date":"12/1/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":987,"Cost":705,"Date":"12/4/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":4,"Cost":3,"Date":"12/7/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":338,"Cost":225,"Date":"12/18/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":60,"Cost":54,"Date":"12/20/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":907,"Cost":521,"Date":"12/20/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":992,"Cost":663,"Date":"12/21/2019"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":545,"Cost":477,"Date":"1/9/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":137,"Cost":70,"Date":"2/5/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":502,"Cost":441,"Date":"2/16/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":848,"Cost":591,"Date":"2/16/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":645,"Cost":523,"Date":"2/18/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":866,"Cost":722,"Date":"2/22/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":943,"Cost":585,"Date":"2/25/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":859,"Cost":494,"Date":"3/8/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":677,"Cost":552,"Date":"4/2/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":875,"Cost":575,"Date":"4/3/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":351,"Cost":331,"Date":"4/9/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":458,"Cost":357,"Date":"4/10/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":288,"Cost":153,"Date":"4/19/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":996,"Cost":823,"Date":"5/17/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":551,"Cost":285,"Date":"5/22/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":646,"Cost":507,"Date":"6/20/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":919,"Cost":469,"Date":"7/1/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":467,"Cost":431,"Date":"7/4/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":572,"Cost":390,"Date":"7/8/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":220,"Cost":204,"Date":"7/9/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":477,"Cost":329,"Date":"7/14/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":551,"Cost":349,"Date":"7/19/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":281,"Cost":217,"Date":"8/1/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":489,"Cost":367,"Date":"8/6/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":642,"Cost":388,"Date":"8/7/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":901,"Cost":781,"Date":"8/22/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":87,"Cost":68,"Date":"8/31/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":980,"Cost":724,"Date":"9/1/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":177,"Cost":105,"Date":"9/1/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":228,"Cost":201,"Date":"9/17/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":754,"Cost":577,"Date":"9/29/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":528,"Cost":489,"Date":"11/7/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":464,"Cost":310,"Date":"11/26/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":870,"Cost":689,"Date":"11/27/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":429,"Cost":216,"Date":"12/5/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":889,"Cost":472,"Date":"12/26/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":308,"Cost":216,"Date":"12/31/2020"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":63,"Cost":47,"Date":"1/20/2021"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":310,"Cost":182,"Date":"2/2/2021"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":185,"Cost":158,"Date":"2/8/2021"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":196,"Cost":148,"Date":"2/27/2021"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":828,"Cost":500,"Date":"3/1/2021"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":756,"Cost":585,"Date":"3/1/2021"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":587,"Cost":314,"Date":"3/19/2021"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":327,"Cost":164,"Date":"3/28/2021"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":191,"Cost":130,"Date":"5/21/2021"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":251,"Cost":174,"Date":"7/21/2021"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":58,"Cost":34,"Date":"8/5/2021"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":953,"Cost":586,"Date":"8/12/2021"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":962,"Cost":692,"Date":"8/21/2021"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":375,"Cost":203,"Date":"8/23/2021"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":743,"Cost":700,"Date":"9/3/2021"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":654,"Cost":353,"Date":"9/5/2021"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":505,"Cost":426,"Date":"10/6/2021"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":916,"Cost":539,"Date":"10/19/2021"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":143,"Cost":88,"Date":"11/15/2021"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":612,"Cost":533,"Date":"12/8/2021"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":362,"Cost":232,"Date":"1/8/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":155,"Cost":77,"Date":"1/14/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":367,"Cost":237,"Date":"1/19/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":181,"Cost":160,"Date":"1/28/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":811,"Cost":518,"Date":"1/31/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":739,"Cost":648,"Date":"3/27/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":616,"Cost":392,"Date":"4/20/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":553,"Cost":396,"Date":"4/24/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":595,"Cost":337,"Date":"4/28/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":279,"Cost":177,"Date":"5/15/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":589,"Cost":336,"Date":"5/16/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":714,"Cost":677,"Date":"5/18/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":818,"Cost":741,"Date":"6/2/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":782,"Cost":478,"Date":"6/3/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":702,"Cost":367,"Date":"6/5/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":395,"Cost":231,"Date":"6/7/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":762,"Cost":661,"Date":"6/14/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":294,"Cost":198,"Date":"6/20/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":738,"Cost":463,"Date":"6/24/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":347,"Cost":203,"Date":"7/4/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":55,"Cost":38,"Date":"7/9/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":330,"Cost":171,"Date":"7/12/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":673,"Cost":431,"Date":"8/14/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":364,"Cost":273,"Date":"8/16/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":251,"Cost":231,"Date":"8/23/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":226,"Cost":136,"Date":"9/2/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":925,"Cost":751,"Date":"9/3/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":287,"Cost":147,"Date":"9/16/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":497,"Cost":369,"Date":"10/4/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":859,"Cost":716,"Date":"11/1/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":697,"Cost":368,"Date":"11/2/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":820,"Cost":489,"Date":"12/17/2022"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":632,"Cost":549,"Date":"2/10/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":795,"Cost":530,"Date":"2/28/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":324,"Cost":202,"Date":"3/4/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":423,"Cost":311,"Date":"3/9/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":768,"Cost":545,"Date":"3/9/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":918,"Cost":459,"Date":"3/11/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":548,"Cost":423,"Date":"3/17/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":853,"Cost":538,"Date":"3/17/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":570,"Cost":462,"Date":"3/23/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":694,"Cost":431,"Date":"4/1/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":259,"Cost":161,"Date":"5/7/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":839,"Cost":700,"Date":"5/10/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":1000,"Cost":821,"Date":"5/20/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":663,"Cost":487,"Date":"6/2/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":333,"Cost":285,"Date":"6/11/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":545,"Cost":382,"Date":"6/16/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":374,"Cost":206,"Date":"6/16/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":681,"Cost":398,"Date":"7/10/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":855,"Cost":475,"Date":"7/11/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":531,"Cost":501,"Date":"8/28/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":484,"Cost":336,"Date":"8/29/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":382,"Cost":322,"Date":"8/31/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":689,"Cost":562,"Date":"9/8/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":32,"Cost":25,"Date":"9/13/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":933,"Cost":783,"Date":"9/14/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":477,"Cost":244,"Date":"9/19/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":622,"Cost":458,"Date":"9/25/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":645,"Cost":326,"Date":"10/4/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":168,"Cost":156,"Date":"10/10/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":401,"Cost":355,"Date":"10/17/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":385,"Cost":347,"Date":"10/28/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":372,"Cost":279,"Date":"10/30/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":703,"Cost":477,"Date":"11/1/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":587,"Cost":430,"Date":"11/15/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":878,"Cost":473,"Date":"11/25/2023"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":232,"Cost":158,"Date":"1/10/2024"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":616,"Cost":349,"Date":"1/14/2024"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":300,"Cost":221,"Date":"1/20/2024"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":26,"Cost":23,"Date":"2/8/2024"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":422,"Cost":320,"Date":"2/25/2024"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":297,"Cost":245,"Date":"3/7/2024"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":288,"Cost":196,"Date":"3/14/2024"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":179,"Cost":153,"Date":"3/27/2024"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":676,"Cost":378,"Date":"4/5/2024"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":111,"Cost":92,"Date":"4/14/2024"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":544,"Cost":338,"Date":"5/3/2024"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":199,"Cost":168,"Date":"5/9/2024"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":128,"Cost":112,"Date":"5/15/2024"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":560,"Cost":361,"Date":"5/25/2024"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":756,"Cost":595,"Date":"5/26/2024"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":162,"Cost":84,"Date":"5/31/2024"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":482,"Cost":351,"Date":"7/27/2024"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":661,"Cost":452,"Date":"9/17/2024"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":254,"Cost":216,"Date":"10/6/2024"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":445,"Cost":350,"Date":"10/8/2024"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":771,"Cost":586,"Date":"10/26/2024"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":120,"Cost":82,"Date":"11/16/2024"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":104,"Cost":64,"Date":"11/18/2024"},{"Store":"Vratsa Mall","Brand":"COS","Country":"Bulgaria","Sale":219,"Cost":122,"Date":"12/1/2024"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":620,"Cost":420,"Date":"2/9/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":862,"Cost":732,"Date":"2/11/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":444,"Cost":291,"Date":"3/10/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":186,"Cost":160,"Date":"3/16/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":435,"Cost":376,"Date":"3/18/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":28,"Cost":15,"Date":"3/20/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":918,"Cost":693,"Date":"3/26/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":222,"Cost":153,"Date":"6/2/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":75,"Cost":54,"Date":"6/10/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":509,"Cost":405,"Date":"6/16/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":148,"Cost":93,"Date":"6/25/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":926,"Cost":539,"Date":"7/19/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":378,"Cost":224,"Date":"7/21/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":57,"Cost":54,"Date":"7/25/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":80,"Cost":61,"Date":"8/4/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":922,"Cost":574,"Date":"9/2/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":571,"Cost":472,"Date":"9/4/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":135,"Cost":89,"Date":"9/19/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":584,"Cost":321,"Date":"9/29/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":803,"Cost":738,"Date":"10/2/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":639,"Cost":451,"Date":"10/15/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":742,"Cost":389,"Date":"10/30/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":160,"Cost":94,"Date":"11/9/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":188,"Cost":135,"Date":"11/23/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":901,"Cost":718,"Date":"11/30/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":159,"Cost":119,"Date":"12/8/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":366,"Cost":337,"Date":"12/11/2018"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":300,"Cost":174,"Date":"1/15/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":747,"Cost":380,"Date":"1/24/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":284,"Cost":267,"Date":"2/3/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":236,"Cost":131,"Date":"2/4/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":796,"Cost":429,"Date":"3/9/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":595,"Cost":308,"Date":"3/12/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":564,"Cost":530,"Date":"4/19/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":856,"Cost":752,"Date":"5/3/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":886,"Cost":653,"Date":"5/4/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":315,"Cost":181,"Date":"6/8/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":228,"Cost":178,"Date":"6/26/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":3,"Cost":3,"Date":"7/4/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":186,"Cost":95,"Date":"7/13/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":854,"Cost":598,"Date":"8/8/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":394,"Cost":304,"Date":"8/26/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":533,"Cost":343,"Date":"9/2/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":529,"Cost":473,"Date":"9/29/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":660,"Cost":557,"Date":"10/12/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":357,"Cost":307,"Date":"11/2/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":137,"Cost":79,"Date":"11/4/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":513,"Cost":454,"Date":"11/7/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":933,"Cost":839,"Date":"12/1/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":98,"Cost":79,"Date":"12/4/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":402,"Cost":201,"Date":"12/7/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":238,"Cost":133,"Date":"12/18/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":867,"Cost":598,"Date":"12/20/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":840,"Cost":640,"Date":"12/20/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":320,"Cost":210,"Date":"12/21/2019"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":632,"Cost":407,"Date":"1/9/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":746,"Cost":638,"Date":"2/5/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":942,"Cost":724,"Date":"2/16/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":372,"Cost":310,"Date":"2/16/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":330,"Cost":213,"Date":"2/18/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":988,"Cost":787,"Date":"2/22/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":360,"Cost":265,"Date":"2/25/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":17,"Cost":14,"Date":"3/8/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":85,"Cost":65,"Date":"4/2/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":631,"Cost":352,"Date":"4/3/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":386,"Cost":230,"Date":"4/9/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":263,"Cost":219,"Date":"4/10/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":383,"Cost":281,"Date":"4/19/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":985,"Cost":821,"Date":"5/17/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":688,"Cost":484,"Date":"5/22/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":481,"Cost":278,"Date":"6/20/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":700,"Cost":645,"Date":"7/1/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":583,"Cost":451,"Date":"7/4/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":329,"Cost":301,"Date":"7/8/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":66,"Cost":60,"Date":"7/9/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":530,"Cost":271,"Date":"7/14/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":208,"Cost":185,"Date":"7/19/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":480,"Cost":413,"Date":"8/1/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":450,"Cost":255,"Date":"8/6/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":72,"Cost":62,"Date":"8/7/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":91,"Cost":79,"Date":"8/22/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":665,"Cost":396,"Date":"8/31/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":223,"Cost":202,"Date":"9/1/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":704,"Cost":569,"Date":"9/1/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":334,"Cost":241,"Date":"9/17/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":778,"Cost":479,"Date":"9/29/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":605,"Cost":394,"Date":"11/7/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":118,"Cost":107,"Date":"11/26/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":22,"Cost":19,"Date":"11/27/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":951,"Cost":693,"Date":"12/5/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":823,"Cost":420,"Date":"12/26/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":459,"Cost":335,"Date":"12/31/2020"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":961,"Cost":716,"Date":"1/20/2021"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":335,"Cost":180,"Date":"2/2/2021"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":750,"Cost":555,"Date":"2/8/2021"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":603,"Cost":379,"Date":"2/27/2021"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":318,"Cost":166,"Date":"3/1/2021"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":910,"Cost":633,"Date":"3/1/2021"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":15,"Cost":10,"Date":"3/19/2021"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":372,"Cost":237,"Date":"3/28/2021"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":700,"Cost":430,"Date":"5/21/2021"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":338,"Cost":238,"Date":"7/21/2021"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":385,"Cost":342,"Date":"8/5/2021"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":849,"Cost":485,"Date":"8/12/2021"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":194,"Cost":164,"Date":"8/21/2021"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":752,"Cost":649,"Date":"8/23/2021"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":214,"Cost":178,"Date":"9/3/2021"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":238,"Cost":184,"Date":"9/5/2021"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":661,"Cost":452,"Date":"10/6/2021"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":768,"Cost":386,"Date":"10/19/2021"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":376,"Cost":240,"Date":"11/15/2021"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":914,"Cost":793,"Date":"12/8/2021"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":963,"Cost":863,"Date":"1/8/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":646,"Cost":485,"Date":"1/14/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":6,"Cost":6,"Date":"1/19/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":815,"Cost":640,"Date":"1/28/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":244,"Cost":216,"Date":"1/31/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":235,"Cost":153,"Date":"3/27/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":683,"Cost":492,"Date":"4/20/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":351,"Cost":306,"Date":"4/24/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":756,"Cost":526,"Date":"4/28/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":60,"Cost":36,"Date":"5/15/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":172,"Cost":112,"Date":"5/16/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":381,"Cost":199,"Date":"5/18/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":896,"Cost":612,"Date":"6/2/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":361,"Cost":224,"Date":"6/3/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":950,"Cost":871,"Date":"6/5/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":412,"Cost":344,"Date":"6/7/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":191,"Cost":164,"Date":"6/14/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":497,"Cost":292,"Date":"6/20/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":685,"Cost":349,"Date":"6/24/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":535,"Cost":435,"Date":"7/4/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":276,"Cost":212,"Date":"7/9/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":192,"Cost":147,"Date":"7/12/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":748,"Cost":419,"Date":"8/14/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":9,"Cost":6,"Date":"8/16/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":346,"Cost":243,"Date":"8/23/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":155,"Cost":118,"Date":"9/2/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":25,"Cost":20,"Date":"9/3/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":723,"Cost":459,"Date":"9/16/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":3,"Cost":3,"Date":"10/4/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":30,"Cost":18,"Date":"11/1/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":276,"Cost":178,"Date":"11/2/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":99,"Cost":75,"Date":"12/17/2022"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":121,"Cost":73,"Date":"2/10/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":93,"Cost":65,"Date":"2/28/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":969,"Cost":741,"Date":"3/4/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":959,"Cost":840,"Date":"3/9/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":620,"Cost":525,"Date":"3/9/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":745,"Cost":657,"Date":"3/11/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":973,"Cost":685,"Date":"3/17/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":719,"Cost":373,"Date":"3/17/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":111,"Cost":56,"Date":"3/23/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":667,"Cost":565,"Date":"4/1/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":169,"Cost":139,"Date":"5/7/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":622,"Cost":348,"Date":"5/10/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":313,"Cost":298,"Date":"5/20/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":659,"Cost":496,"Date":"6/2/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":151,"Cost":89,"Date":"6/11/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":976,"Cost":752,"Date":"6/16/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":514,"Cost":479,"Date":"6/16/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":719,"Cost":375,"Date":"7/10/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":668,"Cost":568,"Date":"7/11/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":860,"Cost":580,"Date":"8/28/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":157,"Cost":137,"Date":"8/29/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":744,"Cost":566,"Date":"8/31/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":401,"Cost":353,"Date":"9/8/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":165,"Cost":91,"Date":"9/13/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":808,"Cost":542,"Date":"9/14/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":232,"Cost":195,"Date":"9/19/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":757,"Cost":486,"Date":"9/25/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":945,"Cost":504,"Date":"10/4/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":902,"Cost":587,"Date":"10/10/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":782,"Cost":441,"Date":"10/17/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":487,"Cost":401,"Date":"10/28/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":939,"Cost":572,"Date":"10/30/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":228,"Cost":150,"Date":"11/1/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":607,"Cost":403,"Date":"11/15/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":443,"Cost":326,"Date":"11/25/2023"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":398,"Cost":341,"Date":"1/10/2024"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":805,"Cost":448,"Date":"1/14/2024"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":117,"Cost":64,"Date":"1/20/2024"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":446,"Cost":380,"Date":"2/8/2024"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":509,"Cost":350,"Date":"2/25/2024"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":759,"Cost":670,"Date":"3/7/2024"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":671,"Cost":488,"Date":"3/14/2024"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":998,"Cost":920,"Date":"3/27/2024"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":859,"Cost":646,"Date":"4/5/2024"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":476,"Cost":331,"Date":"4/14/2024"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":786,"Cost":704,"Date":"5/3/2024"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":902,"Cost":461,"Date":"5/9/2024"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":963,"Cost":678,"Date":"5/15/2024"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":263,"Cost":180,"Date":"5/25/2024"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":747,"Cost":509,"Date":"5/26/2024"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":900,"Cost":804,"Date":"5/31/2024"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":590,"Cost":513,"Date":"7/27/2024"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":697,"Cost":517,"Date":"9/17/2024"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":787,"Cost":452,"Date":"10/6/2024"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":2,"Cost":1,"Date":"10/8/2024"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":204,"Cost":121,"Date":"10/26/2024"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":417,"Cost":349,"Date":"11/16/2024"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":125,"Cost":115,"Date":"11/18/2024"},{"Store":"City2, Brussels","Brand":"HM","Country":"Belgium","Sale":384,"Cost":334,"Date":"12/1/2024"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":303,"Cost":197,"Date":"2/9/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":38,"Cost":31,"Date":"2/11/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":893,"Cost":710,"Date":"3/10/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":422,"Cost":268,"Date":"3/16/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":2,"Cost":1,"Date":"3/18/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":351,"Cost":291,"Date":"3/20/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":648,"Cost":544,"Date":"3/26/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":238,"Cost":153,"Date":"6/2/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":983,"Cost":700,"Date":"6/10/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":863,"Cost":769,"Date":"6/16/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":521,"Cost":418,"Date":"6/25/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":34,"Cost":17,"Date":"7/19/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":984,"Cost":638,"Date":"7/21/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":716,"Cost":418,"Date":"7/25/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":247,"Cost":167,"Date":"8/4/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":662,"Cost":409,"Date":"9/2/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":639,"Cost":524,"Date":"9/4/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":444,"Cost":366,"Date":"9/19/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":815,"Cost":702,"Date":"9/29/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":436,"Cost":247,"Date":"10/2/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":479,"Cost":389,"Date":"10/15/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":622,"Cost":336,"Date":"10/30/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":265,"Cost":222,"Date":"11/9/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":315,"Cost":157,"Date":"11/23/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":590,"Cost":377,"Date":"11/30/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":81,"Cost":71,"Date":"12/8/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":159,"Cost":135,"Date":"12/11/2018"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":406,"Cost":230,"Date":"1/15/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":9,"Cost":8,"Date":"1/24/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":855,"Cost":540,"Date":"2/3/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":220,"Cost":118,"Date":"2/4/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":65,"Cost":45,"Date":"3/9/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":996,"Cost":800,"Date":"3/12/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":822,"Cost":579,"Date":"4/19/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":794,"Cost":591,"Date":"5/3/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":455,"Cost":353,"Date":"5/4/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":576,"Cost":481,"Date":"6/8/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":823,"Cost":706,"Date":"6/26/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":925,"Cost":472,"Date":"7/4/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":726,"Cost":464,"Date":"7/13/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":162,"Cost":144,"Date":"8/8/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":262,"Cost":248,"Date":"8/26/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":249,"Cost":173,"Date":"9/2/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":395,"Cost":278,"Date":"9/29/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":198,"Cost":178,"Date":"10/12/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":222,"Cost":157,"Date":"11/2/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":21,"Cost":10,"Date":"11/4/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":430,"Cost":408,"Date":"11/7/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":250,"Cost":209,"Date":"12/1/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":551,"Cost":319,"Date":"12/4/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":335,"Cost":218,"Date":"12/7/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":135,"Cost":101,"Date":"12/18/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":258,"Cost":133,"Date":"12/20/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":266,"Cost":175,"Date":"12/20/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":883,"Cost":723,"Date":"12/21/2019"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":498,"Cost":383,"Date":"1/9/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":449,"Cost":272,"Date":"2/5/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":856,"Cost":530,"Date":"2/16/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":146,"Cost":116,"Date":"2/16/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":970,"Cost":777,"Date":"2/18/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":796,"Cost":450,"Date":"2/22/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":660,"Cost":481,"Date":"2/25/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":930,"Cost":875,"Date":"3/8/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":193,"Cost":109,"Date":"4/2/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":486,"Cost":343,"Date":"4/3/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":33,"Cost":18,"Date":"4/9/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":17,"Cost":11,"Date":"4/10/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":422,"Cost":251,"Date":"4/19/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":661,"Cost":594,"Date":"5/17/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":942,"Cost":784,"Date":"5/22/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":556,"Cost":318,"Date":"6/20/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":16,"Cost":11,"Date":"7/1/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":944,"Cost":740,"Date":"7/4/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":707,"Cost":472,"Date":"7/8/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":349,"Cost":209,"Date":"7/9/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":32,"Cost":17,"Date":"7/14/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":91,"Cost":58,"Date":"7/19/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":477,"Cost":389,"Date":"8/1/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":76,"Cost":58,"Date":"8/6/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":842,"Cost":739,"Date":"8/7/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":701,"Cost":364,"Date":"8/22/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":861,"Cost":570,"Date":"8/31/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":687,"Cost":627,"Date":"9/1/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":45,"Cost":25,"Date":"9/1/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":627,"Cost":446,"Date":"9/17/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":514,"Cost":450,"Date":"9/29/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":226,"Cost":173,"Date":"11/7/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":123,"Cost":81,"Date":"11/26/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":634,"Cost":382,"Date":"11/27/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":559,"Cost":496,"Date":"12/5/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":905,"Cost":835,"Date":"12/26/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":992,"Cost":728,"Date":"12/31/2020"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":874,"Cost":683,"Date":"1/20/2021"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":66,"Cost":38,"Date":"2/2/2021"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":319,"Cost":262,"Date":"2/8/2021"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":474,"Cost":247,"Date":"2/27/2021"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":589,"Cost":331,"Date":"3/1/2021"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":797,"Cost":680,"Date":"3/1/2021"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":713,"Cost":613,"Date":"3/19/2021"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":526,"Cost":272,"Date":"3/28/2021"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":238,"Cost":138,"Date":"5/21/2021"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":707,"Cost":656,"Date":"7/21/2021"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":196,"Cost":146,"Date":"8/5/2021"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":232,"Cost":129,"Date":"8/12/2021"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":818,"Cost":454,"Date":"8/21/2021"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":86,"Cost":44,"Date":"8/23/2021"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":52,"Cost":34,"Date":"9/3/2021"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":867,"Cost":641,"Date":"9/5/2021"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":659,"Cost":515,"Date":"10/6/2021"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":276,"Cost":255,"Date":"10/19/2021"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":409,"Cost":302,"Date":"11/15/2021"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":322,"Cost":199,"Date":"12/8/2021"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":267,"Cost":141,"Date":"1/8/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":59,"Cost":38,"Date":"1/14/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":675,"Cost":528,"Date":"1/19/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":36,"Cost":24,"Date":"1/28/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":126,"Cost":68,"Date":"1/31/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":542,"Cost":424,"Date":"3/27/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":165,"Cost":119,"Date":"4/20/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":153,"Cost":80,"Date":"4/24/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":998,"Cost":692,"Date":"4/28/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":629,"Cost":376,"Date":"5/15/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":730,"Cost":548,"Date":"5/16/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":164,"Cost":117,"Date":"5/18/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":592,"Cost":327,"Date":"6/2/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":476,"Cost":250,"Date":"6/3/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":970,"Cost":825,"Date":"6/5/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":923,"Cost":803,"Date":"6/7/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":494,"Cost":283,"Date":"6/14/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":414,"Cost":300,"Date":"6/20/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":377,"Cost":345,"Date":"6/24/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":356,"Cost":269,"Date":"7/4/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":167,"Cost":142,"Date":"7/9/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":679,"Cost":429,"Date":"7/12/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":911,"Cost":562,"Date":"8/14/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":562,"Cost":480,"Date":"8/16/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":101,"Cost":56,"Date":"8/23/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":231,"Cost":203,"Date":"9/2/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":848,"Cost":746,"Date":"9/3/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":19,"Cost":13,"Date":"9/16/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":407,"Cost":312,"Date":"10/4/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":888,"Cost":614,"Date":"11/1/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":778,"Cost":464,"Date":"11/2/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":536,"Cost":470,"Date":"12/17/2022"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":328,"Cost":255,"Date":"2/10/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":58,"Cost":50,"Date":"2/28/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":701,"Cost":567,"Date":"3/4/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":870,"Cost":621,"Date":"3/9/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":390,"Cost":301,"Date":"3/9/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":258,"Cost":219,"Date":"3/11/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":390,"Cost":258,"Date":"3/17/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":716,"Cost":500,"Date":"3/17/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":412,"Cost":334,"Date":"3/23/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":620,"Cost":361,"Date":"4/1/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":959,"Cost":536,"Date":"5/7/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":906,"Cost":670,"Date":"5/10/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":446,"Cost":314,"Date":"5/20/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":474,"Cost":412,"Date":"6/2/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":499,"Cost":350,"Date":"6/11/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":631,"Cost":386,"Date":"6/16/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":709,"Cost":490,"Date":"6/16/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":112,"Cost":91,"Date":"7/10/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":825,"Cost":600,"Date":"7/11/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":295,"Cost":165,"Date":"8/28/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":656,"Cost":560,"Date":"8/29/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":876,"Cost":782,"Date":"8/31/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":699,"Cost":595,"Date":"9/8/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":578,"Cost":514,"Date":"9/13/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":655,"Cost":339,"Date":"9/14/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":562,"Cost":332,"Date":"9/19/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":301,"Cost":151,"Date":"9/25/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":526,"Cost":316,"Date":"10/4/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":171,"Cost":99,"Date":"10/10/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":708,"Cost":532,"Date":"10/17/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":774,"Cost":645,"Date":"10/28/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":540,"Cost":314,"Date":"10/30/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":62,"Cost":38,"Date":"11/1/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":687,"Cost":590,"Date":"11/15/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":866,"Cost":671,"Date":"11/25/2023"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":835,"Cost":571,"Date":"1/10/2024"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":542,"Cost":459,"Date":"1/14/2024"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":971,"Cost":786,"Date":"1/20/2024"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":193,"Cost":131,"Date":"2/8/2024"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":26,"Cost":22,"Date":"2/25/2024"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":685,"Cost":473,"Date":"3/7/2024"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":831,"Cost":542,"Date":"3/14/2024"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":982,"Cost":638,"Date":"3/27/2024"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":921,"Cost":656,"Date":"4/5/2024"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":849,"Cost":592,"Date":"4/14/2024"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":34,"Cost":23,"Date":"5/3/2024"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":642,"Cost":451,"Date":"5/9/2024"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":732,"Cost":547,"Date":"5/15/2024"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":228,"Cost":156,"Date":"5/25/2024"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":836,"Cost":689,"Date":"5/26/2024"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":189,"Cost":153,"Date":"5/31/2024"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":186,"Cost":171,"Date":"7/27/2024"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":802,"Cost":484,"Date":"9/17/2024"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":659,"Cost":405,"Date":"10/6/2024"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":913,"Cost":692,"Date":"10/8/2024"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":388,"Cost":220,"Date":"10/26/2024"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":316,"Cost":198,"Date":"11/16/2024"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":493,"Cost":385,"Date":"11/18/2024"},{"Store":"City2, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":527,"Cost":344,"Date":"12/1/2024"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":639,"Cost":372,"Date":"2/9/2018"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":574,"Cost":317,"Date":"2/11/2018"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":852,"Cost":445,"Date":"3/10/2018"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":445,"Cost":418,"Date":"3/16/2018"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":908,"Cost":704,"Date":"3/18/2018"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":7,"Cost":7,"Date":"3/20/2018"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":348,"Cost":197,"Date":"3/26/2018"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":683,"Cost":359,"Date":"6/2/2018"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":105,"Cost":64,"Date":"6/10/2018"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":920,"Cost":853,"Date":"6/16/2018"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":98,"Cost":73,"Date":"6/25/2018"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":659,"Cost":605,"Date":"7/19/2018"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":369,"Cost":250,"Date":"7/21/2018"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":909,"Cost":508,"Date":"7/25/2018"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":432,"Cost":390,"Date":"8/4/2018"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":830,"Cost":550,"Date":"9/2/2018"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":965,"Cost":590,"Date":"9/4/2018"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":87,"Cost":80,"Date":"9/19/2018"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":131,"Cost":87,"Date":"9/29/2018"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":918,"Cost":601,"Date":"10/2/2018"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":868,"Cost":804,"Date":"10/15/2018"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":480,"Cost":258,"Date":"10/30/2018"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":746,"Cost":390,"Date":"11/9/2018"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":353,"Cost":290,"Date":"11/23/2018"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":401,"Cost":248,"Date":"11/30/2018"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":499,"Cost":294,"Date":"12/8/2018"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":391,"Cost":291,"Date":"12/11/2018"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":506,"Cost":422,"Date":"1/15/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":140,"Cost":94,"Date":"1/24/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":260,"Cost":216,"Date":"2/3/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":413,"Cost":378,"Date":"2/4/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":646,"Cost":337,"Date":"3/9/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":23,"Cost":21,"Date":"3/12/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":188,"Cost":144,"Date":"4/19/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":719,"Cost":477,"Date":"5/3/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":242,"Cost":130,"Date":"5/4/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":923,"Cost":750,"Date":"6/8/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":137,"Cost":107,"Date":"6/26/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":793,"Cost":520,"Date":"7/4/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":753,"Cost":557,"Date":"7/13/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":171,"Cost":103,"Date":"8/8/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":192,"Cost":166,"Date":"8/26/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":949,"Cost":819,"Date":"9/2/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":100,"Cost":71,"Date":"9/29/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":715,"Cost":553,"Date":"10/12/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":575,"Cost":367,"Date":"11/2/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":863,"Cost":541,"Date":"11/4/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":426,"Cost":222,"Date":"11/7/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":718,"Cost":430,"Date":"12/1/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":703,"Cost":638,"Date":"12/4/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":626,"Cost":536,"Date":"12/7/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":332,"Cost":196,"Date":"12/18/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":323,"Cost":299,"Date":"12/20/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":451,"Cost":334,"Date":"12/20/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":433,"Cost":330,"Date":"12/21/2019"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":162,"Cost":104,"Date":"1/9/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":882,"Cost":525,"Date":"2/5/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":575,"Cost":520,"Date":"2/16/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":205,"Cost":113,"Date":"2/16/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":844,"Cost":422,"Date":"2/18/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":656,"Cost":368,"Date":"2/22/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":553,"Cost":306,"Date":"2/25/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":924,"Cost":569,"Date":"3/8/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":533,"Cost":472,"Date":"4/2/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":366,"Cost":201,"Date":"4/3/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":234,"Cost":157,"Date":"4/9/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":615,"Cost":582,"Date":"4/10/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":946,"Cost":767,"Date":"4/19/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":510,"Cost":325,"Date":"5/17/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":594,"Cost":373,"Date":"5/22/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":786,"Cost":431,"Date":"6/20/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":617,"Cost":520,"Date":"7/1/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":40,"Cost":31,"Date":"7/4/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":924,"Cost":511,"Date":"7/8/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":740,"Cost":639,"Date":"7/9/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":283,"Cost":153,"Date":"7/14/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":455,"Cost":273,"Date":"7/19/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":670,"Cost":557,"Date":"8/1/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":989,"Cost":878,"Date":"8/6/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":557,"Cost":418,"Date":"8/7/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":149,"Cost":103,"Date":"8/22/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":292,"Cost":155,"Date":"8/31/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":815,"Cost":570,"Date":"9/1/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":488,"Cost":460,"Date":"9/1/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":533,"Cost":431,"Date":"9/17/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":200,"Cost":160,"Date":"9/29/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":62,"Cost":45,"Date":"11/7/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":551,"Cost":498,"Date":"11/26/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":979,"Cost":610,"Date":"11/27/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":274,"Cost":141,"Date":"12/5/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":169,"Cost":115,"Date":"12/26/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":69,"Cost":35,"Date":"12/31/2020"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":824,"Cost":712,"Date":"1/20/2021"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":856,"Cost":659,"Date":"2/2/2021"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":181,"Cost":134,"Date":"2/8/2021"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":368,"Cost":213,"Date":"2/27/2021"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":743,"Cost":396,"Date":"3/1/2021"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":783,"Cost":600,"Date":"3/1/2021"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":80,"Cost":75,"Date":"3/19/2021"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":218,"Cost":142,"Date":"3/28/2021"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":687,"Cost":600,"Date":"5/21/2021"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":311,"Cost":171,"Date":"7/21/2021"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":464,"Cost":426,"Date":"8/5/2021"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":458,"Cost":400,"Date":"8/12/2021"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":889,"Cost":744,"Date":"8/21/2021"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":378,"Cost":340,"Date":"8/23/2021"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":554,"Cost":374,"Date":"9/3/2021"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":350,"Cost":260,"Date":"9/5/2021"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":295,"Cost":181,"Date":"10/6/2021"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":259,"Cost":194,"Date":"10/19/2021"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":653,"Cost":488,"Date":"11/15/2021"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":634,"Cost":436,"Date":"12/8/2021"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":871,"Cost":672,"Date":"1/8/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":806,"Cost":607,"Date":"1/14/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":260,"Cost":172,"Date":"1/19/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":422,"Cost":399,"Date":"1/28/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":567,"Cost":304,"Date":"1/31/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":482,"Cost":245,"Date":"3/27/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":742,"Cost":437,"Date":"4/20/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":699,"Cost":643,"Date":"4/24/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":343,"Cost":274,"Date":"4/28/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":63,"Cost":58,"Date":"5/15/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":79,"Cost":39,"Date":"5/16/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":367,"Cost":185,"Date":"5/18/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":861,"Cost":650,"Date":"6/2/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":262,"Cost":217,"Date":"6/3/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":398,"Cost":289,"Date":"6/5/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":547,"Cost":426,"Date":"6/7/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":418,"Cost":271,"Date":"6/14/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":735,"Cost":594,"Date":"6/20/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":369,"Cost":250,"Date":"6/24/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":699,"Cost":365,"Date":"7/4/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":931,"Cost":881,"Date":"7/9/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":693,"Cost":477,"Date":"7/12/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":362,"Cost":301,"Date":"8/14/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":352,"Cost":311,"Date":"8/16/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":747,"Cost":551,"Date":"8/23/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":502,"Cost":381,"Date":"9/2/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":673,"Cost":494,"Date":"9/3/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":267,"Cost":215,"Date":"9/16/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":29,"Cost":28,"Date":"10/4/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":674,"Cost":420,"Date":"11/1/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":135,"Cost":69,"Date":"11/2/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":244,"Cost":207,"Date":"12/17/2022"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":916,"Cost":805,"Date":"2/10/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":335,"Cost":292,"Date":"2/28/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":832,"Cost":606,"Date":"3/4/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":714,"Cost":579,"Date":"3/9/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":447,"Cost":382,"Date":"3/9/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":663,"Cost":552,"Date":"3/11/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":52,"Cost":26,"Date":"3/17/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":712,"Cost":607,"Date":"3/17/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":281,"Cost":203,"Date":"3/23/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":265,"Cost":244,"Date":"4/1/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":670,"Cost":624,"Date":"5/7/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":439,"Cost":227,"Date":"5/10/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":968,"Cost":813,"Date":"5/20/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":320,"Cost":297,"Date":"6/2/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":697,"Cost":463,"Date":"6/11/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":906,"Cost":678,"Date":"6/16/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":938,"Cost":846,"Date":"6/16/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":561,"Cost":376,"Date":"7/10/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":815,"Cost":410,"Date":"7/11/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":886,"Cost":671,"Date":"8/28/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":236,"Cost":121,"Date":"8/29/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":34,"Cost":21,"Date":"8/31/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":780,"Cost":466,"Date":"9/8/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":453,"Cost":392,"Date":"9/13/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":632,"Cost":394,"Date":"9/14/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":543,"Cost":504,"Date":"9/19/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":761,"Cost":509,"Date":"9/25/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":750,"Cost":556,"Date":"10/4/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":323,"Cost":292,"Date":"10/10/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":748,"Cost":551,"Date":"10/17/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":459,"Cost":304,"Date":"10/28/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":482,"Cost":339,"Date":"10/30/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":478,"Cost":351,"Date":"11/1/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":377,"Cost":197,"Date":"11/15/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":912,"Cost":697,"Date":"11/25/2023"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":240,"Cost":167,"Date":"1/10/2024"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":875,"Cost":756,"Date":"1/14/2024"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":96,"Cost":86,"Date":"1/20/2024"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":438,"Cost":269,"Date":"2/8/2024"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":261,"Cost":147,"Date":"2/25/2024"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":791,"Cost":618,"Date":"3/7/2024"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":417,"Cost":383,"Date":"3/14/2024"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":253,"Cost":223,"Date":"3/27/2024"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":366,"Cost":224,"Date":"4/5/2024"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":72,"Cost":69,"Date":"4/14/2024"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":517,"Cost":444,"Date":"5/3/2024"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":392,"Cost":221,"Date":"5/9/2024"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":273,"Cost":145,"Date":"5/15/2024"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":121,"Cost":78,"Date":"5/25/2024"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":347,"Cost":275,"Date":"5/26/2024"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":640,"Cost":504,"Date":"5/31/2024"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":272,"Cost":147,"Date":"7/27/2024"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":576,"Cost":310,"Date":"9/17/2024"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":330,"Cost":237,"Date":"10/6/2024"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":948,"Cost":600,"Date":"10/8/2024"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":271,"Cost":203,"Date":"10/26/2024"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":523,"Cost":304,"Date":"11/16/2024"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":911,"Cost":626,"Date":"11/18/2024"},{"Store":"City2, Brussels","Brand":"HM Home","Country":"Belgium","Sale":453,"Cost":265,"Date":"12/1/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":169,"Cost":161,"Date":"2/9/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":161,"Cost":93,"Date":"2/11/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":219,"Cost":112,"Date":"3/10/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":858,"Cost":655,"Date":"3/16/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":619,"Cost":570,"Date":"3/18/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":99,"Cost":91,"Date":"3/20/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":40,"Cost":29,"Date":"3/26/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":283,"Cost":256,"Date":"6/2/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":593,"Cost":450,"Date":"6/10/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":117,"Cost":78,"Date":"6/16/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":163,"Cost":150,"Date":"6/25/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":329,"Cost":164,"Date":"7/19/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":606,"Cost":545,"Date":"7/21/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":777,"Cost":564,"Date":"7/25/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":639,"Cost":459,"Date":"8/4/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":264,"Cost":177,"Date":"9/2/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":264,"Cost":217,"Date":"9/4/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":620,"Cost":554,"Date":"9/19/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":370,"Cost":229,"Date":"9/29/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":613,"Cost":482,"Date":"10/2/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":668,"Cost":444,"Date":"10/15/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":416,"Cost":292,"Date":"10/30/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":540,"Cost":300,"Date":"11/9/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":871,"Cost":469,"Date":"11/23/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":777,"Cost":605,"Date":"11/30/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":41,"Cost":30,"Date":"12/8/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":823,"Cost":489,"Date":"12/11/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":26,"Cost":22,"Date":"1/15/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":471,"Cost":403,"Date":"1/24/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":140,"Cost":99,"Date":"2/3/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":751,"Cost":461,"Date":"2/4/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":836,"Cost":623,"Date":"3/9/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":412,"Cost":222,"Date":"3/12/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":77,"Cost":51,"Date":"4/19/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":395,"Cost":279,"Date":"5/3/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":299,"Cost":268,"Date":"5/4/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":403,"Cost":311,"Date":"6/8/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":156,"Cost":120,"Date":"6/26/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":767,"Cost":422,"Date":"7/4/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":880,"Cost":589,"Date":"7/13/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":995,"Cost":670,"Date":"8/8/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":558,"Cost":513,"Date":"8/26/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":873,"Cost":816,"Date":"9/2/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":965,"Cost":838,"Date":"9/29/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":948,"Cost":562,"Date":"10/12/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":278,"Cost":206,"Date":"11/2/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":443,"Cost":282,"Date":"11/4/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":33,"Cost":31,"Date":"11/7/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":591,"Cost":449,"Date":"12/1/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":552,"Cost":412,"Date":"12/4/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":710,"Cost":549,"Date":"12/7/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":458,"Cost":303,"Date":"12/18/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":189,"Cost":108,"Date":"12/20/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":994,"Cost":823,"Date":"12/20/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":68,"Cost":46,"Date":"12/21/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":488,"Cost":245,"Date":"1/9/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":774,"Cost":400,"Date":"2/5/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":114,"Cost":98,"Date":"2/16/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":113,"Cost":88,"Date":"2/16/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":478,"Cost":361,"Date":"2/18/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":938,"Cost":698,"Date":"2/22/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":698,"Cost":466,"Date":"2/25/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":951,"Cost":689,"Date":"3/8/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":67,"Cost":35,"Date":"4/2/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":742,"Cost":593,"Date":"4/3/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":218,"Cost":143,"Date":"4/9/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":417,"Cost":272,"Date":"4/10/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":409,"Cost":310,"Date":"4/19/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":685,"Cost":539,"Date":"5/17/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":230,"Cost":125,"Date":"5/22/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":221,"Cost":127,"Date":"6/20/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":497,"Cost":300,"Date":"7/1/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":336,"Cost":221,"Date":"7/4/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":407,"Cost":233,"Date":"7/8/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":707,"Cost":600,"Date":"7/9/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":323,"Cost":208,"Date":"7/14/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":914,"Cost":478,"Date":"7/19/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":618,"Cost":451,"Date":"8/1/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":3,"Cost":1,"Date":"8/6/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":371,"Cost":188,"Date":"8/7/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":92,"Cost":78,"Date":"8/22/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":329,"Cost":284,"Date":"8/31/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":127,"Cost":85,"Date":"9/1/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":58,"Cost":53,"Date":"9/1/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":319,"Cost":301,"Date":"9/17/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":723,"Cost":488,"Date":"9/29/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":623,"Cost":485,"Date":"11/7/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":510,"Cost":363,"Date":"11/26/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":271,"Cost":168,"Date":"11/27/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":74,"Cost":39,"Date":"12/5/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":662,"Cost":499,"Date":"12/26/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":672,"Cost":491,"Date":"12/31/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":603,"Cost":343,"Date":"1/20/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":428,"Cost":287,"Date":"2/2/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":219,"Cost":134,"Date":"2/8/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":695,"Cost":362,"Date":"2/27/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":564,"Cost":442,"Date":"3/1/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":791,"Cost":459,"Date":"3/1/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":749,"Cost":567,"Date":"3/19/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":307,"Cost":228,"Date":"3/28/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":656,"Cost":369,"Date":"5/21/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":707,"Cost":534,"Date":"7/21/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":139,"Cost":114,"Date":"8/5/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":286,"Cost":162,"Date":"8/12/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":592,"Cost":448,"Date":"8/21/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":380,"Cost":303,"Date":"8/23/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":983,"Cost":759,"Date":"9/3/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":55,"Cost":31,"Date":"9/5/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":415,"Cost":394,"Date":"10/6/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":57,"Cost":41,"Date":"10/19/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":289,"Cost":193,"Date":"11/15/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":213,"Cost":186,"Date":"12/8/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":56,"Cost":33,"Date":"1/8/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":375,"Cost":285,"Date":"1/14/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":879,"Cost":799,"Date":"1/19/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":315,"Cost":195,"Date":"1/28/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":481,"Cost":374,"Date":"1/31/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":46,"Cost":33,"Date":"3/27/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":934,"Cost":686,"Date":"4/20/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":937,"Cost":756,"Date":"4/24/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":426,"Cost":240,"Date":"4/28/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":274,"Cost":141,"Date":"5/15/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":1000,"Cost":618,"Date":"5/16/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":468,"Cost":409,"Date":"5/18/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":978,"Cost":757,"Date":"6/2/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":480,"Cost":411,"Date":"6/3/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":432,"Cost":385,"Date":"6/5/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":505,"Cost":408,"Date":"6/7/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":410,"Cost":303,"Date":"6/14/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":919,"Cost":615,"Date":"6/20/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":726,"Cost":451,"Date":"6/24/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":121,"Cost":95,"Date":"7/4/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":369,"Cost":199,"Date":"7/9/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":80,"Cost":41,"Date":"7/12/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":782,"Cost":674,"Date":"8/14/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":334,"Cost":244,"Date":"8/16/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":771,"Cost":514,"Date":"8/23/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":574,"Cost":323,"Date":"9/2/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":226,"Cost":116,"Date":"9/3/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":935,"Cost":676,"Date":"9/16/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":184,"Cost":127,"Date":"10/4/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":403,"Cost":288,"Date":"11/1/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":697,"Cost":446,"Date":"11/2/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":998,"Cost":741,"Date":"12/17/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":61,"Cost":46,"Date":"2/10/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":197,"Cost":125,"Date":"2/28/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":497,"Cost":356,"Date":"3/4/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":299,"Cost":239,"Date":"3/9/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":12,"Cost":7,"Date":"3/9/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":285,"Cost":214,"Date":"3/11/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":547,"Cost":407,"Date":"3/17/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":384,"Cost":195,"Date":"3/17/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":947,"Cost":747,"Date":"3/23/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":466,"Cost":362,"Date":"4/1/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":401,"Cost":304,"Date":"5/7/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":812,"Cost":558,"Date":"5/10/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":656,"Cost":600,"Date":"5/20/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":413,"Cost":262,"Date":"6/2/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":350,"Cost":276,"Date":"6/11/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":567,"Cost":404,"Date":"6/16/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":521,"Cost":375,"Date":"6/16/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":986,"Cost":754,"Date":"7/10/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":381,"Cost":284,"Date":"7/11/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":224,"Cost":190,"Date":"8/28/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":312,"Cost":195,"Date":"8/29/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":664,"Cost":390,"Date":"8/31/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":947,"Cost":666,"Date":"9/8/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":454,"Cost":404,"Date":"9/13/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":821,"Cost":420,"Date":"9/14/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":580,"Cost":465,"Date":"9/19/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":700,"Cost":435,"Date":"9/25/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":986,"Cost":532,"Date":"10/4/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":657,"Cost":477,"Date":"10/10/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":344,"Cost":204,"Date":"10/17/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":319,"Cost":215,"Date":"10/28/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":324,"Cost":231,"Date":"10/30/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":467,"Cost":383,"Date":"11/1/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":877,"Cost":508,"Date":"11/15/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":115,"Cost":87,"Date":"11/25/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":784,"Cost":556,"Date":"1/10/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":671,"Cost":556,"Date":"1/14/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":505,"Cost":415,"Date":"1/20/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":13,"Cost":8,"Date":"2/8/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":126,"Cost":100,"Date":"2/25/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":975,"Cost":626,"Date":"3/7/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":60,"Cost":30,"Date":"3/14/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":930,"Cost":668,"Date":"3/27/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":158,"Cost":124,"Date":"4/5/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":861,"Cost":446,"Date":"4/14/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":689,"Cost":585,"Date":"5/3/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":134,"Cost":106,"Date":"5/9/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":438,"Cost":387,"Date":"5/15/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":95,"Cost":72,"Date":"5/25/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":40,"Cost":25,"Date":"5/26/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":820,"Cost":557,"Date":"5/31/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":391,"Cost":241,"Date":"7/27/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":494,"Cost":284,"Date":"9/17/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":552,"Cost":457,"Date":"10/6/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":327,"Cost":167,"Date":"10/8/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":535,"Cost":289,"Date":"10/26/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":84,"Cost":51,"Date":"11/16/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":1000,"Cost":592,"Date":"11/18/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"Jeans","Country":"Belgium","Sale":741,"Cost":684,"Date":"12/1/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":86,"Cost":73,"Date":"2/9/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":653,"Cost":547,"Date":"2/11/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":83,"Cost":77,"Date":"3/10/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":403,"Cost":343,"Date":"3/16/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":687,"Cost":452,"Date":"3/18/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":226,"Cost":155,"Date":"3/20/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":319,"Cost":272,"Date":"3/26/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":20,"Cost":10,"Date":"6/2/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":719,"Cost":391,"Date":"6/10/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":526,"Cost":375,"Date":"6/16/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":347,"Cost":325,"Date":"6/25/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":554,"Cost":423,"Date":"7/19/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":684,"Cost":378,"Date":"7/21/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":202,"Cost":111,"Date":"7/25/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":10,"Cost":8,"Date":"8/4/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":69,"Cost":57,"Date":"9/2/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":241,"Cost":226,"Date":"9/4/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":403,"Cost":244,"Date":"9/19/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":828,"Cost":469,"Date":"9/29/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":813,"Cost":429,"Date":"10/2/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":20,"Cost":14,"Date":"10/15/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":166,"Cost":147,"Date":"10/30/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":371,"Cost":343,"Date":"11/9/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":304,"Cost":182,"Date":"11/23/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":859,"Cost":734,"Date":"11/30/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":628,"Cost":463,"Date":"12/8/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":274,"Cost":141,"Date":"12/11/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":908,"Cost":820,"Date":"1/15/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":188,"Cost":127,"Date":"1/24/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":544,"Cost":413,"Date":"2/3/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":731,"Cost":666,"Date":"2/4/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":904,"Cost":453,"Date":"3/9/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":946,"Cost":654,"Date":"3/12/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":476,"Cost":361,"Date":"4/19/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":920,"Cost":653,"Date":"5/3/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":289,"Cost":160,"Date":"5/4/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":866,"Cost":467,"Date":"6/8/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":866,"Cost":696,"Date":"6/26/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":668,"Cost":478,"Date":"7/4/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":367,"Cost":212,"Date":"7/13/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":368,"Cost":292,"Date":"8/8/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":486,"Cost":449,"Date":"8/26/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":246,"Cost":146,"Date":"9/2/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":790,"Cost":576,"Date":"9/29/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":884,"Cost":586,"Date":"10/12/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":815,"Cost":609,"Date":"11/2/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":972,"Cost":496,"Date":"11/4/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":791,"Cost":622,"Date":"11/7/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":9,"Cost":5,"Date":"12/1/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":256,"Cost":141,"Date":"12/4/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":481,"Cost":412,"Date":"12/7/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":897,"Cost":554,"Date":"12/18/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":544,"Cost":282,"Date":"12/20/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":485,"Cost":375,"Date":"12/20/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":714,"Cost":370,"Date":"12/21/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":813,"Cost":510,"Date":"1/9/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":377,"Cost":319,"Date":"2/5/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":367,"Cost":333,"Date":"2/16/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":126,"Cost":71,"Date":"2/16/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":766,"Cost":406,"Date":"2/18/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":344,"Cost":197,"Date":"2/22/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":804,"Cost":417,"Date":"2/25/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":620,"Cost":373,"Date":"3/8/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":347,"Cost":272,"Date":"4/2/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":307,"Cost":164,"Date":"4/3/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":138,"Cost":118,"Date":"4/9/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":518,"Cost":290,"Date":"4/10/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":391,"Cost":325,"Date":"4/19/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":538,"Cost":407,"Date":"5/17/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":922,"Cost":663,"Date":"5/22/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":116,"Cost":98,"Date":"6/20/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":534,"Cost":461,"Date":"7/1/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":888,"Cost":460,"Date":"7/4/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":162,"Cost":94,"Date":"7/8/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":530,"Cost":368,"Date":"7/9/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":462,"Cost":270,"Date":"7/14/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":383,"Cost":321,"Date":"7/19/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":359,"Cost":237,"Date":"8/1/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":612,"Cost":330,"Date":"8/6/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":112,"Cost":98,"Date":"8/7/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":86,"Cost":74,"Date":"8/22/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":584,"Cost":391,"Date":"8/31/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":16,"Cost":8,"Date":"9/1/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":819,"Cost":541,"Date":"9/1/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":508,"Cost":302,"Date":"9/17/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":857,"Cost":649,"Date":"9/29/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":227,"Cost":187,"Date":"11/7/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":434,"Cost":325,"Date":"11/26/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":981,"Cost":845,"Date":"11/27/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":175,"Cost":116,"Date":"12/5/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":491,"Cost":317,"Date":"12/26/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":568,"Cost":314,"Date":"12/31/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":42,"Cost":23,"Date":"1/20/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":126,"Cost":112,"Date":"2/2/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":990,"Cost":785,"Date":"2/8/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":919,"Cost":576,"Date":"2/27/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":191,"Cost":104,"Date":"3/1/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":712,"Cost":425,"Date":"3/1/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":742,"Cost":510,"Date":"3/19/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":882,"Cost":499,"Date":"3/28/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":93,"Cost":57,"Date":"5/21/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":116,"Cost":101,"Date":"7/21/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":288,"Cost":162,"Date":"8/5/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":121,"Cost":65,"Date":"8/12/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":146,"Cost":79,"Date":"8/21/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":996,"Cost":757,"Date":"8/23/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":527,"Cost":493,"Date":"9/3/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":544,"Cost":473,"Date":"9/5/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":569,"Cost":399,"Date":"10/6/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":691,"Cost":423,"Date":"10/19/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":633,"Cost":524,"Date":"11/15/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":426,"Cost":345,"Date":"12/8/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":843,"Cost":426,"Date":"1/8/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":183,"Cost":91,"Date":"1/14/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":226,"Cost":194,"Date":"1/19/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":11,"Cost":10,"Date":"1/28/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":948,"Cost":577,"Date":"1/31/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":488,"Cost":271,"Date":"3/27/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":515,"Cost":399,"Date":"4/20/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":279,"Cost":235,"Date":"4/24/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":634,"Cost":455,"Date":"4/28/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":426,"Cost":399,"Date":"5/15/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":110,"Cost":96,"Date":"5/16/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":512,"Cost":440,"Date":"5/18/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":122,"Cost":99,"Date":"6/2/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":641,"Cost":537,"Date":"6/3/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":75,"Cost":37,"Date":"6/5/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":211,"Cost":146,"Date":"6/7/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":80,"Cost":45,"Date":"6/14/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":971,"Cost":913,"Date":"6/20/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":765,"Cost":438,"Date":"6/24/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":177,"Cost":149,"Date":"7/4/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":292,"Cost":149,"Date":"7/9/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":133,"Cost":112,"Date":"7/12/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":629,"Cost":349,"Date":"8/14/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":950,"Cost":501,"Date":"8/16/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":428,"Cost":316,"Date":"8/23/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":463,"Cost":265,"Date":"9/2/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":264,"Cost":230,"Date":"9/3/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":216,"Cost":191,"Date":"9/16/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":488,"Cost":278,"Date":"10/4/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":822,"Cost":770,"Date":"11/1/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":72,"Cost":60,"Date":"11/2/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":350,"Cost":241,"Date":"12/17/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":581,"Cost":456,"Date":"2/10/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":326,"Cost":186,"Date":"2/28/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":623,"Cost":547,"Date":"3/4/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":83,"Cost":53,"Date":"3/9/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":226,"Cost":123,"Date":"3/9/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":188,"Cost":118,"Date":"3/11/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":927,"Cost":544,"Date":"3/17/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":845,"Cost":646,"Date":"3/17/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":68,"Cost":37,"Date":"3/23/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":353,"Cost":190,"Date":"4/1/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":236,"Cost":187,"Date":"5/7/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":675,"Cost":540,"Date":"5/10/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":645,"Cost":431,"Date":"5/20/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":902,"Cost":464,"Date":"6/2/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":337,"Cost":220,"Date":"6/11/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":430,"Cost":299,"Date":"6/16/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":231,"Cost":158,"Date":"6/16/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":131,"Cost":121,"Date":"7/10/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":273,"Cost":187,"Date":"7/11/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":787,"Cost":458,"Date":"8/28/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":27,"Cost":26,"Date":"8/29/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":187,"Cost":168,"Date":"8/31/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":308,"Cost":171,"Date":"9/8/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":615,"Cost":340,"Date":"9/13/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":366,"Cost":293,"Date":"9/14/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":870,"Cost":776,"Date":"9/19/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":865,"Cost":780,"Date":"9/25/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":370,"Cost":335,"Date":"10/4/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":297,"Cost":181,"Date":"10/10/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":528,"Cost":291,"Date":"10/17/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":733,"Cost":510,"Date":"10/28/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":287,"Cost":153,"Date":"10/30/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":107,"Cost":77,"Date":"11/1/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":326,"Cost":211,"Date":"11/15/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":396,"Cost":282,"Date":"11/25/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":572,"Cost":341,"Date":"1/10/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":663,"Cost":544,"Date":"1/14/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":128,"Cost":101,"Date":"1/20/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":65,"Cost":37,"Date":"2/8/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":309,"Cost":167,"Date":"2/25/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":459,"Cost":399,"Date":"3/7/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":180,"Cost":171,"Date":"3/14/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":45,"Cost":23,"Date":"3/27/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":912,"Cost":509,"Date":"4/5/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":438,"Cost":277,"Date":"4/14/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":906,"Cost":668,"Date":"5/3/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":358,"Cost":179,"Date":"5/9/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":594,"Cost":542,"Date":"5/15/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":935,"Cost":544,"Date":"5/25/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":768,"Cost":398,"Date":"5/26/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":825,"Cost":632,"Date":"5/31/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":551,"Cost":457,"Date":"7/27/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":589,"Cost":347,"Date":"9/17/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":454,"Cost":427,"Date":"10/6/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":726,"Cost":516,"Date":"10/8/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":74,"Cost":55,"Date":"10/26/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":400,"Cost":341,"Date":"11/16/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":460,"Cost":261,"Date":"11/18/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"ARKET","Country":"Belgium","Sale":366,"Cost":320,"Date":"12/1/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":687,"Cost":620,"Date":"2/9/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":251,"Cost":142,"Date":"2/11/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":898,"Cost":491,"Date":"3/10/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":234,"Cost":179,"Date":"3/16/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":46,"Cost":26,"Date":"3/18/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":878,"Cost":609,"Date":"3/20/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":983,"Cost":515,"Date":"3/26/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":610,"Cost":362,"Date":"6/2/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":668,"Cost":579,"Date":"6/10/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":51,"Cost":28,"Date":"6/16/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":950,"Cost":647,"Date":"6/25/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":882,"Cost":580,"Date":"7/19/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":945,"Cost":799,"Date":"7/21/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":966,"Cost":566,"Date":"7/25/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":503,"Cost":403,"Date":"8/4/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":612,"Cost":392,"Date":"9/2/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":132,"Cost":100,"Date":"9/4/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":653,"Cost":494,"Date":"9/19/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":620,"Cost":512,"Date":"9/29/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":377,"Cost":205,"Date":"10/2/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":84,"Cost":51,"Date":"10/15/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":270,"Cost":147,"Date":"10/30/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":800,"Cost":576,"Date":"11/9/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":896,"Cost":641,"Date":"11/23/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":454,"Cost":259,"Date":"11/30/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":585,"Cost":497,"Date":"12/8/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":157,"Cost":128,"Date":"12/11/2018"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":790,"Cost":612,"Date":"1/15/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":920,"Cost":586,"Date":"1/24/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":21,"Cost":12,"Date":"2/3/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":923,"Cost":866,"Date":"2/4/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":760,"Cost":583,"Date":"3/9/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":749,"Cost":573,"Date":"3/12/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":452,"Cost":282,"Date":"4/19/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":766,"Cost":589,"Date":"5/3/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":237,"Cost":220,"Date":"5/4/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":614,"Cost":451,"Date":"6/8/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":510,"Cost":309,"Date":"6/26/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":515,"Cost":473,"Date":"7/4/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":882,"Cost":711,"Date":"7/13/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":177,"Cost":156,"Date":"8/8/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":98,"Cost":82,"Date":"8/26/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":51,"Cost":47,"Date":"9/2/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":332,"Cost":166,"Date":"9/29/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":299,"Cost":270,"Date":"10/12/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":160,"Cost":89,"Date":"11/2/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":178,"Cost":159,"Date":"11/4/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":553,"Cost":364,"Date":"11/7/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":369,"Cost":343,"Date":"12/1/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":115,"Cost":58,"Date":"12/4/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":764,"Cost":613,"Date":"12/7/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":115,"Cost":69,"Date":"12/18/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":411,"Cost":289,"Date":"12/20/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":501,"Cost":338,"Date":"12/20/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":706,"Cost":481,"Date":"12/21/2019"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":462,"Cost":418,"Date":"1/9/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":70,"Cost":58,"Date":"2/5/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":505,"Cost":417,"Date":"2/16/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":469,"Cost":367,"Date":"2/16/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":235,"Cost":126,"Date":"2/18/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":850,"Cost":438,"Date":"2/22/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":630,"Cost":549,"Date":"2/25/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":46,"Cost":42,"Date":"3/8/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":509,"Cost":413,"Date":"4/2/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":517,"Cost":345,"Date":"4/3/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":271,"Cost":230,"Date":"4/9/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":359,"Cost":287,"Date":"4/10/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":190,"Cost":148,"Date":"4/19/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":634,"Cost":368,"Date":"5/17/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":18,"Cost":12,"Date":"5/22/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":898,"Cost":659,"Date":"6/20/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":743,"Cost":615,"Date":"7/1/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":310,"Cost":269,"Date":"7/4/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":993,"Cost":847,"Date":"7/8/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":855,"Cost":774,"Date":"7/9/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":376,"Cost":313,"Date":"7/14/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":350,"Cost":226,"Date":"7/19/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":815,"Cost":687,"Date":"8/1/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":397,"Cost":342,"Date":"8/6/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":610,"Cost":356,"Date":"8/7/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":4,"Cost":3,"Date":"8/22/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":249,"Cost":195,"Date":"8/31/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":423,"Cost":342,"Date":"9/1/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":913,"Cost":792,"Date":"9/1/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":725,"Cost":511,"Date":"9/17/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":268,"Cost":253,"Date":"9/29/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":21,"Cost":14,"Date":"11/7/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":676,"Cost":401,"Date":"11/26/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":868,"Cost":632,"Date":"11/27/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":285,"Cost":159,"Date":"12/5/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":583,"Cost":437,"Date":"12/26/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":693,"Cost":626,"Date":"12/31/2020"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":127,"Cost":75,"Date":"1/20/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":875,"Cost":775,"Date":"2/2/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":696,"Cost":472,"Date":"2/8/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":659,"Cost":344,"Date":"2/27/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":207,"Cost":167,"Date":"3/1/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":84,"Cost":65,"Date":"3/1/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":671,"Cost":630,"Date":"3/19/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":790,"Cost":616,"Date":"3/28/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":171,"Cost":101,"Date":"5/21/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":583,"Cost":493,"Date":"7/21/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":567,"Cost":423,"Date":"8/5/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":230,"Cost":121,"Date":"8/12/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":552,"Cost":398,"Date":"8/21/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":369,"Cost":191,"Date":"8/23/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":872,"Cost":727,"Date":"9/3/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":100,"Cost":65,"Date":"9/5/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":575,"Cost":437,"Date":"10/6/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":410,"Cost":257,"Date":"10/19/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":174,"Cost":124,"Date":"11/15/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":644,"Cost":458,"Date":"12/8/2021"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":557,"Cost":362,"Date":"1/8/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":447,"Cost":250,"Date":"1/14/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":388,"Cost":232,"Date":"1/19/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":527,"Cost":462,"Date":"1/28/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":103,"Cost":54,"Date":"1/31/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":279,"Cost":215,"Date":"3/27/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":752,"Cost":704,"Date":"4/20/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":68,"Cost":53,"Date":"4/24/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":951,"Cost":603,"Date":"4/28/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":846,"Cost":660,"Date":"5/15/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":78,"Cost":56,"Date":"5/16/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":745,"Cost":416,"Date":"5/18/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":686,"Cost":414,"Date":"6/2/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":537,"Cost":437,"Date":"6/3/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":900,"Cost":704,"Date":"6/5/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":94,"Cost":85,"Date":"6/7/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":972,"Cost":830,"Date":"6/14/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":78,"Cost":55,"Date":"6/20/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":432,"Cost":278,"Date":"6/24/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":378,"Cost":319,"Date":"7/4/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":371,"Cost":293,"Date":"7/9/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":950,"Cost":733,"Date":"7/12/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":792,"Cost":639,"Date":"8/14/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":487,"Cost":337,"Date":"8/16/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":359,"Cost":332,"Date":"8/23/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":926,"Cost":617,"Date":"9/2/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":865,"Cost":758,"Date":"9/3/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":844,"Cost":577,"Date":"9/16/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":540,"Cost":406,"Date":"10/4/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":748,"Cost":591,"Date":"11/1/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":270,"Cost":229,"Date":"11/2/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":216,"Cost":164,"Date":"12/17/2022"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":550,"Cost":478,"Date":"2/10/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":858,"Cost":671,"Date":"2/28/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":65,"Cost":41,"Date":"3/4/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":754,"Cost":412,"Date":"3/9/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":19,"Cost":18,"Date":"3/9/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":420,"Cost":381,"Date":"3/11/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":522,"Cost":342,"Date":"3/17/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":980,"Cost":884,"Date":"3/17/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":136,"Cost":115,"Date":"3/23/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":750,"Cost":636,"Date":"4/1/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":127,"Cost":111,"Date":"5/7/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":654,"Cost":615,"Date":"5/10/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":811,"Cost":740,"Date":"5/20/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":900,"Cost":623,"Date":"6/2/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":834,"Cost":669,"Date":"6/11/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":703,"Cost":358,"Date":"6/16/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":232,"Cost":185,"Date":"6/16/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":593,"Cost":366,"Date":"7/10/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":922,"Cost":616,"Date":"7/11/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":57,"Cost":53,"Date":"8/28/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":219,"Cost":126,"Date":"8/29/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":268,"Cost":217,"Date":"8/31/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":445,"Cost":275,"Date":"9/8/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":755,"Cost":436,"Date":"9/13/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":447,"Cost":243,"Date":"9/14/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":753,"Cost":695,"Date":"9/19/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":756,"Cost":447,"Date":"9/25/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":406,"Cost":299,"Date":"10/4/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":152,"Cost":106,"Date":"10/10/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":676,"Cost":547,"Date":"10/17/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":299,"Cost":267,"Date":"10/28/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":201,"Cost":181,"Date":"10/30/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":455,"Cost":393,"Date":"11/1/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":118,"Cost":112,"Date":"11/15/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":351,"Cost":194,"Date":"11/25/2023"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":432,"Cost":287,"Date":"1/10/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":692,"Cost":653,"Date":"1/14/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":623,"Cost":499,"Date":"1/20/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":373,"Cost":322,"Date":"2/8/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":745,"Cost":676,"Date":"2/25/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":167,"Cost":106,"Date":"3/7/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":287,"Cost":176,"Date":"3/14/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":293,"Cost":196,"Date":"3/27/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":452,"Cost":303,"Date":"4/5/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":454,"Cost":352,"Date":"4/14/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":178,"Cost":89,"Date":"5/3/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":786,"Cost":434,"Date":"5/9/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":650,"Cost":490,"Date":"5/15/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":433,"Cost":228,"Date":"5/25/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":307,"Cost":232,"Date":"5/26/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":884,"Cost":623,"Date":"5/31/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":145,"Cost":86,"Date":"7/27/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":940,"Cost":782,"Date":"9/17/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":294,"Cost":220,"Date":"10/6/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":899,"Cost":634,"Date":"10/8/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":265,"Cost":150,"Date":"10/26/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":923,"Cost":692,"Date":"11/16/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":235,"Cost":200,"Date":"11/18/2024"},{"Store":"Galeries Royales Saint-Hubert, Brussels","Brand":"COS","Country":"Belgium","Sale":446,"Cost":275,"Date":"12/1/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":835,"Cost":507,"Date":"2/9/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":829,"Cost":693,"Date":"2/11/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":130,"Cost":110,"Date":"3/10/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":588,"Cost":527,"Date":"3/16/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":496,"Cost":345,"Date":"3/18/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":66,"Cost":49,"Date":"3/20/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":33,"Cost":26,"Date":"3/26/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":976,"Cost":567,"Date":"6/2/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":69,"Cost":64,"Date":"6/10/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":829,"Cost":780,"Date":"6/16/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":672,"Cost":566,"Date":"6/25/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":246,"Cost":200,"Date":"7/19/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":951,"Cost":699,"Date":"7/21/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":404,"Cost":346,"Date":"7/25/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":676,"Cost":351,"Date":"8/4/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":827,"Cost":650,"Date":"9/2/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":177,"Cost":139,"Date":"9/4/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":511,"Cost":334,"Date":"9/19/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":690,"Cost":377,"Date":"9/29/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":598,"Cost":559,"Date":"10/2/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":844,"Cost":464,"Date":"10/15/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":750,"Cost":620,"Date":"10/30/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":258,"Cost":153,"Date":"11/9/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":624,"Cost":318,"Date":"11/23/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":412,"Cost":241,"Date":"11/30/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":778,"Cost":590,"Date":"12/8/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":539,"Cost":419,"Date":"12/11/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":460,"Cost":302,"Date":"1/15/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":568,"Cost":325,"Date":"1/24/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":764,"Cost":549,"Date":"2/3/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":961,"Cost":807,"Date":"2/4/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":50,"Cost":32,"Date":"3/9/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":167,"Cost":93,"Date":"3/12/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":685,"Cost":555,"Date":"4/19/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":985,"Cost":679,"Date":"5/3/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":737,"Cost":376,"Date":"5/4/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":303,"Cost":280,"Date":"6/8/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":607,"Cost":443,"Date":"6/26/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":404,"Cost":227,"Date":"7/4/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":492,"Cost":288,"Date":"7/13/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":120,"Cost":93,"Date":"8/8/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":63,"Cost":46,"Date":"8/26/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":991,"Cost":596,"Date":"9/2/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":670,"Cost":400,"Date":"9/29/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":532,"Cost":369,"Date":"10/12/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":769,"Cost":712,"Date":"11/2/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":1000,"Cost":795,"Date":"11/4/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":778,"Cost":463,"Date":"11/7/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":668,"Cost":398,"Date":"12/1/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":172,"Cost":138,"Date":"12/4/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":620,"Cost":507,"Date":"12/7/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":610,"Cost":414,"Date":"12/18/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":793,"Cost":469,"Date":"12/20/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":526,"Cost":484,"Date":"12/20/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":280,"Cost":248,"Date":"12/21/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":570,"Cost":495,"Date":"1/9/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":182,"Cost":106,"Date":"2/5/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":950,"Cost":790,"Date":"2/16/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":150,"Cost":130,"Date":"2/16/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":499,"Cost":462,"Date":"2/18/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":602,"Cost":387,"Date":"2/22/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":666,"Cost":525,"Date":"2/25/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":316,"Cost":299,"Date":"3/8/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":182,"Cost":142,"Date":"4/2/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":583,"Cost":334,"Date":"4/3/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":851,"Cost":691,"Date":"4/9/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":511,"Cost":272,"Date":"4/10/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":979,"Cost":740,"Date":"4/19/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":320,"Cost":186,"Date":"5/17/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":817,"Cost":770,"Date":"5/22/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":924,"Cost":512,"Date":"6/20/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":440,"Cost":370,"Date":"7/1/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":569,"Cost":421,"Date":"7/4/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":909,"Cost":664,"Date":"7/8/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":193,"Cost":181,"Date":"7/9/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":75,"Cost":44,"Date":"7/14/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":699,"Cost":358,"Date":"7/19/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":468,"Cost":283,"Date":"8/1/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":797,"Cost":609,"Date":"8/6/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":969,"Cost":654,"Date":"8/7/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":281,"Cost":234,"Date":"8/22/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":275,"Cost":233,"Date":"8/31/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":845,"Cost":671,"Date":"9/1/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":599,"Cost":301,"Date":"9/1/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":313,"Cost":271,"Date":"9/17/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":669,"Cost":609,"Date":"9/29/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":81,"Cost":60,"Date":"11/7/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":294,"Cost":230,"Date":"11/26/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":486,"Cost":301,"Date":"11/27/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":712,"Cost":675,"Date":"12/5/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":682,"Cost":579,"Date":"12/26/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":889,"Cost":714,"Date":"12/31/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":522,"Cost":449,"Date":"1/20/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":811,"Cost":408,"Date":"2/2/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":141,"Cost":84,"Date":"2/8/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":569,"Cost":447,"Date":"2/27/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":270,"Cost":146,"Date":"3/1/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":395,"Cost":339,"Date":"3/1/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":875,"Cost":671,"Date":"3/19/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":445,"Cost":376,"Date":"3/28/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":728,"Cost":675,"Date":"5/21/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":954,"Cost":541,"Date":"7/21/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":45,"Cost":29,"Date":"8/5/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":802,"Cost":604,"Date":"8/12/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":619,"Cost":504,"Date":"8/21/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":184,"Cost":154,"Date":"8/23/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":175,"Cost":110,"Date":"9/3/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":51,"Cost":36,"Date":"9/5/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":211,"Cost":138,"Date":"10/6/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":803,"Cost":423,"Date":"10/19/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":238,"Cost":147,"Date":"11/15/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":110,"Cost":83,"Date":"12/8/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":955,"Cost":631,"Date":"1/8/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":68,"Cost":41,"Date":"1/14/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":179,"Cost":136,"Date":"1/19/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":474,"Cost":322,"Date":"1/28/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":897,"Cost":590,"Date":"1/31/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":201,"Cost":119,"Date":"3/27/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":7,"Cost":5,"Date":"4/20/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":577,"Cost":316,"Date":"4/24/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":253,"Cost":197,"Date":"4/28/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":726,"Cost":612,"Date":"5/15/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":477,"Cost":428,"Date":"5/16/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":665,"Cost":543,"Date":"5/18/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":544,"Cost":303,"Date":"6/2/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":762,"Cost":669,"Date":"6/3/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":563,"Cost":494,"Date":"6/5/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":925,"Cost":496,"Date":"6/7/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":285,"Cost":205,"Date":"6/14/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":219,"Cost":171,"Date":"6/20/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":976,"Cost":918,"Date":"6/24/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":551,"Cost":465,"Date":"7/4/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":788,"Cost":562,"Date":"7/9/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":838,"Cost":716,"Date":"7/12/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":575,"Cost":520,"Date":"8/14/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":218,"Cost":184,"Date":"8/16/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":235,"Cost":206,"Date":"8/23/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":988,"Cost":547,"Date":"9/2/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":751,"Cost":428,"Date":"9/3/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":853,"Cost":463,"Date":"9/16/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":549,"Cost":402,"Date":"10/4/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":105,"Cost":67,"Date":"11/1/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":572,"Cost":535,"Date":"11/2/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":737,"Cost":487,"Date":"12/17/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":323,"Cost":268,"Date":"2/10/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":899,"Cost":668,"Date":"2/28/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":548,"Cost":276,"Date":"3/4/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":492,"Cost":388,"Date":"3/9/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":885,"Cost":758,"Date":"3/9/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":599,"Cost":452,"Date":"3/11/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":976,"Cost":527,"Date":"3/17/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":719,"Cost":402,"Date":"3/17/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":101,"Cost":75,"Date":"3/23/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":269,"Cost":255,"Date":"4/1/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":26,"Cost":23,"Date":"5/7/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":530,"Cost":473,"Date":"5/10/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":816,"Cost":654,"Date":"5/20/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":748,"Cost":418,"Date":"6/2/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":719,"Cost":501,"Date":"6/11/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":992,"Cost":837,"Date":"6/16/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":796,"Cost":572,"Date":"6/16/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":803,"Cost":525,"Date":"7/10/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":751,"Cost":516,"Date":"7/11/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":448,"Cost":270,"Date":"8/28/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":383,"Cost":317,"Date":"8/29/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":655,"Cost":614,"Date":"8/31/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":480,"Cost":274,"Date":"9/8/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":778,"Cost":570,"Date":"9/13/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":351,"Cost":329,"Date":"9/14/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":671,"Cost":341,"Date":"9/19/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":461,"Cost":394,"Date":"9/25/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":763,"Cost":613,"Date":"10/4/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":861,"Cost":713,"Date":"10/10/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":526,"Cost":333,"Date":"10/17/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":672,"Cost":348,"Date":"10/28/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":271,"Cost":175,"Date":"10/30/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":228,"Cost":114,"Date":"11/1/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":862,"Cost":694,"Date":"11/15/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":301,"Cost":208,"Date":"11/25/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":148,"Cost":90,"Date":"1/10/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":173,"Cost":155,"Date":"1/14/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":994,"Cost":877,"Date":"1/20/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":475,"Cost":278,"Date":"2/8/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":683,"Cost":480,"Date":"2/25/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":558,"Cost":300,"Date":"3/7/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":268,"Cost":208,"Date":"3/14/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":192,"Cost":106,"Date":"3/27/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":349,"Cost":254,"Date":"4/5/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":921,"Cost":851,"Date":"4/14/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":520,"Cost":370,"Date":"5/3/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":768,"Cost":386,"Date":"5/9/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":50,"Cost":42,"Date":"5/15/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":497,"Cost":472,"Date":"5/25/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":216,"Cost":191,"Date":"5/26/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":585,"Cost":409,"Date":"5/31/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":943,"Cost":587,"Date":"7/27/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":299,"Cost":224,"Date":"9/17/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":617,"Cost":386,"Date":"10/6/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":315,"Cost":250,"Date":"10/8/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":757,"Cost":416,"Date":"10/26/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":774,"Cost":700,"Date":"11/16/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":794,"Cost":535,"Date":"11/18/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":616,"Cost":311,"Date":"12/1/2024"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":335,"Cost":262,"Date":"2/9/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":465,"Cost":360,"Date":"2/11/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":423,"Cost":375,"Date":"3/10/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":446,"Cost":232,"Date":"3/16/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":184,"Cost":108,"Date":"3/18/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":643,"Cost":441,"Date":"3/20/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":334,"Cost":184,"Date":"3/26/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":549,"Cost":279,"Date":"6/2/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":436,"Cost":314,"Date":"6/10/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":8,"Cost":7,"Date":"6/16/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":890,"Cost":593,"Date":"6/25/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":24,"Cost":22,"Date":"7/19/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":521,"Cost":349,"Date":"7/21/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":327,"Cost":282,"Date":"7/25/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":243,"Cost":170,"Date":"8/4/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":84,"Cost":59,"Date":"9/2/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":11,"Cost":6,"Date":"9/4/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":201,"Cost":128,"Date":"9/19/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":170,"Cost":143,"Date":"9/29/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":687,"Cost":350,"Date":"10/2/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":734,"Cost":402,"Date":"10/15/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":564,"Cost":475,"Date":"10/30/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":21,"Cost":16,"Date":"11/9/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":651,"Cost":452,"Date":"11/23/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":783,"Cost":423,"Date":"11/30/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":36,"Cost":23,"Date":"12/8/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":840,"Cost":536,"Date":"12/11/2018"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":50,"Cost":31,"Date":"1/15/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":843,"Cost":530,"Date":"1/24/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":251,"Cost":197,"Date":"2/3/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":196,"Cost":186,"Date":"2/4/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":974,"Cost":667,"Date":"3/9/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":657,"Cost":424,"Date":"3/12/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":979,"Cost":539,"Date":"4/19/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":102,"Cost":60,"Date":"5/3/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":965,"Cost":527,"Date":"5/4/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":869,"Cost":512,"Date":"6/8/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":928,"Cost":807,"Date":"6/26/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":31,"Cost":22,"Date":"7/4/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":205,"Cost":124,"Date":"7/13/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":301,"Cost":224,"Date":"8/8/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":721,"Cost":580,"Date":"8/26/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":707,"Cost":481,"Date":"9/2/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":555,"Cost":423,"Date":"9/29/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":642,"Cost":561,"Date":"10/12/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":991,"Cost":509,"Date":"11/2/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":1000,"Cost":589,"Date":"11/4/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":148,"Cost":113,"Date":"11/7/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":306,"Cost":283,"Date":"12/1/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":170,"Cost":147,"Date":"12/4/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":810,"Cost":511,"Date":"12/7/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":812,"Cost":678,"Date":"12/18/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":650,"Cost":613,"Date":"12/20/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":488,"Cost":435,"Date":"12/20/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":73,"Cost":49,"Date":"12/21/2019"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":566,"Cost":315,"Date":"1/9/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":168,"Cost":87,"Date":"2/5/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":72,"Cost":63,"Date":"2/16/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":273,"Cost":229,"Date":"2/16/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":354,"Cost":315,"Date":"2/18/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":17,"Cost":16,"Date":"2/22/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":726,"Cost":672,"Date":"2/25/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":83,"Cost":49,"Date":"3/8/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":233,"Cost":198,"Date":"4/2/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":115,"Cost":90,"Date":"4/3/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":67,"Cost":40,"Date":"4/9/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":810,"Cost":553,"Date":"4/10/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":401,"Cost":381,"Date":"4/19/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":309,"Cost":163,"Date":"5/17/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":120,"Cost":84,"Date":"5/22/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":78,"Cost":50,"Date":"6/20/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":267,"Cost":173,"Date":"7/1/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":351,"Cost":291,"Date":"7/4/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":165,"Cost":111,"Date":"7/8/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":732,"Cost":385,"Date":"7/9/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":581,"Cost":467,"Date":"7/14/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":924,"Cost":478,"Date":"7/19/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":331,"Cost":278,"Date":"8/1/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":686,"Cost":642,"Date":"8/6/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":22,"Cost":21,"Date":"8/7/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":132,"Cost":82,"Date":"8/22/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":488,"Cost":450,"Date":"8/31/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":191,"Cost":171,"Date":"9/1/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":773,"Cost":501,"Date":"9/1/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":67,"Cost":44,"Date":"9/17/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":768,"Cost":414,"Date":"9/29/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":702,"Cost":564,"Date":"11/7/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":197,"Cost":137,"Date":"11/26/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":207,"Cost":135,"Date":"11/27/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":58,"Cost":45,"Date":"12/5/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":344,"Cost":286,"Date":"12/26/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":89,"Cost":49,"Date":"12/31/2020"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":185,"Cost":125,"Date":"1/20/2021"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":826,"Cost":447,"Date":"2/2/2021"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":423,"Cost":367,"Date":"2/8/2021"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":560,"Cost":361,"Date":"2/27/2021"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":679,"Cost":407,"Date":"3/1/2021"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":372,"Cost":203,"Date":"3/1/2021"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":478,"Cost":335,"Date":"3/19/2021"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":266,"Cost":190,"Date":"3/28/2021"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":95,"Cost":80,"Date":"5/21/2021"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":967,"Cost":517,"Date":"7/21/2021"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":882,"Cost":838,"Date":"8/5/2021"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":547,"Cost":437,"Date":"8/12/2021"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":901,"Cost":569,"Date":"8/21/2021"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":541,"Cost":441,"Date":"8/23/2021"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":750,"Cost":674,"Date":"9/3/2021"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":326,"Cost":231,"Date":"9/5/2021"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":897,"Cost":800,"Date":"10/6/2021"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":575,"Cost":333,"Date":"10/19/2021"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":151,"Cost":106,"Date":"11/15/2021"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":361,"Cost":194,"Date":"12/8/2021"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":474,"Cost":292,"Date":"1/8/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":793,"Cost":439,"Date":"1/14/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":435,"Cost":314,"Date":"1/19/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":317,"Cost":211,"Date":"1/28/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":941,"Cost":820,"Date":"1/31/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":210,"Cost":146,"Date":"3/27/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":754,"Cost":656,"Date":"4/20/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":482,"Cost":405,"Date":"4/24/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":514,"Cost":370,"Date":"4/28/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":925,"Cost":719,"Date":"5/15/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":222,"Cost":188,"Date":"5/16/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":597,"Cost":337,"Date":"5/18/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":400,"Cost":371,"Date":"6/2/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":195,"Cost":114,"Date":"6/3/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":664,"Cost":547,"Date":"6/5/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":444,"Cost":289,"Date":"6/7/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":810,"Cost":575,"Date":"6/14/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":505,"Cost":427,"Date":"6/20/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":758,"Cost":501,"Date":"6/24/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":280,"Cost":188,"Date":"7/4/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":322,"Cost":221,"Date":"7/9/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":514,"Cost":350,"Date":"7/12/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":347,"Cost":292,"Date":"8/14/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":990,"Cost":657,"Date":"8/16/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":871,"Cost":504,"Date":"8/23/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":175,"Cost":105,"Date":"9/2/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":738,"Cost":461,"Date":"9/3/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":501,"Cost":265,"Date":"9/16/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":220,"Cost":199,"Date":"10/4/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":79,"Cost":47,"Date":"11/1/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":241,"Cost":215,"Date":"11/2/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":236,"Cost":184,"Date":"12/17/2022"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":178,"Cost":125,"Date":"2/10/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":737,"Cost":616,"Date":"2/28/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":348,"Cost":208,"Date":"3/4/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":892,"Cost":795,"Date":"3/9/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":227,"Cost":172,"Date":"3/9/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":185,"Cost":141,"Date":"3/11/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":824,"Cost":526,"Date":"3/17/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":487,"Cost":365,"Date":"3/17/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":510,"Cost":332,"Date":"3/23/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":525,"Cost":317,"Date":"4/1/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":598,"Cost":346,"Date":"5/7/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":311,"Cost":223,"Date":"5/10/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":685,"Cost":623,"Date":"5/20/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":418,"Cost":284,"Date":"6/2/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":173,"Cost":161,"Date":"6/11/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":436,"Cost":368,"Date":"6/16/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":744,"Cost":544,"Date":"6/16/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":426,"Cost":299,"Date":"7/10/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":508,"Cost":257,"Date":"7/11/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":438,"Cost":339,"Date":"8/28/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":760,"Cost":423,"Date":"8/29/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":856,"Cost":601,"Date":"8/31/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":488,"Cost":398,"Date":"9/8/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":27,"Cost":20,"Date":"9/13/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":543,"Cost":420,"Date":"9/14/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":763,"Cost":512,"Date":"9/19/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":45,"Cost":37,"Date":"9/25/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":749,"Cost":529,"Date":"10/4/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":681,"Cost":587,"Date":"10/10/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":351,"Cost":225,"Date":"10/17/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":922,"Cost":630,"Date":"10/28/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":359,"Cost":337,"Date":"10/30/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":675,"Cost":552,"Date":"11/1/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":885,"Cost":734,"Date":"11/15/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":278,"Cost":264,"Date":"11/25/2023"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":4,"Cost":4,"Date":"1/10/2024"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":517,"Cost":302,"Date":"1/14/2024"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":16,"Cost":13,"Date":"1/20/2024"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":207,"Cost":137,"Date":"2/8/2024"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":99,"Cost":51,"Date":"2/25/2024"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":810,"Cost":612,"Date":"3/7/2024"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":29,"Cost":23,"Date":"3/14/2024"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":649,"Cost":464,"Date":"3/27/2024"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":469,"Cost":373,"Date":"4/5/2024"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":879,"Cost":647,"Date":"4/14/2024"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":950,"Cost":846,"Date":"5/3/2024"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":301,"Cost":203,"Date":"5/9/2024"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":500,"Cost":301,"Date":"5/15/2024"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":285,"Cost":204,"Date":"5/25/2024"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":996,"Cost":686,"Date":"5/26/2024"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":120,"Cost":90,"Date":"5/31/2024"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":919,"Cost":696,"Date":"7/27/2024"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":145,"Cost":109,"Date":"9/17/2024"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":838,"Cost":517,"Date":"10/6/2024"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":791,"Cost":598,"Date":"10/8/2024"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":121,"Cost":70,"Date":"10/26/2024"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":655,"Cost":365,"Date":"11/16/2024"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":933,"Cost":676,"Date":"11/18/2024"},{"Store":"Westland Shopping, Brussels","Brand":"COS","Country":"Belgium","Sale":869,"Cost":511,"Date":"12/1/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":335,"Cost":288,"Date":"2/9/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":568,"Cost":532,"Date":"2/11/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":891,"Cost":607,"Date":"3/10/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":661,"Cost":429,"Date":"3/16/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":800,"Cost":655,"Date":"3/18/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":176,"Cost":153,"Date":"3/20/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":674,"Cost":507,"Date":"3/26/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":564,"Cost":312,"Date":"6/2/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":171,"Cost":114,"Date":"6/10/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":468,"Cost":269,"Date":"6/16/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":393,"Cost":240,"Date":"6/25/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":813,"Cost":553,"Date":"7/19/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":745,"Cost":417,"Date":"7/21/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":368,"Cost":270,"Date":"7/25/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":140,"Cost":106,"Date":"8/4/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":421,"Cost":324,"Date":"9/2/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":195,"Cost":122,"Date":"9/4/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":849,"Cost":590,"Date":"9/19/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":731,"Cost":518,"Date":"9/29/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":509,"Cost":325,"Date":"10/2/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":285,"Cost":189,"Date":"10/15/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":29,"Cost":16,"Date":"10/30/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":921,"Cost":687,"Date":"11/9/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":824,"Cost":761,"Date":"11/23/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":105,"Cost":62,"Date":"11/30/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":470,"Cost":235,"Date":"12/8/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":197,"Cost":164,"Date":"12/11/2018"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":497,"Cost":253,"Date":"1/15/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":334,"Cost":210,"Date":"1/24/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":879,"Cost":775,"Date":"2/3/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":813,"Cost":637,"Date":"2/4/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":536,"Cost":447,"Date":"3/9/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":808,"Cost":489,"Date":"3/12/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":874,"Cost":622,"Date":"4/19/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":47,"Cost":38,"Date":"5/3/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":379,"Cost":266,"Date":"5/4/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":843,"Cost":709,"Date":"6/8/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":874,"Cost":808,"Date":"6/26/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":791,"Cost":743,"Date":"7/4/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":667,"Cost":343,"Date":"7/13/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":140,"Cost":87,"Date":"8/8/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":960,"Cost":717,"Date":"8/26/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":328,"Cost":249,"Date":"9/2/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":825,"Cost":684,"Date":"9/29/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":404,"Cost":231,"Date":"10/12/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":955,"Cost":822,"Date":"11/2/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":489,"Cost":266,"Date":"11/4/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":842,"Cost":439,"Date":"11/7/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":630,"Cost":492,"Date":"12/1/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":685,"Cost":468,"Date":"12/4/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":554,"Cost":383,"Date":"12/7/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":78,"Cost":58,"Date":"12/18/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":881,"Cost":784,"Date":"12/20/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":88,"Cost":67,"Date":"12/20/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":298,"Cost":280,"Date":"12/21/2019"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":732,"Cost":368,"Date":"1/9/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":162,"Cost":147,"Date":"2/5/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":148,"Cost":136,"Date":"2/16/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":370,"Cost":279,"Date":"2/16/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":975,"Cost":510,"Date":"2/18/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":344,"Cost":187,"Date":"2/22/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":956,"Cost":685,"Date":"2/25/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":887,"Cost":702,"Date":"3/8/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":88,"Cost":81,"Date":"4/2/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":861,"Cost":436,"Date":"4/3/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":216,"Cost":131,"Date":"4/9/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":386,"Cost":230,"Date":"4/10/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":23,"Cost":16,"Date":"4/19/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":324,"Cost":193,"Date":"5/17/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":382,"Cost":318,"Date":"5/22/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":945,"Cost":703,"Date":"6/20/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":372,"Cost":346,"Date":"7/1/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":998,"Cost":843,"Date":"7/4/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":17,"Cost":11,"Date":"7/8/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":609,"Cost":408,"Date":"7/9/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":759,"Cost":486,"Date":"7/14/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":43,"Cost":32,"Date":"7/19/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":280,"Cost":166,"Date":"8/1/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":785,"Cost":563,"Date":"8/6/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":823,"Cost":529,"Date":"8/7/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":304,"Cost":211,"Date":"8/22/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":695,"Cost":552,"Date":"8/31/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":789,"Cost":409,"Date":"9/1/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":460,"Cost":416,"Date":"9/1/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":35,"Cost":28,"Date":"9/17/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":351,"Cost":324,"Date":"9/29/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":216,"Cost":136,"Date":"11/7/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":950,"Cost":883,"Date":"11/26/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":807,"Cost":554,"Date":"11/27/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":702,"Cost":555,"Date":"12/5/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":478,"Cost":317,"Date":"12/26/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":203,"Cost":158,"Date":"12/31/2020"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":117,"Cost":94,"Date":"1/20/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":904,"Cost":580,"Date":"2/2/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":210,"Cost":118,"Date":"2/8/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":653,"Cost":398,"Date":"2/27/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":229,"Cost":209,"Date":"3/1/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":148,"Cost":103,"Date":"3/1/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":337,"Cost":258,"Date":"3/19/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":438,"Cost":376,"Date":"3/28/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":471,"Cost":357,"Date":"5/21/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":618,"Cost":555,"Date":"7/21/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":643,"Cost":398,"Date":"8/5/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":403,"Cost":219,"Date":"8/12/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":40,"Cost":33,"Date":"8/21/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":247,"Cost":177,"Date":"8/23/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":672,"Cost":446,"Date":"9/3/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":806,"Cost":529,"Date":"9/5/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":188,"Cost":156,"Date":"10/6/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":912,"Cost":659,"Date":"10/19/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":784,"Cost":677,"Date":"11/15/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":474,"Cost":270,"Date":"12/8/2021"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":108,"Cost":60,"Date":"1/8/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":154,"Cost":93,"Date":"1/14/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":157,"Cost":148,"Date":"1/19/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":333,"Cost":304,"Date":"1/28/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":231,"Cost":160,"Date":"1/31/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":60,"Cost":56,"Date":"3/27/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":723,"Cost":420,"Date":"4/20/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":212,"Cost":147,"Date":"4/24/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":837,"Cost":625,"Date":"4/28/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":761,"Cost":480,"Date":"5/15/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":334,"Cost":294,"Date":"5/16/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":118,"Cost":103,"Date":"5/18/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":916,"Cost":830,"Date":"6/2/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":130,"Cost":119,"Date":"6/3/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":334,"Cost":248,"Date":"6/5/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":7,"Cost":7,"Date":"6/7/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":966,"Cost":767,"Date":"6/14/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":467,"Cost":360,"Date":"6/20/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":277,"Cost":249,"Date":"6/24/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":927,"Cost":858,"Date":"7/4/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":93,"Cost":47,"Date":"7/9/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":35,"Cost":18,"Date":"7/12/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":233,"Cost":179,"Date":"8/14/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":19,"Cost":12,"Date":"8/16/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":983,"Cost":596,"Date":"8/23/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":791,"Cost":684,"Date":"9/2/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":928,"Cost":723,"Date":"9/3/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":559,"Cost":280,"Date":"9/16/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":29,"Cost":26,"Date":"10/4/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":904,"Cost":659,"Date":"11/1/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":200,"Cost":116,"Date":"11/2/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":537,"Cost":343,"Date":"12/17/2022"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":528,"Cost":418,"Date":"2/10/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":692,"Cost":596,"Date":"2/28/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":565,"Cost":428,"Date":"3/4/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":206,"Cost":148,"Date":"3/9/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":129,"Cost":118,"Date":"3/9/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":633,"Cost":511,"Date":"3/11/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":417,"Cost":379,"Date":"3/17/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":48,"Cost":34,"Date":"3/17/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":946,"Cost":857,"Date":"3/23/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":451,"Cost":320,"Date":"4/1/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":839,"Cost":504,"Date":"5/7/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":307,"Cost":217,"Date":"5/10/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":71,"Cost":36,"Date":"5/20/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":995,"Cost":875,"Date":"6/2/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":531,"Cost":447,"Date":"6/11/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":569,"Cost":288,"Date":"6/16/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":773,"Cost":724,"Date":"6/16/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":840,"Cost":645,"Date":"7/10/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":186,"Cost":118,"Date":"7/11/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":931,"Cost":672,"Date":"8/28/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":152,"Cost":97,"Date":"8/29/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":599,"Cost":404,"Date":"8/31/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":754,"Cost":471,"Date":"9/8/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":586,"Cost":526,"Date":"9/13/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":841,"Cost":442,"Date":"9/14/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":304,"Cost":226,"Date":"9/19/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":773,"Cost":462,"Date":"9/25/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":330,"Cost":308,"Date":"10/4/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":281,"Cost":209,"Date":"10/10/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":237,"Cost":202,"Date":"10/17/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":237,"Cost":138,"Date":"10/28/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":935,"Cost":718,"Date":"10/30/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":808,"Cost":498,"Date":"11/1/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":615,"Cost":351,"Date":"11/15/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":32,"Cost":29,"Date":"11/25/2023"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":351,"Cost":187,"Date":"1/10/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":509,"Cost":276,"Date":"1/14/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":937,"Cost":692,"Date":"1/20/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":459,"Cost":396,"Date":"2/8/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":896,"Cost":796,"Date":"2/25/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":551,"Cost":375,"Date":"3/7/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":12,"Cost":10,"Date":"3/14/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":16,"Cost":12,"Date":"3/27/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":722,"Cost":504,"Date":"4/5/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":935,"Cost":614,"Date":"4/14/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":48,"Cost":42,"Date":"5/3/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":400,"Cost":210,"Date":"5/9/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":891,"Cost":588,"Date":"5/15/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":434,"Cost":385,"Date":"5/25/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":938,"Cost":593,"Date":"5/26/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":297,"Cost":246,"Date":"5/31/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":828,"Cost":457,"Date":"7/27/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":89,"Cost":66,"Date":"9/17/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":988,"Cost":844,"Date":"10/6/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":96,"Cost":59,"Date":"10/8/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":797,"Cost":642,"Date":"10/26/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":810,"Cost":476,"Date":"11/16/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":320,"Cost":235,"Date":"11/18/2024"},{"Store":"Westland Shopping, Brussels","Brand":"Sellpy","Country":"Belgium","Sale":244,"Cost":154,"Date":"12/1/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":952,"Cost":546,"Date":"2/9/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":305,"Cost":205,"Date":"2/11/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":472,"Cost":392,"Date":"3/10/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":790,"Cost":542,"Date":"3/16/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":532,"Cost":278,"Date":"3/18/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":160,"Cost":94,"Date":"3/20/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":252,"Cost":183,"Date":"3/26/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":593,"Cost":475,"Date":"6/2/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":970,"Cost":654,"Date":"6/10/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":465,"Cost":328,"Date":"6/16/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":231,"Cost":143,"Date":"6/25/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":108,"Cost":101,"Date":"7/19/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":45,"Cost":41,"Date":"7/21/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":534,"Cost":279,"Date":"7/25/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":341,"Cost":220,"Date":"8/4/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":747,"Cost":707,"Date":"9/2/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":868,"Cost":672,"Date":"9/4/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":290,"Cost":160,"Date":"9/19/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":816,"Cost":713,"Date":"9/29/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":27,"Cost":16,"Date":"10/2/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":590,"Cost":480,"Date":"10/15/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":895,"Cost":783,"Date":"10/30/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":171,"Cost":146,"Date":"11/9/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":424,"Cost":308,"Date":"11/23/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":149,"Cost":87,"Date":"11/30/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":839,"Cost":525,"Date":"12/8/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":659,"Cost":470,"Date":"12/11/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":764,"Cost":609,"Date":"1/15/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":533,"Cost":369,"Date":"1/24/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":249,"Cost":193,"Date":"2/3/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":379,"Cost":358,"Date":"2/4/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":995,"Cost":847,"Date":"3/9/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":579,"Cost":310,"Date":"3/12/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":339,"Cost":309,"Date":"4/19/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":346,"Cost":243,"Date":"5/3/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":804,"Cost":588,"Date":"5/4/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":21,"Cost":15,"Date":"6/8/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":921,"Cost":617,"Date":"6/26/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":12,"Cost":8,"Date":"7/4/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":535,"Cost":340,"Date":"7/13/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":449,"Cost":302,"Date":"8/8/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":41,"Cost":34,"Date":"8/26/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":184,"Cost":161,"Date":"9/2/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":756,"Cost":444,"Date":"9/29/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":881,"Cost":557,"Date":"10/12/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":990,"Cost":755,"Date":"11/2/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":785,"Cost":407,"Date":"11/4/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":18,"Cost":17,"Date":"11/7/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":970,"Cost":549,"Date":"12/1/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":313,"Cost":223,"Date":"12/4/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":131,"Cost":69,"Date":"12/7/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":647,"Cost":327,"Date":"12/18/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":85,"Cost":72,"Date":"12/20/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":26,"Cost":23,"Date":"12/20/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":226,"Cost":174,"Date":"12/21/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":476,"Cost":377,"Date":"1/9/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":908,"Cost":718,"Date":"2/5/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":444,"Cost":372,"Date":"2/16/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":790,"Cost":741,"Date":"2/16/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":915,"Cost":473,"Date":"2/18/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":756,"Cost":605,"Date":"2/22/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":6,"Cost":6,"Date":"2/25/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":668,"Cost":456,"Date":"3/8/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":722,"Cost":485,"Date":"4/2/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":900,"Cost":471,"Date":"4/3/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":577,"Cost":396,"Date":"4/9/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":23,"Cost":18,"Date":"4/10/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":68,"Cost":40,"Date":"4/19/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":296,"Cost":232,"Date":"5/17/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":938,"Cost":520,"Date":"5/22/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":115,"Cost":79,"Date":"6/20/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":92,"Cost":84,"Date":"7/1/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":286,"Cost":239,"Date":"7/4/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":56,"Cost":44,"Date":"7/8/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":525,"Cost":357,"Date":"7/9/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":791,"Cost":568,"Date":"7/14/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":678,"Cost":568,"Date":"7/19/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":669,"Cost":438,"Date":"8/1/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":199,"Cost":113,"Date":"8/6/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":117,"Cost":86,"Date":"8/7/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":746,"Cost":650,"Date":"8/22/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":803,"Cost":542,"Date":"8/31/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":269,"Cost":223,"Date":"9/1/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":206,"Cost":189,"Date":"9/1/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":889,"Cost":652,"Date":"9/17/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":932,"Cost":795,"Date":"9/29/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":867,"Cost":649,"Date":"11/7/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":707,"Cost":519,"Date":"11/26/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":895,"Cost":822,"Date":"11/27/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":744,"Cost":416,"Date":"12/5/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":519,"Cost":379,"Date":"12/26/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":24,"Cost":14,"Date":"12/31/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":411,"Cost":234,"Date":"1/20/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":711,"Cost":625,"Date":"2/2/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":149,"Cost":109,"Date":"2/8/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":354,"Cost":262,"Date":"2/27/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":652,"Cost":521,"Date":"3/1/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":815,"Cost":485,"Date":"3/1/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":92,"Cost":56,"Date":"3/19/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":508,"Cost":259,"Date":"3/28/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":79,"Cost":53,"Date":"5/21/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":68,"Cost":54,"Date":"7/21/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":869,"Cost":780,"Date":"8/5/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":991,"Cost":535,"Date":"8/12/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":233,"Cost":213,"Date":"8/21/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":149,"Cost":103,"Date":"8/23/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":13,"Cost":10,"Date":"9/3/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":133,"Cost":119,"Date":"9/5/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":110,"Cost":88,"Date":"10/6/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":492,"Cost":331,"Date":"10/19/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":937,"Cost":761,"Date":"11/15/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":982,"Cost":652,"Date":"12/8/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":5,"Cost":4,"Date":"1/8/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":98,"Cost":53,"Date":"1/14/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":564,"Cost":445,"Date":"1/19/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":572,"Cost":536,"Date":"1/28/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":786,"Cost":714,"Date":"1/31/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":993,"Cost":501,"Date":"3/27/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":241,"Cost":219,"Date":"4/20/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":717,"Cost":508,"Date":"4/24/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":820,"Cost":467,"Date":"4/28/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":505,"Cost":333,"Date":"5/15/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":879,"Cost":824,"Date":"5/16/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":284,"Cost":250,"Date":"5/18/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":471,"Cost":364,"Date":"6/2/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":701,"Cost":429,"Date":"6/3/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":180,"Cost":135,"Date":"6/5/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":226,"Cost":132,"Date":"6/7/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":309,"Cost":292,"Date":"6/14/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":321,"Cost":187,"Date":"6/20/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":432,"Cost":360,"Date":"6/24/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":570,"Cost":342,"Date":"7/4/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":655,"Cost":473,"Date":"7/9/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":138,"Cost":111,"Date":"7/12/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":869,"Cost":477,"Date":"8/14/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":556,"Cost":304,"Date":"8/16/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":116,"Cost":106,"Date":"8/23/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":798,"Cost":653,"Date":"9/2/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":90,"Cost":80,"Date":"9/3/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":214,"Cost":189,"Date":"9/16/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":431,"Cost":304,"Date":"10/4/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":231,"Cost":140,"Date":"11/1/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":212,"Cost":194,"Date":"11/2/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":803,"Cost":627,"Date":"12/17/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":776,"Cost":503,"Date":"2/10/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":890,"Cost":832,"Date":"2/28/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":910,"Cost":652,"Date":"3/4/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":632,"Cost":366,"Date":"3/9/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":732,"Cost":418,"Date":"3/9/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":881,"Cost":783,"Date":"3/11/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":765,"Cost":429,"Date":"3/17/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":664,"Cost":591,"Date":"3/17/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":858,"Cost":477,"Date":"3/23/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":621,"Cost":344,"Date":"4/1/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":990,"Cost":595,"Date":"5/7/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":643,"Cost":548,"Date":"5/10/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":619,"Cost":498,"Date":"5/20/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":417,"Cost":234,"Date":"6/2/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":863,"Cost":638,"Date":"6/11/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":676,"Cost":353,"Date":"6/16/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":784,"Cost":441,"Date":"6/16/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":447,"Cost":403,"Date":"7/10/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":530,"Cost":343,"Date":"7/11/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":18,"Cost":14,"Date":"8/28/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":377,"Cost":332,"Date":"8/29/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":64,"Cost":45,"Date":"8/31/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":581,"Cost":373,"Date":"9/8/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":189,"Cost":139,"Date":"9/13/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":648,"Cost":351,"Date":"9/14/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":270,"Cost":187,"Date":"9/19/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":447,"Cost":371,"Date":"9/25/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":449,"Cost":278,"Date":"10/4/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":951,"Cost":898,"Date":"10/10/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":398,"Cost":214,"Date":"10/17/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":133,"Cost":115,"Date":"10/28/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":468,"Cost":273,"Date":"10/30/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":430,"Cost":288,"Date":"11/1/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":898,"Cost":736,"Date":"11/15/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":860,"Cost":773,"Date":"11/25/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":779,"Cost":427,"Date":"1/10/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":839,"Cost":796,"Date":"1/14/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":856,"Cost":727,"Date":"1/20/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":247,"Cost":223,"Date":"2/8/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":949,"Cost":726,"Date":"2/25/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":751,"Cost":707,"Date":"3/7/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":970,"Cost":912,"Date":"3/14/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":269,"Cost":254,"Date":"3/27/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":684,"Cost":344,"Date":"4/5/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":869,"Cost":457,"Date":"4/14/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":387,"Cost":306,"Date":"5/3/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":218,"Cost":132,"Date":"5/9/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":922,"Cost":542,"Date":"5/15/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":423,"Cost":402,"Date":"5/25/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":994,"Cost":699,"Date":"5/26/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":985,"Cost":677,"Date":"5/31/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":561,"Cost":333,"Date":"7/27/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":290,"Cost":198,"Date":"9/17/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":963,"Cost":712,"Date":"10/6/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":80,"Cost":70,"Date":"10/8/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":608,"Cost":348,"Date":"10/26/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":121,"Cost":77,"Date":"11/16/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":411,"Cost":301,"Date":"11/18/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":698,"Cost":549,"Date":"12/1/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":715,"Cost":544,"Date":"2/9/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":668,"Cost":548,"Date":"2/11/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":635,"Cost":533,"Date":"3/10/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":584,"Cost":448,"Date":"3/16/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":356,"Cost":217,"Date":"3/18/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":703,"Cost":481,"Date":"3/20/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":975,"Cost":704,"Date":"3/26/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":504,"Cost":340,"Date":"6/2/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":489,"Cost":376,"Date":"6/10/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":478,"Cost":418,"Date":"6/16/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":13,"Cost":10,"Date":"6/25/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":18,"Cost":11,"Date":"7/19/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":868,"Cost":629,"Date":"7/21/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":577,"Cost":438,"Date":"7/25/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":784,"Cost":659,"Date":"8/4/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":434,"Cost":320,"Date":"9/2/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":485,"Cost":327,"Date":"9/4/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":296,"Cost":260,"Date":"9/19/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":879,"Cost":454,"Date":"9/29/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":60,"Cost":35,"Date":"10/2/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":288,"Cost":148,"Date":"10/15/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":797,"Cost":620,"Date":"10/30/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":629,"Cost":477,"Date":"11/9/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":533,"Cost":328,"Date":"11/23/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":294,"Cost":149,"Date":"11/30/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":901,"Cost":536,"Date":"12/8/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":808,"Cost":601,"Date":"12/11/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":139,"Cost":104,"Date":"1/15/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":457,"Cost":430,"Date":"1/24/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":857,"Cost":615,"Date":"2/3/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":484,"Cost":324,"Date":"2/4/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":452,"Cost":362,"Date":"3/9/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":28,"Cost":22,"Date":"3/12/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":373,"Cost":254,"Date":"4/19/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":649,"Cost":405,"Date":"5/3/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":601,"Cost":301,"Date":"5/4/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":45,"Cost":28,"Date":"6/8/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":344,"Cost":187,"Date":"6/26/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":709,"Cost":444,"Date":"7/4/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":634,"Cost":527,"Date":"7/13/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":702,"Cost":523,"Date":"8/8/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":47,"Cost":25,"Date":"8/26/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":329,"Cost":169,"Date":"9/2/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":256,"Cost":230,"Date":"9/29/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":669,"Cost":338,"Date":"10/12/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":328,"Cost":247,"Date":"11/2/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":911,"Cost":793,"Date":"11/4/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":578,"Cost":538,"Date":"11/7/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":395,"Cost":343,"Date":"12/1/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":845,"Cost":540,"Date":"12/4/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":243,"Cost":219,"Date":"12/7/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":196,"Cost":183,"Date":"12/18/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":187,"Cost":142,"Date":"12/20/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":347,"Cost":177,"Date":"12/20/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":768,"Cost":481,"Date":"12/21/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":850,"Cost":539,"Date":"1/9/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":519,"Cost":317,"Date":"2/5/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":562,"Cost":314,"Date":"2/16/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":68,"Cost":60,"Date":"2/16/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":749,"Cost":707,"Date":"2/18/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":628,"Cost":556,"Date":"2/22/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":126,"Cost":112,"Date":"2/25/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":783,"Cost":640,"Date":"3/8/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":65,"Cost":39,"Date":"4/2/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":18,"Cost":14,"Date":"4/3/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":348,"Cost":273,"Date":"4/9/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":637,"Cost":568,"Date":"4/10/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":914,"Cost":830,"Date":"4/19/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":527,"Cost":390,"Date":"5/17/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":197,"Cost":183,"Date":"5/22/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":237,"Cost":141,"Date":"6/20/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":860,"Cost":607,"Date":"7/1/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":248,"Cost":220,"Date":"7/4/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":111,"Cost":84,"Date":"7/8/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":81,"Cost":50,"Date":"7/9/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":203,"Cost":133,"Date":"7/14/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":594,"Cost":368,"Date":"7/19/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":531,"Cost":479,"Date":"8/1/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":131,"Cost":89,"Date":"8/6/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":356,"Cost":279,"Date":"8/7/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":198,"Cost":163,"Date":"8/22/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":346,"Cost":305,"Date":"8/31/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":120,"Cost":75,"Date":"9/1/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":119,"Cost":97,"Date":"9/1/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":612,"Cost":320,"Date":"9/17/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":195,"Cost":121,"Date":"9/29/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":144,"Cost":122,"Date":"11/7/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":113,"Cost":90,"Date":"11/26/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":847,"Cost":473,"Date":"11/27/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":674,"Cost":588,"Date":"12/5/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":979,"Cost":746,"Date":"12/26/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":28,"Cost":23,"Date":"12/31/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":659,"Cost":510,"Date":"1/20/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":615,"Cost":495,"Date":"2/2/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":208,"Cost":162,"Date":"2/8/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":653,"Cost":486,"Date":"2/27/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":251,"Cost":162,"Date":"3/1/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":920,"Cost":677,"Date":"3/1/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":653,"Cost":343,"Date":"3/19/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":191,"Cost":179,"Date":"3/28/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":767,"Cost":655,"Date":"5/21/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":448,"Cost":420,"Date":"7/21/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":525,"Cost":424,"Date":"8/5/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":486,"Cost":285,"Date":"8/12/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":900,"Cost":829,"Date":"8/21/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":783,"Cost":514,"Date":"8/23/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":243,"Cost":123,"Date":"9/3/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":824,"Cost":537,"Date":"9/5/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":626,"Cost":545,"Date":"10/6/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":3,"Cost":1,"Date":"10/19/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":769,"Cost":596,"Date":"11/15/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":134,"Cost":124,"Date":"12/8/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":924,"Cost":735,"Date":"1/8/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":966,"Cost":636,"Date":"1/14/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":318,"Cost":175,"Date":"1/19/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":484,"Cost":282,"Date":"1/28/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":750,"Cost":514,"Date":"1/31/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":10,"Cost":5,"Date":"3/27/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":112,"Cost":69,"Date":"4/20/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":291,"Cost":196,"Date":"4/24/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":48,"Cost":43,"Date":"4/28/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":326,"Cost":211,"Date":"5/15/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":968,"Cost":685,"Date":"5/16/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":491,"Cost":394,"Date":"5/18/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":802,"Cost":433,"Date":"6/2/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":562,"Cost":451,"Date":"6/3/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":771,"Cost":633,"Date":"6/5/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":57,"Cost":46,"Date":"6/7/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":247,"Cost":230,"Date":"6/14/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":440,"Cost":327,"Date":"6/20/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":798,"Cost":754,"Date":"6/24/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":9,"Cost":5,"Date":"7/4/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":75,"Cost":55,"Date":"7/9/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":47,"Cost":33,"Date":"7/12/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":354,"Cost":296,"Date":"8/14/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":65,"Cost":36,"Date":"8/16/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":871,"Cost":795,"Date":"8/23/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":630,"Cost":503,"Date":"9/2/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":411,"Cost":262,"Date":"9/3/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":183,"Cost":158,"Date":"9/16/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":106,"Cost":85,"Date":"10/4/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":885,"Cost":763,"Date":"11/1/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":269,"Cost":234,"Date":"11/2/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":720,"Cost":620,"Date":"12/17/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":479,"Cost":422,"Date":"2/10/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":790,"Cost":448,"Date":"2/28/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":822,"Cost":477,"Date":"3/4/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":707,"Cost":489,"Date":"3/9/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":352,"Cost":323,"Date":"3/9/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":887,"Cost":605,"Date":"3/11/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":779,"Cost":648,"Date":"3/17/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":818,"Cost":476,"Date":"3/17/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":980,"Cost":515,"Date":"3/23/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":56,"Cost":51,"Date":"4/1/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":497,"Cost":383,"Date":"5/7/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":408,"Cost":295,"Date":"5/10/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":587,"Cost":468,"Date":"5/20/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":574,"Cost":453,"Date":"6/2/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":243,"Cost":165,"Date":"6/11/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":254,"Cost":177,"Date":"6/16/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":961,"Cost":711,"Date":"6/16/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":135,"Cost":100,"Date":"7/10/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":568,"Cost":433,"Date":"7/11/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":514,"Cost":328,"Date":"8/28/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":648,"Cost":421,"Date":"8/29/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":764,"Cost":468,"Date":"8/31/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":821,"Cost":482,"Date":"9/8/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":49,"Cost":46,"Date":"9/13/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":139,"Cost":103,"Date":"9/14/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":926,"Cost":504,"Date":"9/19/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":180,"Cost":101,"Date":"9/25/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":181,"Cost":134,"Date":"10/4/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":177,"Cost":166,"Date":"10/10/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":924,"Cost":544,"Date":"10/17/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":477,"Cost":301,"Date":"10/28/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":419,"Cost":247,"Date":"10/30/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":794,"Cost":663,"Date":"11/1/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":557,"Cost":480,"Date":"11/15/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":979,"Cost":817,"Date":"11/25/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":293,"Cost":269,"Date":"1/10/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":106,"Cost":81,"Date":"1/14/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":735,"Cost":556,"Date":"1/20/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":620,"Cost":562,"Date":"2/8/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":863,"Cost":720,"Date":"2/25/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":917,"Cost":706,"Date":"3/7/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":773,"Cost":731,"Date":"3/14/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":953,"Cost":718,"Date":"3/27/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":73,"Cost":51,"Date":"4/5/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":170,"Cost":113,"Date":"4/14/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":296,"Cost":150,"Date":"5/3/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":551,"Cost":499,"Date":"5/9/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":222,"Cost":150,"Date":"5/15/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":817,"Cost":485,"Date":"5/25/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":389,"Cost":203,"Date":"5/26/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":470,"Cost":404,"Date":"5/31/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":140,"Cost":119,"Date":"7/27/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":760,"Cost":642,"Date":"9/17/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":454,"Cost":298,"Date":"10/6/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":847,"Cost":518,"Date":"10/8/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":676,"Cost":410,"Date":"10/26/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":426,"Cost":389,"Date":"11/16/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":596,"Cost":299,"Date":"11/18/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"Nova","Country":"Belgium","Sale":539,"Cost":352,"Date":"12/1/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":655,"Cost":561,"Date":"2/9/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":112,"Cost":77,"Date":"2/11/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":513,"Cost":416,"Date":"3/10/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":895,"Cost":676,"Date":"3/16/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":304,"Cost":166,"Date":"3/18/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":858,"Cost":714,"Date":"3/20/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":757,"Cost":551,"Date":"3/26/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":704,"Cost":666,"Date":"6/2/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":584,"Cost":543,"Date":"6/10/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":625,"Cost":467,"Date":"6/16/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":272,"Cost":196,"Date":"6/25/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":877,"Cost":774,"Date":"7/19/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":925,"Cost":690,"Date":"7/21/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":381,"Cost":294,"Date":"7/25/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":110,"Cost":65,"Date":"8/4/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":177,"Cost":159,"Date":"9/2/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":662,"Cost":352,"Date":"9/4/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":807,"Cost":404,"Date":"9/19/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":343,"Cost":277,"Date":"9/29/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":25,"Cost":23,"Date":"10/2/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":904,"Cost":807,"Date":"10/15/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":245,"Cost":147,"Date":"10/30/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":293,"Cost":178,"Date":"11/9/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":741,"Cost":500,"Date":"11/23/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":432,"Cost":226,"Date":"11/30/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":328,"Cost":214,"Date":"12/8/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":433,"Cost":243,"Date":"12/11/2018"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":16,"Cost":12,"Date":"1/15/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":71,"Cost":53,"Date":"1/24/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":219,"Cost":138,"Date":"2/3/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":307,"Cost":270,"Date":"2/4/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":19,"Cost":14,"Date":"3/9/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":526,"Cost":422,"Date":"3/12/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":85,"Cost":54,"Date":"4/19/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":6,"Cost":3,"Date":"5/3/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":44,"Cost":26,"Date":"5/4/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":649,"Cost":332,"Date":"6/8/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":734,"Cost":539,"Date":"6/26/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":887,"Cost":780,"Date":"7/4/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":671,"Cost":637,"Date":"7/13/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":725,"Cost":581,"Date":"8/8/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":390,"Cost":293,"Date":"8/26/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":3,"Cost":2,"Date":"9/2/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":734,"Cost":681,"Date":"9/29/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":617,"Cost":334,"Date":"10/12/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":145,"Cost":80,"Date":"11/2/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":681,"Cost":532,"Date":"11/4/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":730,"Cost":525,"Date":"11/7/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":631,"Cost":384,"Date":"12/1/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":823,"Cost":642,"Date":"12/4/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":493,"Cost":305,"Date":"12/7/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":1,"Cost":1,"Date":"12/18/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":482,"Cost":387,"Date":"12/20/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":4,"Cost":2,"Date":"12/20/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":770,"Cost":671,"Date":"12/21/2019"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":513,"Cost":354,"Date":"1/9/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":119,"Cost":109,"Date":"2/5/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":688,"Cost":506,"Date":"2/16/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":564,"Cost":516,"Date":"2/16/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":868,"Cost":435,"Date":"2/18/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":50,"Cost":46,"Date":"2/22/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":719,"Cost":441,"Date":"2/25/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":610,"Cost":419,"Date":"3/8/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":527,"Cost":466,"Date":"4/2/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":774,"Cost":603,"Date":"4/3/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":222,"Cost":121,"Date":"4/9/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":710,"Cost":592,"Date":"4/10/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":370,"Cost":290,"Date":"4/19/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":875,"Cost":590,"Date":"5/17/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":564,"Cost":471,"Date":"5/22/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":739,"Cost":684,"Date":"6/20/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":597,"Cost":421,"Date":"7/1/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":217,"Cost":113,"Date":"7/4/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":852,"Cost":470,"Date":"7/8/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":292,"Cost":161,"Date":"7/9/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":960,"Cost":731,"Date":"7/14/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":206,"Cost":118,"Date":"7/19/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":171,"Cost":136,"Date":"8/1/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":960,"Cost":656,"Date":"8/6/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":780,"Cost":733,"Date":"8/7/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":816,"Cost":429,"Date":"8/22/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":946,"Cost":530,"Date":"8/31/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":335,"Cost":291,"Date":"9/1/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":258,"Cost":129,"Date":"9/1/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":560,"Cost":290,"Date":"9/17/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":623,"Cost":571,"Date":"9/29/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":573,"Cost":478,"Date":"11/7/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":628,"Cost":329,"Date":"11/26/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":268,"Cost":206,"Date":"11/27/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":159,"Cost":120,"Date":"12/5/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":992,"Cost":774,"Date":"12/26/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":289,"Cost":190,"Date":"12/31/2020"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":242,"Cost":204,"Date":"1/20/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":565,"Cost":405,"Date":"2/2/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":986,"Cost":637,"Date":"2/8/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":678,"Cost":348,"Date":"2/27/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":25,"Cost":16,"Date":"3/1/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":302,"Cost":277,"Date":"3/1/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":755,"Cost":565,"Date":"3/19/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":363,"Cost":296,"Date":"3/28/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":872,"Cost":769,"Date":"5/21/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":969,"Cost":598,"Date":"7/21/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":824,"Cost":594,"Date":"8/5/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":681,"Cost":552,"Date":"8/12/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":292,"Cost":262,"Date":"8/21/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":286,"Cost":151,"Date":"8/23/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":597,"Cost":369,"Date":"9/3/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":633,"Cost":503,"Date":"9/5/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":532,"Cost":491,"Date":"10/6/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":467,"Cost":442,"Date":"10/19/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":843,"Cost":542,"Date":"11/15/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":489,"Cost":296,"Date":"12/8/2021"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":609,"Cost":396,"Date":"1/8/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":268,"Cost":195,"Date":"1/14/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":785,"Cost":599,"Date":"1/19/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":502,"Cost":353,"Date":"1/28/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":383,"Cost":235,"Date":"1/31/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":917,"Cost":652,"Date":"3/27/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":74,"Cost":55,"Date":"4/20/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":291,"Cost":247,"Date":"4/24/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":535,"Cost":420,"Date":"4/28/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":603,"Cost":320,"Date":"5/15/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":147,"Cost":81,"Date":"5/16/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":267,"Cost":204,"Date":"5/18/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":735,"Cost":395,"Date":"6/2/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":123,"Cost":77,"Date":"6/3/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":902,"Cost":782,"Date":"6/5/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":407,"Cost":237,"Date":"6/7/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":785,"Cost":676,"Date":"6/14/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":127,"Cost":90,"Date":"6/20/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":761,"Cost":647,"Date":"6/24/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":229,"Cost":214,"Date":"7/4/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":981,"Cost":760,"Date":"7/9/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":119,"Cost":73,"Date":"7/12/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":214,"Cost":126,"Date":"8/14/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":41,"Cost":27,"Date":"8/16/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":318,"Cost":159,"Date":"8/23/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":250,"Cost":156,"Date":"9/2/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":951,"Cost":812,"Date":"9/3/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":760,"Cost":512,"Date":"9/16/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":662,"Cost":459,"Date":"10/4/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":380,"Cost":206,"Date":"11/1/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":279,"Cost":180,"Date":"11/2/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":285,"Cost":168,"Date":"12/17/2022"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":550,"Cost":373,"Date":"2/10/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":878,"Cost":658,"Date":"2/28/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":140,"Cost":131,"Date":"3/4/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":935,"Cost":825,"Date":"3/9/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":999,"Cost":586,"Date":"3/9/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":399,"Cost":200,"Date":"3/11/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":683,"Cost":447,"Date":"3/17/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":71,"Cost":38,"Date":"3/17/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":12,"Cost":9,"Date":"3/23/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":603,"Cost":438,"Date":"4/1/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":771,"Cost":713,"Date":"5/7/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":437,"Cost":307,"Date":"5/10/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":494,"Cost":302,"Date":"5/20/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":526,"Cost":456,"Date":"6/2/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":376,"Cost":215,"Date":"6/11/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":293,"Cost":259,"Date":"6/16/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":234,"Cost":173,"Date":"6/16/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":155,"Cost":86,"Date":"7/10/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":367,"Cost":270,"Date":"7/11/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":817,"Cost":446,"Date":"8/28/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":611,"Cost":510,"Date":"8/29/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":905,"Cost":696,"Date":"8/31/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":36,"Cost":27,"Date":"9/8/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":571,"Cost":320,"Date":"9/13/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":332,"Cost":218,"Date":"9/14/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":444,"Cost":300,"Date":"9/19/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":196,"Cost":174,"Date":"9/25/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":465,"Cost":299,"Date":"10/4/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":940,"Cost":782,"Date":"10/10/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":30,"Cost":16,"Date":"10/17/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":856,"Cost":654,"Date":"10/28/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":650,"Cost":450,"Date":"10/30/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":265,"Cost":184,"Date":"11/1/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":168,"Cost":119,"Date":"11/15/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":325,"Cost":308,"Date":"11/25/2023"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":301,"Cost":203,"Date":"1/10/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":610,"Cost":565,"Date":"1/14/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":494,"Cost":247,"Date":"1/20/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":336,"Cost":197,"Date":"2/8/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":825,"Cost":429,"Date":"2/25/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":379,"Cost":230,"Date":"3/7/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":986,"Cost":725,"Date":"3/14/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":800,"Cost":566,"Date":"3/27/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":612,"Cost":510,"Date":"4/5/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":328,"Cost":255,"Date":"4/14/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":653,"Cost":465,"Date":"5/3/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":432,"Cost":342,"Date":"5/9/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":917,"Cost":808,"Date":"5/15/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":503,"Cost":456,"Date":"5/25/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":782,"Cost":435,"Date":"5/26/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":67,"Cost":45,"Date":"5/31/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":762,"Cost":527,"Date":"7/27/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":711,"Cost":518,"Date":"9/17/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":542,"Cost":466,"Date":"10/6/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":304,"Cost":269,"Date":"10/8/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":95,"Cost":69,"Date":"10/26/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":789,"Cost":594,"Date":"11/16/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":599,"Cost":365,"Date":"11/18/2024"},{"Store":"Docks Bruxsel, Brussels","Brand":"HM","Country":"Belgium","Sale":806,"Cost":582,"Date":"12/1/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":255,"Cost":135,"Date":"2/9/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":512,"Cost":350,"Date":"2/11/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":324,"Cost":214,"Date":"3/10/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":87,"Cost":74,"Date":"3/16/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":915,"Cost":803,"Date":"3/18/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":192,"Cost":126,"Date":"3/20/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":716,"Cost":464,"Date":"3/26/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":824,"Cost":535,"Date":"6/2/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":519,"Cost":282,"Date":"6/10/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":200,"Cost":155,"Date":"6/16/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":744,"Cost":473,"Date":"6/25/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":645,"Cost":574,"Date":"7/19/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":28,"Cost":26,"Date":"7/21/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":271,"Cost":150,"Date":"7/25/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":436,"Cost":334,"Date":"8/4/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":634,"Cost":503,"Date":"9/2/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":745,"Cost":577,"Date":"9/4/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":204,"Cost":144,"Date":"9/19/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":788,"Cost":720,"Date":"9/29/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":6,"Cost":5,"Date":"10/2/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":777,"Cost":734,"Date":"10/15/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":104,"Cost":98,"Date":"10/30/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":971,"Cost":832,"Date":"11/9/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":969,"Cost":706,"Date":"11/23/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":304,"Cost":152,"Date":"11/30/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":418,"Cost":346,"Date":"12/8/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":983,"Cost":577,"Date":"12/11/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":189,"Cost":164,"Date":"1/15/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":77,"Cost":52,"Date":"1/24/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":626,"Cost":385,"Date":"2/3/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":763,"Cost":479,"Date":"2/4/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":106,"Cost":71,"Date":"3/9/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":265,"Cost":228,"Date":"3/12/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":528,"Cost":279,"Date":"4/19/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":955,"Cost":527,"Date":"5/3/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":429,"Cost":360,"Date":"5/4/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":827,"Cost":477,"Date":"6/8/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":424,"Cost":338,"Date":"6/26/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":771,"Cost":655,"Date":"7/4/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":190,"Cost":97,"Date":"7/13/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":545,"Cost":341,"Date":"8/8/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":396,"Cost":325,"Date":"8/26/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":59,"Cost":32,"Date":"9/2/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":190,"Cost":134,"Date":"9/29/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":243,"Cost":159,"Date":"10/12/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":640,"Cost":428,"Date":"11/2/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":391,"Cost":339,"Date":"11/4/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":321,"Cost":253,"Date":"11/7/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":772,"Cost":668,"Date":"12/1/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":925,"Cost":627,"Date":"12/4/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":254,"Cost":199,"Date":"12/7/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":128,"Cost":84,"Date":"12/18/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":817,"Cost":512,"Date":"12/20/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":996,"Cost":791,"Date":"12/20/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":342,"Cost":222,"Date":"12/21/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":3,"Cost":2,"Date":"1/9/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":394,"Cost":250,"Date":"2/5/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":142,"Cost":104,"Date":"2/16/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":594,"Cost":518,"Date":"2/16/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":972,"Cost":872,"Date":"2/18/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":184,"Cost":119,"Date":"2/22/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":726,"Cost":688,"Date":"2/25/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":316,"Cost":228,"Date":"3/8/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":298,"Cost":210,"Date":"4/2/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":148,"Cost":133,"Date":"4/3/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":647,"Cost":583,"Date":"4/9/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":671,"Cost":425,"Date":"4/10/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":257,"Cost":211,"Date":"4/19/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":251,"Cost":144,"Date":"5/17/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":61,"Cost":49,"Date":"5/22/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":519,"Cost":425,"Date":"6/20/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":80,"Cost":64,"Date":"7/1/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":645,"Cost":589,"Date":"7/4/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":822,"Cost":770,"Date":"7/8/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":257,"Cost":200,"Date":"7/9/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":463,"Cost":308,"Date":"7/14/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":827,"Cost":475,"Date":"7/19/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":370,"Cost":336,"Date":"8/1/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":109,"Cost":59,"Date":"8/6/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":244,"Cost":161,"Date":"8/7/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":106,"Cost":90,"Date":"8/22/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":426,"Cost":310,"Date":"8/31/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":104,"Cost":85,"Date":"9/1/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":15,"Cost":13,"Date":"9/1/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":890,"Cost":805,"Date":"9/17/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":415,"Cost":289,"Date":"9/29/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":832,"Cost":570,"Date":"11/7/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":770,"Cost":629,"Date":"11/26/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":762,"Cost":702,"Date":"11/27/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":453,"Cost":326,"Date":"12/5/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":374,"Cost":295,"Date":"12/26/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":214,"Cost":162,"Date":"12/31/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":332,"Cost":283,"Date":"1/20/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":577,"Cost":461,"Date":"2/2/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":476,"Cost":252,"Date":"2/8/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":324,"Cost":250,"Date":"2/27/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":379,"Cost":309,"Date":"3/1/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":757,"Cost":455,"Date":"3/1/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":985,"Cost":624,"Date":"3/19/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":141,"Cost":118,"Date":"3/28/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":347,"Cost":252,"Date":"5/21/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":813,"Cost":621,"Date":"7/21/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":565,"Cost":400,"Date":"8/5/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":406,"Cost":229,"Date":"8/12/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":253,"Cost":155,"Date":"8/21/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":143,"Cost":114,"Date":"8/23/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":496,"Cost":336,"Date":"9/3/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":473,"Cost":366,"Date":"9/5/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":248,"Cost":201,"Date":"10/6/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":540,"Cost":336,"Date":"10/19/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":590,"Cost":371,"Date":"11/15/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":261,"Cost":152,"Date":"12/8/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":841,"Cost":731,"Date":"1/8/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":162,"Cost":151,"Date":"1/14/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":159,"Cost":90,"Date":"1/19/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":577,"Cost":487,"Date":"1/28/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":866,"Cost":533,"Date":"1/31/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":614,"Cost":400,"Date":"3/27/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":904,"Cost":467,"Date":"4/20/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":127,"Cost":89,"Date":"4/24/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":822,"Cost":757,"Date":"4/28/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":937,"Cost":692,"Date":"5/15/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":701,"Cost":528,"Date":"5/16/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":862,"Cost":792,"Date":"5/18/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":89,"Cost":60,"Date":"6/2/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":716,"Cost":541,"Date":"6/3/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":261,"Cost":192,"Date":"6/5/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":474,"Cost":332,"Date":"6/7/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":515,"Cost":424,"Date":"6/14/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":775,"Cost":695,"Date":"6/20/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":618,"Cost":571,"Date":"6/24/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":672,"Cost":400,"Date":"7/4/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":122,"Cost":97,"Date":"7/9/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":10,"Cost":8,"Date":"7/12/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":619,"Cost":520,"Date":"8/14/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":785,"Cost":449,"Date":"8/16/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":914,"Cost":716,"Date":"8/23/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":498,"Cost":305,"Date":"9/2/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":518,"Cost":349,"Date":"9/3/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":861,"Cost":708,"Date":"9/16/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":426,"Cost":360,"Date":"10/4/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":232,"Cost":127,"Date":"11/1/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":701,"Cost":536,"Date":"11/2/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":671,"Cost":633,"Date":"12/17/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":125,"Cost":112,"Date":"2/10/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":559,"Cost":471,"Date":"2/28/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":557,"Cost":486,"Date":"3/4/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":901,"Cost":815,"Date":"3/9/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":348,"Cost":320,"Date":"3/9/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":221,"Cost":113,"Date":"3/11/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":548,"Cost":449,"Date":"3/17/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":350,"Cost":283,"Date":"3/17/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":888,"Cost":769,"Date":"3/23/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":282,"Cost":152,"Date":"4/1/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":174,"Cost":155,"Date":"5/7/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":901,"Cost":713,"Date":"5/10/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":39,"Cost":32,"Date":"5/20/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":231,"Cost":133,"Date":"6/2/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":593,"Cost":392,"Date":"6/11/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":737,"Cost":440,"Date":"6/16/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":521,"Cost":478,"Date":"6/16/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":712,"Cost":545,"Date":"7/10/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":339,"Cost":233,"Date":"7/11/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":591,"Cost":362,"Date":"8/28/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":347,"Cost":301,"Date":"8/29/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":947,"Cost":681,"Date":"8/31/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":886,"Cost":486,"Date":"9/8/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":473,"Cost":436,"Date":"9/13/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":71,"Cost":62,"Date":"9/14/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":91,"Cost":68,"Date":"9/19/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":435,"Cost":292,"Date":"9/25/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":401,"Cost":228,"Date":"10/4/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":846,"Cost":778,"Date":"10/10/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":550,"Cost":332,"Date":"10/17/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":258,"Cost":181,"Date":"10/28/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":380,"Cost":233,"Date":"10/30/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":562,"Cost":463,"Date":"11/1/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":718,"Cost":629,"Date":"11/15/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":12,"Cost":6,"Date":"11/25/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":502,"Cost":437,"Date":"1/10/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":247,"Cost":224,"Date":"1/14/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":713,"Cost":587,"Date":"1/20/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":20,"Cost":14,"Date":"2/8/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":402,"Cost":270,"Date":"2/25/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":392,"Cost":326,"Date":"3/7/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":399,"Cost":289,"Date":"3/14/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":322,"Cost":297,"Date":"3/27/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":832,"Cost":444,"Date":"4/5/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":725,"Cost":409,"Date":"4/14/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":332,"Cost":300,"Date":"5/3/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":301,"Cost":197,"Date":"5/9/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":78,"Cost":44,"Date":"5/15/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":230,"Cost":168,"Date":"5/25/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":400,"Cost":258,"Date":"5/26/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":892,"Cost":676,"Date":"5/31/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":209,"Cost":109,"Date":"7/27/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":253,"Cost":227,"Date":"9/17/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":562,"Cost":312,"Date":"10/6/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":373,"Cost":324,"Date":"10/8/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":720,"Cost":396,"Date":"10/26/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":975,"Cost":822,"Date":"11/16/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":300,"Cost":231,"Date":"11/18/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":893,"Cost":691,"Date":"12/1/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":426,"Cost":327,"Date":"2/9/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":455,"Cost":364,"Date":"2/11/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":210,"Cost":183,"Date":"3/10/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":621,"Cost":404,"Date":"3/16/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":743,"Cost":588,"Date":"3/18/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":591,"Cost":321,"Date":"3/20/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":516,"Cost":431,"Date":"3/26/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":759,"Cost":581,"Date":"6/2/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":733,"Cost":571,"Date":"6/10/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":288,"Cost":234,"Date":"6/16/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":409,"Cost":204,"Date":"6/25/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":785,"Cost":742,"Date":"7/19/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":359,"Cost":207,"Date":"7/21/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":846,"Cost":501,"Date":"7/25/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":831,"Cost":554,"Date":"8/4/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":621,"Cost":527,"Date":"9/2/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":339,"Cost":211,"Date":"9/4/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":841,"Cost":447,"Date":"9/19/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":791,"Cost":659,"Date":"9/29/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":621,"Cost":394,"Date":"10/2/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":973,"Cost":854,"Date":"10/15/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":679,"Cost":384,"Date":"10/30/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":727,"Cost":400,"Date":"11/9/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":295,"Cost":182,"Date":"11/23/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":243,"Cost":163,"Date":"11/30/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":635,"Cost":331,"Date":"12/8/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":639,"Cost":427,"Date":"12/11/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":805,"Cost":644,"Date":"1/15/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":868,"Cost":464,"Date":"1/24/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":808,"Cost":619,"Date":"2/3/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":295,"Cost":242,"Date":"2/4/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":410,"Cost":372,"Date":"3/9/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":942,"Cost":765,"Date":"3/12/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":668,"Cost":611,"Date":"4/19/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":78,"Cost":48,"Date":"5/3/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":278,"Cost":189,"Date":"5/4/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":743,"Cost":450,"Date":"6/8/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":404,"Cost":384,"Date":"6/26/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":778,"Cost":438,"Date":"7/4/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":53,"Cost":46,"Date":"7/13/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":585,"Cost":540,"Date":"8/8/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":376,"Cost":246,"Date":"8/26/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":458,"Cost":424,"Date":"9/2/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":608,"Cost":378,"Date":"9/29/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":579,"Cost":400,"Date":"10/12/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":908,"Cost":740,"Date":"11/2/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":456,"Cost":428,"Date":"11/4/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":452,"Cost":366,"Date":"11/7/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":49,"Cost":31,"Date":"12/1/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":132,"Cost":72,"Date":"12/4/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":29,"Cost":14,"Date":"12/7/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":817,"Cost":413,"Date":"12/18/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":336,"Cost":313,"Date":"12/20/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":466,"Cost":291,"Date":"12/20/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":11,"Cost":8,"Date":"12/21/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":74,"Cost":66,"Date":"1/9/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":182,"Cost":150,"Date":"2/5/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":960,"Cost":595,"Date":"2/16/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":80,"Cost":48,"Date":"2/16/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":585,"Cost":336,"Date":"2/18/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":245,"Cost":187,"Date":"2/22/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":521,"Cost":274,"Date":"2/25/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":463,"Cost":350,"Date":"3/8/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":768,"Cost":513,"Date":"4/2/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":593,"Cost":375,"Date":"4/3/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":300,"Cost":254,"Date":"4/9/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":167,"Cost":119,"Date":"4/10/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":342,"Cost":278,"Date":"4/19/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":42,"Cost":21,"Date":"5/17/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":854,"Cost":512,"Date":"5/22/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":745,"Cost":436,"Date":"6/20/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":301,"Cost":158,"Date":"7/1/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":591,"Cost":509,"Date":"7/4/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":359,"Cost":236,"Date":"7/8/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":461,"Cost":358,"Date":"7/9/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":798,"Cost":505,"Date":"7/14/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":352,"Cost":212,"Date":"7/19/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":398,"Cost":258,"Date":"8/1/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":879,"Cost":780,"Date":"8/6/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":11,"Cost":10,"Date":"8/7/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":868,"Cost":537,"Date":"8/22/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":624,"Cost":521,"Date":"8/31/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":851,"Cost":801,"Date":"9/1/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":179,"Cost":139,"Date":"9/1/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":923,"Cost":739,"Date":"9/17/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":517,"Cost":415,"Date":"9/29/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":625,"Cost":504,"Date":"11/7/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":807,"Cost":567,"Date":"11/26/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":167,"Cost":108,"Date":"11/27/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":331,"Cost":266,"Date":"12/5/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":10,"Cost":7,"Date":"12/26/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":60,"Cost":46,"Date":"12/31/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":892,"Cost":625,"Date":"1/20/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":512,"Cost":322,"Date":"2/2/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":65,"Cost":47,"Date":"2/8/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":857,"Cost":542,"Date":"2/27/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":565,"Cost":303,"Date":"3/1/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":785,"Cost":654,"Date":"3/1/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":338,"Cost":266,"Date":"3/19/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":544,"Cost":415,"Date":"3/28/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":714,"Cost":407,"Date":"5/21/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":181,"Cost":94,"Date":"7/21/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":691,"Cost":404,"Date":"8/5/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":108,"Cost":60,"Date":"8/12/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":66,"Cost":57,"Date":"8/21/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":533,"Cost":354,"Date":"8/23/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":394,"Cost":350,"Date":"9/3/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":152,"Cost":124,"Date":"9/5/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":492,"Cost":346,"Date":"10/6/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":205,"Cost":154,"Date":"10/19/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":905,"Cost":798,"Date":"11/15/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":288,"Cost":160,"Date":"12/8/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":304,"Cost":174,"Date":"1/8/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":672,"Cost":432,"Date":"1/14/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":487,"Cost":424,"Date":"1/19/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":222,"Cost":163,"Date":"1/28/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":504,"Cost":274,"Date":"1/31/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":841,"Cost":601,"Date":"3/27/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":538,"Cost":380,"Date":"4/20/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":909,"Cost":725,"Date":"4/24/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":143,"Cost":134,"Date":"4/28/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":113,"Cost":69,"Date":"5/15/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":1000,"Cost":504,"Date":"5/16/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":316,"Cost":263,"Date":"5/18/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":385,"Cost":198,"Date":"6/2/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":406,"Cost":362,"Date":"6/3/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":907,"Cost":535,"Date":"6/5/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":33,"Cost":26,"Date":"6/7/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":640,"Cost":481,"Date":"6/14/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":752,"Cost":566,"Date":"6/20/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":121,"Cost":81,"Date":"6/24/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":650,"Cost":559,"Date":"7/4/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":624,"Cost":499,"Date":"7/9/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":797,"Cost":419,"Date":"7/12/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":228,"Cost":132,"Date":"8/14/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":662,"Cost":462,"Date":"8/16/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":310,"Cost":273,"Date":"8/23/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":346,"Cost":229,"Date":"9/2/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":943,"Cost":788,"Date":"9/3/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":188,"Cost":149,"Date":"9/16/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":151,"Cost":118,"Date":"10/4/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":12,"Cost":6,"Date":"11/1/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":803,"Cost":506,"Date":"11/2/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":628,"Cost":348,"Date":"12/17/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":989,"Cost":738,"Date":"2/10/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":42,"Cost":27,"Date":"2/28/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":695,"Cost":591,"Date":"3/4/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":383,"Cost":335,"Date":"3/9/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":443,"Cost":237,"Date":"3/9/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":51,"Cost":29,"Date":"3/11/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":631,"Cost":582,"Date":"3/17/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":966,"Cost":523,"Date":"3/17/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":528,"Cost":319,"Date":"3/23/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":472,"Cost":386,"Date":"4/1/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":863,"Cost":761,"Date":"5/7/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":65,"Cost":38,"Date":"5/10/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":384,"Cost":302,"Date":"5/20/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":167,"Cost":148,"Date":"6/2/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":24,"Cost":21,"Date":"6/11/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":790,"Cost":530,"Date":"6/16/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":776,"Cost":415,"Date":"6/16/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":512,"Cost":350,"Date":"7/10/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":316,"Cost":228,"Date":"7/11/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":511,"Cost":468,"Date":"8/28/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":298,"Cost":225,"Date":"8/29/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":49,"Cost":42,"Date":"8/31/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":149,"Cost":126,"Date":"9/8/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":933,"Cost":614,"Date":"9/13/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":314,"Cost":187,"Date":"9/14/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":317,"Cost":296,"Date":"9/19/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":742,"Cost":634,"Date":"9/25/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":681,"Cost":393,"Date":"10/4/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":765,"Cost":698,"Date":"10/10/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":792,"Cost":484,"Date":"10/17/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":686,"Cost":426,"Date":"10/28/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":190,"Cost":137,"Date":"10/30/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":636,"Cost":569,"Date":"11/1/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":524,"Cost":299,"Date":"11/15/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":994,"Cost":609,"Date":"11/25/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":864,"Cost":631,"Date":"1/10/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":737,"Cost":651,"Date":"1/14/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":291,"Cost":275,"Date":"1/20/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":991,"Cost":630,"Date":"2/8/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":575,"Cost":426,"Date":"2/25/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":21,"Cost":15,"Date":"3/7/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":808,"Cost":455,"Date":"3/14/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":447,"Cost":333,"Date":"3/27/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":683,"Cost":376,"Date":"4/5/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":850,"Cost":682,"Date":"4/14/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":711,"Cost":507,"Date":"5/3/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":983,"Cost":912,"Date":"5/9/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":918,"Cost":849,"Date":"5/15/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":450,"Cost":348,"Date":"5/25/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":709,"Cost":480,"Date":"5/26/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":332,"Cost":299,"Date":"5/31/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":350,"Cost":296,"Date":"7/27/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":238,"Cost":180,"Date":"9/17/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":999,"Cost":887,"Date":"10/6/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":184,"Cost":147,"Date":"10/8/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":872,"Cost":481,"Date":"10/26/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":450,"Cost":380,"Date":"11/16/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":999,"Cost":902,"Date":"11/18/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"HM","Country":"Belgium","Sale":472,"Cost":389,"Date":"12/1/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":885,"Cost":492,"Date":"2/9/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":506,"Cost":338,"Date":"2/11/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":269,"Cost":221,"Date":"3/10/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":902,"Cost":737,"Date":"3/16/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":486,"Cost":252,"Date":"3/18/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":61,"Cost":33,"Date":"3/20/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":608,"Cost":537,"Date":"3/26/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":165,"Cost":107,"Date":"6/2/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":357,"Cost":309,"Date":"6/10/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":904,"Cost":744,"Date":"6/16/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":992,"Cost":530,"Date":"6/25/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":532,"Cost":502,"Date":"7/19/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":85,"Cost":45,"Date":"7/21/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":232,"Cost":206,"Date":"7/25/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":920,"Cost":692,"Date":"8/4/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":575,"Cost":374,"Date":"9/2/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":927,"Cost":780,"Date":"9/4/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":703,"Cost":410,"Date":"9/19/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":652,"Cost":326,"Date":"9/29/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":590,"Cost":400,"Date":"10/2/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":597,"Cost":444,"Date":"10/15/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":579,"Cost":531,"Date":"10/30/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":278,"Cost":160,"Date":"11/9/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":465,"Cost":253,"Date":"11/23/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":861,"Cost":575,"Date":"11/30/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":762,"Cost":438,"Date":"12/8/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":776,"Cost":606,"Date":"12/11/2018"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":27,"Cost":23,"Date":"1/15/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":581,"Cost":485,"Date":"1/24/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":657,"Cost":362,"Date":"2/3/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":238,"Cost":206,"Date":"2/4/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":794,"Cost":476,"Date":"3/9/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":602,"Cost":496,"Date":"3/12/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":204,"Cost":122,"Date":"4/19/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":995,"Cost":626,"Date":"5/3/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":423,"Cost":315,"Date":"5/4/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":891,"Cost":568,"Date":"6/8/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":464,"Cost":350,"Date":"6/26/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":639,"Cost":479,"Date":"7/4/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":1,"Cost":1,"Date":"7/13/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":838,"Cost":493,"Date":"8/8/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":595,"Cost":487,"Date":"8/26/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":347,"Cost":319,"Date":"9/2/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":405,"Cost":292,"Date":"9/29/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":305,"Cost":282,"Date":"10/12/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":610,"Cost":394,"Date":"11/2/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":402,"Cost":315,"Date":"11/4/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":433,"Cost":281,"Date":"11/7/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":870,"Cost":571,"Date":"12/1/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":237,"Cost":205,"Date":"12/4/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":463,"Cost":374,"Date":"12/7/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":953,"Cost":527,"Date":"12/18/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":557,"Cost":477,"Date":"12/20/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":364,"Cost":317,"Date":"12/20/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":139,"Cost":69,"Date":"12/21/2019"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":831,"Cost":753,"Date":"1/9/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":17,"Cost":9,"Date":"2/5/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":990,"Cost":616,"Date":"2/16/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":608,"Cost":329,"Date":"2/16/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":656,"Cost":345,"Date":"2/18/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":568,"Cost":446,"Date":"2/22/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":351,"Cost":224,"Date":"2/25/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":323,"Cost":247,"Date":"3/8/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":245,"Cost":196,"Date":"4/2/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":207,"Cost":178,"Date":"4/3/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":396,"Cost":325,"Date":"4/9/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":301,"Cost":179,"Date":"4/10/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":86,"Cost":76,"Date":"4/19/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":187,"Cost":148,"Date":"5/17/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":990,"Cost":871,"Date":"5/22/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":919,"Cost":503,"Date":"6/20/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":253,"Cost":179,"Date":"7/1/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":169,"Cost":114,"Date":"7/4/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":607,"Cost":325,"Date":"7/8/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":512,"Cost":449,"Date":"7/9/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":650,"Cost":498,"Date":"7/14/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":825,"Cost":660,"Date":"7/19/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":187,"Cost":159,"Date":"8/1/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":814,"Cost":702,"Date":"8/6/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":344,"Cost":301,"Date":"8/7/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":794,"Cost":467,"Date":"8/22/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":370,"Cost":314,"Date":"8/31/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":207,"Cost":117,"Date":"9/1/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":128,"Cost":120,"Date":"9/1/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":695,"Cost":357,"Date":"9/17/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":684,"Cost":514,"Date":"9/29/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":274,"Cost":226,"Date":"11/7/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":578,"Cost":430,"Date":"11/26/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":939,"Cost":771,"Date":"11/27/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":251,"Cost":218,"Date":"12/5/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":455,"Cost":422,"Date":"12/26/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":167,"Cost":91,"Date":"12/31/2020"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":326,"Cost":258,"Date":"1/20/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":116,"Cost":101,"Date":"2/2/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":59,"Cost":46,"Date":"2/8/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":569,"Cost":388,"Date":"2/27/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":81,"Cost":45,"Date":"3/1/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":190,"Cost":98,"Date":"3/1/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":686,"Cost":420,"Date":"3/19/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":605,"Cost":394,"Date":"3/28/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":710,"Cost":526,"Date":"5/21/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":658,"Cost":365,"Date":"7/21/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":735,"Cost":624,"Date":"8/5/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":63,"Cost":38,"Date":"8/12/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":839,"Cost":530,"Date":"8/21/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":364,"Cost":243,"Date":"8/23/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":465,"Cost":314,"Date":"9/3/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":318,"Cost":200,"Date":"9/5/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":580,"Cost":412,"Date":"10/6/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":239,"Cost":158,"Date":"10/19/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":528,"Cost":413,"Date":"11/15/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":936,"Cost":804,"Date":"12/8/2021"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":127,"Cost":115,"Date":"1/8/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":382,"Cost":297,"Date":"1/14/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":749,"Cost":418,"Date":"1/19/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":498,"Cost":326,"Date":"1/28/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":193,"Cost":165,"Date":"1/31/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":635,"Cost":462,"Date":"3/27/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":989,"Cost":599,"Date":"4/20/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":522,"Cost":417,"Date":"4/24/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":569,"Cost":510,"Date":"4/28/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":390,"Cost":227,"Date":"5/15/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":670,"Cost":385,"Date":"5/16/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":960,"Cost":910,"Date":"5/18/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":747,"Cost":577,"Date":"6/2/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":342,"Cost":260,"Date":"6/3/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":961,"Cost":747,"Date":"6/5/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":832,"Cost":436,"Date":"6/7/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":433,"Cost":317,"Date":"6/14/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":197,"Cost":150,"Date":"6/20/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":698,"Cost":583,"Date":"6/24/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":367,"Cost":296,"Date":"7/4/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":608,"Cost":544,"Date":"7/9/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":517,"Cost":415,"Date":"7/12/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":2,"Cost":1,"Date":"8/14/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":296,"Cost":193,"Date":"8/16/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":450,"Cost":334,"Date":"8/23/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":665,"Cost":575,"Date":"9/2/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":496,"Cost":345,"Date":"9/3/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":661,"Cost":358,"Date":"9/16/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":540,"Cost":380,"Date":"10/4/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":35,"Cost":31,"Date":"11/1/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":403,"Cost":350,"Date":"11/2/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":682,"Cost":469,"Date":"12/17/2022"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":175,"Cost":107,"Date":"2/10/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":342,"Cost":280,"Date":"2/28/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":801,"Cost":649,"Date":"3/4/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":107,"Cost":89,"Date":"3/9/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":764,"Cost":466,"Date":"3/9/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":136,"Cost":84,"Date":"3/11/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":249,"Cost":126,"Date":"3/17/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":147,"Cost":127,"Date":"3/17/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":811,"Cost":546,"Date":"3/23/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":188,"Cost":122,"Date":"4/1/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":183,"Cost":103,"Date":"5/7/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":255,"Cost":153,"Date":"5/10/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":52,"Cost":50,"Date":"5/20/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":667,"Cost":580,"Date":"6/2/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":249,"Cost":232,"Date":"6/11/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":912,"Cost":690,"Date":"6/16/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":252,"Cost":147,"Date":"6/16/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":459,"Cost":391,"Date":"7/10/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":655,"Cost":367,"Date":"7/11/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":822,"Cost":493,"Date":"8/28/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":689,"Cost":638,"Date":"8/29/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":48,"Cost":36,"Date":"8/31/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":882,"Cost":748,"Date":"9/8/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":656,"Cost":602,"Date":"9/13/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":427,"Cost":268,"Date":"9/14/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":109,"Cost":71,"Date":"9/19/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":601,"Cost":464,"Date":"9/25/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":920,"Cost":715,"Date":"10/4/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":921,"Cost":582,"Date":"10/10/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":785,"Cost":682,"Date":"10/17/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":725,"Cost":547,"Date":"10/28/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":163,"Cost":117,"Date":"10/30/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":39,"Cost":20,"Date":"11/1/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":860,"Cost":608,"Date":"11/15/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":554,"Cost":280,"Date":"11/25/2023"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":532,"Cost":396,"Date":"1/10/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":697,"Cost":462,"Date":"1/14/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":651,"Cost":491,"Date":"1/20/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":650,"Cost":417,"Date":"2/8/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":786,"Cost":655,"Date":"2/25/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":189,"Cost":176,"Date":"3/7/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":113,"Cost":64,"Date":"3/14/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":540,"Cost":492,"Date":"3/27/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":447,"Cost":313,"Date":"4/5/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":148,"Cost":134,"Date":"4/14/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":94,"Cost":72,"Date":"5/3/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":494,"Cost":346,"Date":"5/9/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":692,"Cost":583,"Date":"5/15/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":453,"Cost":324,"Date":"5/25/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":282,"Cost":246,"Date":"5/26/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":408,"Cost":312,"Date":"5/31/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":960,"Cost":733,"Date":"7/27/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":420,"Cost":213,"Date":"9/17/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":311,"Cost":186,"Date":"10/6/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":185,"Cost":142,"Date":"10/8/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":618,"Cost":461,"Date":"10/26/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":647,"Cost":405,"Date":"11/16/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":138,"Cost":106,"Date":"11/18/2024"},{"Store":"Shopping Stadsfeestzaal, Antwerp","Brand":"COS","Country":"Belgium","Sale":453,"Cost":367,"Date":"12/1/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":108,"Cost":93,"Date":"2/9/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":792,"Cost":525,"Date":"2/11/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":703,"Cost":444,"Date":"3/10/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":686,"Cost":599,"Date":"3/16/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":115,"Cost":69,"Date":"3/18/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":649,"Cost":534,"Date":"3/20/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":686,"Cost":603,"Date":"3/26/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":342,"Cost":189,"Date":"6/2/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":89,"Cost":74,"Date":"6/10/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":776,"Cost":456,"Date":"6/16/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":819,"Cost":757,"Date":"6/25/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":972,"Cost":531,"Date":"7/19/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":516,"Cost":319,"Date":"7/21/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":275,"Cost":162,"Date":"7/25/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":560,"Cost":321,"Date":"8/4/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":208,"Cost":117,"Date":"9/2/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":539,"Cost":419,"Date":"9/4/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":817,"Cost":760,"Date":"9/19/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":329,"Cost":246,"Date":"9/29/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":332,"Cost":166,"Date":"10/2/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":502,"Cost":329,"Date":"10/15/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":647,"Cost":566,"Date":"10/30/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":653,"Cost":341,"Date":"11/9/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":683,"Cost":494,"Date":"11/23/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":318,"Cost":162,"Date":"11/30/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":163,"Cost":96,"Date":"12/8/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":863,"Cost":727,"Date":"12/11/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":401,"Cost":345,"Date":"1/15/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":267,"Cost":232,"Date":"1/24/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":431,"Cost":282,"Date":"2/3/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":11,"Cost":8,"Date":"2/4/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":903,"Cost":543,"Date":"3/9/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":513,"Cost":464,"Date":"3/12/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":702,"Cost":372,"Date":"4/19/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":516,"Cost":406,"Date":"5/3/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":553,"Cost":381,"Date":"5/4/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":206,"Cost":147,"Date":"6/8/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":222,"Cost":163,"Date":"6/26/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":1,"Cost":1,"Date":"7/4/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":679,"Cost":472,"Date":"7/13/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":269,"Cost":233,"Date":"8/8/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":166,"Cost":137,"Date":"8/26/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":860,"Cost":602,"Date":"9/2/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":625,"Cost":383,"Date":"9/29/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":55,"Cost":31,"Date":"10/12/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":76,"Cost":72,"Date":"11/2/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":745,"Cost":431,"Date":"11/4/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":239,"Cost":159,"Date":"11/7/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":56,"Cost":52,"Date":"12/1/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":568,"Cost":481,"Date":"12/4/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":141,"Cost":132,"Date":"12/7/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":251,"Cost":132,"Date":"12/18/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":125,"Cost":85,"Date":"12/20/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":714,"Cost":487,"Date":"12/20/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":991,"Cost":898,"Date":"12/21/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":356,"Cost":210,"Date":"1/9/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":415,"Cost":343,"Date":"2/5/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":214,"Cost":127,"Date":"2/16/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":14,"Cost":7,"Date":"2/16/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":673,"Cost":443,"Date":"2/18/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":88,"Cost":68,"Date":"2/22/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":952,"Cost":755,"Date":"2/25/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":676,"Cost":469,"Date":"3/8/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":164,"Cost":134,"Date":"4/2/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":736,"Cost":549,"Date":"4/3/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":420,"Cost":234,"Date":"4/9/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":129,"Cost":102,"Date":"4/10/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":729,"Cost":569,"Date":"4/19/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":476,"Cost":426,"Date":"5/17/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":550,"Cost":503,"Date":"5/22/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":747,"Cost":591,"Date":"6/20/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":831,"Cost":467,"Date":"7/1/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":533,"Cost":348,"Date":"7/4/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":857,"Cost":702,"Date":"7/8/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":344,"Cost":265,"Date":"7/9/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":241,"Cost":196,"Date":"7/14/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":248,"Cost":234,"Date":"7/19/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":43,"Cost":29,"Date":"8/1/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":949,"Cost":837,"Date":"8/6/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":629,"Cost":473,"Date":"8/7/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":433,"Cost":228,"Date":"8/22/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":771,"Cost":639,"Date":"8/31/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":595,"Cost":416,"Date":"9/1/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":523,"Cost":391,"Date":"9/1/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":90,"Cost":85,"Date":"9/17/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":970,"Cost":864,"Date":"9/29/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":642,"Cost":589,"Date":"11/7/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":259,"Cost":202,"Date":"11/26/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":525,"Cost":419,"Date":"11/27/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":199,"Cost":106,"Date":"12/5/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":785,"Cost":661,"Date":"12/26/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":525,"Cost":315,"Date":"12/31/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":264,"Cost":154,"Date":"1/20/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":69,"Cost":42,"Date":"2/2/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":433,"Cost":233,"Date":"2/8/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":885,"Cost":730,"Date":"2/27/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":186,"Cost":103,"Date":"3/1/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":454,"Cost":254,"Date":"3/1/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":774,"Cost":417,"Date":"3/19/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":835,"Cost":461,"Date":"3/28/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":207,"Cost":193,"Date":"5/21/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":639,"Cost":548,"Date":"7/21/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":523,"Cost":376,"Date":"8/5/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":664,"Cost":343,"Date":"8/12/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":600,"Cost":427,"Date":"8/21/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":943,"Cost":837,"Date":"8/23/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":26,"Cost":19,"Date":"9/3/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":17,"Cost":15,"Date":"9/5/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":867,"Cost":693,"Date":"10/6/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":159,"Cost":141,"Date":"10/19/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":400,"Cost":348,"Date":"11/15/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":843,"Cost":775,"Date":"12/8/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":494,"Cost":443,"Date":"1/8/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":851,"Cost":482,"Date":"1/14/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":631,"Cost":430,"Date":"1/19/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":827,"Cost":526,"Date":"1/28/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":747,"Cost":449,"Date":"1/31/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":519,"Cost":487,"Date":"3/27/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":99,"Cost":74,"Date":"4/20/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":882,"Cost":700,"Date":"4/24/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":139,"Cost":121,"Date":"4/28/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":345,"Cost":184,"Date":"5/15/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":334,"Cost":203,"Date":"5/16/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":27,"Cost":26,"Date":"5/18/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":61,"Cost":30,"Date":"6/2/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":121,"Cost":66,"Date":"6/3/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":288,"Cost":200,"Date":"6/5/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":778,"Cost":535,"Date":"6/7/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":761,"Cost":458,"Date":"6/14/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":732,"Cost":407,"Date":"6/20/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":943,"Cost":816,"Date":"6/24/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":553,"Cost":496,"Date":"7/4/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":610,"Cost":451,"Date":"7/9/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":781,"Cost":473,"Date":"7/12/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":227,"Cost":156,"Date":"8/14/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":14,"Cost":9,"Date":"8/16/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":830,"Cost":468,"Date":"8/23/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":659,"Cost":400,"Date":"9/2/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":365,"Cost":318,"Date":"9/3/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":446,"Cost":335,"Date":"9/16/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":639,"Cost":357,"Date":"10/4/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":397,"Cost":265,"Date":"11/1/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":765,"Cost":384,"Date":"11/2/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":984,"Cost":801,"Date":"12/17/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":269,"Cost":140,"Date":"2/10/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":514,"Cost":310,"Date":"2/28/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":406,"Cost":256,"Date":"3/4/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":553,"Cost":345,"Date":"3/9/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":840,"Cost":432,"Date":"3/9/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":792,"Cost":418,"Date":"3/11/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":173,"Cost":100,"Date":"3/17/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":537,"Cost":283,"Date":"3/17/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":214,"Cost":147,"Date":"3/23/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":462,"Cost":295,"Date":"4/1/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":190,"Cost":166,"Date":"5/7/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":110,"Cost":97,"Date":"5/10/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":161,"Cost":141,"Date":"5/20/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":994,"Cost":612,"Date":"6/2/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":699,"Cost":558,"Date":"6/11/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":660,"Cost":583,"Date":"6/16/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":624,"Cost":566,"Date":"6/16/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":737,"Cost":402,"Date":"7/10/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":459,"Cost":323,"Date":"7/11/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":604,"Cost":356,"Date":"8/28/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":85,"Cost":62,"Date":"8/29/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":667,"Cost":580,"Date":"8/31/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":412,"Cost":240,"Date":"9/8/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":264,"Cost":236,"Date":"9/13/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":738,"Cost":417,"Date":"9/14/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":850,"Cost":599,"Date":"9/19/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":56,"Cost":33,"Date":"9/25/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":408,"Cost":340,"Date":"10/4/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":256,"Cost":146,"Date":"10/10/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":885,"Cost":701,"Date":"10/17/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":306,"Cost":222,"Date":"10/28/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":467,"Cost":285,"Date":"10/30/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":624,"Cost":546,"Date":"11/1/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":564,"Cost":462,"Date":"11/15/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":31,"Cost":23,"Date":"11/25/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":937,"Cost":766,"Date":"1/10/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":727,"Cost":599,"Date":"1/14/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":813,"Cost":707,"Date":"1/20/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":95,"Cost":91,"Date":"2/8/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":215,"Cost":165,"Date":"2/25/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":532,"Cost":446,"Date":"3/7/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":773,"Cost":498,"Date":"3/14/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":904,"Cost":853,"Date":"3/27/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":386,"Cost":252,"Date":"4/5/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":557,"Cost":404,"Date":"4/14/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":560,"Cost":443,"Date":"5/3/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":769,"Cost":588,"Date":"5/9/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":830,"Cost":493,"Date":"5/15/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":935,"Cost":478,"Date":"5/25/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":525,"Cost":487,"Date":"5/26/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":1,"Cost":1,"Date":"5/31/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":742,"Cost":635,"Date":"7/27/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":117,"Cost":63,"Date":"9/17/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":900,"Cost":842,"Date":"10/6/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":851,"Cost":543,"Date":"10/8/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":396,"Cost":366,"Date":"10/26/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":106,"Cost":62,"Date":"11/16/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":894,"Cost":458,"Date":"11/18/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":618,"Cost":520,"Date":"12/1/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":967,"Cost":519,"Date":"2/9/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":167,"Cost":104,"Date":"2/11/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":558,"Cost":370,"Date":"3/10/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":314,"Cost":193,"Date":"3/16/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":397,"Cost":341,"Date":"3/18/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":725,"Cost":391,"Date":"3/20/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":134,"Cost":100,"Date":"3/26/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":402,"Cost":202,"Date":"6/2/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":73,"Cost":50,"Date":"6/10/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":825,"Cost":468,"Date":"6/16/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":546,"Cost":495,"Date":"6/25/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":282,"Cost":253,"Date":"7/19/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":336,"Cost":234,"Date":"7/21/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":374,"Cost":264,"Date":"7/25/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":701,"Cost":446,"Date":"8/4/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":683,"Cost":536,"Date":"9/2/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":497,"Cost":335,"Date":"9/4/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":475,"Cost":422,"Date":"9/19/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":525,"Cost":341,"Date":"9/29/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":422,"Cost":237,"Date":"10/2/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":794,"Cost":591,"Date":"10/15/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":107,"Cost":71,"Date":"10/30/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":699,"Cost":420,"Date":"11/9/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":90,"Cost":85,"Date":"11/23/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":838,"Cost":708,"Date":"11/30/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":412,"Cost":231,"Date":"12/8/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":480,"Cost":444,"Date":"12/11/2018"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":145,"Cost":96,"Date":"1/15/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":844,"Cost":497,"Date":"1/24/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":838,"Cost":792,"Date":"2/3/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":892,"Cost":765,"Date":"2/4/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":694,"Cost":658,"Date":"3/9/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":331,"Cost":177,"Date":"3/12/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":49,"Cost":41,"Date":"4/19/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":153,"Cost":140,"Date":"5/3/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":866,"Cost":499,"Date":"5/4/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":15,"Cost":14,"Date":"6/8/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":269,"Cost":203,"Date":"6/26/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":14,"Cost":7,"Date":"7/4/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":294,"Cost":240,"Date":"7/13/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":836,"Cost":568,"Date":"8/8/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":188,"Cost":169,"Date":"8/26/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":859,"Cost":506,"Date":"9/2/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":102,"Cost":54,"Date":"9/29/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":59,"Cost":38,"Date":"10/12/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":202,"Cost":112,"Date":"11/2/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":155,"Cost":94,"Date":"11/4/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":627,"Cost":541,"Date":"11/7/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":276,"Cost":225,"Date":"12/1/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":341,"Cost":273,"Date":"12/4/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":269,"Cost":227,"Date":"12/7/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":681,"Cost":429,"Date":"12/18/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":17,"Cost":15,"Date":"12/20/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":907,"Cost":497,"Date":"12/20/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":580,"Cost":294,"Date":"12/21/2019"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":212,"Cost":160,"Date":"1/9/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":566,"Cost":369,"Date":"2/5/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":918,"Cost":547,"Date":"2/16/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":986,"Cost":745,"Date":"2/16/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":925,"Cost":696,"Date":"2/18/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":971,"Cost":886,"Date":"2/22/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":69,"Cost":52,"Date":"2/25/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":26,"Cost":15,"Date":"3/8/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":645,"Cost":496,"Date":"4/2/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":694,"Cost":615,"Date":"4/3/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":499,"Cost":408,"Date":"4/9/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":6,"Cost":4,"Date":"4/10/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":805,"Cost":671,"Date":"4/19/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":561,"Cost":435,"Date":"5/17/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":603,"Cost":485,"Date":"5/22/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":838,"Cost":783,"Date":"6/20/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":586,"Cost":296,"Date":"7/1/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":829,"Cost":694,"Date":"7/4/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":289,"Cost":189,"Date":"7/8/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":626,"Cost":364,"Date":"7/9/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":164,"Cost":120,"Date":"7/14/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":530,"Cost":486,"Date":"7/19/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":781,"Cost":655,"Date":"8/1/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":261,"Cost":190,"Date":"8/6/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":127,"Cost":70,"Date":"8/7/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":5,"Cost":5,"Date":"8/22/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":380,"Cost":334,"Date":"8/31/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":883,"Cost":497,"Date":"9/1/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":929,"Cost":787,"Date":"9/1/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":809,"Cost":587,"Date":"9/17/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":355,"Cost":302,"Date":"9/29/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":64,"Cost":41,"Date":"11/7/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":457,"Cost":307,"Date":"11/26/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":375,"Cost":334,"Date":"11/27/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":398,"Cost":282,"Date":"12/5/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":940,"Cost":773,"Date":"12/26/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":940,"Cost":758,"Date":"12/31/2020"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":531,"Cost":371,"Date":"1/20/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":771,"Cost":417,"Date":"2/2/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":200,"Cost":115,"Date":"2/8/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":275,"Cost":152,"Date":"2/27/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":453,"Cost":301,"Date":"3/1/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":779,"Cost":481,"Date":"3/1/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":123,"Cost":78,"Date":"3/19/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":789,"Cost":427,"Date":"3/28/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":195,"Cost":177,"Date":"5/21/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":989,"Cost":785,"Date":"7/21/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":458,"Cost":255,"Date":"8/5/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":352,"Cost":229,"Date":"8/12/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":909,"Cost":577,"Date":"8/21/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":362,"Cost":251,"Date":"8/23/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":255,"Cost":185,"Date":"9/3/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":827,"Cost":713,"Date":"9/5/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":593,"Cost":298,"Date":"10/6/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":18,"Cost":10,"Date":"10/19/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":670,"Cost":631,"Date":"11/15/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":820,"Cost":449,"Date":"12/8/2021"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":947,"Cost":612,"Date":"1/8/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":125,"Cost":74,"Date":"1/14/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":54,"Cost":36,"Date":"1/19/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":999,"Cost":715,"Date":"1/28/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":949,"Cost":656,"Date":"1/31/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":396,"Cost":258,"Date":"3/27/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":833,"Cost":450,"Date":"4/20/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":656,"Cost":383,"Date":"4/24/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":990,"Cost":790,"Date":"4/28/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":292,"Cost":189,"Date":"5/15/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":894,"Cost":599,"Date":"5/16/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":496,"Cost":379,"Date":"5/18/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":140,"Cost":70,"Date":"6/2/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":731,"Cost":616,"Date":"6/3/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":349,"Cost":306,"Date":"6/5/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":521,"Cost":336,"Date":"6/7/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":439,"Cost":383,"Date":"6/14/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":195,"Cost":185,"Date":"6/20/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":74,"Cost":49,"Date":"6/24/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":81,"Cost":54,"Date":"7/4/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":656,"Cost":524,"Date":"7/9/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":563,"Cost":446,"Date":"7/12/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":281,"Cost":145,"Date":"8/14/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":142,"Cost":89,"Date":"8/16/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":951,"Cost":558,"Date":"8/23/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":594,"Cost":490,"Date":"9/2/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":108,"Cost":99,"Date":"9/3/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":477,"Cost":293,"Date":"9/16/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":29,"Cost":26,"Date":"10/4/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":667,"Cost":366,"Date":"11/1/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":243,"Cost":181,"Date":"11/2/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":865,"Cost":802,"Date":"12/17/2022"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":554,"Cost":426,"Date":"2/10/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":632,"Cost":394,"Date":"2/28/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":382,"Cost":194,"Date":"3/4/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":892,"Cost":571,"Date":"3/9/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":402,"Cost":327,"Date":"3/9/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":958,"Cost":514,"Date":"3/11/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":162,"Cost":127,"Date":"3/17/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":789,"Cost":673,"Date":"3/17/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":982,"Cost":659,"Date":"3/23/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":767,"Cost":544,"Date":"4/1/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":817,"Cost":765,"Date":"5/7/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":929,"Cost":504,"Date":"5/10/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":792,"Cost":478,"Date":"5/20/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":832,"Cost":639,"Date":"6/2/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":821,"Cost":504,"Date":"6/11/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":270,"Cost":222,"Date":"6/16/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":301,"Cost":225,"Date":"6/16/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":386,"Cost":355,"Date":"7/10/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":111,"Cost":56,"Date":"7/11/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":519,"Cost":365,"Date":"8/28/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":426,"Cost":221,"Date":"8/29/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":718,"Cost":445,"Date":"8/31/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":384,"Cost":224,"Date":"9/8/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":17,"Cost":13,"Date":"9/13/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":603,"Cost":484,"Date":"9/14/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":290,"Cost":148,"Date":"9/19/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":292,"Cost":188,"Date":"9/25/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":861,"Cost":651,"Date":"10/4/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":658,"Cost":450,"Date":"10/10/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":86,"Cost":69,"Date":"10/17/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":456,"Cost":359,"Date":"10/28/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":484,"Cost":255,"Date":"10/30/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":956,"Cost":846,"Date":"11/1/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":151,"Cost":118,"Date":"11/15/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":316,"Cost":178,"Date":"11/25/2023"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":49,"Cost":35,"Date":"1/10/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":36,"Cost":19,"Date":"1/14/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":82,"Cost":77,"Date":"1/20/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":159,"Cost":134,"Date":"2/8/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":121,"Cost":67,"Date":"2/25/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":512,"Cost":365,"Date":"3/7/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":902,"Cost":829,"Date":"3/14/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":510,"Cost":468,"Date":"3/27/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":844,"Cost":757,"Date":"4/5/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":461,"Cost":246,"Date":"4/14/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":822,"Cost":523,"Date":"5/3/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":325,"Cost":286,"Date":"5/9/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":941,"Cost":746,"Date":"5/15/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":225,"Cost":167,"Date":"5/25/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":879,"Cost":578,"Date":"5/26/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":171,"Cost":134,"Date":"5/31/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":787,"Cost":732,"Date":"7/27/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":3,"Cost":3,"Date":"9/17/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":283,"Cost":252,"Date":"10/6/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":938,"Cost":738,"Date":"10/8/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":115,"Cost":109,"Date":"10/26/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":778,"Cost":524,"Date":"11/16/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":108,"Cost":66,"Date":"11/18/2024"},{"Store":"Century Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":539,"Cost":359,"Date":"12/1/2024"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":11,"Cost":7,"Date":"2/9/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":47,"Cost":42,"Date":"2/11/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":893,"Cost":826,"Date":"3/10/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":9,"Cost":7,"Date":"3/16/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":282,"Cost":234,"Date":"3/18/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":70,"Cost":58,"Date":"3/20/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":495,"Cost":379,"Date":"3/26/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":117,"Cost":71,"Date":"6/2/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":698,"Cost":547,"Date":"6/10/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":296,"Cost":211,"Date":"6/16/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":156,"Cost":96,"Date":"6/25/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":711,"Cost":365,"Date":"7/19/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":621,"Cost":494,"Date":"7/21/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":98,"Cost":82,"Date":"7/25/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":102,"Cost":64,"Date":"8/4/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":38,"Cost":19,"Date":"9/2/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":246,"Cost":212,"Date":"9/4/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":308,"Cost":283,"Date":"9/19/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":447,"Cost":332,"Date":"9/29/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":290,"Cost":208,"Date":"10/2/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":437,"Cost":324,"Date":"10/15/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":586,"Cost":533,"Date":"10/30/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":103,"Cost":93,"Date":"11/9/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":922,"Cost":708,"Date":"11/23/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":764,"Cost":633,"Date":"11/30/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":45,"Cost":23,"Date":"12/8/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":727,"Cost":415,"Date":"12/11/2018"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":271,"Cost":168,"Date":"1/15/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":881,"Cost":612,"Date":"1/24/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":736,"Cost":521,"Date":"2/3/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":667,"Cost":359,"Date":"2/4/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":153,"Cost":111,"Date":"3/9/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":272,"Cost":236,"Date":"3/12/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":572,"Cost":395,"Date":"4/19/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":128,"Cost":87,"Date":"5/3/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":931,"Cost":835,"Date":"5/4/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":140,"Cost":117,"Date":"6/8/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":742,"Cost":603,"Date":"6/26/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":703,"Cost":367,"Date":"7/4/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":829,"Cost":415,"Date":"7/13/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":674,"Cost":415,"Date":"8/8/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":340,"Cost":177,"Date":"8/26/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":207,"Cost":187,"Date":"9/2/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":604,"Cost":380,"Date":"9/29/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":223,"Cost":179,"Date":"10/12/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":575,"Cost":479,"Date":"11/2/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":131,"Cost":101,"Date":"11/4/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":570,"Cost":537,"Date":"11/7/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":881,"Cost":758,"Date":"12/1/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":479,"Cost":406,"Date":"12/4/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":614,"Cost":357,"Date":"12/7/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":907,"Cost":656,"Date":"12/18/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":198,"Cost":114,"Date":"12/20/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":866,"Cost":762,"Date":"12/20/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":440,"Cost":345,"Date":"12/21/2019"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":78,"Cost":48,"Date":"1/9/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":976,"Cost":735,"Date":"2/5/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":555,"Cost":309,"Date":"2/16/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":215,"Cost":163,"Date":"2/16/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":789,"Cost":599,"Date":"2/18/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":135,"Cost":103,"Date":"2/22/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":90,"Cost":61,"Date":"2/25/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":35,"Cost":23,"Date":"3/8/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":67,"Cost":61,"Date":"4/2/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":863,"Cost":738,"Date":"4/3/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":10,"Cost":8,"Date":"4/9/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":743,"Cost":462,"Date":"4/10/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":111,"Cost":80,"Date":"4/19/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":730,"Cost":384,"Date":"5/17/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":953,"Cost":708,"Date":"5/22/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":850,"Cost":806,"Date":"6/20/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":228,"Cost":208,"Date":"7/1/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":590,"Cost":494,"Date":"7/4/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":109,"Cost":87,"Date":"7/8/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":145,"Cost":115,"Date":"7/9/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":528,"Cost":401,"Date":"7/14/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":992,"Cost":718,"Date":"7/19/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":853,"Cost":647,"Date":"8/1/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":555,"Cost":458,"Date":"8/6/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":821,"Cost":734,"Date":"8/7/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":692,"Cost":412,"Date":"8/22/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":843,"Cost":790,"Date":"8/31/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":4,"Cost":4,"Date":"9/1/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":825,"Cost":767,"Date":"9/1/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":569,"Cost":477,"Date":"9/17/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":254,"Cost":134,"Date":"9/29/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":407,"Cost":276,"Date":"11/7/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":317,"Cost":234,"Date":"11/26/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":267,"Cost":165,"Date":"11/27/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":139,"Cost":97,"Date":"12/5/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":187,"Cost":121,"Date":"12/26/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":843,"Cost":444,"Date":"12/31/2020"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":981,"Cost":717,"Date":"1/20/2021"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":820,"Cost":708,"Date":"2/2/2021"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":96,"Cost":76,"Date":"2/8/2021"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":950,"Cost":787,"Date":"2/27/2021"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":668,"Cost":620,"Date":"3/1/2021"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":346,"Cost":193,"Date":"3/1/2021"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":268,"Cost":153,"Date":"3/19/2021"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":413,"Cost":351,"Date":"3/28/2021"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":965,"Cost":871,"Date":"5/21/2021"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":260,"Cost":239,"Date":"7/21/2021"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":662,"Cost":549,"Date":"8/5/2021"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":733,"Cost":498,"Date":"8/12/2021"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":492,"Cost":370,"Date":"8/21/2021"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":562,"Cost":305,"Date":"8/23/2021"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":322,"Cost":242,"Date":"9/3/2021"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":244,"Cost":228,"Date":"9/5/2021"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":333,"Cost":175,"Date":"10/6/2021"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":54,"Cost":48,"Date":"10/19/2021"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":294,"Cost":169,"Date":"11/15/2021"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":175,"Cost":161,"Date":"12/8/2021"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":277,"Cost":233,"Date":"1/8/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":895,"Cost":474,"Date":"1/14/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":737,"Cost":608,"Date":"1/19/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":995,"Cost":732,"Date":"1/28/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":196,"Cost":170,"Date":"1/31/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":442,"Cost":256,"Date":"3/27/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":586,"Cost":448,"Date":"4/20/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":757,"Cost":460,"Date":"4/24/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":811,"Cost":654,"Date":"4/28/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":70,"Cost":57,"Date":"5/15/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":768,"Cost":433,"Date":"5/16/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":985,"Cost":522,"Date":"5/18/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":836,"Cost":684,"Date":"6/2/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":289,"Cost":182,"Date":"6/3/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":258,"Cost":202,"Date":"6/5/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":732,"Cost":564,"Date":"6/7/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":398,"Cost":231,"Date":"6/14/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":570,"Cost":359,"Date":"6/20/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":952,"Cost":769,"Date":"6/24/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":299,"Cost":182,"Date":"7/4/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":865,"Cost":750,"Date":"7/9/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":862,"Cost":550,"Date":"7/12/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":855,"Cost":507,"Date":"8/14/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":625,"Cost":473,"Date":"8/16/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":379,"Cost":240,"Date":"8/23/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":805,"Cost":476,"Date":"9/2/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":232,"Cost":124,"Date":"9/3/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":483,"Cost":278,"Date":"9/16/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":273,"Cost":248,"Date":"10/4/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":741,"Cost":578,"Date":"11/1/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":350,"Cost":230,"Date":"11/2/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":992,"Cost":505,"Date":"12/17/2022"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":123,"Cost":108,"Date":"2/10/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":520,"Cost":430,"Date":"2/28/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":28,"Cost":25,"Date":"3/4/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":884,"Cost":812,"Date":"3/9/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":362,"Cost":200,"Date":"3/9/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":601,"Cost":378,"Date":"3/11/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":437,"Cost":296,"Date":"3/17/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":168,"Cost":98,"Date":"3/17/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":403,"Cost":342,"Date":"3/23/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":421,"Cost":314,"Date":"4/1/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":48,"Cost":35,"Date":"5/7/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":956,"Cost":801,"Date":"5/10/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":616,"Cost":436,"Date":"5/20/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":219,"Cost":180,"Date":"6/2/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":152,"Cost":111,"Date":"6/11/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":83,"Cost":60,"Date":"6/16/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":635,"Cost":462,"Date":"6/16/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":948,"Cost":842,"Date":"7/10/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":932,"Cost":630,"Date":"7/11/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":426,"Cost":230,"Date":"8/28/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":286,"Cost":165,"Date":"8/29/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":214,"Cost":191,"Date":"8/31/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":355,"Cost":298,"Date":"9/8/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":938,"Cost":879,"Date":"9/13/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":699,"Cost":398,"Date":"9/14/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":715,"Cost":433,"Date":"9/19/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":222,"Cost":115,"Date":"9/25/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":891,"Cost":701,"Date":"10/4/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":530,"Cost":371,"Date":"10/10/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":99,"Cost":54,"Date":"10/17/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":372,"Cost":301,"Date":"10/28/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":874,"Cost":721,"Date":"10/30/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":148,"Cost":104,"Date":"11/1/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":613,"Cost":462,"Date":"11/15/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":41,"Cost":27,"Date":"11/25/2023"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":67,"Cost":38,"Date":"1/10/2024"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":956,"Cost":780,"Date":"1/14/2024"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":435,"Cost":343,"Date":"1/20/2024"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":182,"Cost":154,"Date":"2/8/2024"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":885,"Cost":686,"Date":"2/25/2024"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":305,"Cost":244,"Date":"3/7/2024"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":23,"Cost":11,"Date":"3/14/2024"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":36,"Cost":29,"Date":"3/27/2024"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":148,"Cost":83,"Date":"4/5/2024"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":355,"Cost":196,"Date":"4/14/2024"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":43,"Cost":31,"Date":"5/3/2024"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":760,"Cost":415,"Date":"5/9/2024"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":124,"Cost":74,"Date":"5/15/2024"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":846,"Cost":626,"Date":"5/25/2024"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":275,"Cost":236,"Date":"5/26/2024"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":482,"Cost":416,"Date":"5/31/2024"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":280,"Cost":187,"Date":"7/27/2024"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":655,"Cost":340,"Date":"9/17/2024"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":638,"Cost":498,"Date":"10/6/2024"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":337,"Cost":217,"Date":"10/8/2024"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":727,"Cost":476,"Date":"10/26/2024"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":72,"Cost":67,"Date":"11/16/2024"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":709,"Cost":442,"Date":"11/18/2024"},{"Store":"Century Center, Antwerp","Brand":"Nova","Country":"Belgium","Sale":300,"Cost":160,"Date":"12/1/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":879,"Cost":712,"Date":"2/9/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":940,"Cost":525,"Date":"2/11/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":849,"Cost":629,"Date":"3/10/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":231,"Cost":116,"Date":"3/16/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":898,"Cost":830,"Date":"3/18/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":602,"Cost":338,"Date":"3/20/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":687,"Cost":458,"Date":"3/26/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":811,"Cost":674,"Date":"6/2/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":669,"Cost":530,"Date":"6/10/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":89,"Cost":57,"Date":"6/16/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":722,"Cost":451,"Date":"6/25/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":187,"Cost":173,"Date":"7/19/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":22,"Cost":21,"Date":"7/21/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":525,"Cost":483,"Date":"7/25/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":830,"Cost":595,"Date":"8/4/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":843,"Cost":577,"Date":"9/2/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":217,"Cost":114,"Date":"9/4/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":233,"Cost":215,"Date":"9/19/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":408,"Cost":284,"Date":"9/29/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":61,"Cost":52,"Date":"10/2/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":779,"Cost":522,"Date":"10/15/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":155,"Cost":100,"Date":"10/30/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":375,"Cost":349,"Date":"11/9/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":493,"Cost":311,"Date":"11/23/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":819,"Cost":532,"Date":"11/30/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":733,"Cost":529,"Date":"12/8/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":165,"Cost":84,"Date":"12/11/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":845,"Cost":435,"Date":"1/15/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":984,"Cost":832,"Date":"1/24/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":339,"Cost":199,"Date":"2/3/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":262,"Cost":146,"Date":"2/4/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":212,"Cost":173,"Date":"3/9/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":87,"Cost":75,"Date":"3/12/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":543,"Cost":294,"Date":"4/19/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":573,"Cost":316,"Date":"5/3/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":856,"Cost":690,"Date":"5/4/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":85,"Cost":56,"Date":"6/8/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":594,"Cost":375,"Date":"6/26/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":238,"Cost":180,"Date":"7/4/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":121,"Cost":104,"Date":"7/13/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":614,"Cost":554,"Date":"8/8/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":893,"Cost":788,"Date":"8/26/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":754,"Cost":544,"Date":"9/2/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":903,"Cost":473,"Date":"9/29/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":828,"Cost":586,"Date":"10/12/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":62,"Cost":37,"Date":"11/2/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":360,"Cost":258,"Date":"11/4/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":652,"Cost":519,"Date":"11/7/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":236,"Cost":171,"Date":"12/1/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":24,"Cost":21,"Date":"12/4/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":22,"Cost":17,"Date":"12/7/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":89,"Cost":77,"Date":"12/18/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":657,"Cost":372,"Date":"12/20/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":405,"Cost":220,"Date":"12/20/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":535,"Cost":338,"Date":"12/21/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":78,"Cost":66,"Date":"1/9/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":607,"Cost":460,"Date":"2/5/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":563,"Cost":396,"Date":"2/16/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":128,"Cost":85,"Date":"2/16/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":804,"Cost":506,"Date":"2/18/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":693,"Cost":651,"Date":"2/22/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":498,"Cost":375,"Date":"2/25/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":478,"Cost":448,"Date":"3/8/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":902,"Cost":561,"Date":"4/2/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":532,"Cost":390,"Date":"4/3/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":860,"Cost":618,"Date":"4/9/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":305,"Cost":238,"Date":"4/10/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":26,"Cost":14,"Date":"4/19/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":950,"Cost":710,"Date":"5/17/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":952,"Cost":636,"Date":"5/22/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":725,"Cost":430,"Date":"6/20/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":998,"Cost":899,"Date":"7/1/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":889,"Cost":842,"Date":"7/4/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":795,"Cost":430,"Date":"7/8/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":460,"Cost":289,"Date":"7/9/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":85,"Cost":47,"Date":"7/14/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":69,"Cost":54,"Date":"7/19/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":761,"Cost":487,"Date":"8/1/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":570,"Cost":385,"Date":"8/6/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":222,"Cost":148,"Date":"8/7/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":611,"Cost":334,"Date":"8/22/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":487,"Cost":319,"Date":"8/31/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":304,"Cost":249,"Date":"9/1/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":304,"Cost":170,"Date":"9/1/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":689,"Cost":585,"Date":"9/17/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":890,"Cost":541,"Date":"9/29/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":999,"Cost":856,"Date":"11/7/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":12,"Cost":10,"Date":"11/26/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":638,"Cost":594,"Date":"11/27/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":838,"Cost":608,"Date":"12/5/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":375,"Cost":233,"Date":"12/26/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":543,"Cost":380,"Date":"12/31/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":93,"Cost":67,"Date":"1/20/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":857,"Cost":724,"Date":"2/2/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":702,"Cost":482,"Date":"2/8/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":243,"Cost":184,"Date":"2/27/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":253,"Cost":183,"Date":"3/1/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":359,"Cost":271,"Date":"3/1/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":232,"Cost":190,"Date":"3/19/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":879,"Cost":457,"Date":"3/28/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":702,"Cost":482,"Date":"5/21/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":929,"Cost":835,"Date":"7/21/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":389,"Cost":248,"Date":"8/5/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":709,"Cost":456,"Date":"8/12/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":935,"Cost":704,"Date":"8/21/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":509,"Cost":279,"Date":"8/23/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":564,"Cost":518,"Date":"9/3/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":247,"Cost":212,"Date":"9/5/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":927,"Cost":585,"Date":"10/6/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":275,"Cost":148,"Date":"10/19/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":637,"Cost":568,"Date":"11/15/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":802,"Cost":432,"Date":"12/8/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":221,"Cost":199,"Date":"1/8/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":174,"Cost":103,"Date":"1/14/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":750,"Cost":545,"Date":"1/19/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":314,"Cost":182,"Date":"1/28/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":314,"Cost":275,"Date":"1/31/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":505,"Cost":469,"Date":"3/27/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":234,"Cost":192,"Date":"4/20/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":279,"Cost":175,"Date":"4/24/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":894,"Cost":565,"Date":"4/28/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":862,"Cost":560,"Date":"5/15/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":572,"Cost":384,"Date":"5/16/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":634,"Cost":476,"Date":"5/18/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":366,"Cost":249,"Date":"6/2/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":16,"Cost":13,"Date":"6/3/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":788,"Cost":528,"Date":"6/5/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":419,"Cost":380,"Date":"6/7/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":952,"Cost":902,"Date":"6/14/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":911,"Cost":602,"Date":"6/20/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":716,"Cost":598,"Date":"6/24/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":103,"Cost":68,"Date":"7/4/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":800,"Cost":590,"Date":"7/9/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":484,"Cost":288,"Date":"7/12/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":952,"Cost":516,"Date":"8/14/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":579,"Cost":497,"Date":"8/16/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":50,"Cost":41,"Date":"8/23/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":328,"Cost":227,"Date":"9/2/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":624,"Cost":318,"Date":"9/3/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":842,"Cost":672,"Date":"9/16/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":561,"Cost":351,"Date":"10/4/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":35,"Cost":19,"Date":"11/1/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":453,"Cost":413,"Date":"11/2/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":390,"Cost":231,"Date":"12/17/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":8,"Cost":4,"Date":"2/10/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":819,"Cost":723,"Date":"2/28/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":924,"Cost":874,"Date":"3/4/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":201,"Cost":132,"Date":"3/9/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":4,"Cost":2,"Date":"3/9/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":402,"Cost":339,"Date":"3/11/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":510,"Cost":312,"Date":"3/17/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":940,"Cost":549,"Date":"3/17/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":223,"Cost":138,"Date":"3/23/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":991,"Cost":583,"Date":"4/1/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":632,"Cost":402,"Date":"5/7/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":442,"Cost":338,"Date":"5/10/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":110,"Cost":78,"Date":"5/20/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":476,"Cost":370,"Date":"6/2/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":322,"Cost":163,"Date":"6/11/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":193,"Cost":163,"Date":"6/16/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":134,"Cost":126,"Date":"6/16/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":190,"Cost":169,"Date":"7/10/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":698,"Cost":370,"Date":"7/11/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":753,"Cost":456,"Date":"8/28/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":287,"Cost":267,"Date":"8/29/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":715,"Cost":373,"Date":"8/31/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":501,"Cost":444,"Date":"9/8/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":965,"Cost":601,"Date":"9/13/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":546,"Cost":302,"Date":"9/14/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":541,"Cost":296,"Date":"9/19/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":804,"Cost":682,"Date":"9/25/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":296,"Cost":245,"Date":"10/4/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":502,"Cost":342,"Date":"10/10/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":581,"Cost":479,"Date":"10/17/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":7,"Cost":6,"Date":"10/28/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":891,"Cost":750,"Date":"10/30/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":380,"Cost":216,"Date":"11/1/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":144,"Cost":83,"Date":"11/15/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":80,"Cost":52,"Date":"11/25/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":46,"Cost":42,"Date":"1/10/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":855,"Cost":505,"Date":"1/14/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":538,"Cost":475,"Date":"1/20/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":344,"Cost":251,"Date":"2/8/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":169,"Cost":153,"Date":"2/25/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":214,"Cost":107,"Date":"3/7/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":82,"Cost":78,"Date":"3/14/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":395,"Cost":270,"Date":"3/27/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":450,"Cost":347,"Date":"4/5/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":223,"Cost":174,"Date":"4/14/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":751,"Cost":680,"Date":"5/3/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":501,"Cost":408,"Date":"5/9/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":63,"Cost":55,"Date":"5/15/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":344,"Cost":298,"Date":"5/25/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":173,"Cost":112,"Date":"5/26/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":235,"Cost":199,"Date":"5/31/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":863,"Cost":627,"Date":"7/27/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":538,"Cost":410,"Date":"9/17/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":588,"Cost":328,"Date":"10/6/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":887,"Cost":459,"Date":"10/8/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":567,"Cost":437,"Date":"10/26/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":199,"Cost":182,"Date":"11/16/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":750,"Cost":618,"Date":"11/18/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Sellpy","Country":"Belgium","Sale":579,"Cost":497,"Date":"12/1/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":677,"Cost":472,"Date":"2/9/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":291,"Cost":204,"Date":"2/11/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":798,"Cost":551,"Date":"3/10/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":771,"Cost":548,"Date":"3/16/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":83,"Cost":57,"Date":"3/18/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":476,"Cost":330,"Date":"3/20/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":66,"Cost":49,"Date":"3/26/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":365,"Cost":205,"Date":"6/2/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":713,"Cost":579,"Date":"6/10/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":920,"Cost":623,"Date":"6/16/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":829,"Cost":537,"Date":"6/25/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":433,"Cost":233,"Date":"7/19/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":429,"Cost":321,"Date":"7/21/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":459,"Cost":377,"Date":"7/25/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":981,"Cost":826,"Date":"8/4/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":748,"Cost":637,"Date":"9/2/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":872,"Cost":458,"Date":"9/4/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":193,"Cost":124,"Date":"9/19/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":611,"Cost":402,"Date":"9/29/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":793,"Cost":640,"Date":"10/2/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":81,"Cost":70,"Date":"10/15/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":727,"Cost":545,"Date":"10/30/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":596,"Cost":443,"Date":"11/9/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":562,"Cost":445,"Date":"11/23/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":530,"Cost":375,"Date":"11/30/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":89,"Cost":58,"Date":"12/8/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":127,"Cost":90,"Date":"12/11/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":109,"Cost":101,"Date":"1/15/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":520,"Cost":362,"Date":"1/24/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":26,"Cost":15,"Date":"2/3/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":440,"Cost":330,"Date":"2/4/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":251,"Cost":199,"Date":"3/9/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":740,"Cost":686,"Date":"3/12/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":875,"Cost":605,"Date":"4/19/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":56,"Cost":42,"Date":"5/3/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":139,"Cost":74,"Date":"5/4/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":537,"Cost":424,"Date":"6/8/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":150,"Cost":106,"Date":"6/26/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":115,"Cost":99,"Date":"7/4/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":323,"Cost":222,"Date":"7/13/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":507,"Cost":361,"Date":"8/8/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":716,"Cost":633,"Date":"8/26/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":416,"Cost":315,"Date":"9/2/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":53,"Cost":40,"Date":"9/29/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":410,"Cost":351,"Date":"10/12/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":217,"Cost":157,"Date":"11/2/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":224,"Cost":187,"Date":"11/4/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":37,"Cost":25,"Date":"11/7/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":980,"Cost":490,"Date":"12/1/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":323,"Cost":264,"Date":"12/4/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":592,"Cost":490,"Date":"12/7/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":158,"Cost":93,"Date":"12/18/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":312,"Cost":180,"Date":"12/20/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":803,"Cost":761,"Date":"12/20/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":766,"Cost":423,"Date":"12/21/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":166,"Cost":135,"Date":"1/9/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":954,"Cost":586,"Date":"2/5/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":335,"Cost":178,"Date":"2/16/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":898,"Cost":559,"Date":"2/16/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":124,"Cost":118,"Date":"2/18/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":991,"Cost":669,"Date":"2/22/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":537,"Cost":369,"Date":"2/25/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":501,"Cost":265,"Date":"3/8/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":476,"Cost":370,"Date":"4/2/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":134,"Cost":103,"Date":"4/3/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":853,"Cost":716,"Date":"4/9/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":385,"Cost":248,"Date":"4/10/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":495,"Cost":276,"Date":"4/19/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":630,"Cost":549,"Date":"5/17/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":716,"Cost":643,"Date":"5/22/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":887,"Cost":733,"Date":"6/20/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":149,"Cost":100,"Date":"7/1/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":205,"Cost":146,"Date":"7/4/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":255,"Cost":235,"Date":"7/8/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":53,"Cost":35,"Date":"7/9/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":747,"Cost":620,"Date":"7/14/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":440,"Cost":384,"Date":"7/19/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":970,"Cost":870,"Date":"8/1/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":448,"Cost":270,"Date":"8/6/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":130,"Cost":99,"Date":"8/7/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":9,"Cost":4,"Date":"8/22/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":435,"Cost":330,"Date":"8/31/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":372,"Cost":278,"Date":"9/1/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":960,"Cost":528,"Date":"9/1/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":164,"Cost":88,"Date":"9/17/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":445,"Cost":352,"Date":"9/29/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":603,"Cost":547,"Date":"11/7/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":956,"Cost":596,"Date":"11/26/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":918,"Cost":851,"Date":"11/27/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":687,"Cost":523,"Date":"12/5/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":759,"Cost":422,"Date":"12/26/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":197,"Cost":174,"Date":"12/31/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":910,"Cost":691,"Date":"1/20/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":850,"Cost":735,"Date":"2/2/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":157,"Cost":114,"Date":"2/8/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":759,"Cost":709,"Date":"2/27/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":654,"Cost":417,"Date":"3/1/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":334,"Cost":193,"Date":"3/1/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":916,"Cost":752,"Date":"3/19/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":326,"Cost":291,"Date":"3/28/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":243,"Cost":171,"Date":"5/21/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":486,"Cost":364,"Date":"7/21/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":603,"Cost":306,"Date":"8/5/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":7,"Cost":5,"Date":"8/12/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":355,"Cost":185,"Date":"8/21/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":786,"Cost":559,"Date":"8/23/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":989,"Cost":518,"Date":"9/3/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":296,"Cost":202,"Date":"9/5/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":969,"Cost":712,"Date":"10/6/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":698,"Cost":442,"Date":"10/19/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":260,"Cost":197,"Date":"11/15/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":991,"Cost":623,"Date":"12/8/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":891,"Cost":785,"Date":"1/8/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":275,"Cost":246,"Date":"1/14/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":548,"Cost":357,"Date":"1/19/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":557,"Cost":491,"Date":"1/28/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":460,"Cost":315,"Date":"1/31/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":593,"Cost":385,"Date":"3/27/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":151,"Cost":134,"Date":"4/20/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":463,"Cost":386,"Date":"4/24/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":46,"Cost":25,"Date":"4/28/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":230,"Cost":202,"Date":"5/15/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":853,"Cost":463,"Date":"5/16/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":578,"Cost":434,"Date":"5/18/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":761,"Cost":685,"Date":"6/2/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":333,"Cost":296,"Date":"6/3/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":605,"Cost":439,"Date":"6/5/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":19,"Cost":11,"Date":"6/7/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":118,"Cost":96,"Date":"6/14/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":151,"Cost":136,"Date":"6/20/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":740,"Cost":540,"Date":"6/24/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":124,"Cost":104,"Date":"7/4/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":777,"Cost":582,"Date":"7/9/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":281,"Cost":164,"Date":"7/12/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":643,"Cost":428,"Date":"8/14/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":747,"Cost":415,"Date":"8/16/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":23,"Cost":12,"Date":"8/23/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":343,"Cost":274,"Date":"9/2/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":543,"Cost":333,"Date":"9/3/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":822,"Cost":513,"Date":"9/16/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":513,"Cost":280,"Date":"10/4/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":410,"Cost":278,"Date":"11/1/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":274,"Cost":183,"Date":"11/2/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":566,"Cost":515,"Date":"12/17/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":951,"Cost":883,"Date":"2/10/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":843,"Cost":698,"Date":"2/28/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":624,"Cost":369,"Date":"3/4/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":806,"Cost":629,"Date":"3/9/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":949,"Cost":527,"Date":"3/9/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":670,"Cost":595,"Date":"3/11/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":84,"Cost":46,"Date":"3/17/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":932,"Cost":686,"Date":"3/17/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":951,"Cost":869,"Date":"3/23/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":513,"Cost":287,"Date":"4/1/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":720,"Cost":492,"Date":"5/7/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":548,"Cost":365,"Date":"5/10/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":881,"Cost":650,"Date":"5/20/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":111,"Cost":72,"Date":"6/2/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":215,"Cost":179,"Date":"6/11/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":359,"Cost":267,"Date":"6/16/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":561,"Cost":405,"Date":"6/16/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":836,"Cost":429,"Date":"7/10/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":766,"Cost":546,"Date":"7/11/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":617,"Cost":379,"Date":"8/28/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":802,"Cost":536,"Date":"8/29/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":940,"Cost":529,"Date":"8/31/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":848,"Cost":454,"Date":"9/8/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":623,"Cost":579,"Date":"9/13/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":338,"Cost":232,"Date":"9/14/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":676,"Cost":609,"Date":"9/19/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":517,"Cost":430,"Date":"9/25/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":258,"Cost":216,"Date":"10/4/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":290,"Cost":274,"Date":"10/10/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":219,"Cost":143,"Date":"10/17/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":772,"Cost":636,"Date":"10/28/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":763,"Cost":527,"Date":"10/30/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":944,"Cost":498,"Date":"11/1/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":509,"Cost":293,"Date":"11/15/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":551,"Cost":300,"Date":"11/25/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":314,"Cost":258,"Date":"1/10/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":775,"Cost":698,"Date":"1/14/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":156,"Cost":148,"Date":"1/20/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":908,"Cost":518,"Date":"2/8/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":563,"Cost":448,"Date":"2/25/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":508,"Cost":391,"Date":"3/7/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":865,"Cost":687,"Date":"3/14/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":877,"Cost":578,"Date":"3/27/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":129,"Cost":88,"Date":"4/5/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":7,"Cost":4,"Date":"4/14/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":332,"Cost":201,"Date":"5/3/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":981,"Cost":909,"Date":"5/9/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":772,"Cost":466,"Date":"5/15/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":238,"Cost":185,"Date":"5/25/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":161,"Cost":129,"Date":"5/26/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":119,"Cost":77,"Date":"5/31/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":760,"Cost":681,"Date":"7/27/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":888,"Cost":581,"Date":"9/17/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":957,"Cost":525,"Date":"10/6/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":63,"Cost":35,"Date":"10/8/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":415,"Cost":379,"Date":"10/26/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":769,"Cost":592,"Date":"11/16/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":66,"Cost":51,"Date":"11/18/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"ARKET","Country":"Belgium","Sale":782,"Cost":409,"Date":"12/1/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":446,"Cost":232,"Date":"2/9/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":164,"Cost":108,"Date":"2/11/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":625,"Cost":390,"Date":"3/10/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":37,"Cost":24,"Date":"3/16/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":833,"Cost":775,"Date":"3/18/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":476,"Cost":429,"Date":"3/20/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":393,"Cost":215,"Date":"3/26/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":752,"Cost":430,"Date":"6/2/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":865,"Cost":728,"Date":"6/10/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":509,"Cost":286,"Date":"6/16/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":112,"Cost":98,"Date":"6/25/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":90,"Cost":60,"Date":"7/19/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":710,"Cost":655,"Date":"7/21/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":309,"Cost":290,"Date":"7/25/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":812,"Cost":662,"Date":"8/4/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":215,"Cost":180,"Date":"9/2/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":835,"Cost":559,"Date":"9/4/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":140,"Cost":102,"Date":"9/19/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":379,"Cost":340,"Date":"9/29/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":958,"Cost":867,"Date":"10/2/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":915,"Cost":674,"Date":"10/15/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":233,"Cost":173,"Date":"10/30/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":655,"Cost":336,"Date":"11/9/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":330,"Cost":169,"Date":"11/23/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":937,"Cost":856,"Date":"11/30/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":124,"Cost":76,"Date":"12/8/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":252,"Cost":195,"Date":"12/11/2018"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":749,"Cost":405,"Date":"1/15/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":319,"Cost":234,"Date":"1/24/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":250,"Cost":186,"Date":"2/3/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":128,"Cost":91,"Date":"2/4/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":598,"Cost":346,"Date":"3/9/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":740,"Cost":570,"Date":"3/12/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":681,"Cost":407,"Date":"4/19/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":754,"Cost":457,"Date":"5/3/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":893,"Cost":495,"Date":"5/4/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":956,"Cost":659,"Date":"6/8/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":493,"Cost":365,"Date":"6/26/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":510,"Cost":290,"Date":"7/4/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":707,"Cost":551,"Date":"7/13/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":5,"Cost":5,"Date":"8/8/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":930,"Cost":855,"Date":"8/26/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":859,"Cost":447,"Date":"9/2/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":524,"Cost":482,"Date":"9/29/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":615,"Cost":507,"Date":"10/12/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":279,"Cost":212,"Date":"11/2/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":432,"Cost":329,"Date":"11/4/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":949,"Cost":777,"Date":"11/7/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":962,"Cost":694,"Date":"12/1/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":362,"Cost":267,"Date":"12/4/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":8,"Cost":4,"Date":"12/7/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":232,"Cost":136,"Date":"12/18/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":188,"Cost":120,"Date":"12/20/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":183,"Cost":131,"Date":"12/20/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":927,"Cost":809,"Date":"12/21/2019"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":953,"Cost":668,"Date":"1/9/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":586,"Cost":309,"Date":"2/5/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":252,"Cost":216,"Date":"2/16/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":296,"Cost":237,"Date":"2/16/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":212,"Cost":111,"Date":"2/18/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":203,"Cost":148,"Date":"2/22/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":617,"Cost":475,"Date":"2/25/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":715,"Cost":555,"Date":"3/8/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":555,"Cost":301,"Date":"4/2/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":147,"Cost":83,"Date":"4/3/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":126,"Cost":91,"Date":"4/9/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":838,"Cost":618,"Date":"4/10/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":944,"Cost":679,"Date":"4/19/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":670,"Cost":496,"Date":"5/17/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":542,"Cost":297,"Date":"5/22/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":894,"Cost":786,"Date":"6/20/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":857,"Cost":630,"Date":"7/1/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":129,"Cost":84,"Date":"7/4/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":796,"Cost":557,"Date":"7/8/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":59,"Cost":55,"Date":"7/9/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":93,"Cost":78,"Date":"7/14/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":444,"Cost":372,"Date":"7/19/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":517,"Cost":422,"Date":"8/1/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":220,"Cost":148,"Date":"8/6/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":943,"Cost":896,"Date":"8/7/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":649,"Cost":615,"Date":"8/22/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":764,"Cost":668,"Date":"8/31/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":573,"Cost":434,"Date":"9/1/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":766,"Cost":722,"Date":"9/1/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":779,"Cost":444,"Date":"9/17/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":714,"Cost":496,"Date":"9/29/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":225,"Cost":160,"Date":"11/7/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":725,"Cost":373,"Date":"11/26/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":934,"Cost":645,"Date":"11/27/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":283,"Cost":215,"Date":"12/5/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":926,"Cost":861,"Date":"12/26/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":605,"Cost":549,"Date":"12/31/2020"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":366,"Cost":299,"Date":"1/20/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":778,"Cost":634,"Date":"2/2/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":898,"Cost":469,"Date":"2/8/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":784,"Cost":734,"Date":"2/27/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":250,"Cost":150,"Date":"3/1/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":61,"Cost":52,"Date":"3/1/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":248,"Cost":198,"Date":"3/19/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":210,"Cost":164,"Date":"3/28/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":960,"Cost":873,"Date":"5/21/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":156,"Cost":139,"Date":"7/21/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":220,"Cost":194,"Date":"8/5/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":619,"Cost":405,"Date":"8/12/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":196,"Cost":124,"Date":"8/21/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":516,"Cost":364,"Date":"8/23/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":862,"Cost":703,"Date":"9/3/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":924,"Cost":564,"Date":"9/5/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":783,"Cost":732,"Date":"10/6/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":819,"Cost":577,"Date":"10/19/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":365,"Cost":247,"Date":"11/15/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":761,"Cost":666,"Date":"12/8/2021"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":695,"Cost":460,"Date":"1/8/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":127,"Cost":106,"Date":"1/14/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":330,"Cost":303,"Date":"1/19/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":313,"Cost":166,"Date":"1/28/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":582,"Cost":525,"Date":"1/31/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":530,"Cost":442,"Date":"3/27/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":474,"Cost":325,"Date":"4/20/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":86,"Cost":78,"Date":"4/24/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":142,"Cost":89,"Date":"4/28/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":708,"Cost":437,"Date":"5/15/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":280,"Cost":187,"Date":"5/16/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":222,"Cost":113,"Date":"5/18/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":806,"Cost":447,"Date":"6/2/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":485,"Cost":254,"Date":"6/3/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":286,"Cost":235,"Date":"6/5/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":723,"Cost":527,"Date":"6/7/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":504,"Cost":296,"Date":"6/14/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":341,"Cost":296,"Date":"6/20/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":400,"Cost":263,"Date":"6/24/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":841,"Cost":557,"Date":"7/4/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":314,"Cost":292,"Date":"7/9/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":608,"Cost":525,"Date":"7/12/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":788,"Cost":604,"Date":"8/14/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":974,"Cost":691,"Date":"8/16/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":449,"Cost":314,"Date":"8/23/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":89,"Cost":68,"Date":"9/2/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":993,"Cost":513,"Date":"9/3/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":936,"Cost":628,"Date":"9/16/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":465,"Cost":346,"Date":"10/4/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":632,"Cost":354,"Date":"11/1/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":747,"Cost":478,"Date":"11/2/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":890,"Cost":557,"Date":"12/17/2022"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":533,"Cost":506,"Date":"2/10/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":596,"Cost":542,"Date":"2/28/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":932,"Cost":853,"Date":"3/4/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":12,"Cost":7,"Date":"3/9/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":543,"Cost":408,"Date":"3/9/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":238,"Cost":173,"Date":"3/11/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":476,"Cost":268,"Date":"3/17/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":393,"Cost":259,"Date":"3/17/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":739,"Cost":524,"Date":"3/23/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":336,"Cost":283,"Date":"4/1/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":34,"Cost":28,"Date":"5/7/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":155,"Cost":78,"Date":"5/10/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":918,"Cost":835,"Date":"5/20/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":258,"Cost":168,"Date":"6/2/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":973,"Cost":659,"Date":"6/11/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":42,"Cost":37,"Date":"6/16/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":605,"Cost":311,"Date":"6/16/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":641,"Cost":363,"Date":"7/10/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":903,"Cost":665,"Date":"7/11/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":951,"Cost":855,"Date":"8/28/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":996,"Cost":602,"Date":"8/29/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":446,"Cost":373,"Date":"8/31/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":376,"Cost":225,"Date":"9/8/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":249,"Cost":159,"Date":"9/13/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":384,"Cost":323,"Date":"9/14/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":567,"Cost":435,"Date":"9/19/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":762,"Cost":432,"Date":"9/25/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":866,"Cost":518,"Date":"10/4/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":508,"Cost":282,"Date":"10/10/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":515,"Cost":463,"Date":"10/17/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":636,"Cost":404,"Date":"10/28/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":170,"Cost":97,"Date":"10/30/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":813,"Cost":415,"Date":"11/1/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":113,"Cost":56,"Date":"11/15/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":542,"Cost":346,"Date":"11/25/2023"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":612,"Cost":326,"Date":"1/10/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":955,"Cost":710,"Date":"1/14/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":821,"Cost":657,"Date":"1/20/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":421,"Cost":333,"Date":"2/8/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":90,"Cost":61,"Date":"2/25/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":594,"Cost":310,"Date":"3/7/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":606,"Cost":506,"Date":"3/14/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":551,"Cost":319,"Date":"3/27/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":642,"Cost":530,"Date":"4/5/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":721,"Cost":522,"Date":"4/14/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":667,"Cost":535,"Date":"5/3/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":513,"Cost":258,"Date":"5/9/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":301,"Cost":220,"Date":"5/15/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":28,"Cost":18,"Date":"5/25/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":475,"Cost":396,"Date":"5/26/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":857,"Cost":485,"Date":"5/31/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":992,"Cost":598,"Date":"7/27/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":821,"Cost":482,"Date":"9/17/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":726,"Cost":605,"Date":"10/6/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":947,"Cost":585,"Date":"10/8/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":201,"Cost":122,"Date":"10/26/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":295,"Cost":206,"Date":"11/16/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":336,"Cost":193,"Date":"11/18/2024"},{"Store":"Winkelcentrum de Meir, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":23,"Cost":14,"Date":"12/1/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":832,"Cost":545,"Date":"2/9/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":31,"Cost":16,"Date":"2/11/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":375,"Cost":251,"Date":"3/10/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":627,"Cost":445,"Date":"3/16/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":528,"Cost":366,"Date":"3/18/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":422,"Cost":356,"Date":"3/20/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":889,"Cost":529,"Date":"3/26/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":474,"Cost":271,"Date":"6/2/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":227,"Cost":113,"Date":"6/10/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":154,"Cost":121,"Date":"6/16/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":396,"Cost":245,"Date":"6/25/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":427,"Cost":225,"Date":"7/19/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":505,"Cost":454,"Date":"7/21/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":446,"Cost":279,"Date":"7/25/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":820,"Cost":742,"Date":"8/4/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":31,"Cost":22,"Date":"9/2/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":292,"Cost":184,"Date":"9/4/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":955,"Cost":781,"Date":"9/19/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":508,"Cost":431,"Date":"9/29/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":114,"Cost":94,"Date":"10/2/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":144,"Cost":108,"Date":"10/15/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":186,"Cost":115,"Date":"10/30/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":464,"Cost":359,"Date":"11/9/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":512,"Cost":339,"Date":"11/23/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":303,"Cost":198,"Date":"11/30/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":40,"Cost":28,"Date":"12/8/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":903,"Cost":780,"Date":"12/11/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":295,"Cost":241,"Date":"1/15/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":773,"Cost":529,"Date":"1/24/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":390,"Cost":314,"Date":"2/3/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":827,"Cost":582,"Date":"2/4/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":844,"Cost":694,"Date":"3/9/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":64,"Cost":37,"Date":"3/12/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":172,"Cost":159,"Date":"4/19/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":850,"Cost":783,"Date":"5/3/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":389,"Cost":328,"Date":"5/4/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":390,"Cost":350,"Date":"6/8/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":961,"Cost":493,"Date":"6/26/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":256,"Cost":170,"Date":"7/4/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":259,"Cost":234,"Date":"7/13/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":283,"Cost":174,"Date":"8/8/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":650,"Cost":342,"Date":"8/26/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":409,"Cost":302,"Date":"9/2/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":29,"Cost":25,"Date":"9/29/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":503,"Cost":362,"Date":"10/12/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":1,"Cost":1,"Date":"11/2/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":982,"Cost":681,"Date":"11/4/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":204,"Cost":160,"Date":"11/7/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":248,"Cost":184,"Date":"12/1/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":819,"Cost":610,"Date":"12/4/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":532,"Cost":303,"Date":"12/7/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":735,"Cost":696,"Date":"12/18/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":244,"Cost":124,"Date":"12/20/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":563,"Cost":335,"Date":"12/20/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":584,"Cost":504,"Date":"12/21/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":785,"Cost":680,"Date":"1/9/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":483,"Cost":288,"Date":"2/5/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":269,"Cost":151,"Date":"2/16/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":615,"Cost":516,"Date":"2/16/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":733,"Cost":463,"Date":"2/18/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":657,"Cost":475,"Date":"2/22/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":998,"Cost":946,"Date":"2/25/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":532,"Cost":421,"Date":"3/8/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":813,"Cost":512,"Date":"4/2/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":97,"Cost":81,"Date":"4/3/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":875,"Cost":453,"Date":"4/9/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":620,"Cost":514,"Date":"4/10/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":294,"Cost":178,"Date":"4/19/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":975,"Cost":649,"Date":"5/17/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":630,"Cost":373,"Date":"5/22/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":564,"Cost":416,"Date":"6/20/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":270,"Cost":223,"Date":"7/1/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":581,"Cost":369,"Date":"7/4/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":971,"Cost":632,"Date":"7/8/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":433,"Cost":333,"Date":"7/9/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":252,"Cost":135,"Date":"7/14/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":930,"Cost":569,"Date":"7/19/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":391,"Cost":249,"Date":"8/1/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":549,"Cost":473,"Date":"8/6/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":52,"Cost":43,"Date":"8/7/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":435,"Cost":228,"Date":"8/22/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":434,"Cost":335,"Date":"8/31/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":137,"Cost":101,"Date":"9/1/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":371,"Cost":232,"Date":"9/1/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":909,"Cost":581,"Date":"9/17/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":267,"Cost":187,"Date":"9/29/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":668,"Cost":603,"Date":"11/7/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":323,"Cost":163,"Date":"11/26/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":509,"Cost":452,"Date":"11/27/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":721,"Cost":437,"Date":"12/5/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":780,"Cost":616,"Date":"12/26/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":686,"Cost":418,"Date":"12/31/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":163,"Cost":93,"Date":"1/20/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":473,"Cost":331,"Date":"2/2/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":612,"Cost":335,"Date":"2/8/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":587,"Cost":422,"Date":"2/27/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":388,"Cost":238,"Date":"3/1/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":874,"Cost":793,"Date":"3/1/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":724,"Cost":642,"Date":"3/19/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":773,"Cost":693,"Date":"3/28/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":639,"Cost":411,"Date":"5/21/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":292,"Cost":202,"Date":"7/21/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":144,"Cost":74,"Date":"8/5/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":205,"Cost":184,"Date":"8/12/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":11,"Cost":11,"Date":"8/21/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":640,"Cost":445,"Date":"8/23/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":62,"Cost":44,"Date":"9/3/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":953,"Cost":695,"Date":"9/5/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":406,"Cost":316,"Date":"10/6/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":816,"Cost":638,"Date":"10/19/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":393,"Cost":328,"Date":"11/15/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":498,"Cost":371,"Date":"12/8/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":875,"Cost":458,"Date":"1/8/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":969,"Cost":548,"Date":"1/14/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":169,"Cost":123,"Date":"1/19/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":377,"Cost":233,"Date":"1/28/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":721,"Cost":498,"Date":"1/31/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":382,"Cost":228,"Date":"3/27/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":90,"Cost":82,"Date":"4/20/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":591,"Cost":486,"Date":"4/24/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":759,"Cost":389,"Date":"4/28/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":354,"Cost":188,"Date":"5/15/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":193,"Cost":181,"Date":"5/16/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":38,"Cost":28,"Date":"5/18/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":428,"Cost":350,"Date":"6/2/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":255,"Cost":198,"Date":"6/3/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":241,"Cost":134,"Date":"6/5/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":167,"Cost":140,"Date":"6/7/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":436,"Cost":240,"Date":"6/14/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":117,"Cost":70,"Date":"6/20/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":612,"Cost":322,"Date":"6/24/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":426,"Cost":357,"Date":"7/4/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":848,"Cost":603,"Date":"7/9/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":606,"Cost":336,"Date":"7/12/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":401,"Cost":219,"Date":"8/14/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":509,"Cost":262,"Date":"8/16/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":724,"Cost":514,"Date":"8/23/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":900,"Cost":467,"Date":"9/2/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":519,"Cost":431,"Date":"9/3/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":938,"Cost":723,"Date":"9/16/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":307,"Cost":229,"Date":"10/4/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":235,"Cost":154,"Date":"11/1/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":947,"Cost":887,"Date":"11/2/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":72,"Cost":61,"Date":"12/17/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":708,"Cost":386,"Date":"2/10/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":13,"Cost":7,"Date":"2/28/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":566,"Cost":531,"Date":"3/4/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":270,"Cost":242,"Date":"3/9/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":328,"Cost":225,"Date":"3/9/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":148,"Cost":119,"Date":"3/11/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":61,"Cost":47,"Date":"3/17/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":92,"Cost":82,"Date":"3/17/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":111,"Cost":58,"Date":"3/23/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":323,"Cost":223,"Date":"4/1/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":185,"Cost":130,"Date":"5/7/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":253,"Cost":140,"Date":"5/10/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":744,"Cost":543,"Date":"5/20/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":541,"Cost":284,"Date":"6/2/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":797,"Cost":434,"Date":"6/11/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":15,"Cost":7,"Date":"6/16/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":818,"Cost":555,"Date":"6/16/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":909,"Cost":676,"Date":"7/10/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":706,"Cost":516,"Date":"7/11/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":331,"Cost":235,"Date":"8/28/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":806,"Cost":750,"Date":"8/29/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":80,"Cost":72,"Date":"8/31/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":162,"Cost":119,"Date":"9/8/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":386,"Cost":339,"Date":"9/13/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":326,"Cost":272,"Date":"9/14/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":488,"Cost":264,"Date":"9/19/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":665,"Cost":377,"Date":"9/25/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":149,"Cost":104,"Date":"10/4/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":296,"Cost":224,"Date":"10/10/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":711,"Cost":605,"Date":"10/17/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":331,"Cost":196,"Date":"10/28/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":744,"Cost":601,"Date":"10/30/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":40,"Cost":36,"Date":"11/1/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":856,"Cost":639,"Date":"11/15/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":803,"Cost":604,"Date":"11/25/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":189,"Cost":152,"Date":"1/10/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":918,"Cost":860,"Date":"1/14/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":101,"Cost":78,"Date":"1/20/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":643,"Cost":574,"Date":"2/8/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":248,"Cost":229,"Date":"2/25/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":772,"Cost":659,"Date":"3/7/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":208,"Cost":174,"Date":"3/14/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":496,"Cost":282,"Date":"3/27/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":786,"Cost":461,"Date":"4/5/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":253,"Cost":150,"Date":"4/14/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":599,"Cost":540,"Date":"5/3/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":881,"Cost":827,"Date":"5/9/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":80,"Cost":61,"Date":"5/15/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":815,"Cost":767,"Date":"5/25/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":814,"Cost":439,"Date":"5/26/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":500,"Cost":415,"Date":"5/31/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":970,"Cost":742,"Date":"7/27/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":425,"Cost":381,"Date":"9/17/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":730,"Cost":398,"Date":"10/6/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":468,"Cost":438,"Date":"10/8/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":509,"Cost":393,"Date":"10/26/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":407,"Cost":347,"Date":"11/16/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":68,"Cost":47,"Date":"11/18/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM","Country":"Belgium","Sale":905,"Cost":595,"Date":"12/1/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":800,"Cost":622,"Date":"2/9/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":114,"Cost":83,"Date":"2/11/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":947,"Cost":827,"Date":"3/10/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":494,"Cost":272,"Date":"3/16/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":236,"Cost":138,"Date":"3/18/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":58,"Cost":32,"Date":"3/20/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":223,"Cost":112,"Date":"3/26/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":337,"Cost":185,"Date":"6/2/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":342,"Cost":300,"Date":"6/10/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":583,"Cost":297,"Date":"6/16/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":54,"Cost":45,"Date":"6/25/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":744,"Cost":616,"Date":"7/19/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":703,"Cost":447,"Date":"7/21/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":161,"Cost":146,"Date":"7/25/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":464,"Cost":428,"Date":"8/4/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":201,"Cost":158,"Date":"9/2/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":241,"Cost":220,"Date":"9/4/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":315,"Cost":186,"Date":"9/19/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":628,"Cost":524,"Date":"9/29/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":773,"Cost":488,"Date":"10/2/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":828,"Cost":672,"Date":"10/15/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":944,"Cost":897,"Date":"10/30/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":399,"Cost":236,"Date":"11/9/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":337,"Cost":187,"Date":"11/23/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":854,"Cost":601,"Date":"11/30/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":583,"Cost":353,"Date":"12/8/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":250,"Cost":202,"Date":"12/11/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":461,"Cost":385,"Date":"1/15/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":200,"Cost":145,"Date":"1/24/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":338,"Cost":264,"Date":"2/3/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":90,"Cost":70,"Date":"2/4/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":990,"Cost":709,"Date":"3/9/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":849,"Cost":771,"Date":"3/12/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":295,"Cost":265,"Date":"4/19/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":353,"Cost":265,"Date":"5/3/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":672,"Cost":420,"Date":"5/4/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":244,"Cost":217,"Date":"6/8/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":679,"Cost":354,"Date":"6/26/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":170,"Cost":138,"Date":"7/4/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":877,"Cost":555,"Date":"7/13/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":356,"Cost":308,"Date":"8/8/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":957,"Cost":610,"Date":"8/26/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":185,"Cost":98,"Date":"9/2/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":596,"Cost":374,"Date":"9/29/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":950,"Cost":475,"Date":"10/12/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":784,"Cost":461,"Date":"11/2/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":513,"Cost":317,"Date":"11/4/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":448,"Cost":373,"Date":"11/7/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":11,"Cost":9,"Date":"12/1/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":38,"Cost":20,"Date":"12/4/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":277,"Cost":222,"Date":"12/7/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":357,"Cost":187,"Date":"12/18/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":596,"Cost":376,"Date":"12/20/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":506,"Cost":353,"Date":"12/20/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":563,"Cost":322,"Date":"12/21/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":852,"Cost":641,"Date":"1/9/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":970,"Cost":820,"Date":"2/5/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":683,"Cost":457,"Date":"2/16/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":736,"Cost":647,"Date":"2/16/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":926,"Cost":829,"Date":"2/18/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":533,"Cost":373,"Date":"2/22/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":466,"Cost":263,"Date":"2/25/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":37,"Cost":24,"Date":"3/8/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":234,"Cost":143,"Date":"4/2/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":844,"Cost":531,"Date":"4/3/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":493,"Cost":306,"Date":"4/9/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":785,"Cost":548,"Date":"4/10/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":894,"Cost":717,"Date":"4/19/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":491,"Cost":358,"Date":"5/17/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":636,"Cost":452,"Date":"5/22/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":631,"Cost":506,"Date":"6/20/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":957,"Cost":856,"Date":"7/1/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":861,"Cost":505,"Date":"7/4/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":267,"Cost":206,"Date":"7/8/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":901,"Cost":633,"Date":"7/9/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":177,"Cost":148,"Date":"7/14/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":268,"Cost":250,"Date":"7/19/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":773,"Cost":574,"Date":"8/1/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":450,"Cost":225,"Date":"8/6/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":17,"Cost":16,"Date":"8/7/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":214,"Cost":154,"Date":"8/22/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":714,"Cost":367,"Date":"8/31/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":598,"Cost":560,"Date":"9/1/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":487,"Cost":262,"Date":"9/1/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":666,"Cost":391,"Date":"9/17/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":818,"Cost":768,"Date":"9/29/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":315,"Cost":253,"Date":"11/7/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":60,"Cost":30,"Date":"11/26/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":835,"Cost":715,"Date":"11/27/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":269,"Cost":251,"Date":"12/5/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":629,"Cost":339,"Date":"12/26/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":202,"Cost":147,"Date":"12/31/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":735,"Cost":606,"Date":"1/20/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":426,"Cost":300,"Date":"2/2/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":339,"Cost":240,"Date":"2/8/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":237,"Cost":201,"Date":"2/27/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":150,"Cost":116,"Date":"3/1/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":243,"Cost":137,"Date":"3/1/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":578,"Cost":480,"Date":"3/19/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":444,"Cost":387,"Date":"3/28/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":808,"Cost":430,"Date":"5/21/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":406,"Cost":252,"Date":"7/21/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":757,"Cost":712,"Date":"8/5/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":458,"Cost":298,"Date":"8/12/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":654,"Cost":523,"Date":"8/21/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":886,"Cost":750,"Date":"8/23/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":203,"Cost":179,"Date":"9/3/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":703,"Cost":641,"Date":"9/5/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":482,"Cost":437,"Date":"10/6/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":50,"Cost":47,"Date":"10/19/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":296,"Cost":241,"Date":"11/15/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":372,"Cost":278,"Date":"12/8/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":755,"Cost":452,"Date":"1/8/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":235,"Cost":190,"Date":"1/14/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":322,"Cost":204,"Date":"1/19/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":477,"Cost":248,"Date":"1/28/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":498,"Cost":299,"Date":"1/31/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":525,"Cost":355,"Date":"3/27/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":813,"Cost":700,"Date":"4/20/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":99,"Cost":67,"Date":"4/24/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":228,"Cost":193,"Date":"4/28/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":739,"Cost":494,"Date":"5/15/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":495,"Cost":264,"Date":"5/16/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":835,"Cost":628,"Date":"5/18/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":676,"Cost":349,"Date":"6/2/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":27,"Cost":24,"Date":"6/3/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":568,"Cost":514,"Date":"6/5/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":597,"Cost":504,"Date":"6/7/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":539,"Cost":309,"Date":"6/14/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":701,"Cost":599,"Date":"6/20/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":617,"Cost":460,"Date":"6/24/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":841,"Cost":681,"Date":"7/4/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":447,"Cost":287,"Date":"7/9/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":439,"Cost":346,"Date":"7/12/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":649,"Cost":616,"Date":"8/14/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":399,"Cost":284,"Date":"8/16/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":39,"Cost":35,"Date":"8/23/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":850,"Cost":656,"Date":"9/2/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":897,"Cost":576,"Date":"9/3/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":10,"Cost":6,"Date":"9/16/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":881,"Cost":501,"Date":"10/4/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":524,"Cost":449,"Date":"11/1/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":655,"Cost":615,"Date":"11/2/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":850,"Cost":642,"Date":"12/17/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":732,"Cost":450,"Date":"2/10/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":757,"Cost":640,"Date":"2/28/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":999,"Cost":702,"Date":"3/4/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":360,"Cost":277,"Date":"3/9/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":999,"Cost":671,"Date":"3/9/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":597,"Cost":414,"Date":"3/11/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":394,"Cost":301,"Date":"3/17/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":162,"Cost":134,"Date":"3/17/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":903,"Cost":642,"Date":"3/23/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":746,"Cost":395,"Date":"4/1/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":925,"Cost":863,"Date":"5/7/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":129,"Cost":106,"Date":"5/10/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":113,"Cost":58,"Date":"5/20/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":99,"Cost":68,"Date":"6/2/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":315,"Cost":228,"Date":"6/11/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":736,"Cost":407,"Date":"6/16/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":762,"Cost":603,"Date":"6/16/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":6,"Cost":3,"Date":"7/10/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":121,"Cost":69,"Date":"7/11/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":709,"Cost":581,"Date":"8/28/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":517,"Cost":377,"Date":"8/29/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":177,"Cost":129,"Date":"8/31/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":54,"Cost":30,"Date":"9/8/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":685,"Cost":555,"Date":"9/13/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":403,"Cost":225,"Date":"9/14/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":87,"Cost":49,"Date":"9/19/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":18,"Cost":18,"Date":"9/25/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":214,"Cost":199,"Date":"10/4/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":986,"Cost":756,"Date":"10/10/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":286,"Cost":196,"Date":"10/17/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":965,"Cost":597,"Date":"10/28/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":962,"Cost":521,"Date":"10/30/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":156,"Cost":143,"Date":"11/1/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":551,"Cost":521,"Date":"11/15/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":712,"Cost":396,"Date":"11/25/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":78,"Cost":73,"Date":"1/10/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":767,"Cost":642,"Date":"1/14/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":295,"Cost":184,"Date":"1/20/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":632,"Cost":344,"Date":"2/8/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":739,"Cost":642,"Date":"2/25/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":488,"Cost":366,"Date":"3/7/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":433,"Cost":337,"Date":"3/14/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":295,"Cost":267,"Date":"3/27/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":442,"Cost":293,"Date":"4/5/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":410,"Cost":243,"Date":"4/14/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":623,"Cost":563,"Date":"5/3/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":522,"Cost":355,"Date":"5/9/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":347,"Cost":224,"Date":"5/15/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":415,"Cost":289,"Date":"5/25/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":801,"Cost":677,"Date":"5/26/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":571,"Cost":431,"Date":"5/31/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":868,"Cost":564,"Date":"7/27/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":193,"Cost":130,"Date":"9/17/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":292,"Cost":247,"Date":"10/6/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":226,"Cost":153,"Date":"10/8/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":439,"Cost":250,"Date":"10/26/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":512,"Cost":403,"Date":"11/16/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":269,"Cost":217,"Date":"11/18/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"Jeans","Country":"Belgium","Sale":890,"Cost":535,"Date":"12/1/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":415,"Cost":310,"Date":"2/9/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":941,"Cost":584,"Date":"2/11/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":219,"Cost":189,"Date":"3/10/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":146,"Cost":111,"Date":"3/16/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":52,"Cost":48,"Date":"3/18/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":186,"Cost":164,"Date":"3/20/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":651,"Cost":327,"Date":"3/26/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":698,"Cost":510,"Date":"6/2/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":968,"Cost":505,"Date":"6/10/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":89,"Cost":82,"Date":"6/16/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":890,"Cost":767,"Date":"6/25/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":227,"Cost":184,"Date":"7/19/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":889,"Cost":663,"Date":"7/21/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":286,"Cost":180,"Date":"7/25/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":280,"Cost":174,"Date":"8/4/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":662,"Cost":483,"Date":"9/2/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":426,"Cost":346,"Date":"9/4/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":845,"Cost":430,"Date":"9/19/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":859,"Cost":676,"Date":"9/29/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":273,"Cost":231,"Date":"10/2/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":198,"Cost":152,"Date":"10/15/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":463,"Cost":244,"Date":"10/30/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":925,"Cost":467,"Date":"11/9/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":516,"Cost":342,"Date":"11/23/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":765,"Cost":634,"Date":"11/30/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":963,"Cost":825,"Date":"12/8/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":679,"Cost":546,"Date":"12/11/2018"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":981,"Cost":820,"Date":"1/15/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":349,"Cost":250,"Date":"1/24/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":623,"Cost":404,"Date":"2/3/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":380,"Cost":203,"Date":"2/4/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":849,"Cost":440,"Date":"3/9/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":139,"Cost":79,"Date":"3/12/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":317,"Cost":213,"Date":"4/19/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":409,"Cost":294,"Date":"5/3/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":250,"Cost":160,"Date":"5/4/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":247,"Cost":136,"Date":"6/8/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":983,"Cost":696,"Date":"6/26/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":341,"Cost":199,"Date":"7/4/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":554,"Cost":301,"Date":"7/13/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":104,"Cost":55,"Date":"8/8/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":601,"Cost":328,"Date":"8/26/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":161,"Cost":123,"Date":"9/2/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":150,"Cost":97,"Date":"9/29/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":475,"Cost":251,"Date":"10/12/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":140,"Cost":82,"Date":"11/2/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":415,"Cost":317,"Date":"11/4/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":150,"Cost":113,"Date":"11/7/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":479,"Cost":288,"Date":"12/1/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":188,"Cost":177,"Date":"12/4/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":194,"Cost":127,"Date":"12/7/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":250,"Cost":146,"Date":"12/18/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":225,"Cost":190,"Date":"12/20/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":79,"Cost":58,"Date":"12/20/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":125,"Cost":99,"Date":"12/21/2019"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":905,"Cost":652,"Date":"1/9/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":527,"Cost":279,"Date":"2/5/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":119,"Cost":67,"Date":"2/16/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":958,"Cost":631,"Date":"2/16/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":251,"Cost":194,"Date":"2/18/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":886,"Cost":641,"Date":"2/22/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":704,"Cost":389,"Date":"2/25/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":223,"Cost":174,"Date":"3/8/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":727,"Cost":430,"Date":"4/2/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":100,"Cost":75,"Date":"4/3/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":763,"Cost":521,"Date":"4/9/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":670,"Cost":380,"Date":"4/10/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":262,"Cost":150,"Date":"4/19/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":817,"Cost":492,"Date":"5/17/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":980,"Cost":882,"Date":"5/22/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":103,"Cost":95,"Date":"6/20/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":395,"Cost":310,"Date":"7/1/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":342,"Cost":242,"Date":"7/4/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":73,"Cost":62,"Date":"7/8/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":628,"Cost":315,"Date":"7/9/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":561,"Cost":322,"Date":"7/14/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":693,"Cost":387,"Date":"7/19/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":832,"Cost":419,"Date":"8/1/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":710,"Cost":627,"Date":"8/6/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":218,"Cost":147,"Date":"8/7/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":391,"Cost":326,"Date":"8/22/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":448,"Cost":314,"Date":"8/31/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":750,"Cost":712,"Date":"9/1/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":904,"Cost":514,"Date":"9/1/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":340,"Cost":318,"Date":"9/17/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":247,"Cost":191,"Date":"9/29/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":429,"Cost":294,"Date":"11/7/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":142,"Cost":117,"Date":"11/26/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":168,"Cost":111,"Date":"11/27/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":173,"Cost":136,"Date":"12/5/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":241,"Cost":186,"Date":"12/26/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":828,"Cost":655,"Date":"12/31/2020"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":504,"Cost":425,"Date":"1/20/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":945,"Cost":493,"Date":"2/2/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":743,"Cost":617,"Date":"2/8/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":236,"Cost":221,"Date":"2/27/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":506,"Cost":363,"Date":"3/1/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":370,"Cost":335,"Date":"3/1/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":288,"Cost":231,"Date":"3/19/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":622,"Cost":420,"Date":"3/28/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":818,"Cost":731,"Date":"5/21/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":849,"Cost":634,"Date":"7/21/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":947,"Cost":734,"Date":"8/5/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":904,"Cost":634,"Date":"8/12/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":47,"Cost":34,"Date":"8/21/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":725,"Cost":636,"Date":"8/23/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":622,"Cost":399,"Date":"9/3/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":830,"Cost":559,"Date":"9/5/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":837,"Cost":750,"Date":"10/6/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":139,"Cost":77,"Date":"10/19/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":173,"Cost":134,"Date":"11/15/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":821,"Cost":654,"Date":"12/8/2021"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":434,"Cost":315,"Date":"1/8/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":729,"Cost":481,"Date":"1/14/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":757,"Cost":522,"Date":"1/19/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":900,"Cost":550,"Date":"1/28/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":503,"Cost":470,"Date":"1/31/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":574,"Cost":462,"Date":"3/27/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":949,"Cost":786,"Date":"4/20/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":605,"Cost":320,"Date":"4/24/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":227,"Cost":200,"Date":"4/28/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":846,"Cost":553,"Date":"5/15/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":979,"Cost":870,"Date":"5/16/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":581,"Cost":453,"Date":"5/18/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":508,"Cost":459,"Date":"6/2/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":912,"Cost":681,"Date":"6/3/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":456,"Cost":413,"Date":"6/5/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":354,"Cost":256,"Date":"6/7/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":418,"Cost":240,"Date":"6/14/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":905,"Cost":784,"Date":"6/20/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":734,"Cost":545,"Date":"6/24/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":450,"Cost":275,"Date":"7/4/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":755,"Cost":477,"Date":"7/9/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":224,"Cost":138,"Date":"7/12/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":840,"Cost":490,"Date":"8/14/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":522,"Cost":342,"Date":"8/16/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":685,"Cost":558,"Date":"8/23/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":770,"Cost":458,"Date":"9/2/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":201,"Cost":118,"Date":"9/3/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":494,"Cost":423,"Date":"9/16/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":813,"Cost":468,"Date":"10/4/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":793,"Cost":734,"Date":"11/1/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":762,"Cost":491,"Date":"11/2/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":200,"Cost":139,"Date":"12/17/2022"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":402,"Cost":318,"Date":"2/10/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":236,"Cost":145,"Date":"2/28/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":964,"Cost":654,"Date":"3/4/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":945,"Cost":577,"Date":"3/9/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":270,"Cost":237,"Date":"3/9/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":816,"Cost":688,"Date":"3/11/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":685,"Cost":604,"Date":"3/17/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":372,"Cost":314,"Date":"3/17/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":630,"Cost":342,"Date":"3/23/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":889,"Cost":452,"Date":"4/1/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":619,"Cost":470,"Date":"5/7/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":200,"Cost":164,"Date":"5/10/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":633,"Cost":541,"Date":"5/20/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":273,"Cost":179,"Date":"6/2/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":424,"Cost":379,"Date":"6/11/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":18,"Cost":14,"Date":"6/16/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":151,"Cost":81,"Date":"6/16/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":675,"Cost":555,"Date":"7/10/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":822,"Cost":443,"Date":"7/11/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":929,"Cost":680,"Date":"8/28/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":337,"Cost":197,"Date":"8/29/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":501,"Cost":374,"Date":"8/31/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":931,"Cost":858,"Date":"9/8/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":190,"Cost":180,"Date":"9/13/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":281,"Cost":213,"Date":"9/14/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":343,"Cost":306,"Date":"9/19/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":125,"Cost":68,"Date":"9/25/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":160,"Cost":102,"Date":"10/4/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":590,"Cost":388,"Date":"10/10/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":770,"Cost":641,"Date":"10/17/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":847,"Cost":658,"Date":"10/28/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":335,"Cost":291,"Date":"10/30/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":118,"Cost":112,"Date":"11/1/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":291,"Cost":230,"Date":"11/15/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":293,"Cost":260,"Date":"11/25/2023"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":939,"Cost":856,"Date":"1/10/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":408,"Cost":328,"Date":"1/14/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":708,"Cost":602,"Date":"1/20/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":448,"Cost":364,"Date":"2/8/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":986,"Cost":771,"Date":"2/25/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":878,"Cost":765,"Date":"3/7/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":413,"Cost":366,"Date":"3/14/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":895,"Cost":617,"Date":"3/27/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":333,"Cost":259,"Date":"4/5/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":552,"Cost":506,"Date":"4/14/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":681,"Cost":541,"Date":"5/3/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":243,"Cost":129,"Date":"5/9/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":35,"Cost":26,"Date":"5/15/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":325,"Cost":226,"Date":"5/25/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":389,"Cost":307,"Date":"5/26/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":126,"Cost":118,"Date":"5/31/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":996,"Cost":941,"Date":"7/27/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":44,"Cost":33,"Date":"9/17/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":951,"Cost":522,"Date":"10/6/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":659,"Cost":580,"Date":"10/8/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":67,"Cost":47,"Date":"10/26/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":679,"Cost":600,"Date":"11/16/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":14,"Cost":11,"Date":"11/18/2024"},{"Store":"Wijnegem Shopping Center, Antwerp","Brand":"HM Home","Country":"Belgium","Sale":67,"Cost":42,"Date":"12/1/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":17,"Cost":11,"Date":"2/9/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":654,"Cost":575,"Date":"2/11/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":161,"Cost":102,"Date":"3/10/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":161,"Cost":131,"Date":"3/16/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":775,"Cost":537,"Date":"3/18/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":856,"Cost":492,"Date":"3/20/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":30,"Cost":28,"Date":"3/26/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":541,"Cost":489,"Date":"6/2/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":799,"Cost":562,"Date":"6/10/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":27,"Cost":21,"Date":"6/16/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":700,"Cost":448,"Date":"6/25/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":716,"Cost":433,"Date":"7/19/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":730,"Cost":612,"Date":"7/21/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":9,"Cost":5,"Date":"7/25/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":849,"Cost":728,"Date":"8/4/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":259,"Cost":238,"Date":"9/2/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":339,"Cost":291,"Date":"9/4/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":171,"Cost":140,"Date":"9/19/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":512,"Cost":354,"Date":"9/29/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":50,"Cost":42,"Date":"10/2/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":713,"Cost":575,"Date":"10/15/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":742,"Cost":429,"Date":"10/30/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":496,"Cost":424,"Date":"11/9/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":305,"Cost":242,"Date":"11/23/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":840,"Cost":518,"Date":"11/30/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":948,"Cost":517,"Date":"12/8/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":14,"Cost":12,"Date":"12/11/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":918,"Cost":851,"Date":"1/15/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":954,"Cost":829,"Date":"1/24/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":259,"Cost":231,"Date":"2/3/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":182,"Cost":106,"Date":"2/4/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":135,"Cost":122,"Date":"3/9/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":408,"Cost":234,"Date":"3/12/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":254,"Cost":222,"Date":"4/19/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":163,"Cost":131,"Date":"5/3/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":840,"Cost":504,"Date":"5/4/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":634,"Cost":558,"Date":"6/8/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":729,"Cost":588,"Date":"6/26/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":615,"Cost":467,"Date":"7/4/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":20,"Cost":12,"Date":"7/13/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":213,"Cost":111,"Date":"8/8/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":789,"Cost":468,"Date":"8/26/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":397,"Cost":234,"Date":"9/2/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":978,"Cost":749,"Date":"9/29/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":70,"Cost":38,"Date":"10/12/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":104,"Cost":63,"Date":"11/2/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":690,"Cost":540,"Date":"11/4/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":705,"Cost":533,"Date":"11/7/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":711,"Cost":526,"Date":"12/1/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":530,"Cost":429,"Date":"12/4/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":859,"Cost":606,"Date":"12/7/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":562,"Cost":395,"Date":"12/18/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":723,"Cost":544,"Date":"12/20/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":325,"Cost":224,"Date":"12/20/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":336,"Cost":219,"Date":"12/21/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":2,"Cost":1,"Date":"1/9/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":105,"Cost":53,"Date":"2/5/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":724,"Cost":499,"Date":"2/16/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":200,"Cost":144,"Date":"2/16/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":770,"Cost":694,"Date":"2/18/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":261,"Cost":187,"Date":"2/22/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":694,"Cost":459,"Date":"2/25/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":69,"Cost":47,"Date":"3/8/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":46,"Cost":35,"Date":"4/2/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":902,"Cost":524,"Date":"4/3/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":511,"Cost":392,"Date":"4/9/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":864,"Cost":512,"Date":"4/10/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":581,"Cost":318,"Date":"4/19/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":616,"Cost":502,"Date":"5/17/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":173,"Cost":131,"Date":"5/22/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":5,"Cost":4,"Date":"6/20/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":462,"Cost":243,"Date":"7/1/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":164,"Cost":98,"Date":"7/4/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":634,"Cost":554,"Date":"7/8/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":173,"Cost":105,"Date":"7/9/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":582,"Cost":519,"Date":"7/14/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":800,"Cost":632,"Date":"7/19/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":192,"Cost":159,"Date":"8/1/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":656,"Cost":572,"Date":"8/6/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":94,"Cost":53,"Date":"8/7/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":174,"Cost":141,"Date":"8/22/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":492,"Cost":386,"Date":"8/31/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":417,"Cost":381,"Date":"9/1/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":28,"Cost":21,"Date":"9/1/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":674,"Cost":355,"Date":"9/17/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":521,"Cost":421,"Date":"9/29/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":857,"Cost":529,"Date":"11/7/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":540,"Cost":326,"Date":"11/26/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":190,"Cost":164,"Date":"11/27/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":567,"Cost":342,"Date":"12/5/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":986,"Cost":639,"Date":"12/26/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":8,"Cost":4,"Date":"12/31/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":534,"Cost":295,"Date":"1/20/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":687,"Cost":488,"Date":"2/2/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":574,"Cost":436,"Date":"2/8/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":687,"Cost":364,"Date":"2/27/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":49,"Cost":46,"Date":"3/1/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":42,"Cost":29,"Date":"3/1/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":338,"Cost":259,"Date":"3/19/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":972,"Cost":639,"Date":"3/28/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":11,"Cost":6,"Date":"5/21/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":475,"Cost":281,"Date":"7/21/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":901,"Cost":839,"Date":"8/5/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":617,"Cost":516,"Date":"8/12/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":93,"Cost":46,"Date":"8/21/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":352,"Cost":272,"Date":"8/23/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":413,"Cost":345,"Date":"9/3/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":898,"Cost":590,"Date":"9/5/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":287,"Cost":177,"Date":"10/6/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":92,"Cost":59,"Date":"10/19/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":290,"Cost":171,"Date":"11/15/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":191,"Cost":161,"Date":"12/8/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":5,"Cost":4,"Date":"1/8/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":665,"Cost":399,"Date":"1/14/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":224,"Cost":135,"Date":"1/19/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":344,"Cost":202,"Date":"1/28/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":188,"Cost":143,"Date":"1/31/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":407,"Cost":367,"Date":"3/27/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":509,"Cost":481,"Date":"4/20/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":822,"Cost":699,"Date":"4/24/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":45,"Cost":39,"Date":"4/28/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":700,"Cost":460,"Date":"5/15/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":44,"Cost":24,"Date":"5/16/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":695,"Cost":419,"Date":"5/18/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":855,"Cost":568,"Date":"6/2/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":503,"Cost":427,"Date":"6/3/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":376,"Cost":217,"Date":"6/5/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":249,"Cost":237,"Date":"6/7/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":121,"Cost":91,"Date":"6/14/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":595,"Cost":431,"Date":"6/20/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":426,"Cost":224,"Date":"6/24/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":323,"Cost":252,"Date":"7/4/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":646,"Cost":538,"Date":"7/9/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":782,"Cost":542,"Date":"7/12/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":365,"Cost":238,"Date":"8/14/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":363,"Cost":297,"Date":"8/16/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":734,"Cost":594,"Date":"8/23/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":572,"Cost":423,"Date":"9/2/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":979,"Cost":804,"Date":"9/3/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":38,"Cost":24,"Date":"9/16/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":56,"Cost":49,"Date":"10/4/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":171,"Cost":138,"Date":"11/1/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":432,"Cost":334,"Date":"11/2/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":244,"Cost":231,"Date":"12/17/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":137,"Cost":121,"Date":"2/10/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":40,"Cost":25,"Date":"2/28/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":571,"Cost":456,"Date":"3/4/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":185,"Cost":169,"Date":"3/9/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":134,"Cost":110,"Date":"3/9/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":802,"Cost":695,"Date":"3/11/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":183,"Cost":129,"Date":"3/17/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":539,"Cost":296,"Date":"3/17/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":781,"Cost":649,"Date":"3/23/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":350,"Cost":228,"Date":"4/1/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":786,"Cost":553,"Date":"5/7/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":606,"Cost":566,"Date":"5/10/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":358,"Cost":326,"Date":"5/20/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":685,"Cost":580,"Date":"6/2/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":752,"Cost":624,"Date":"6/11/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":365,"Cost":344,"Date":"6/16/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":573,"Cost":302,"Date":"6/16/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":508,"Cost":321,"Date":"7/10/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":118,"Cost":102,"Date":"7/11/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":818,"Cost":421,"Date":"8/28/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":257,"Cost":196,"Date":"8/29/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":682,"Cost":555,"Date":"8/31/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":382,"Cost":223,"Date":"9/8/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":401,"Cost":219,"Date":"9/13/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":7,"Cost":5,"Date":"9/14/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":243,"Cost":224,"Date":"9/19/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":697,"Cost":543,"Date":"9/25/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":80,"Cost":55,"Date":"10/4/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":411,"Cost":212,"Date":"10/10/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":289,"Cost":167,"Date":"10/17/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":702,"Cost":524,"Date":"10/28/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":448,"Cost":303,"Date":"10/30/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":528,"Cost":335,"Date":"11/1/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":985,"Cost":904,"Date":"11/15/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":355,"Cost":319,"Date":"11/25/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":825,"Cost":483,"Date":"1/10/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":921,"Cost":654,"Date":"1/14/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":366,"Cost":346,"Date":"1/20/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":925,"Cost":721,"Date":"2/8/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":469,"Cost":358,"Date":"2/25/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":985,"Cost":540,"Date":"3/7/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":945,"Cost":658,"Date":"3/14/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":299,"Cost":166,"Date":"3/27/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":484,"Cost":338,"Date":"4/5/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":776,"Cost":398,"Date":"4/14/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":194,"Cost":147,"Date":"5/3/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":886,"Cost":637,"Date":"5/9/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":407,"Cost":309,"Date":"5/15/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":90,"Cost":53,"Date":"5/25/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":52,"Cost":50,"Date":"5/26/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":26,"Cost":21,"Date":"5/31/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":655,"Cost":478,"Date":"7/27/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":821,"Cost":510,"Date":"9/17/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":573,"Cost":468,"Date":"10/6/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":829,"Cost":526,"Date":"10/8/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":971,"Cost":813,"Date":"10/26/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":631,"Cost":531,"Date":"11/16/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":916,"Cost":866,"Date":"11/18/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Sellpy","Country":"Belgium","Sale":208,"Cost":115,"Date":"12/1/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":442,"Cost":258,"Date":"2/9/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":389,"Cost":246,"Date":"2/11/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":339,"Cost":308,"Date":"3/10/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":929,"Cost":762,"Date":"3/16/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":295,"Cost":178,"Date":"3/18/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":765,"Cost":551,"Date":"3/20/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":993,"Cost":769,"Date":"3/26/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":165,"Cost":144,"Date":"6/2/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":828,"Cost":566,"Date":"6/10/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":633,"Cost":391,"Date":"6/16/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":227,"Cost":142,"Date":"6/25/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":620,"Cost":321,"Date":"7/19/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":278,"Cost":240,"Date":"7/21/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":193,"Cost":152,"Date":"7/25/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":261,"Cost":224,"Date":"8/4/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":853,"Cost":753,"Date":"9/2/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":122,"Cost":97,"Date":"9/4/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":961,"Cost":522,"Date":"9/19/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":317,"Cost":232,"Date":"9/29/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":462,"Cost":265,"Date":"10/2/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":893,"Cost":727,"Date":"10/15/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":391,"Cost":225,"Date":"10/30/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":279,"Cost":151,"Date":"11/9/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":711,"Cost":611,"Date":"11/23/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":613,"Cost":458,"Date":"11/30/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":70,"Cost":45,"Date":"12/8/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":798,"Cost":454,"Date":"12/11/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":522,"Cost":307,"Date":"1/15/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":336,"Cost":179,"Date":"1/24/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":501,"Cost":458,"Date":"2/3/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":894,"Cost":493,"Date":"2/4/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":549,"Cost":503,"Date":"3/9/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":149,"Cost":120,"Date":"3/12/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":748,"Cost":683,"Date":"4/19/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":211,"Cost":137,"Date":"5/3/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":592,"Cost":536,"Date":"5/4/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":304,"Cost":264,"Date":"6/8/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":706,"Cost":490,"Date":"6/26/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":265,"Cost":190,"Date":"7/4/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":849,"Cost":585,"Date":"7/13/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":937,"Cost":614,"Date":"8/8/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":765,"Cost":487,"Date":"8/26/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":227,"Cost":177,"Date":"9/2/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":762,"Cost":630,"Date":"9/29/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":159,"Cost":103,"Date":"10/12/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":806,"Cost":617,"Date":"11/2/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":627,"Cost":501,"Date":"11/4/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":936,"Cost":836,"Date":"11/7/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":519,"Cost":413,"Date":"12/1/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":397,"Cost":214,"Date":"12/4/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":13,"Cost":8,"Date":"12/7/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":365,"Cost":205,"Date":"12/18/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":329,"Cost":233,"Date":"12/20/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":256,"Cost":215,"Date":"12/20/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":870,"Cost":658,"Date":"12/21/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":336,"Cost":205,"Date":"1/9/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":303,"Cost":221,"Date":"2/5/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":247,"Cost":166,"Date":"2/16/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":975,"Cost":808,"Date":"2/16/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":294,"Cost":196,"Date":"2/18/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":322,"Cost":288,"Date":"2/22/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":967,"Cost":723,"Date":"2/25/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":621,"Cost":541,"Date":"3/8/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":407,"Cost":249,"Date":"4/2/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":256,"Cost":200,"Date":"4/3/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":46,"Cost":43,"Date":"4/9/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":957,"Cost":655,"Date":"4/10/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":912,"Cost":849,"Date":"4/19/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":516,"Cost":397,"Date":"5/17/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":356,"Cost":239,"Date":"5/22/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":633,"Cost":405,"Date":"6/20/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":11,"Cost":6,"Date":"7/1/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":364,"Cost":290,"Date":"7/4/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":128,"Cost":64,"Date":"7/8/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":756,"Cost":676,"Date":"7/9/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":762,"Cost":394,"Date":"7/14/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":954,"Cost":727,"Date":"7/19/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":886,"Cost":638,"Date":"8/1/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":993,"Cost":564,"Date":"8/6/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":994,"Cost":750,"Date":"8/7/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":405,"Cost":347,"Date":"8/22/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":936,"Cost":578,"Date":"8/31/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":558,"Cost":430,"Date":"9/1/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":363,"Cost":321,"Date":"9/1/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":187,"Cost":165,"Date":"9/17/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":608,"Cost":551,"Date":"9/29/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":291,"Cost":207,"Date":"11/7/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":306,"Cost":217,"Date":"11/26/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":202,"Cost":132,"Date":"11/27/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":701,"Cost":428,"Date":"12/5/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":996,"Cost":560,"Date":"12/26/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":774,"Cost":423,"Date":"12/31/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":479,"Cost":424,"Date":"1/20/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":541,"Cost":283,"Date":"2/2/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":324,"Cost":266,"Date":"2/8/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":16,"Cost":15,"Date":"2/27/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":525,"Cost":295,"Date":"3/1/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":556,"Cost":317,"Date":"3/1/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":24,"Cost":20,"Date":"3/19/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":767,"Cost":600,"Date":"3/28/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":514,"Cost":347,"Date":"5/21/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":130,"Cost":116,"Date":"7/21/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":873,"Cost":701,"Date":"8/5/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":615,"Cost":458,"Date":"8/12/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":575,"Cost":509,"Date":"8/21/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":885,"Cost":679,"Date":"8/23/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":313,"Cost":283,"Date":"9/3/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":175,"Cost":164,"Date":"9/5/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":870,"Cost":466,"Date":"10/6/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":820,"Cost":563,"Date":"10/19/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":312,"Cost":224,"Date":"11/15/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":693,"Cost":571,"Date":"12/8/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":86,"Cost":70,"Date":"1/8/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":104,"Cost":96,"Date":"1/14/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":591,"Cost":336,"Date":"1/19/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":178,"Cost":160,"Date":"1/28/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":282,"Cost":219,"Date":"1/31/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":278,"Cost":250,"Date":"3/27/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":225,"Cost":153,"Date":"4/20/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":447,"Cost":278,"Date":"4/24/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":456,"Cost":275,"Date":"4/28/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":561,"Cost":449,"Date":"5/15/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":493,"Cost":294,"Date":"5/16/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":822,"Cost":668,"Date":"5/18/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":560,"Cost":451,"Date":"6/2/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":409,"Cost":243,"Date":"6/3/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":669,"Cost":448,"Date":"6/5/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":112,"Cost":67,"Date":"6/7/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":70,"Cost":45,"Date":"6/14/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":960,"Cost":903,"Date":"6/20/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":33,"Cost":30,"Date":"6/24/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":526,"Cost":407,"Date":"7/4/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":490,"Cost":332,"Date":"7/9/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":627,"Cost":326,"Date":"7/12/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":86,"Cost":80,"Date":"8/14/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":821,"Cost":661,"Date":"8/16/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":520,"Cost":332,"Date":"8/23/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":356,"Cost":323,"Date":"9/2/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":853,"Cost":500,"Date":"9/3/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":831,"Cost":683,"Date":"9/16/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":110,"Cost":104,"Date":"10/4/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":925,"Cost":664,"Date":"11/1/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":719,"Cost":454,"Date":"11/2/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":968,"Cost":642,"Date":"12/17/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":503,"Cost":303,"Date":"2/10/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":261,"Cost":219,"Date":"2/28/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":442,"Cost":290,"Date":"3/4/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":944,"Cost":815,"Date":"3/9/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":197,"Cost":136,"Date":"3/9/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":576,"Cost":328,"Date":"3/11/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":512,"Cost":484,"Date":"3/17/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":664,"Cost":353,"Date":"3/17/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":858,"Cost":602,"Date":"3/23/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":925,"Cost":754,"Date":"4/1/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":997,"Cost":764,"Date":"5/7/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":257,"Cost":243,"Date":"5/10/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":887,"Cost":767,"Date":"5/20/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":417,"Cost":350,"Date":"6/2/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":280,"Cost":220,"Date":"6/11/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":820,"Cost":495,"Date":"6/16/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":608,"Cost":508,"Date":"6/16/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":798,"Cost":685,"Date":"7/10/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":257,"Cost":172,"Date":"7/11/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":218,"Cost":191,"Date":"8/28/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":392,"Cost":259,"Date":"8/29/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":764,"Cost":428,"Date":"8/31/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":125,"Cost":99,"Date":"9/8/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":900,"Cost":767,"Date":"9/13/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":894,"Cost":798,"Date":"9/14/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":492,"Cost":267,"Date":"9/19/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":404,"Cost":379,"Date":"9/25/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":743,"Cost":407,"Date":"10/4/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":310,"Cost":294,"Date":"10/10/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":783,"Cost":403,"Date":"10/17/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":468,"Cost":318,"Date":"10/28/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":281,"Cost":199,"Date":"10/30/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":876,"Cost":454,"Date":"11/1/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":816,"Cost":682,"Date":"11/15/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":564,"Cost":497,"Date":"11/25/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":612,"Cost":578,"Date":"1/10/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":299,"Cost":194,"Date":"1/14/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":103,"Cost":63,"Date":"1/20/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":948,"Cost":661,"Date":"2/8/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":502,"Cost":375,"Date":"2/25/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":99,"Cost":84,"Date":"3/7/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":871,"Cost":805,"Date":"3/14/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":946,"Cost":891,"Date":"3/27/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":393,"Cost":231,"Date":"4/5/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":64,"Cost":53,"Date":"4/14/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":256,"Cost":177,"Date":"5/3/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":706,"Cost":382,"Date":"5/9/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":51,"Cost":46,"Date":"5/15/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":833,"Cost":428,"Date":"5/25/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":904,"Cost":720,"Date":"5/26/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":385,"Cost":299,"Date":"5/31/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":891,"Cost":803,"Date":"7/27/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":422,"Cost":352,"Date":"9/17/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":881,"Cost":482,"Date":"10/6/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":299,"Cost":173,"Date":"10/8/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":319,"Cost":202,"Date":"10/26/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":961,"Cost":502,"Date":"11/16/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":825,"Cost":651,"Date":"11/18/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"HM","Country":"Belgium","Sale":477,"Cost":282,"Date":"12/1/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":427,"Cost":373,"Date":"2/9/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":519,"Cost":355,"Date":"2/11/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":223,"Cost":165,"Date":"3/10/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":152,"Cost":91,"Date":"3/16/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":307,"Cost":281,"Date":"3/18/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":74,"Cost":41,"Date":"3/20/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":909,"Cost":583,"Date":"3/26/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":340,"Cost":193,"Date":"6/2/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":761,"Cost":526,"Date":"6/10/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":817,"Cost":681,"Date":"6/16/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":526,"Cost":300,"Date":"6/25/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":180,"Cost":105,"Date":"7/19/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":462,"Cost":383,"Date":"7/21/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":673,"Cost":398,"Date":"7/25/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":484,"Cost":394,"Date":"8/4/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":788,"Cost":573,"Date":"9/2/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":949,"Cost":560,"Date":"9/4/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":303,"Cost":179,"Date":"9/19/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":713,"Cost":524,"Date":"9/29/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":362,"Cost":237,"Date":"10/2/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":912,"Cost":797,"Date":"10/15/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":901,"Cost":741,"Date":"10/30/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":402,"Cost":310,"Date":"11/9/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":867,"Cost":503,"Date":"11/23/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":618,"Cost":423,"Date":"11/30/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":789,"Cost":516,"Date":"12/8/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":945,"Cost":687,"Date":"12/11/2018"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":550,"Cost":510,"Date":"1/15/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":876,"Cost":702,"Date":"1/24/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":962,"Cost":779,"Date":"2/3/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":534,"Cost":499,"Date":"2/4/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":156,"Cost":131,"Date":"3/9/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":905,"Cost":589,"Date":"3/12/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":770,"Cost":716,"Date":"4/19/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":437,"Cost":324,"Date":"5/3/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":978,"Cost":512,"Date":"5/4/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":483,"Cost":267,"Date":"6/8/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":784,"Cost":489,"Date":"6/26/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":450,"Cost":392,"Date":"7/4/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":502,"Cost":455,"Date":"7/13/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":123,"Cost":99,"Date":"8/8/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":720,"Cost":654,"Date":"8/26/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":196,"Cost":114,"Date":"9/2/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":247,"Cost":215,"Date":"9/29/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":346,"Cost":217,"Date":"10/12/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":839,"Cost":511,"Date":"11/2/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":226,"Cost":126,"Date":"11/4/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":802,"Cost":453,"Date":"11/7/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":11,"Cost":11,"Date":"12/1/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":595,"Cost":407,"Date":"12/4/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":442,"Cost":406,"Date":"12/7/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":511,"Cost":423,"Date":"12/18/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":629,"Cost":476,"Date":"12/20/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":796,"Cost":683,"Date":"12/20/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":240,"Cost":138,"Date":"12/21/2019"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":874,"Cost":788,"Date":"1/9/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":413,"Cost":343,"Date":"2/5/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":988,"Cost":596,"Date":"2/16/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":259,"Cost":187,"Date":"2/16/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":538,"Cost":489,"Date":"2/18/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":705,"Cost":624,"Date":"2/22/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":340,"Cost":242,"Date":"2/25/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":401,"Cost":259,"Date":"3/8/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":672,"Cost":599,"Date":"4/2/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":340,"Cost":201,"Date":"4/3/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":703,"Cost":648,"Date":"4/9/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":332,"Cost":231,"Date":"4/10/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":139,"Cost":97,"Date":"4/19/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":34,"Cost":17,"Date":"5/17/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":701,"Cost":422,"Date":"5/22/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":411,"Cost":306,"Date":"6/20/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":173,"Cost":90,"Date":"7/1/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":935,"Cost":620,"Date":"7/4/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":32,"Cost":16,"Date":"7/8/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":5,"Cost":4,"Date":"7/9/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":163,"Cost":146,"Date":"7/14/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":665,"Cost":513,"Date":"7/19/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":758,"Cost":474,"Date":"8/1/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":873,"Cost":711,"Date":"8/6/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":692,"Cost":513,"Date":"8/7/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":615,"Cost":407,"Date":"8/22/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":945,"Cost":665,"Date":"8/31/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":991,"Cost":833,"Date":"9/1/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":772,"Cost":616,"Date":"9/1/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":749,"Cost":679,"Date":"9/17/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":500,"Cost":455,"Date":"9/29/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":224,"Cost":204,"Date":"11/7/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":253,"Cost":145,"Date":"11/26/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":123,"Cost":117,"Date":"11/27/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":874,"Cost":483,"Date":"12/5/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":811,"Cost":681,"Date":"12/26/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":622,"Cost":452,"Date":"12/31/2020"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":591,"Cost":521,"Date":"1/20/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":1000,"Cost":573,"Date":"2/2/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":393,"Cost":363,"Date":"2/8/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":989,"Cost":900,"Date":"2/27/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":247,"Cost":153,"Date":"3/1/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":983,"Cost":652,"Date":"3/1/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":232,"Cost":157,"Date":"3/19/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":916,"Cost":485,"Date":"3/28/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":583,"Cost":466,"Date":"5/21/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":894,"Cost":848,"Date":"7/21/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":782,"Cost":410,"Date":"8/5/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":955,"Cost":676,"Date":"8/12/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":541,"Cost":347,"Date":"8/21/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":772,"Cost":574,"Date":"8/23/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":708,"Cost":537,"Date":"9/3/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":150,"Cost":117,"Date":"9/5/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":417,"Cost":366,"Date":"10/6/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":286,"Cost":255,"Date":"10/19/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":178,"Cost":125,"Date":"11/15/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":42,"Cost":36,"Date":"12/8/2021"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":659,"Cost":373,"Date":"1/8/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":355,"Cost":219,"Date":"1/14/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":200,"Cost":153,"Date":"1/19/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":745,"Cost":686,"Date":"1/28/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":204,"Cost":139,"Date":"1/31/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":723,"Cost":474,"Date":"3/27/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":513,"Cost":324,"Date":"4/20/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":855,"Cost":464,"Date":"4/24/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":935,"Cost":683,"Date":"4/28/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":82,"Cost":67,"Date":"5/15/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":323,"Cost":212,"Date":"5/16/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":341,"Cost":269,"Date":"5/18/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":1,"Cost":0,"Date":"6/2/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":291,"Cost":247,"Date":"6/3/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":227,"Cost":215,"Date":"6/5/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":139,"Cost":124,"Date":"6/7/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":235,"Cost":141,"Date":"6/14/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":142,"Cost":125,"Date":"6/20/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":35,"Cost":32,"Date":"6/24/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":977,"Cost":887,"Date":"7/4/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":937,"Cost":838,"Date":"7/9/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":272,"Cost":175,"Date":"7/12/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":14,"Cost":11,"Date":"8/14/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":418,"Cost":302,"Date":"8/16/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":350,"Cost":226,"Date":"8/23/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":268,"Cost":205,"Date":"9/2/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":183,"Cost":128,"Date":"9/3/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":98,"Cost":81,"Date":"9/16/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":321,"Cost":284,"Date":"10/4/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":891,"Cost":500,"Date":"11/1/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":594,"Cost":444,"Date":"11/2/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":130,"Cost":105,"Date":"12/17/2022"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":219,"Cost":120,"Date":"2/10/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":830,"Cost":533,"Date":"2/28/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":8,"Cost":5,"Date":"3/4/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":71,"Cost":66,"Date":"3/9/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":736,"Cost":642,"Date":"3/9/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":646,"Cost":510,"Date":"3/11/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":570,"Cost":358,"Date":"3/17/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":971,"Cost":819,"Date":"3/17/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":383,"Cost":320,"Date":"3/23/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":914,"Cost":636,"Date":"4/1/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":334,"Cost":281,"Date":"5/7/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":423,"Cost":270,"Date":"5/10/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":777,"Cost":647,"Date":"5/20/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":271,"Cost":193,"Date":"6/2/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":5,"Cost":5,"Date":"6/11/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":22,"Cost":16,"Date":"6/16/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":491,"Cost":444,"Date":"6/16/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":572,"Cost":408,"Date":"7/10/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":536,"Cost":348,"Date":"7/11/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":559,"Cost":490,"Date":"8/28/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":48,"Cost":33,"Date":"8/29/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":253,"Cost":140,"Date":"8/31/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":274,"Cost":223,"Date":"9/8/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":685,"Cost":552,"Date":"9/13/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":691,"Cost":444,"Date":"9/14/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":689,"Cost":606,"Date":"9/19/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":520,"Cost":262,"Date":"9/25/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":385,"Cost":279,"Date":"10/4/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":786,"Cost":451,"Date":"10/10/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":356,"Cost":322,"Date":"10/17/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":830,"Cost":509,"Date":"10/28/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":136,"Cost":117,"Date":"10/30/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":30,"Cost":23,"Date":"11/1/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":592,"Cost":530,"Date":"11/15/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":217,"Cost":132,"Date":"11/25/2023"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":346,"Cost":199,"Date":"1/10/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":487,"Cost":348,"Date":"1/14/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":42,"Cost":30,"Date":"1/20/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":969,"Cost":755,"Date":"2/8/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":272,"Cost":197,"Date":"2/25/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":88,"Cost":62,"Date":"3/7/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":937,"Cost":612,"Date":"3/14/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":598,"Cost":350,"Date":"3/27/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":172,"Cost":87,"Date":"4/5/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":743,"Cost":647,"Date":"4/14/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":901,"Cost":558,"Date":"5/3/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":818,"Cost":601,"Date":"5/9/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":4,"Cost":4,"Date":"5/15/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":384,"Cost":300,"Date":"5/25/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":123,"Cost":111,"Date":"5/26/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":991,"Cost":785,"Date":"5/31/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":67,"Cost":45,"Date":"7/27/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":574,"Cost":539,"Date":"9/17/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":746,"Cost":485,"Date":"10/6/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":577,"Cost":512,"Date":"10/8/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":261,"Cost":152,"Date":"10/26/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":407,"Cost":327,"Date":"11/16/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":376,"Cost":337,"Date":"11/18/2024"},{"Store":"Shopping Center Gent Zuid, Ghent","Brand":"Jeans","Country":"Belgium","Sale":33,"Cost":30,"Date":"12/1/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":504,"Cost":472,"Date":"2/9/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":461,"Cost":275,"Date":"2/11/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":495,"Cost":426,"Date":"3/10/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":172,"Cost":111,"Date":"3/16/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":292,"Cost":201,"Date":"3/18/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":711,"Cost":477,"Date":"3/20/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":340,"Cost":234,"Date":"3/26/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":905,"Cost":472,"Date":"6/2/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":727,"Cost":440,"Date":"6/10/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":876,"Cost":680,"Date":"6/16/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":38,"Cost":20,"Date":"6/25/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":765,"Cost":588,"Date":"7/19/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":560,"Cost":302,"Date":"7/21/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":211,"Cost":108,"Date":"7/25/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":208,"Cost":153,"Date":"8/4/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":686,"Cost":434,"Date":"9/2/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":536,"Cost":448,"Date":"9/4/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":203,"Cost":113,"Date":"9/19/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":19,"Cost":18,"Date":"9/29/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":213,"Cost":116,"Date":"10/2/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":800,"Cost":668,"Date":"10/15/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":600,"Cost":542,"Date":"10/30/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":173,"Cost":103,"Date":"11/9/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":411,"Cost":318,"Date":"11/23/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":815,"Cost":510,"Date":"11/30/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":244,"Cost":131,"Date":"12/8/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":568,"Cost":493,"Date":"12/11/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":891,"Cost":547,"Date":"1/15/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":747,"Cost":464,"Date":"1/24/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":570,"Cost":345,"Date":"2/3/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":356,"Cost":262,"Date":"2/4/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":421,"Cost":338,"Date":"3/9/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":401,"Cost":345,"Date":"3/12/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":749,"Cost":386,"Date":"4/19/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":755,"Cost":522,"Date":"5/3/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":36,"Cost":34,"Date":"5/4/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":196,"Cost":128,"Date":"6/8/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":314,"Cost":170,"Date":"6/26/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":161,"Cost":147,"Date":"7/4/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":474,"Cost":425,"Date":"7/13/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":135,"Cost":126,"Date":"8/8/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":113,"Cost":100,"Date":"8/26/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":857,"Cost":684,"Date":"9/2/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":296,"Cost":251,"Date":"9/29/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":215,"Cost":148,"Date":"10/12/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":21,"Cost":11,"Date":"11/2/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":74,"Cost":49,"Date":"11/4/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":82,"Cost":54,"Date":"11/7/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":647,"Cost":393,"Date":"12/1/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":1000,"Cost":553,"Date":"12/4/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":715,"Cost":378,"Date":"12/7/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":529,"Cost":468,"Date":"12/18/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":67,"Cost":35,"Date":"12/20/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":814,"Cost":555,"Date":"12/20/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":65,"Cost":35,"Date":"12/21/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":104,"Cost":79,"Date":"1/9/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":68,"Cost":49,"Date":"2/5/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":537,"Cost":340,"Date":"2/16/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":226,"Cost":171,"Date":"2/16/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":633,"Cost":591,"Date":"2/18/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":768,"Cost":505,"Date":"2/22/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":7,"Cost":4,"Date":"2/25/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":366,"Cost":298,"Date":"3/8/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":634,"Cost":566,"Date":"4/2/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":686,"Cost":624,"Date":"4/3/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":343,"Cost":192,"Date":"4/9/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":503,"Cost":471,"Date":"4/10/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":522,"Cost":270,"Date":"4/19/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":12,"Cost":10,"Date":"5/17/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":92,"Cost":73,"Date":"5/22/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":704,"Cost":633,"Date":"6/20/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":205,"Cost":194,"Date":"7/1/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":653,"Cost":540,"Date":"7/4/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":719,"Cost":606,"Date":"7/8/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":74,"Cost":63,"Date":"7/9/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":684,"Cost":542,"Date":"7/14/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":229,"Cost":145,"Date":"7/19/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":81,"Cost":45,"Date":"8/1/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":602,"Cost":328,"Date":"8/6/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":731,"Cost":477,"Date":"8/7/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":436,"Cost":327,"Date":"8/22/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":559,"Cost":378,"Date":"8/31/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":118,"Cost":76,"Date":"9/1/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":136,"Cost":78,"Date":"9/1/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":736,"Cost":601,"Date":"9/17/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":533,"Cost":443,"Date":"9/29/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":422,"Cost":289,"Date":"11/7/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":664,"Cost":398,"Date":"11/26/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":581,"Cost":298,"Date":"11/27/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":325,"Cost":215,"Date":"12/5/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":933,"Cost":859,"Date":"12/26/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":8,"Cost":5,"Date":"12/31/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":727,"Cost":461,"Date":"1/20/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":880,"Cost":768,"Date":"2/2/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":139,"Cost":118,"Date":"2/8/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":834,"Cost":741,"Date":"2/27/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":120,"Cost":114,"Date":"3/1/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":698,"Cost":596,"Date":"3/1/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":39,"Cost":23,"Date":"3/19/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":646,"Cost":390,"Date":"3/28/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":752,"Cost":386,"Date":"5/21/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":515,"Cost":461,"Date":"7/21/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":310,"Cost":197,"Date":"8/5/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":437,"Cost":258,"Date":"8/12/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":593,"Cost":467,"Date":"8/21/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":364,"Cost":322,"Date":"8/23/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":544,"Cost":440,"Date":"9/3/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":703,"Cost":564,"Date":"9/5/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":211,"Cost":105,"Date":"10/6/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":986,"Cost":811,"Date":"10/19/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":889,"Cost":705,"Date":"11/15/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":135,"Cost":79,"Date":"12/8/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":879,"Cost":479,"Date":"1/8/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":852,"Cost":576,"Date":"1/14/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":772,"Cost":486,"Date":"1/19/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":122,"Cost":90,"Date":"1/28/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":533,"Cost":436,"Date":"1/31/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":879,"Cost":707,"Date":"3/27/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":296,"Cost":279,"Date":"4/20/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":723,"Cost":469,"Date":"4/24/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":975,"Cost":685,"Date":"4/28/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":241,"Cost":146,"Date":"5/15/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":824,"Cost":484,"Date":"5/16/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":825,"Cost":487,"Date":"5/18/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":880,"Cost":593,"Date":"6/2/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":247,"Cost":179,"Date":"6/3/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":49,"Cost":35,"Date":"6/5/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":545,"Cost":300,"Date":"6/7/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":21,"Cost":18,"Date":"6/14/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":596,"Cost":504,"Date":"6/20/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":518,"Cost":360,"Date":"6/24/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":37,"Cost":35,"Date":"7/4/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":841,"Cost":583,"Date":"7/9/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":72,"Cost":40,"Date":"7/12/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":905,"Cost":464,"Date":"8/14/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":254,"Cost":142,"Date":"8/16/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":709,"Cost":395,"Date":"8/23/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":778,"Cost":638,"Date":"9/2/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":873,"Cost":666,"Date":"9/3/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":572,"Cost":291,"Date":"9/16/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":853,"Cost":446,"Date":"10/4/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":160,"Cost":88,"Date":"11/1/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":611,"Cost":344,"Date":"11/2/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":565,"Cost":359,"Date":"12/17/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":906,"Cost":659,"Date":"2/10/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":464,"Cost":338,"Date":"2/28/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":714,"Cost":471,"Date":"3/4/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":96,"Cost":51,"Date":"3/9/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":235,"Cost":206,"Date":"3/9/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":669,"Cost":427,"Date":"3/11/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":516,"Cost":425,"Date":"3/17/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":239,"Cost":122,"Date":"3/17/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":319,"Cost":297,"Date":"3/23/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":300,"Cost":152,"Date":"4/1/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":964,"Cost":870,"Date":"5/7/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":695,"Cost":480,"Date":"5/10/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":238,"Cost":169,"Date":"5/20/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":807,"Cost":715,"Date":"6/2/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":561,"Cost":461,"Date":"6/11/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":588,"Cost":501,"Date":"6/16/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":982,"Cost":684,"Date":"6/16/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":939,"Cost":698,"Date":"7/10/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":413,"Cost":377,"Date":"7/11/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":30,"Cost":22,"Date":"8/28/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":734,"Cost":681,"Date":"8/29/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":344,"Cost":286,"Date":"8/31/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":484,"Cost":392,"Date":"9/8/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":841,"Cost":739,"Date":"9/13/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":788,"Cost":605,"Date":"9/14/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":749,"Cost":601,"Date":"9/19/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":45,"Cost":38,"Date":"9/25/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":943,"Cost":622,"Date":"10/4/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":670,"Cost":375,"Date":"10/10/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":821,"Cost":738,"Date":"10/17/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":626,"Cost":463,"Date":"10/28/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":585,"Cost":534,"Date":"10/30/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":162,"Cost":129,"Date":"11/1/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":905,"Cost":755,"Date":"11/15/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":296,"Cost":254,"Date":"11/25/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":176,"Cost":146,"Date":"1/10/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":495,"Cost":250,"Date":"1/14/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":28,"Cost":14,"Date":"1/20/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":989,"Cost":586,"Date":"2/8/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":68,"Cost":41,"Date":"2/25/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":145,"Cost":105,"Date":"3/7/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":90,"Cost":80,"Date":"3/14/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":984,"Cost":831,"Date":"3/27/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":27,"Cost":22,"Date":"4/5/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":838,"Cost":762,"Date":"4/14/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":309,"Cost":206,"Date":"5/3/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":665,"Cost":589,"Date":"5/9/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":512,"Cost":287,"Date":"5/15/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":697,"Cost":646,"Date":"5/25/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":820,"Cost":499,"Date":"5/26/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":515,"Cost":359,"Date":"5/31/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":562,"Cost":414,"Date":"7/27/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":505,"Cost":383,"Date":"9/17/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":785,"Cost":620,"Date":"10/6/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":443,"Cost":306,"Date":"10/8/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":709,"Cost":663,"Date":"10/26/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":68,"Cost":34,"Date":"11/16/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":559,"Cost":431,"Date":"11/18/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"ARKET","Country":"Belgium","Sale":932,"Cost":710,"Date":"12/1/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":70,"Cost":66,"Date":"2/9/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":353,"Cost":315,"Date":"2/11/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":679,"Cost":585,"Date":"3/10/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":61,"Cost":39,"Date":"3/16/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":515,"Cost":265,"Date":"3/18/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":137,"Cost":114,"Date":"3/20/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":795,"Cost":484,"Date":"3/26/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":900,"Cost":748,"Date":"6/2/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":706,"Cost":567,"Date":"6/10/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":626,"Cost":504,"Date":"6/16/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":176,"Cost":153,"Date":"6/25/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":252,"Cost":173,"Date":"7/19/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":881,"Cost":555,"Date":"7/21/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":815,"Cost":739,"Date":"7/25/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":162,"Cost":101,"Date":"8/4/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":118,"Cost":74,"Date":"9/2/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":864,"Cost":663,"Date":"9/4/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":450,"Cost":422,"Date":"9/19/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":451,"Cost":339,"Date":"9/29/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":804,"Cost":605,"Date":"10/2/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":534,"Cost":371,"Date":"10/15/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":126,"Cost":85,"Date":"10/30/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":951,"Cost":803,"Date":"11/9/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":992,"Cost":886,"Date":"11/23/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":755,"Cost":630,"Date":"11/30/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":621,"Cost":485,"Date":"12/8/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":414,"Cost":222,"Date":"12/11/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":286,"Cost":155,"Date":"1/15/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":599,"Cost":301,"Date":"1/24/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":219,"Cost":130,"Date":"2/3/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":265,"Cost":182,"Date":"2/4/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":519,"Cost":372,"Date":"3/9/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":180,"Cost":165,"Date":"3/12/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":787,"Cost":573,"Date":"4/19/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":486,"Cost":372,"Date":"5/3/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":373,"Cost":247,"Date":"5/4/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":891,"Cost":575,"Date":"6/8/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":353,"Cost":319,"Date":"6/26/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":180,"Cost":100,"Date":"7/4/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":94,"Cost":56,"Date":"7/13/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":420,"Cost":379,"Date":"8/8/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":165,"Cost":118,"Date":"8/26/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":575,"Cost":444,"Date":"9/2/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":802,"Cost":449,"Date":"9/29/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":224,"Cost":171,"Date":"10/12/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":565,"Cost":362,"Date":"11/2/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":446,"Cost":299,"Date":"11/4/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":133,"Cost":110,"Date":"11/7/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":281,"Cost":166,"Date":"12/1/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":46,"Cost":33,"Date":"12/4/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":925,"Cost":644,"Date":"12/7/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":360,"Cost":246,"Date":"12/18/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":140,"Cost":106,"Date":"12/20/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":91,"Cost":47,"Date":"12/20/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":499,"Cost":454,"Date":"12/21/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":273,"Cost":231,"Date":"1/9/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":286,"Cost":253,"Date":"2/5/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":744,"Cost":547,"Date":"2/16/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":670,"Cost":478,"Date":"2/16/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":395,"Cost":234,"Date":"2/18/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":165,"Cost":145,"Date":"2/22/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":239,"Cost":168,"Date":"2/25/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":757,"Cost":718,"Date":"3/8/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":212,"Cost":121,"Date":"4/2/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":550,"Cost":335,"Date":"4/3/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":981,"Cost":741,"Date":"4/9/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":55,"Cost":42,"Date":"4/10/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":672,"Cost":627,"Date":"4/19/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":922,"Cost":776,"Date":"5/17/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":523,"Cost":353,"Date":"5/22/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":450,"Cost":338,"Date":"6/20/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":368,"Cost":209,"Date":"7/1/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":708,"Cost":493,"Date":"7/4/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":797,"Cost":746,"Date":"7/8/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":705,"Cost":383,"Date":"7/9/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":719,"Cost":523,"Date":"7/14/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":491,"Cost":296,"Date":"7/19/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":616,"Cost":405,"Date":"8/1/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":284,"Cost":161,"Date":"8/6/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":731,"Cost":369,"Date":"8/7/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":809,"Cost":656,"Date":"8/22/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":932,"Cost":584,"Date":"8/31/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":5,"Cost":3,"Date":"9/1/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":833,"Cost":556,"Date":"9/1/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":172,"Cost":149,"Date":"9/17/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":357,"Cost":284,"Date":"9/29/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":566,"Cost":499,"Date":"11/7/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":311,"Cost":211,"Date":"11/26/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":766,"Cost":713,"Date":"11/27/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":538,"Cost":359,"Date":"12/5/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":875,"Cost":769,"Date":"12/26/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":360,"Cost":300,"Date":"12/31/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":900,"Cost":805,"Date":"1/20/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":88,"Cost":75,"Date":"2/2/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":153,"Cost":84,"Date":"2/8/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":66,"Cost":62,"Date":"2/27/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":546,"Cost":423,"Date":"3/1/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":494,"Cost":468,"Date":"3/1/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":589,"Cost":294,"Date":"3/19/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":231,"Cost":150,"Date":"3/28/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":490,"Cost":320,"Date":"5/21/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":906,"Cost":823,"Date":"7/21/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":980,"Cost":926,"Date":"8/5/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":585,"Cost":333,"Date":"8/12/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":659,"Cost":520,"Date":"8/21/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":31,"Cost":26,"Date":"8/23/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":5,"Cost":5,"Date":"9/3/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":173,"Cost":143,"Date":"9/5/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":709,"Cost":522,"Date":"10/6/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":936,"Cost":774,"Date":"10/19/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":718,"Cost":665,"Date":"11/15/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":699,"Cost":426,"Date":"12/8/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":83,"Cost":49,"Date":"1/8/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":774,"Cost":695,"Date":"1/14/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":457,"Cost":385,"Date":"1/19/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":545,"Cost":378,"Date":"1/28/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":134,"Cost":75,"Date":"1/31/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":400,"Cost":201,"Date":"3/27/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":830,"Cost":779,"Date":"4/20/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":675,"Cost":464,"Date":"4/24/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":577,"Cost":407,"Date":"4/28/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":525,"Cost":372,"Date":"5/15/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":204,"Cost":170,"Date":"5/16/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":579,"Cost":478,"Date":"5/18/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":920,"Cost":506,"Date":"6/2/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":452,"Cost":372,"Date":"6/3/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":362,"Cost":284,"Date":"6/5/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":249,"Cost":167,"Date":"6/7/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":122,"Cost":92,"Date":"6/14/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":446,"Cost":358,"Date":"6/20/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":87,"Cost":60,"Date":"6/24/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":519,"Cost":433,"Date":"7/4/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":451,"Cost":276,"Date":"7/9/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":135,"Cost":106,"Date":"7/12/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":815,"Cost":718,"Date":"8/14/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":210,"Cost":118,"Date":"8/16/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":91,"Cost":56,"Date":"8/23/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":11,"Cost":7,"Date":"9/2/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":364,"Cost":206,"Date":"9/3/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":37,"Cost":20,"Date":"9/16/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":635,"Cost":564,"Date":"10/4/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":7,"Cost":6,"Date":"11/1/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":788,"Cost":610,"Date":"11/2/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":538,"Cost":410,"Date":"12/17/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":698,"Cost":594,"Date":"2/10/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":484,"Cost":434,"Date":"2/28/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":256,"Cost":135,"Date":"3/4/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":316,"Cost":254,"Date":"3/9/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":756,"Cost":602,"Date":"3/9/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":374,"Cost":204,"Date":"3/11/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":673,"Cost":429,"Date":"3/17/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":671,"Cost":562,"Date":"3/17/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":599,"Cost":380,"Date":"3/23/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":187,"Cost":129,"Date":"4/1/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":983,"Cost":827,"Date":"5/7/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":175,"Cost":137,"Date":"5/10/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":529,"Cost":273,"Date":"5/20/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":90,"Cost":59,"Date":"6/2/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":55,"Cost":31,"Date":"6/11/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":810,"Cost":600,"Date":"6/16/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":505,"Cost":262,"Date":"6/16/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":626,"Cost":535,"Date":"7/10/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":691,"Cost":634,"Date":"7/11/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":141,"Cost":77,"Date":"8/28/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":161,"Cost":124,"Date":"8/29/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":435,"Cost":320,"Date":"8/31/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":11,"Cost":11,"Date":"9/8/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":471,"Cost":441,"Date":"9/13/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":342,"Cost":249,"Date":"9/14/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":148,"Cost":100,"Date":"9/19/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":104,"Cost":96,"Date":"9/25/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":525,"Cost":279,"Date":"10/4/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":732,"Cost":631,"Date":"10/10/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":168,"Cost":118,"Date":"10/17/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":612,"Cost":439,"Date":"10/28/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":173,"Cost":90,"Date":"10/30/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":42,"Cost":38,"Date":"11/1/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":125,"Cost":99,"Date":"11/15/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":378,"Cost":342,"Date":"11/25/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":41,"Cost":37,"Date":"1/10/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":116,"Cost":76,"Date":"1/14/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":943,"Cost":528,"Date":"1/20/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":770,"Cost":690,"Date":"2/8/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":219,"Cost":116,"Date":"2/25/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":532,"Cost":459,"Date":"3/7/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":893,"Cost":506,"Date":"3/14/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":572,"Cost":503,"Date":"3/27/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":209,"Cost":180,"Date":"4/5/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":679,"Cost":578,"Date":"4/14/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":470,"Cost":288,"Date":"5/3/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":748,"Cost":555,"Date":"5/9/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":725,"Cost":543,"Date":"5/15/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":827,"Cost":591,"Date":"5/25/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":866,"Cost":518,"Date":"5/26/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":955,"Cost":720,"Date":"5/31/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":559,"Cost":414,"Date":"7/27/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":488,"Cost":434,"Date":"9/17/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":82,"Cost":73,"Date":"10/6/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":840,"Cost":574,"Date":"10/8/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":277,"Cost":256,"Date":"10/26/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":66,"Cost":53,"Date":"11/16/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":902,"Cost":810,"Date":"11/18/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"COS","Country":"Belgium","Sale":267,"Cost":153,"Date":"12/1/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":835,"Cost":758,"Date":"2/9/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":661,"Cost":341,"Date":"2/11/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":350,"Cost":320,"Date":"3/10/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":118,"Cost":71,"Date":"3/16/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":820,"Cost":418,"Date":"3/18/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":910,"Cost":808,"Date":"3/20/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":169,"Cost":149,"Date":"3/26/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":774,"Cost":681,"Date":"6/2/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":149,"Cost":126,"Date":"6/10/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":117,"Cost":67,"Date":"6/16/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":273,"Cost":225,"Date":"6/25/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":148,"Cost":94,"Date":"7/19/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":667,"Cost":447,"Date":"7/21/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":16,"Cost":12,"Date":"7/25/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":981,"Cost":679,"Date":"8/4/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":853,"Cost":678,"Date":"9/2/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":273,"Cost":186,"Date":"9/4/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":798,"Cost":469,"Date":"9/19/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":605,"Cost":469,"Date":"9/29/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":714,"Cost":541,"Date":"10/2/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":776,"Cost":715,"Date":"10/15/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":146,"Cost":121,"Date":"10/30/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":294,"Cost":163,"Date":"11/9/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":369,"Cost":248,"Date":"11/23/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":546,"Cost":298,"Date":"11/30/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":618,"Cost":435,"Date":"12/8/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":169,"Cost":124,"Date":"12/11/2018"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":194,"Cost":117,"Date":"1/15/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":742,"Cost":677,"Date":"1/24/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":520,"Cost":324,"Date":"2/3/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":66,"Cost":43,"Date":"2/4/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":214,"Cost":171,"Date":"3/9/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":824,"Cost":552,"Date":"3/12/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":165,"Cost":83,"Date":"4/19/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":889,"Cost":811,"Date":"5/3/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":696,"Cost":550,"Date":"5/4/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":719,"Cost":360,"Date":"6/8/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":101,"Cost":85,"Date":"6/26/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":947,"Cost":544,"Date":"7/4/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":691,"Cost":525,"Date":"7/13/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":16,"Cost":9,"Date":"8/8/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":470,"Cost":337,"Date":"8/26/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":95,"Cost":67,"Date":"9/2/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":152,"Cost":98,"Date":"9/29/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":504,"Cost":336,"Date":"10/12/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":662,"Cost":474,"Date":"11/2/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":808,"Cost":519,"Date":"11/4/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":458,"Cost":345,"Date":"11/7/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":626,"Cost":499,"Date":"12/1/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":749,"Cost":659,"Date":"12/4/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":946,"Cost":892,"Date":"12/7/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":878,"Cost":561,"Date":"12/18/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":644,"Cost":501,"Date":"12/20/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":74,"Cost":69,"Date":"12/20/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":634,"Cost":500,"Date":"12/21/2019"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":370,"Cost":298,"Date":"1/9/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":254,"Cost":222,"Date":"2/5/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":516,"Cost":386,"Date":"2/16/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":178,"Cost":141,"Date":"2/16/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":68,"Cost":41,"Date":"2/18/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":932,"Cost":787,"Date":"2/22/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":548,"Cost":411,"Date":"2/25/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":98,"Cost":82,"Date":"3/8/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":93,"Cost":74,"Date":"4/2/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":456,"Cost":390,"Date":"4/3/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":519,"Cost":408,"Date":"4/9/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":60,"Cost":45,"Date":"4/10/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":955,"Cost":868,"Date":"4/19/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":607,"Cost":342,"Date":"5/17/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":787,"Cost":697,"Date":"5/22/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":530,"Cost":472,"Date":"6/20/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":132,"Cost":112,"Date":"7/1/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":407,"Cost":330,"Date":"7/4/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":635,"Cost":357,"Date":"7/8/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":689,"Cost":374,"Date":"7/9/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":125,"Cost":100,"Date":"7/14/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":60,"Cost":39,"Date":"7/19/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":975,"Cost":820,"Date":"8/1/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":457,"Cost":409,"Date":"8/6/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":904,"Cost":663,"Date":"8/7/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":765,"Cost":425,"Date":"8/22/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":482,"Cost":248,"Date":"8/31/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":588,"Cost":465,"Date":"9/1/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":493,"Cost":250,"Date":"9/1/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":452,"Cost":274,"Date":"9/17/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":163,"Cost":151,"Date":"9/29/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":844,"Cost":729,"Date":"11/7/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":546,"Cost":378,"Date":"11/26/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":882,"Cost":588,"Date":"11/27/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":354,"Cost":297,"Date":"12/5/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":425,"Cost":313,"Date":"12/26/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":931,"Cost":644,"Date":"12/31/2020"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":748,"Cost":437,"Date":"1/20/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":433,"Cost":329,"Date":"2/2/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":759,"Cost":505,"Date":"2/8/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":149,"Cost":128,"Date":"2/27/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":553,"Cost":487,"Date":"3/1/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":134,"Cost":120,"Date":"3/1/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":124,"Cost":70,"Date":"3/19/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":254,"Cost":176,"Date":"3/28/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":862,"Cost":814,"Date":"5/21/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":11,"Cost":6,"Date":"7/21/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":308,"Cost":187,"Date":"8/5/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":423,"Cost":375,"Date":"8/12/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":622,"Cost":581,"Date":"8/21/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":919,"Cost":712,"Date":"8/23/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":144,"Cost":110,"Date":"9/3/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":693,"Cost":460,"Date":"9/5/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":846,"Cost":528,"Date":"10/6/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":237,"Cost":136,"Date":"10/19/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":782,"Cost":430,"Date":"11/15/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":187,"Cost":128,"Date":"12/8/2021"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":76,"Cost":50,"Date":"1/8/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":354,"Cost":209,"Date":"1/14/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":909,"Cost":594,"Date":"1/19/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":998,"Cost":806,"Date":"1/28/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":263,"Cost":173,"Date":"1/31/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":64,"Cost":55,"Date":"3/27/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":384,"Cost":229,"Date":"4/20/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":431,"Cost":250,"Date":"4/24/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":995,"Cost":691,"Date":"4/28/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":51,"Cost":45,"Date":"5/15/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":232,"Cost":142,"Date":"5/16/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":12,"Cost":6,"Date":"5/18/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":880,"Cost":582,"Date":"6/2/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":834,"Cost":754,"Date":"6/3/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":717,"Cost":495,"Date":"6/5/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":706,"Cost":394,"Date":"6/7/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":171,"Cost":156,"Date":"6/14/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":263,"Cost":174,"Date":"6/20/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":439,"Cost":310,"Date":"6/24/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":686,"Cost":402,"Date":"7/4/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":725,"Cost":560,"Date":"7/9/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":659,"Cost":510,"Date":"7/12/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":719,"Cost":397,"Date":"8/14/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":26,"Cost":14,"Date":"8/16/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":28,"Cost":16,"Date":"8/23/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":865,"Cost":608,"Date":"9/2/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":976,"Cost":863,"Date":"9/3/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":722,"Cost":383,"Date":"9/16/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":974,"Cost":831,"Date":"10/4/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":550,"Cost":275,"Date":"11/1/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":905,"Cost":689,"Date":"11/2/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":399,"Cost":223,"Date":"12/17/2022"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":367,"Cost":252,"Date":"2/10/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":362,"Cost":320,"Date":"2/28/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":698,"Cost":496,"Date":"3/4/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":691,"Cost":437,"Date":"3/9/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":620,"Cost":523,"Date":"3/9/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":360,"Cost":322,"Date":"3/11/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":33,"Cost":28,"Date":"3/17/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":226,"Cost":173,"Date":"3/17/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":564,"Cost":462,"Date":"3/23/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":645,"Cost":385,"Date":"4/1/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":779,"Cost":702,"Date":"5/7/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":735,"Cost":549,"Date":"5/10/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":580,"Cost":376,"Date":"5/20/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":285,"Cost":241,"Date":"6/2/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":572,"Cost":351,"Date":"6/11/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":408,"Cost":217,"Date":"6/16/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":130,"Cost":121,"Date":"6/16/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":538,"Cost":432,"Date":"7/10/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":498,"Cost":343,"Date":"7/11/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":754,"Cost":589,"Date":"8/28/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":347,"Cost":325,"Date":"8/29/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":598,"Cost":428,"Date":"8/31/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":954,"Cost":491,"Date":"9/8/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":546,"Cost":273,"Date":"9/13/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":404,"Cost":345,"Date":"9/14/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":435,"Cost":368,"Date":"9/19/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":959,"Cost":619,"Date":"9/25/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":480,"Cost":440,"Date":"10/4/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":517,"Cost":358,"Date":"10/10/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":737,"Cost":640,"Date":"10/17/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":585,"Cost":316,"Date":"10/28/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":146,"Cost":125,"Date":"10/30/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":132,"Cost":92,"Date":"11/1/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":763,"Cost":388,"Date":"11/15/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":401,"Cost":343,"Date":"11/25/2023"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":174,"Cost":102,"Date":"1/10/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":293,"Cost":168,"Date":"1/14/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":877,"Cost":831,"Date":"1/20/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":70,"Cost":62,"Date":"2/8/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":807,"Cost":520,"Date":"2/25/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":567,"Cost":292,"Date":"3/7/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":681,"Cost":509,"Date":"3/14/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":418,"Cost":345,"Date":"3/27/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":155,"Cost":109,"Date":"4/5/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":483,"Cost":305,"Date":"4/14/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":222,"Cost":204,"Date":"5/3/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":931,"Cost":488,"Date":"5/9/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":813,"Cost":646,"Date":"5/15/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":573,"Cost":462,"Date":"5/25/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":467,"Cost":338,"Date":"5/26/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":111,"Cost":73,"Date":"5/31/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":36,"Cost":19,"Date":"7/27/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":286,"Cost":244,"Date":"9/17/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":159,"Cost":79,"Date":"10/6/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":779,"Cost":501,"Date":"10/8/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":575,"Cost":454,"Date":"10/26/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":602,"Cost":358,"Date":"11/16/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":460,"Cost":326,"Date":"11/18/2024"},{"Store":"Free Dome Shopping, Ghent","Brand":"Jeans","Country":"Belgium","Sale":68,"Cost":39,"Date":"12/1/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":431,"Cost":275,"Date":"2/9/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":261,"Cost":236,"Date":"2/11/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":497,"Cost":342,"Date":"3/10/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":729,"Cost":543,"Date":"3/16/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":708,"Cost":498,"Date":"3/18/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":823,"Cost":440,"Date":"3/20/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":166,"Cost":127,"Date":"3/26/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":599,"Cost":560,"Date":"6/2/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":451,"Cost":318,"Date":"6/10/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":860,"Cost":550,"Date":"6/16/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":33,"Cost":31,"Date":"6/25/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":891,"Cost":611,"Date":"7/19/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":617,"Cost":384,"Date":"7/21/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":208,"Cost":136,"Date":"7/25/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":186,"Cost":120,"Date":"8/4/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":939,"Cost":621,"Date":"9/2/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":652,"Cost":356,"Date":"9/4/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":851,"Cost":661,"Date":"9/19/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":486,"Cost":303,"Date":"9/29/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":863,"Cost":575,"Date":"10/2/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":94,"Cost":50,"Date":"10/15/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":489,"Cost":313,"Date":"10/30/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":791,"Cost":543,"Date":"11/9/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":393,"Cost":226,"Date":"11/23/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":577,"Cost":350,"Date":"11/30/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":804,"Cost":644,"Date":"12/8/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":951,"Cost":569,"Date":"12/11/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":363,"Cost":303,"Date":"1/15/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":894,"Cost":678,"Date":"1/24/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":309,"Cost":195,"Date":"2/3/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":539,"Cost":277,"Date":"2/4/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":381,"Cost":320,"Date":"3/9/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":535,"Cost":354,"Date":"3/12/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":939,"Cost":809,"Date":"4/19/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":870,"Cost":781,"Date":"5/3/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":487,"Cost":453,"Date":"5/4/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":569,"Cost":453,"Date":"6/8/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":774,"Cost":489,"Date":"6/26/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":830,"Cost":743,"Date":"7/4/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":985,"Cost":579,"Date":"7/13/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":684,"Cost":375,"Date":"8/8/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":569,"Cost":299,"Date":"8/26/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":169,"Cost":124,"Date":"9/2/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":176,"Cost":138,"Date":"9/29/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":767,"Cost":667,"Date":"10/12/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":108,"Cost":72,"Date":"11/2/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":177,"Cost":137,"Date":"11/4/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":709,"Cost":366,"Date":"11/7/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":12,"Cost":10,"Date":"12/1/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":652,"Cost":403,"Date":"12/4/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":712,"Cost":447,"Date":"12/7/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":372,"Cost":219,"Date":"12/18/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":96,"Cost":62,"Date":"12/20/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":398,"Cost":322,"Date":"12/20/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":648,"Cost":487,"Date":"12/21/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":454,"Cost":344,"Date":"1/9/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":493,"Cost":389,"Date":"2/5/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":589,"Cost":342,"Date":"2/16/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":188,"Cost":141,"Date":"2/16/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":381,"Cost":307,"Date":"2/18/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":946,"Cost":653,"Date":"2/22/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":936,"Cost":742,"Date":"2/25/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":191,"Cost":132,"Date":"3/8/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":577,"Cost":504,"Date":"4/2/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":771,"Cost":595,"Date":"4/3/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":832,"Cost":719,"Date":"4/9/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":871,"Cost":826,"Date":"4/10/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":808,"Cost":684,"Date":"4/19/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":622,"Cost":516,"Date":"5/17/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":952,"Cost":750,"Date":"5/22/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":168,"Cost":151,"Date":"6/20/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":697,"Cost":551,"Date":"7/1/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":965,"Cost":917,"Date":"7/4/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":551,"Cost":513,"Date":"7/8/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":796,"Cost":600,"Date":"7/9/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":259,"Cost":171,"Date":"7/14/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":344,"Cost":321,"Date":"7/19/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":182,"Cost":142,"Date":"8/1/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":862,"Cost":635,"Date":"8/6/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":2,"Cost":2,"Date":"8/7/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":32,"Cost":18,"Date":"8/22/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":774,"Cost":651,"Date":"8/31/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":53,"Cost":47,"Date":"9/1/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":383,"Cost":353,"Date":"9/1/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":500,"Cost":466,"Date":"9/17/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":316,"Cost":243,"Date":"9/29/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":437,"Cost":290,"Date":"11/7/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":976,"Cost":883,"Date":"11/26/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":805,"Cost":560,"Date":"11/27/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":52,"Cost":37,"Date":"12/5/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":915,"Cost":538,"Date":"12/26/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":97,"Cost":75,"Date":"12/31/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":300,"Cost":153,"Date":"1/20/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":286,"Cost":222,"Date":"2/2/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":642,"Cost":541,"Date":"2/8/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":123,"Cost":96,"Date":"2/27/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":81,"Cost":77,"Date":"3/1/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":930,"Cost":813,"Date":"3/1/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":588,"Cost":519,"Date":"3/19/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":418,"Cost":216,"Date":"3/28/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":517,"Cost":432,"Date":"5/21/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":371,"Cost":238,"Date":"7/21/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":647,"Cost":374,"Date":"8/5/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":597,"Cost":392,"Date":"8/12/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":578,"Cost":447,"Date":"8/21/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":659,"Cost":377,"Date":"8/23/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":276,"Cost":245,"Date":"9/3/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":518,"Cost":417,"Date":"9/5/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":874,"Cost":759,"Date":"10/6/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":396,"Cost":329,"Date":"10/19/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":540,"Cost":464,"Date":"11/15/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":301,"Cost":282,"Date":"12/8/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":213,"Cost":181,"Date":"1/8/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":416,"Cost":365,"Date":"1/14/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":315,"Cost":208,"Date":"1/19/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":63,"Cost":59,"Date":"1/28/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":417,"Cost":338,"Date":"1/31/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":397,"Cost":267,"Date":"3/27/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":997,"Cost":758,"Date":"4/20/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":209,"Cost":126,"Date":"4/24/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":622,"Cost":322,"Date":"4/28/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":949,"Cost":796,"Date":"5/15/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":273,"Cost":199,"Date":"5/16/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":133,"Cost":79,"Date":"5/18/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":25,"Cost":20,"Date":"6/2/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":983,"Cost":794,"Date":"6/3/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":256,"Cost":229,"Date":"6/5/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":959,"Cost":856,"Date":"6/7/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":597,"Cost":330,"Date":"6/14/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":238,"Cost":158,"Date":"6/20/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":141,"Cost":78,"Date":"6/24/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":443,"Cost":283,"Date":"7/4/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":868,"Cost":531,"Date":"7/9/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":440,"Cost":393,"Date":"7/12/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":526,"Cost":414,"Date":"8/14/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":710,"Cost":525,"Date":"8/16/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":370,"Cost":311,"Date":"8/23/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":724,"Cost":561,"Date":"9/2/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":973,"Cost":650,"Date":"9/3/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":161,"Cost":96,"Date":"9/16/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":210,"Cost":134,"Date":"10/4/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":355,"Cost":309,"Date":"11/1/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":28,"Cost":19,"Date":"11/2/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":586,"Cost":425,"Date":"12/17/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":707,"Cost":501,"Date":"2/10/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":716,"Cost":678,"Date":"2/28/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":970,"Cost":597,"Date":"3/4/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":210,"Cost":184,"Date":"3/9/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":681,"Cost":374,"Date":"3/9/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":318,"Cost":208,"Date":"3/11/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":138,"Cost":121,"Date":"3/17/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":131,"Cost":87,"Date":"3/17/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":539,"Cost":325,"Date":"3/23/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":615,"Cost":341,"Date":"4/1/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":867,"Cost":727,"Date":"5/7/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":674,"Cost":345,"Date":"5/10/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":102,"Cost":63,"Date":"5/20/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":545,"Cost":345,"Date":"6/2/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":943,"Cost":864,"Date":"6/11/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":138,"Cost":119,"Date":"6/16/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":179,"Cost":154,"Date":"6/16/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":311,"Cost":215,"Date":"7/10/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":400,"Cost":336,"Date":"7/11/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":521,"Cost":481,"Date":"8/28/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":104,"Cost":82,"Date":"8/29/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":63,"Cost":41,"Date":"8/31/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":629,"Cost":522,"Date":"9/8/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":498,"Cost":354,"Date":"9/13/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":77,"Cost":69,"Date":"9/14/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":815,"Cost":636,"Date":"9/19/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":89,"Cost":56,"Date":"9/25/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":268,"Cost":158,"Date":"10/4/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":721,"Cost":438,"Date":"10/10/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":282,"Cost":243,"Date":"10/17/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":634,"Cost":593,"Date":"10/28/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":199,"Cost":130,"Date":"10/30/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":463,"Cost":316,"Date":"11/1/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":593,"Cost":344,"Date":"11/15/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":923,"Cost":813,"Date":"11/25/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":189,"Cost":149,"Date":"1/10/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":885,"Cost":706,"Date":"1/14/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":531,"Cost":478,"Date":"1/20/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":717,"Cost":579,"Date":"2/8/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":439,"Cost":297,"Date":"2/25/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":893,"Cost":671,"Date":"3/7/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":553,"Cost":407,"Date":"3/14/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":233,"Cost":178,"Date":"3/27/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":133,"Cost":108,"Date":"4/5/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":141,"Cost":115,"Date":"4/14/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":878,"Cost":528,"Date":"5/3/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":64,"Cost":45,"Date":"5/9/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":338,"Cost":195,"Date":"5/15/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":971,"Cost":498,"Date":"5/25/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":293,"Cost":183,"Date":"5/26/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":363,"Cost":337,"Date":"5/31/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":422,"Cost":285,"Date":"7/27/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":212,"Cost":159,"Date":"9/17/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":831,"Cost":688,"Date":"10/6/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":52,"Cost":44,"Date":"10/8/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":684,"Cost":426,"Date":"10/26/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":474,"Cost":295,"Date":"11/16/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":91,"Cost":66,"Date":"11/18/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":714,"Cost":649,"Date":"12/1/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":63,"Cost":46,"Date":"2/9/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":655,"Cost":548,"Date":"2/11/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":651,"Cost":350,"Date":"3/10/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":723,"Cost":624,"Date":"3/16/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":230,"Cost":200,"Date":"3/18/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":436,"Cost":341,"Date":"3/20/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":968,"Cost":525,"Date":"3/26/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":608,"Cost":401,"Date":"6/2/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":844,"Cost":524,"Date":"6/10/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":958,"Cost":649,"Date":"6/16/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":68,"Cost":49,"Date":"6/25/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":923,"Cost":705,"Date":"7/19/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":960,"Cost":498,"Date":"7/21/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":237,"Cost":140,"Date":"7/25/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":590,"Cost":530,"Date":"8/4/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":333,"Cost":171,"Date":"9/2/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":321,"Cost":212,"Date":"9/4/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":68,"Cost":41,"Date":"9/19/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":846,"Cost":550,"Date":"9/29/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":76,"Cost":60,"Date":"10/2/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":446,"Cost":283,"Date":"10/15/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":353,"Cost":332,"Date":"10/30/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":47,"Cost":32,"Date":"11/9/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":170,"Cost":127,"Date":"11/23/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":594,"Cost":307,"Date":"11/30/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":718,"Cost":520,"Date":"12/8/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":322,"Cost":278,"Date":"12/11/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":878,"Cost":475,"Date":"1/15/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":575,"Cost":527,"Date":"1/24/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":8,"Cost":4,"Date":"2/3/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":348,"Cost":252,"Date":"2/4/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":203,"Cost":150,"Date":"3/9/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":654,"Cost":439,"Date":"3/12/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":908,"Cost":791,"Date":"4/19/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":896,"Cost":720,"Date":"5/3/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":596,"Cost":305,"Date":"5/4/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":185,"Cost":130,"Date":"6/8/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":152,"Cost":92,"Date":"6/26/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":556,"Cost":512,"Date":"7/4/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":157,"Cost":106,"Date":"7/13/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":628,"Cost":531,"Date":"8/8/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":825,"Cost":743,"Date":"8/26/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":428,"Cost":356,"Date":"9/2/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":391,"Cost":276,"Date":"9/29/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":882,"Cost":836,"Date":"10/12/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":273,"Cost":196,"Date":"11/2/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":602,"Cost":306,"Date":"11/4/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":319,"Cost":163,"Date":"11/7/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":989,"Cost":674,"Date":"12/1/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":171,"Cost":89,"Date":"12/4/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":543,"Cost":361,"Date":"12/7/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":687,"Cost":523,"Date":"12/18/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":283,"Cost":260,"Date":"12/20/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":520,"Cost":351,"Date":"12/20/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":174,"Cost":101,"Date":"12/21/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":941,"Cost":791,"Date":"1/9/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":945,"Cost":860,"Date":"2/5/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":406,"Cost":284,"Date":"2/16/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":499,"Cost":470,"Date":"2/16/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":148,"Cost":131,"Date":"2/18/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":187,"Cost":175,"Date":"2/22/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":531,"Cost":328,"Date":"2/25/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":87,"Cost":82,"Date":"3/8/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":959,"Cost":808,"Date":"4/2/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":978,"Cost":794,"Date":"4/3/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":71,"Cost":44,"Date":"4/9/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":980,"Cost":770,"Date":"4/10/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":788,"Cost":423,"Date":"4/19/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":300,"Cost":203,"Date":"5/17/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":126,"Cost":100,"Date":"5/22/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":718,"Cost":517,"Date":"6/20/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":88,"Cost":63,"Date":"7/1/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":668,"Cost":488,"Date":"7/4/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":95,"Cost":58,"Date":"7/8/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":81,"Cost":54,"Date":"7/9/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":96,"Cost":65,"Date":"7/14/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":965,"Cost":890,"Date":"7/19/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":496,"Cost":373,"Date":"8/1/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":667,"Cost":458,"Date":"8/6/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":398,"Cost":343,"Date":"8/7/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":342,"Cost":180,"Date":"8/22/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":124,"Cost":105,"Date":"8/31/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":919,"Cost":837,"Date":"9/1/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":761,"Cost":675,"Date":"9/1/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":654,"Cost":478,"Date":"9/17/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":452,"Cost":252,"Date":"9/29/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":282,"Cost":206,"Date":"11/7/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":924,"Cost":774,"Date":"11/26/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":233,"Cost":159,"Date":"11/27/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":777,"Cost":677,"Date":"12/5/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":26,"Cost":20,"Date":"12/26/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":169,"Cost":121,"Date":"12/31/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":358,"Cost":321,"Date":"1/20/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":901,"Cost":465,"Date":"2/2/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":402,"Cost":207,"Date":"2/8/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":483,"Cost":390,"Date":"2/27/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":138,"Cost":94,"Date":"3/1/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":451,"Cost":369,"Date":"3/1/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":185,"Cost":117,"Date":"3/19/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":742,"Cost":619,"Date":"3/28/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":674,"Cost":430,"Date":"5/21/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":977,"Cost":513,"Date":"7/21/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":862,"Cost":746,"Date":"8/5/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":824,"Cost":519,"Date":"8/12/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":939,"Cost":511,"Date":"8/21/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":86,"Cost":69,"Date":"8/23/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":801,"Cost":730,"Date":"9/3/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":149,"Cost":91,"Date":"9/5/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":895,"Cost":487,"Date":"10/6/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":869,"Cost":739,"Date":"10/19/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":813,"Cost":566,"Date":"11/15/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":687,"Cost":425,"Date":"12/8/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":882,"Cost":659,"Date":"1/8/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":344,"Cost":326,"Date":"1/14/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":376,"Cost":315,"Date":"1/19/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":92,"Cost":86,"Date":"1/28/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":169,"Cost":131,"Date":"1/31/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":26,"Cost":15,"Date":"3/27/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":765,"Cost":687,"Date":"4/20/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":510,"Cost":312,"Date":"4/24/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":713,"Cost":388,"Date":"4/28/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":652,"Cost":358,"Date":"5/15/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":859,"Cost":777,"Date":"5/16/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":707,"Cost":531,"Date":"5/18/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":537,"Cost":305,"Date":"6/2/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":56,"Cost":44,"Date":"6/3/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":914,"Cost":865,"Date":"6/5/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":83,"Cost":53,"Date":"6/7/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":243,"Cost":181,"Date":"6/14/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":595,"Cost":530,"Date":"6/20/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":608,"Cost":386,"Date":"6/24/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":715,"Cost":506,"Date":"7/4/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":171,"Cost":161,"Date":"7/9/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":432,"Cost":271,"Date":"7/12/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":990,"Cost":652,"Date":"8/14/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":503,"Cost":407,"Date":"8/16/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":561,"Cost":411,"Date":"8/23/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":546,"Cost":456,"Date":"9/2/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":728,"Cost":584,"Date":"9/3/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":183,"Cost":147,"Date":"9/16/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":362,"Cost":301,"Date":"10/4/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":325,"Cost":287,"Date":"11/1/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":88,"Cost":79,"Date":"11/2/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":776,"Cost":403,"Date":"12/17/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":217,"Cost":165,"Date":"2/10/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":982,"Cost":674,"Date":"2/28/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":376,"Cost":254,"Date":"3/4/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":628,"Cost":389,"Date":"3/9/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":22,"Cost":18,"Date":"3/9/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":486,"Cost":261,"Date":"3/11/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":347,"Cost":268,"Date":"3/17/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":792,"Cost":577,"Date":"3/17/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":842,"Cost":572,"Date":"3/23/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":507,"Cost":312,"Date":"4/1/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":262,"Cost":150,"Date":"5/7/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":773,"Cost":635,"Date":"5/10/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":751,"Cost":504,"Date":"5/20/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":79,"Cost":62,"Date":"6/2/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":865,"Cost":461,"Date":"6/11/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":889,"Cost":616,"Date":"6/16/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":989,"Cost":593,"Date":"6/16/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":232,"Cost":148,"Date":"7/10/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":251,"Cost":224,"Date":"7/11/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":395,"Cost":203,"Date":"8/28/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":111,"Cost":106,"Date":"8/29/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":544,"Cost":320,"Date":"8/31/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":771,"Cost":484,"Date":"9/8/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":740,"Cost":580,"Date":"9/13/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":370,"Cost":335,"Date":"9/14/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":265,"Cost":191,"Date":"9/19/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":487,"Cost":390,"Date":"9/25/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":161,"Cost":149,"Date":"10/4/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":286,"Cost":157,"Date":"10/10/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":639,"Cost":485,"Date":"10/17/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":447,"Cost":387,"Date":"10/28/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":9,"Cost":4,"Date":"10/30/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":959,"Cost":677,"Date":"11/1/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":568,"Cost":447,"Date":"11/15/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":890,"Cost":719,"Date":"11/25/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":250,"Cost":230,"Date":"1/10/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":529,"Cost":284,"Date":"1/14/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":635,"Cost":485,"Date":"1/20/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":727,"Cost":561,"Date":"2/8/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":744,"Cost":473,"Date":"2/25/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":441,"Cost":389,"Date":"3/7/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":380,"Cost":216,"Date":"3/14/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":151,"Cost":113,"Date":"3/27/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":846,"Cost":500,"Date":"4/5/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":64,"Cost":39,"Date":"4/14/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":943,"Cost":729,"Date":"5/3/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":586,"Cost":536,"Date":"5/9/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":993,"Cost":741,"Date":"5/15/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":149,"Cost":111,"Date":"5/25/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":117,"Cost":74,"Date":"5/26/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":137,"Cost":76,"Date":"5/31/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":632,"Cost":561,"Date":"7/27/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":27,"Cost":23,"Date":"9/17/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":824,"Cost":615,"Date":"10/6/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":284,"Cost":223,"Date":"10/8/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":12,"Cost":9,"Date":"10/26/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":24,"Cost":18,"Date":"11/16/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":13,"Cost":9,"Date":"11/18/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM","Country":"Belgium","Sale":897,"Cost":493,"Date":"12/1/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":283,"Cost":231,"Date":"2/9/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":979,"Cost":659,"Date":"2/11/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":888,"Cost":454,"Date":"3/10/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":831,"Cost":436,"Date":"3/16/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":738,"Cost":433,"Date":"3/18/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":394,"Cost":343,"Date":"3/20/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":971,"Cost":789,"Date":"3/26/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":968,"Cost":578,"Date":"6/2/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":575,"Cost":306,"Date":"6/10/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":369,"Cost":211,"Date":"6/16/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":600,"Cost":505,"Date":"6/25/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":315,"Cost":197,"Date":"7/19/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":184,"Cost":147,"Date":"7/21/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":329,"Cost":248,"Date":"7/25/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":713,"Cost":646,"Date":"8/4/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":901,"Cost":491,"Date":"9/2/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":975,"Cost":591,"Date":"9/4/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":283,"Cost":212,"Date":"9/19/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":761,"Cost":481,"Date":"9/29/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":294,"Cost":272,"Date":"10/2/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":729,"Cost":426,"Date":"10/15/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":296,"Cost":230,"Date":"10/30/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":177,"Cost":112,"Date":"11/9/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":936,"Cost":535,"Date":"11/23/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":763,"Cost":695,"Date":"11/30/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":973,"Cost":799,"Date":"12/8/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":8,"Cost":4,"Date":"12/11/2018"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":414,"Cost":278,"Date":"1/15/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":218,"Cost":190,"Date":"1/24/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":322,"Cost":210,"Date":"2/3/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":651,"Cost":330,"Date":"2/4/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":538,"Cost":314,"Date":"3/9/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":379,"Cost":274,"Date":"3/12/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":554,"Cost":505,"Date":"4/19/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":266,"Cost":140,"Date":"5/3/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":253,"Cost":193,"Date":"5/4/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":673,"Cost":416,"Date":"6/8/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":717,"Cost":508,"Date":"6/26/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":453,"Cost":404,"Date":"7/4/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":532,"Cost":498,"Date":"7/13/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":822,"Cost":604,"Date":"8/8/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":695,"Cost":656,"Date":"8/26/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":721,"Cost":506,"Date":"9/2/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":236,"Cost":180,"Date":"9/29/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":22,"Cost":14,"Date":"10/12/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":985,"Cost":571,"Date":"11/2/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":477,"Cost":414,"Date":"11/4/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":554,"Cost":291,"Date":"11/7/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":635,"Cost":498,"Date":"12/1/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":972,"Cost":896,"Date":"12/4/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":163,"Cost":154,"Date":"12/7/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":623,"Cost":428,"Date":"12/18/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":311,"Cost":197,"Date":"12/20/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":899,"Cost":517,"Date":"12/20/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":293,"Cost":218,"Date":"12/21/2019"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":971,"Cost":755,"Date":"1/9/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":596,"Cost":375,"Date":"2/5/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":614,"Cost":356,"Date":"2/16/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":595,"Cost":485,"Date":"2/16/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":632,"Cost":538,"Date":"2/18/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":139,"Cost":83,"Date":"2/22/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":413,"Cost":244,"Date":"2/25/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":88,"Cost":62,"Date":"3/8/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":313,"Cost":238,"Date":"4/2/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":440,"Cost":302,"Date":"4/3/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":257,"Cost":227,"Date":"4/9/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":172,"Cost":125,"Date":"4/10/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":425,"Cost":250,"Date":"4/19/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":189,"Cost":105,"Date":"5/17/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":214,"Cost":108,"Date":"5/22/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":62,"Cost":35,"Date":"6/20/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":12,"Cost":9,"Date":"7/1/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":101,"Cost":56,"Date":"7/4/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":440,"Cost":379,"Date":"7/8/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":635,"Cost":553,"Date":"7/9/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":866,"Cost":467,"Date":"7/14/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":612,"Cost":552,"Date":"7/19/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":643,"Cost":489,"Date":"8/1/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":777,"Cost":669,"Date":"8/6/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":210,"Cost":154,"Date":"8/7/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":603,"Cost":367,"Date":"8/22/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":583,"Cost":551,"Date":"8/31/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":164,"Cost":93,"Date":"9/1/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":647,"Cost":531,"Date":"9/1/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":833,"Cost":739,"Date":"9/17/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":255,"Cost":159,"Date":"9/29/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":412,"Cost":349,"Date":"11/7/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":803,"Cost":637,"Date":"11/26/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":724,"Cost":626,"Date":"11/27/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":909,"Cost":723,"Date":"12/5/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":585,"Cost":423,"Date":"12/26/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":140,"Cost":106,"Date":"12/31/2020"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":601,"Cost":562,"Date":"1/20/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":799,"Cost":454,"Date":"2/2/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":611,"Cost":376,"Date":"2/8/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":258,"Cost":173,"Date":"2/27/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":168,"Cost":133,"Date":"3/1/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":379,"Cost":227,"Date":"3/1/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":41,"Cost":39,"Date":"3/19/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":342,"Cost":325,"Date":"3/28/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":194,"Cost":105,"Date":"5/21/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":245,"Cost":174,"Date":"7/21/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":639,"Cost":551,"Date":"8/5/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":29,"Cost":21,"Date":"8/12/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":185,"Cost":128,"Date":"8/21/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":161,"Cost":84,"Date":"8/23/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":29,"Cost":15,"Date":"9/3/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":817,"Cost":435,"Date":"9/5/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":564,"Cost":530,"Date":"10/6/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":673,"Cost":435,"Date":"10/19/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":667,"Cost":394,"Date":"11/15/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":912,"Cost":605,"Date":"12/8/2021"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":90,"Cost":65,"Date":"1/8/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":380,"Cost":275,"Date":"1/14/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":823,"Cost":502,"Date":"1/19/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":722,"Cost":422,"Date":"1/28/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":404,"Cost":263,"Date":"1/31/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":701,"Cost":446,"Date":"3/27/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":572,"Cost":402,"Date":"4/20/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":374,"Cost":257,"Date":"4/24/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":879,"Cost":656,"Date":"4/28/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":221,"Cost":169,"Date":"5/15/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":807,"Cost":687,"Date":"5/16/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":779,"Cost":519,"Date":"5/18/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":151,"Cost":101,"Date":"6/2/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":676,"Cost":511,"Date":"6/3/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":749,"Cost":388,"Date":"6/5/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":755,"Cost":549,"Date":"6/7/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":119,"Cost":70,"Date":"6/14/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":685,"Cost":549,"Date":"6/20/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":420,"Cost":250,"Date":"6/24/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":934,"Cost":513,"Date":"7/4/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":458,"Cost":427,"Date":"7/9/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":599,"Cost":470,"Date":"7/12/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":278,"Cost":260,"Date":"8/14/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":42,"Cost":23,"Date":"8/16/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":69,"Cost":61,"Date":"8/23/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":647,"Cost":610,"Date":"9/2/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":612,"Cost":314,"Date":"9/3/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":505,"Cost":337,"Date":"9/16/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":127,"Cost":121,"Date":"10/4/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":377,"Cost":195,"Date":"11/1/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":478,"Cost":343,"Date":"11/2/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":381,"Cost":254,"Date":"12/17/2022"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":776,"Cost":707,"Date":"2/10/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":14,"Cost":13,"Date":"2/28/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":498,"Cost":311,"Date":"3/4/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":878,"Cost":686,"Date":"3/9/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":398,"Cost":325,"Date":"3/9/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":156,"Cost":107,"Date":"3/11/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":389,"Cost":340,"Date":"3/17/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":637,"Cost":520,"Date":"3/17/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":470,"Cost":395,"Date":"3/23/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":238,"Cost":173,"Date":"4/1/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":114,"Cost":73,"Date":"5/7/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":60,"Cost":42,"Date":"5/10/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":845,"Cost":443,"Date":"5/20/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":939,"Cost":792,"Date":"6/2/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":501,"Cost":321,"Date":"6/11/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":694,"Cost":549,"Date":"6/16/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":60,"Cost":47,"Date":"6/16/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":966,"Cost":617,"Date":"7/10/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":46,"Cost":27,"Date":"7/11/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":352,"Cost":205,"Date":"8/28/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":84,"Cost":68,"Date":"8/29/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":1000,"Cost":669,"Date":"8/31/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":437,"Cost":367,"Date":"9/8/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":337,"Cost":185,"Date":"9/13/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":199,"Cost":130,"Date":"9/14/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":33,"Cost":28,"Date":"9/19/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":323,"Cost":219,"Date":"9/25/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":266,"Cost":161,"Date":"10/4/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":975,"Cost":564,"Date":"10/10/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":429,"Cost":219,"Date":"10/17/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":866,"Cost":810,"Date":"10/28/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":367,"Cost":296,"Date":"10/30/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":138,"Cost":74,"Date":"11/1/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":101,"Cost":96,"Date":"11/15/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":235,"Cost":163,"Date":"11/25/2023"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":465,"Cost":415,"Date":"1/10/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":330,"Cost":184,"Date":"1/14/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":432,"Cost":335,"Date":"1/20/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":377,"Cost":188,"Date":"2/8/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":32,"Cost":24,"Date":"2/25/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":390,"Cost":299,"Date":"3/7/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":695,"Cost":376,"Date":"3/14/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":590,"Cost":486,"Date":"3/27/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":132,"Cost":114,"Date":"4/5/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":770,"Cost":730,"Date":"4/14/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":348,"Cost":250,"Date":"5/3/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":451,"Cost":263,"Date":"5/9/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":707,"Cost":630,"Date":"5/15/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":622,"Cost":400,"Date":"5/25/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":566,"Cost":495,"Date":"5/26/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":702,"Cost":513,"Date":"5/31/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":601,"Cost":545,"Date":"7/27/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":443,"Cost":275,"Date":"9/17/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":414,"Cost":338,"Date":"10/6/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":347,"Cost":330,"Date":"10/8/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":196,"Cost":135,"Date":"10/26/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":933,"Cost":841,"Date":"11/16/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":377,"Cost":310,"Date":"11/18/2024"},{"Store":"Kouter Shopping Mall, Ghent","Brand":"HM Home","Country":"Belgium","Sale":785,"Cost":434,"Date":"12/1/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":476,"Cost":365,"Date":"2/9/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":886,"Cost":470,"Date":"2/11/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":28,"Cost":25,"Date":"3/10/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":735,"Cost":486,"Date":"3/16/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":155,"Cost":112,"Date":"3/18/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":44,"Cost":36,"Date":"3/20/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":584,"Cost":294,"Date":"3/26/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":49,"Cost":33,"Date":"6/2/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":543,"Cost":410,"Date":"6/10/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":340,"Cost":287,"Date":"6/16/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":182,"Cost":141,"Date":"6/25/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":615,"Cost":477,"Date":"7/19/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":974,"Cost":770,"Date":"7/21/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":240,"Cost":126,"Date":"7/25/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":524,"Cost":419,"Date":"8/4/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":527,"Cost":291,"Date":"9/2/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":159,"Cost":85,"Date":"9/4/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":390,"Cost":356,"Date":"9/19/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":987,"Cost":730,"Date":"9/29/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":583,"Cost":521,"Date":"10/2/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":452,"Cost":412,"Date":"10/15/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":869,"Cost":765,"Date":"10/30/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":326,"Cost":176,"Date":"11/9/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":529,"Cost":475,"Date":"11/23/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":967,"Cost":901,"Date":"11/30/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":795,"Cost":635,"Date":"12/8/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":919,"Cost":652,"Date":"12/11/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":884,"Cost":548,"Date":"1/15/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":23,"Cost":12,"Date":"1/24/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":668,"Cost":546,"Date":"2/3/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":413,"Cost":353,"Date":"2/4/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":891,"Cost":544,"Date":"3/9/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":957,"Cost":635,"Date":"3/12/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":974,"Cost":556,"Date":"4/19/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":962,"Cost":782,"Date":"5/3/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":368,"Cost":283,"Date":"5/4/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":477,"Cost":285,"Date":"6/8/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":804,"Cost":522,"Date":"6/26/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":620,"Cost":457,"Date":"7/4/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":130,"Cost":122,"Date":"7/13/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":753,"Cost":628,"Date":"8/8/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":442,"Cost":411,"Date":"8/26/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":914,"Cost":465,"Date":"9/2/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":348,"Cost":192,"Date":"9/29/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":257,"Cost":233,"Date":"10/12/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":162,"Cost":131,"Date":"11/2/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":463,"Cost":272,"Date":"11/4/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":819,"Cost":553,"Date":"11/7/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":983,"Cost":555,"Date":"12/1/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":347,"Cost":183,"Date":"12/4/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":401,"Cost":370,"Date":"12/7/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":997,"Cost":822,"Date":"12/18/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":48,"Cost":36,"Date":"12/20/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":525,"Cost":310,"Date":"12/20/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":664,"Cost":583,"Date":"12/21/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":656,"Cost":428,"Date":"1/9/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":610,"Cost":338,"Date":"2/5/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":757,"Cost":635,"Date":"2/16/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":168,"Cost":112,"Date":"2/16/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":149,"Cost":83,"Date":"2/18/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":465,"Cost":393,"Date":"2/22/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":461,"Cost":412,"Date":"2/25/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":520,"Cost":392,"Date":"3/8/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":274,"Cost":195,"Date":"4/2/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":652,"Cost":373,"Date":"4/3/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":741,"Cost":697,"Date":"4/9/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":26,"Cost":17,"Date":"4/10/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":374,"Cost":283,"Date":"4/19/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":537,"Cost":276,"Date":"5/17/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":496,"Cost":379,"Date":"5/22/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":869,"Cost":509,"Date":"6/20/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":157,"Cost":134,"Date":"7/1/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":87,"Cost":63,"Date":"7/4/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":191,"Cost":101,"Date":"7/8/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":633,"Cost":465,"Date":"7/9/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":504,"Cost":425,"Date":"7/14/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":711,"Cost":510,"Date":"7/19/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":509,"Cost":259,"Date":"8/1/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":634,"Cost":371,"Date":"8/6/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":534,"Cost":368,"Date":"8/7/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":983,"Cost":703,"Date":"8/22/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":760,"Cost":385,"Date":"8/31/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":204,"Cost":153,"Date":"9/1/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":447,"Cost":321,"Date":"9/1/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":911,"Cost":859,"Date":"9/17/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":979,"Cost":926,"Date":"9/29/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":144,"Cost":116,"Date":"11/7/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":176,"Cost":104,"Date":"11/26/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":116,"Cost":83,"Date":"11/27/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":17,"Cost":8,"Date":"12/5/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":34,"Cost":22,"Date":"12/26/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":875,"Cost":707,"Date":"12/31/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":315,"Cost":242,"Date":"1/20/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":263,"Cost":242,"Date":"2/2/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":288,"Cost":146,"Date":"2/8/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":434,"Cost":230,"Date":"2/27/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":34,"Cost":20,"Date":"3/1/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":886,"Cost":614,"Date":"3/1/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":868,"Cost":605,"Date":"3/19/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":937,"Cost":658,"Date":"3/28/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":116,"Cost":78,"Date":"5/21/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":807,"Cost":636,"Date":"7/21/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":106,"Cost":79,"Date":"8/5/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":712,"Cost":669,"Date":"8/12/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":569,"Cost":502,"Date":"8/21/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":741,"Cost":580,"Date":"8/23/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":375,"Cost":209,"Date":"9/3/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":923,"Cost":753,"Date":"9/5/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":671,"Cost":464,"Date":"10/6/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":680,"Cost":580,"Date":"10/19/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":136,"Cost":114,"Date":"11/15/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":311,"Cost":273,"Date":"12/8/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":562,"Cost":521,"Date":"1/8/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":298,"Cost":196,"Date":"1/14/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":522,"Cost":282,"Date":"1/19/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":943,"Cost":534,"Date":"1/28/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":434,"Cost":358,"Date":"1/31/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":134,"Cost":100,"Date":"3/27/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":369,"Cost":210,"Date":"4/20/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":264,"Cost":201,"Date":"4/24/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":725,"Cost":394,"Date":"4/28/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":389,"Cost":233,"Date":"5/15/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":142,"Cost":110,"Date":"5/16/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":222,"Cost":201,"Date":"5/18/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":736,"Cost":627,"Date":"6/2/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":349,"Cost":256,"Date":"6/3/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":245,"Cost":147,"Date":"6/5/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":995,"Cost":769,"Date":"6/7/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":393,"Cost":336,"Date":"6/14/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":917,"Cost":571,"Date":"6/20/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":50,"Cost":36,"Date":"6/24/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":594,"Cost":351,"Date":"7/4/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":893,"Cost":805,"Date":"7/9/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":533,"Cost":291,"Date":"7/12/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":922,"Cost":657,"Date":"8/14/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":935,"Cost":807,"Date":"8/16/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":722,"Cost":591,"Date":"8/23/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":176,"Cost":131,"Date":"9/2/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":388,"Cost":266,"Date":"9/3/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":471,"Cost":326,"Date":"9/16/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":94,"Cost":84,"Date":"10/4/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":209,"Cost":164,"Date":"11/1/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":60,"Cost":40,"Date":"11/2/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":707,"Cost":502,"Date":"12/17/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":921,"Cost":779,"Date":"2/10/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":610,"Cost":560,"Date":"2/28/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":326,"Cost":178,"Date":"3/4/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":557,"Cost":443,"Date":"3/9/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":568,"Cost":325,"Date":"3/9/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":690,"Cost":513,"Date":"3/11/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":917,"Cost":529,"Date":"3/17/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":733,"Cost":453,"Date":"3/17/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":176,"Cost":122,"Date":"3/23/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":990,"Cost":586,"Date":"4/1/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":556,"Cost":364,"Date":"5/7/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":958,"Cost":908,"Date":"5/10/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":720,"Cost":671,"Date":"5/20/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":581,"Cost":441,"Date":"6/2/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":998,"Cost":807,"Date":"6/11/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":307,"Cost":249,"Date":"6/16/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":268,"Cost":156,"Date":"6/16/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":598,"Cost":359,"Date":"7/10/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":342,"Cost":237,"Date":"7/11/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":80,"Cost":56,"Date":"8/28/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":703,"Cost":548,"Date":"8/29/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":554,"Cost":347,"Date":"8/31/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":400,"Cost":206,"Date":"9/8/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":465,"Cost":240,"Date":"9/13/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":6,"Cost":3,"Date":"9/14/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":495,"Cost":335,"Date":"9/19/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":307,"Cost":154,"Date":"9/25/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":97,"Cost":57,"Date":"10/4/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":366,"Cost":336,"Date":"10/10/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":845,"Cost":650,"Date":"10/17/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":899,"Cost":473,"Date":"10/28/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":117,"Cost":81,"Date":"10/30/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":217,"Cost":116,"Date":"11/1/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":784,"Cost":603,"Date":"11/15/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":423,"Cost":260,"Date":"11/25/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":932,"Cost":817,"Date":"1/10/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":101,"Cost":67,"Date":"1/14/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":531,"Cost":463,"Date":"1/20/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":250,"Cost":202,"Date":"2/8/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":51,"Cost":33,"Date":"2/25/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":900,"Cost":466,"Date":"3/7/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":158,"Cost":125,"Date":"3/14/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":4,"Cost":2,"Date":"3/27/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":7,"Cost":5,"Date":"4/5/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":742,"Cost":625,"Date":"4/14/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":170,"Cost":137,"Date":"5/3/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":309,"Cost":278,"Date":"5/9/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":466,"Cost":304,"Date":"5/15/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":610,"Cost":387,"Date":"5/25/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":20,"Cost":15,"Date":"5/26/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":928,"Cost":716,"Date":"5/31/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":797,"Cost":718,"Date":"7/27/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":201,"Cost":126,"Date":"9/17/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":695,"Cost":550,"Date":"10/6/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":232,"Cost":194,"Date":"10/8/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":145,"Cost":91,"Date":"10/26/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":573,"Cost":373,"Date":"11/16/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":6,"Cost":4,"Date":"11/18/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":203,"Cost":116,"Date":"12/1/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":952,"Cost":662,"Date":"2/9/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":752,"Cost":499,"Date":"2/11/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":484,"Cost":325,"Date":"3/10/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":999,"Cost":608,"Date":"3/16/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":681,"Cost":611,"Date":"3/18/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":584,"Cost":320,"Date":"3/20/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":714,"Cost":433,"Date":"3/26/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":11,"Cost":8,"Date":"6/2/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":749,"Cost":378,"Date":"6/10/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":654,"Cost":366,"Date":"6/16/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":263,"Cost":229,"Date":"6/25/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":933,"Cost":539,"Date":"7/19/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":681,"Cost":645,"Date":"7/21/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":429,"Cost":250,"Date":"7/25/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":554,"Cost":302,"Date":"8/4/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":571,"Cost":350,"Date":"9/2/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":973,"Cost":682,"Date":"9/4/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":949,"Cost":864,"Date":"9/19/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":173,"Cost":90,"Date":"9/29/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":775,"Cost":436,"Date":"10/2/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":400,"Cost":299,"Date":"10/15/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":731,"Cost":667,"Date":"10/30/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":239,"Cost":200,"Date":"11/9/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":787,"Cost":413,"Date":"11/23/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":782,"Cost":395,"Date":"11/30/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":921,"Cost":528,"Date":"12/8/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":113,"Cost":83,"Date":"12/11/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":309,"Cost":268,"Date":"1/15/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":417,"Cost":209,"Date":"1/24/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":7,"Cost":5,"Date":"2/3/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":529,"Cost":495,"Date":"2/4/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":763,"Cost":609,"Date":"3/9/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":172,"Cost":116,"Date":"3/12/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":223,"Cost":207,"Date":"4/19/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":963,"Cost":860,"Date":"5/3/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":707,"Cost":571,"Date":"5/4/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":799,"Cost":416,"Date":"6/8/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":593,"Cost":539,"Date":"6/26/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":78,"Cost":59,"Date":"7/4/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":608,"Cost":391,"Date":"7/13/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":431,"Cost":335,"Date":"8/8/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":475,"Cost":416,"Date":"8/26/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":558,"Cost":351,"Date":"9/2/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":196,"Cost":104,"Date":"9/29/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":768,"Cost":631,"Date":"10/12/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":267,"Cost":185,"Date":"11/2/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":585,"Cost":434,"Date":"11/4/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":152,"Cost":116,"Date":"11/7/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":1000,"Cost":669,"Date":"12/1/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":410,"Cost":343,"Date":"12/4/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":87,"Cost":72,"Date":"12/7/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":582,"Cost":314,"Date":"12/18/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":15,"Cost":13,"Date":"12/20/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":584,"Cost":379,"Date":"12/20/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":390,"Cost":203,"Date":"12/21/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":424,"Cost":280,"Date":"1/9/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":284,"Cost":221,"Date":"2/5/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":149,"Cost":115,"Date":"2/16/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":501,"Cost":362,"Date":"2/16/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":85,"Cost":61,"Date":"2/18/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":430,"Cost":276,"Date":"2/22/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":804,"Cost":527,"Date":"2/25/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":997,"Cost":508,"Date":"3/8/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":774,"Cost":577,"Date":"4/2/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":992,"Cost":562,"Date":"4/3/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":43,"Cost":41,"Date":"4/9/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":758,"Cost":589,"Date":"4/10/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":461,"Cost":405,"Date":"4/19/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":495,"Cost":463,"Date":"5/17/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":380,"Cost":208,"Date":"5/22/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":445,"Cost":303,"Date":"6/20/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":435,"Cost":301,"Date":"7/1/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":241,"Cost":219,"Date":"7/4/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":511,"Cost":303,"Date":"7/8/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":146,"Cost":108,"Date":"7/9/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":995,"Cost":849,"Date":"7/14/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":790,"Cost":691,"Date":"7/19/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":200,"Cost":157,"Date":"8/1/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":187,"Cost":121,"Date":"8/6/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":602,"Cost":508,"Date":"8/7/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":26,"Cost":22,"Date":"8/22/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":266,"Cost":171,"Date":"8/31/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":575,"Cost":473,"Date":"9/1/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":57,"Cost":34,"Date":"9/1/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":191,"Cost":121,"Date":"9/17/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":361,"Cost":292,"Date":"9/29/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":145,"Cost":117,"Date":"11/7/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":38,"Cost":33,"Date":"11/26/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":861,"Cost":801,"Date":"11/27/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":97,"Cost":79,"Date":"12/5/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":910,"Cost":459,"Date":"12/26/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":670,"Cost":381,"Date":"12/31/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":761,"Cost":619,"Date":"1/20/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":347,"Cost":306,"Date":"2/2/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":630,"Cost":351,"Date":"2/8/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":114,"Cost":96,"Date":"2/27/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":65,"Cost":39,"Date":"3/1/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":507,"Cost":268,"Date":"3/1/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":535,"Cost":437,"Date":"3/19/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":418,"Cost":307,"Date":"3/28/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":850,"Cost":613,"Date":"5/21/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":689,"Cost":423,"Date":"7/21/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":637,"Cost":537,"Date":"8/5/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":111,"Cost":61,"Date":"8/12/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":249,"Cost":175,"Date":"8/21/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":558,"Cost":286,"Date":"8/23/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":518,"Cost":421,"Date":"9/3/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":61,"Cost":58,"Date":"9/5/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":47,"Cost":28,"Date":"10/6/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":793,"Cost":524,"Date":"10/19/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":702,"Cost":496,"Date":"11/15/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":547,"Cost":370,"Date":"12/8/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":746,"Cost":558,"Date":"1/8/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":315,"Cost":243,"Date":"1/14/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":658,"Cost":473,"Date":"1/19/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":346,"Cost":314,"Date":"1/28/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":446,"Cost":275,"Date":"1/31/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":697,"Cost":361,"Date":"3/27/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":764,"Cost":627,"Date":"4/20/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":221,"Cost":145,"Date":"4/24/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":158,"Cost":90,"Date":"4/28/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":928,"Cost":824,"Date":"5/15/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":390,"Cost":309,"Date":"5/16/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":101,"Cost":70,"Date":"5/18/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":64,"Cost":55,"Date":"6/2/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":265,"Cost":182,"Date":"6/3/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":100,"Cost":76,"Date":"6/5/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":631,"Cost":518,"Date":"6/7/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":991,"Cost":849,"Date":"6/14/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":4,"Cost":3,"Date":"6/20/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":784,"Cost":502,"Date":"6/24/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":474,"Cost":315,"Date":"7/4/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":880,"Cost":700,"Date":"7/9/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":263,"Cost":140,"Date":"7/12/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":290,"Cost":210,"Date":"8/14/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":496,"Cost":461,"Date":"8/16/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":696,"Cost":367,"Date":"8/23/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":493,"Cost":429,"Date":"9/2/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":585,"Cost":416,"Date":"9/3/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":505,"Cost":268,"Date":"9/16/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":662,"Cost":564,"Date":"10/4/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":256,"Cost":225,"Date":"11/1/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":142,"Cost":118,"Date":"11/2/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":702,"Cost":387,"Date":"12/17/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":112,"Cost":98,"Date":"2/10/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":751,"Cost":478,"Date":"2/28/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":748,"Cost":642,"Date":"3/4/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":73,"Cost":64,"Date":"3/9/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":785,"Cost":604,"Date":"3/9/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":829,"Cost":547,"Date":"3/11/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":774,"Cost":697,"Date":"3/17/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":204,"Cost":137,"Date":"3/17/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":658,"Cost":519,"Date":"3/23/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":602,"Cost":388,"Date":"4/1/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":648,"Cost":388,"Date":"5/7/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":851,"Cost":487,"Date":"5/10/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":256,"Cost":224,"Date":"5/20/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":178,"Cost":96,"Date":"6/2/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":273,"Cost":162,"Date":"6/11/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":866,"Cost":571,"Date":"6/16/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":868,"Cost":519,"Date":"6/16/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":965,"Cost":852,"Date":"7/10/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":776,"Cost":665,"Date":"7/11/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":703,"Cost":667,"Date":"8/28/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":408,"Cost":246,"Date":"8/29/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":609,"Cost":537,"Date":"8/31/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":435,"Cost":376,"Date":"9/8/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":561,"Cost":284,"Date":"9/13/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":309,"Cost":195,"Date":"9/14/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":850,"Cost":652,"Date":"9/19/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":784,"Cost":572,"Date":"9/25/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":914,"Cost":466,"Date":"10/4/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":344,"Cost":265,"Date":"10/10/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":451,"Cost":299,"Date":"10/17/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":905,"Cost":843,"Date":"10/28/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":786,"Cost":665,"Date":"10/30/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":755,"Cost":630,"Date":"11/1/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":360,"Cost":229,"Date":"11/15/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":390,"Cost":285,"Date":"11/25/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":293,"Cost":238,"Date":"1/10/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":757,"Cost":402,"Date":"1/14/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":177,"Cost":114,"Date":"1/20/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":823,"Cost":711,"Date":"2/8/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":813,"Cost":536,"Date":"2/25/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":552,"Cost":349,"Date":"3/7/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":557,"Cost":358,"Date":"3/14/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":194,"Cost":168,"Date":"3/27/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":16,"Cost":15,"Date":"4/5/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":380,"Cost":347,"Date":"4/14/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":566,"Cost":501,"Date":"5/3/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":97,"Cost":93,"Date":"5/9/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":80,"Cost":43,"Date":"5/15/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":471,"Cost":370,"Date":"5/25/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":920,"Cost":726,"Date":"5/26/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":660,"Cost":505,"Date":"5/31/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":725,"Cost":403,"Date":"7/27/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":154,"Cost":87,"Date":"9/17/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":585,"Cost":390,"Date":"10/6/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":844,"Cost":513,"Date":"10/8/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":959,"Cost":538,"Date":"10/26/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":525,"Cost":402,"Date":"11/16/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":701,"Cost":528,"Date":"11/18/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"HM Home","Country":"Belgium","Sale":222,"Cost":137,"Date":"12/1/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":620,"Cost":443,"Date":"2/9/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":396,"Cost":317,"Date":"2/11/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":515,"Cost":460,"Date":"3/10/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":192,"Cost":118,"Date":"3/16/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":271,"Cost":157,"Date":"3/18/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":468,"Cost":254,"Date":"3/20/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":889,"Cost":832,"Date":"3/26/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":151,"Cost":113,"Date":"6/2/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":576,"Cost":394,"Date":"6/10/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":8,"Cost":4,"Date":"6/16/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":520,"Cost":424,"Date":"6/25/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":958,"Cost":576,"Date":"7/19/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":717,"Cost":667,"Date":"7/21/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":429,"Cost":361,"Date":"7/25/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":729,"Cost":436,"Date":"8/4/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":865,"Cost":543,"Date":"9/2/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":158,"Cost":128,"Date":"9/4/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":653,"Cost":407,"Date":"9/19/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":50,"Cost":40,"Date":"9/29/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":904,"Cost":663,"Date":"10/2/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":928,"Cost":577,"Date":"10/15/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":529,"Cost":301,"Date":"10/30/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":754,"Cost":647,"Date":"11/9/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":872,"Cost":815,"Date":"11/23/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":669,"Cost":478,"Date":"11/30/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":50,"Cost":32,"Date":"12/8/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":14,"Cost":11,"Date":"12/11/2018"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":860,"Cost":768,"Date":"1/15/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":733,"Cost":463,"Date":"1/24/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":469,"Cost":262,"Date":"2/3/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":691,"Cost":437,"Date":"2/4/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":613,"Cost":563,"Date":"3/9/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":72,"Cost":58,"Date":"3/12/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":399,"Cost":294,"Date":"4/19/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":937,"Cost":804,"Date":"5/3/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":676,"Cost":546,"Date":"5/4/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":664,"Cost":365,"Date":"6/8/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":229,"Cost":123,"Date":"6/26/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":632,"Cost":439,"Date":"7/4/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":80,"Cost":46,"Date":"7/13/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":336,"Cost":219,"Date":"8/8/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":659,"Cost":426,"Date":"8/26/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":876,"Cost":533,"Date":"9/2/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":280,"Cost":195,"Date":"9/29/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":768,"Cost":458,"Date":"10/12/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":485,"Cost":347,"Date":"11/2/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":174,"Cost":125,"Date":"11/4/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":741,"Cost":405,"Date":"11/7/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":946,"Cost":866,"Date":"12/1/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":961,"Cost":594,"Date":"12/4/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":553,"Cost":395,"Date":"12/7/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":719,"Cost":518,"Date":"12/18/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":541,"Cost":491,"Date":"12/20/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":860,"Cost":558,"Date":"12/20/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":515,"Cost":412,"Date":"12/21/2019"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":336,"Cost":230,"Date":"1/9/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":306,"Cost":290,"Date":"2/5/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":426,"Cost":397,"Date":"2/16/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":719,"Cost":648,"Date":"2/16/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":91,"Cost":76,"Date":"2/18/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":745,"Cost":423,"Date":"2/22/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":104,"Cost":67,"Date":"2/25/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":387,"Cost":295,"Date":"3/8/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":998,"Cost":939,"Date":"4/2/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":850,"Cost":709,"Date":"4/3/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":325,"Cost":253,"Date":"4/9/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":717,"Cost":401,"Date":"4/10/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":276,"Cost":223,"Date":"4/19/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":238,"Cost":132,"Date":"5/17/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":668,"Cost":623,"Date":"5/22/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":147,"Cost":117,"Date":"6/20/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":789,"Cost":509,"Date":"7/1/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":979,"Cost":678,"Date":"7/4/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":105,"Cost":62,"Date":"7/8/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":989,"Cost":766,"Date":"7/9/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":535,"Cost":292,"Date":"7/14/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":893,"Cost":592,"Date":"7/19/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":148,"Cost":104,"Date":"8/1/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":336,"Cost":209,"Date":"8/6/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":592,"Cost":403,"Date":"8/7/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":949,"Cost":769,"Date":"8/22/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":542,"Cost":274,"Date":"8/31/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":737,"Cost":508,"Date":"9/1/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":527,"Cost":459,"Date":"9/1/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":530,"Cost":268,"Date":"9/17/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":546,"Cost":435,"Date":"9/29/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":36,"Cost":18,"Date":"11/7/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":609,"Cost":311,"Date":"11/26/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":252,"Cost":156,"Date":"11/27/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":488,"Cost":357,"Date":"12/5/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":709,"Cost":557,"Date":"12/26/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":211,"Cost":199,"Date":"12/31/2020"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":132,"Cost":119,"Date":"1/20/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":114,"Cost":92,"Date":"2/2/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":563,"Cost":397,"Date":"2/8/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":758,"Cost":623,"Date":"2/27/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":193,"Cost":142,"Date":"3/1/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":727,"Cost":551,"Date":"3/1/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":461,"Cost":315,"Date":"3/19/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":149,"Cost":93,"Date":"3/28/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":647,"Cost":555,"Date":"5/21/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":942,"Cost":894,"Date":"7/21/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":10,"Cost":8,"Date":"8/5/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":266,"Cost":223,"Date":"8/12/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":57,"Cost":45,"Date":"8/21/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":589,"Cost":434,"Date":"8/23/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":901,"Cost":722,"Date":"9/3/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":399,"Cost":375,"Date":"9/5/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":191,"Cost":165,"Date":"10/6/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":214,"Cost":179,"Date":"10/19/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":252,"Cost":171,"Date":"11/15/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":63,"Cost":47,"Date":"12/8/2021"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":176,"Cost":131,"Date":"1/8/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":431,"Cost":328,"Date":"1/14/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":601,"Cost":489,"Date":"1/19/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":86,"Cost":56,"Date":"1/28/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":501,"Cost":431,"Date":"1/31/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":411,"Cost":315,"Date":"3/27/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":321,"Cost":215,"Date":"4/20/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":59,"Cost":49,"Date":"4/24/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":899,"Cost":797,"Date":"4/28/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":492,"Cost":298,"Date":"5/15/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":85,"Cost":64,"Date":"5/16/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":995,"Cost":667,"Date":"5/18/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":959,"Cost":643,"Date":"6/2/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":632,"Cost":487,"Date":"6/3/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":171,"Cost":132,"Date":"6/5/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":894,"Cost":629,"Date":"6/7/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":729,"Cost":669,"Date":"6/14/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":567,"Cost":398,"Date":"6/20/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":666,"Cost":399,"Date":"6/24/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":570,"Cost":356,"Date":"7/4/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":572,"Cost":451,"Date":"7/9/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":787,"Cost":467,"Date":"7/12/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":18,"Cost":17,"Date":"8/14/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":713,"Cost":471,"Date":"8/16/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":622,"Cost":512,"Date":"8/23/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":703,"Cost":559,"Date":"9/2/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":847,"Cost":671,"Date":"9/3/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":311,"Cost":290,"Date":"9/16/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":50,"Cost":33,"Date":"10/4/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":65,"Cost":40,"Date":"11/1/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":170,"Cost":121,"Date":"11/2/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":86,"Cost":48,"Date":"12/17/2022"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":97,"Cost":74,"Date":"2/10/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":62,"Cost":48,"Date":"2/28/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":201,"Cost":112,"Date":"3/4/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":10,"Cost":6,"Date":"3/9/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":812,"Cost":646,"Date":"3/9/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":362,"Cost":218,"Date":"3/11/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":118,"Cost":84,"Date":"3/17/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":726,"Cost":590,"Date":"3/17/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":634,"Cost":438,"Date":"3/23/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":965,"Cost":492,"Date":"4/1/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":634,"Cost":363,"Date":"5/7/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":436,"Cost":240,"Date":"5/10/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":762,"Cost":465,"Date":"5/20/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":143,"Cost":78,"Date":"6/2/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":328,"Cost":179,"Date":"6/11/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":457,"Cost":390,"Date":"6/16/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":823,"Cost":595,"Date":"6/16/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":340,"Cost":317,"Date":"7/10/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":375,"Cost":331,"Date":"7/11/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":903,"Cost":564,"Date":"8/28/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":327,"Cost":166,"Date":"8/29/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":746,"Cost":488,"Date":"8/31/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":733,"Cost":564,"Date":"9/8/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":805,"Cost":435,"Date":"9/13/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":59,"Cost":47,"Date":"9/14/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":736,"Cost":536,"Date":"9/19/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":1000,"Cost":797,"Date":"9/25/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":273,"Cost":240,"Date":"10/4/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":349,"Cost":215,"Date":"10/10/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":958,"Cost":607,"Date":"10/17/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":176,"Cost":106,"Date":"10/28/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":819,"Cost":638,"Date":"10/30/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":789,"Cost":512,"Date":"11/1/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":883,"Cost":718,"Date":"11/15/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":606,"Cost":461,"Date":"11/25/2023"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":644,"Cost":371,"Date":"1/10/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":198,"Cost":173,"Date":"1/14/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":559,"Cost":385,"Date":"1/20/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":469,"Cost":321,"Date":"2/8/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":93,"Cost":66,"Date":"2/25/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":975,"Cost":618,"Date":"3/7/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":30,"Cost":23,"Date":"3/14/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":419,"Cost":281,"Date":"3/27/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":626,"Cost":406,"Date":"4/5/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":410,"Cost":272,"Date":"4/14/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":710,"Cost":663,"Date":"5/3/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":259,"Cost":203,"Date":"5/9/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":687,"Cost":568,"Date":"5/15/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":283,"Cost":242,"Date":"5/25/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":135,"Cost":108,"Date":"5/26/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":191,"Cost":134,"Date":"5/31/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":836,"Cost":452,"Date":"7/27/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":466,"Cost":292,"Date":"9/17/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":590,"Cost":495,"Date":"10/6/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":555,"Cost":513,"Date":"10/8/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":740,"Cost":540,"Date":"10/26/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":160,"Cost":120,"Date":"11/16/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":144,"Cost":88,"Date":"11/18/2024"},{"Store":"Les Galeries Saint-Lambert, Liège","Brand":"COS","Country":"Belgium","Sale":130,"Cost":71,"Date":"12/1/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":6,"Cost":6,"Date":"2/9/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":805,"Cost":527,"Date":"2/11/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":779,"Cost":695,"Date":"3/10/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":406,"Cost":302,"Date":"3/16/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":809,"Cost":439,"Date":"3/18/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":430,"Cost":216,"Date":"3/20/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":640,"Cost":331,"Date":"3/26/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":47,"Cost":37,"Date":"6/2/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":242,"Cost":146,"Date":"6/10/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":204,"Cost":169,"Date":"6/16/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":372,"Cost":190,"Date":"6/25/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":606,"Cost":334,"Date":"7/19/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":41,"Cost":28,"Date":"7/21/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":537,"Cost":408,"Date":"7/25/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":270,"Cost":154,"Date":"8/4/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":940,"Cost":893,"Date":"9/2/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":218,"Cost":175,"Date":"9/4/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":757,"Cost":612,"Date":"9/19/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":618,"Cost":313,"Date":"9/29/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":867,"Cost":502,"Date":"10/2/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":222,"Cost":173,"Date":"10/15/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":592,"Cost":375,"Date":"10/30/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":469,"Cost":401,"Date":"11/9/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":757,"Cost":393,"Date":"11/23/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":496,"Cost":309,"Date":"11/30/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":387,"Cost":348,"Date":"12/8/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":473,"Cost":309,"Date":"12/11/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":99,"Cost":90,"Date":"1/15/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":707,"Cost":438,"Date":"1/24/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":523,"Cost":468,"Date":"2/3/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":764,"Cost":510,"Date":"2/4/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":819,"Cost":757,"Date":"3/9/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":230,"Cost":176,"Date":"3/12/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":526,"Cost":431,"Date":"4/19/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":47,"Cost":37,"Date":"5/3/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":307,"Cost":193,"Date":"5/4/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":866,"Cost":779,"Date":"6/8/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":712,"Cost":662,"Date":"6/26/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":174,"Cost":91,"Date":"7/4/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":648,"Cost":575,"Date":"7/13/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":69,"Cost":61,"Date":"8/8/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":339,"Cost":297,"Date":"8/26/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":828,"Cost":506,"Date":"9/2/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":157,"Cost":149,"Date":"9/29/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":308,"Cost":190,"Date":"10/12/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":38,"Cost":30,"Date":"11/2/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":947,"Cost":814,"Date":"11/4/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":723,"Cost":363,"Date":"11/7/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":824,"Cost":782,"Date":"12/1/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":817,"Cost":557,"Date":"12/4/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":734,"Cost":528,"Date":"12/7/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":104,"Cost":99,"Date":"12/18/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":855,"Cost":722,"Date":"12/20/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":235,"Cost":135,"Date":"12/20/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":853,"Cost":773,"Date":"12/21/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":896,"Cost":713,"Date":"1/9/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":985,"Cost":600,"Date":"2/5/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":98,"Cost":77,"Date":"2/16/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":234,"Cost":189,"Date":"2/16/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":686,"Cost":469,"Date":"2/18/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":669,"Cost":500,"Date":"2/22/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":796,"Cost":718,"Date":"2/25/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":198,"Cost":120,"Date":"3/8/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":308,"Cost":180,"Date":"4/2/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":961,"Cost":819,"Date":"4/3/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":109,"Cost":77,"Date":"4/9/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":27,"Cost":21,"Date":"4/10/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":68,"Cost":50,"Date":"4/19/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":527,"Cost":408,"Date":"5/17/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":714,"Cost":543,"Date":"5/22/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":143,"Cost":117,"Date":"6/20/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":185,"Cost":115,"Date":"7/1/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":801,"Cost":542,"Date":"7/4/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":996,"Cost":775,"Date":"7/8/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":446,"Cost":301,"Date":"7/9/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":244,"Cost":172,"Date":"7/14/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":892,"Cost":589,"Date":"7/19/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":999,"Cost":615,"Date":"8/1/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":796,"Cost":589,"Date":"8/6/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":684,"Cost":431,"Date":"8/7/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":286,"Cost":193,"Date":"8/22/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":154,"Cost":77,"Date":"8/31/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":449,"Cost":257,"Date":"9/1/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":453,"Cost":301,"Date":"9/1/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":885,"Cost":450,"Date":"9/17/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":264,"Cost":250,"Date":"9/29/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":288,"Cost":272,"Date":"11/7/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":58,"Cost":46,"Date":"11/26/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":592,"Cost":523,"Date":"11/27/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":721,"Cost":481,"Date":"12/5/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":378,"Cost":315,"Date":"12/26/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":579,"Cost":369,"Date":"12/31/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":84,"Cost":46,"Date":"1/20/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":651,"Cost":489,"Date":"2/2/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":379,"Cost":287,"Date":"2/8/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":976,"Cost":831,"Date":"2/27/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":633,"Cost":349,"Date":"3/1/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":791,"Cost":436,"Date":"3/1/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":369,"Cost":267,"Date":"3/19/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":5,"Cost":5,"Date":"3/28/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":325,"Cost":292,"Date":"5/21/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":592,"Cost":385,"Date":"7/21/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":440,"Cost":382,"Date":"8/5/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":640,"Cost":503,"Date":"8/12/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":639,"Cost":392,"Date":"8/21/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":916,"Cost":739,"Date":"8/23/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":761,"Cost":395,"Date":"9/3/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":599,"Cost":547,"Date":"9/5/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":225,"Cost":131,"Date":"10/6/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":908,"Cost":853,"Date":"10/19/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":240,"Cost":185,"Date":"11/15/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":109,"Cost":93,"Date":"12/8/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":771,"Cost":727,"Date":"1/8/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":323,"Cost":201,"Date":"1/14/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":560,"Cost":473,"Date":"1/19/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":234,"Cost":175,"Date":"1/28/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":631,"Cost":361,"Date":"1/31/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":807,"Cost":502,"Date":"3/27/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":769,"Cost":571,"Date":"4/20/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":694,"Cost":521,"Date":"4/24/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":62,"Cost":36,"Date":"4/28/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":696,"Cost":384,"Date":"5/15/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":956,"Cost":869,"Date":"5/16/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":945,"Cost":867,"Date":"5/18/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":962,"Cost":529,"Date":"6/2/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":967,"Cost":810,"Date":"6/3/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":422,"Cost":235,"Date":"6/5/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":430,"Cost":404,"Date":"6/7/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":969,"Cost":781,"Date":"6/14/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":297,"Cost":232,"Date":"6/20/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":871,"Cost":747,"Date":"6/24/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":87,"Cost":73,"Date":"7/4/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":353,"Cost":269,"Date":"7/9/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":947,"Cost":843,"Date":"7/12/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":848,"Cost":443,"Date":"8/14/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":926,"Cost":561,"Date":"8/16/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":64,"Cost":55,"Date":"8/23/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":211,"Cost":167,"Date":"9/2/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":373,"Cost":348,"Date":"9/3/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":312,"Cost":280,"Date":"9/16/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":3,"Cost":2,"Date":"10/4/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":514,"Cost":269,"Date":"11/1/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":73,"Cost":44,"Date":"11/2/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":189,"Cost":143,"Date":"12/17/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":791,"Cost":748,"Date":"2/10/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":343,"Cost":216,"Date":"2/28/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":409,"Cost":281,"Date":"3/4/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":838,"Cost":587,"Date":"3/9/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":15,"Cost":10,"Date":"3/9/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":651,"Cost":501,"Date":"3/11/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":324,"Cost":249,"Date":"3/17/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":384,"Cost":326,"Date":"3/17/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":88,"Cost":58,"Date":"3/23/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":383,"Cost":346,"Date":"4/1/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":242,"Cost":173,"Date":"5/7/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":845,"Cost":570,"Date":"5/10/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":166,"Cost":109,"Date":"5/20/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":694,"Cost":562,"Date":"6/2/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":534,"Cost":388,"Date":"6/11/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":692,"Cost":395,"Date":"6/16/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":572,"Cost":463,"Date":"6/16/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":154,"Cost":125,"Date":"7/10/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":876,"Cost":735,"Date":"7/11/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":124,"Cost":65,"Date":"8/28/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":323,"Cost":197,"Date":"8/29/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":845,"Cost":774,"Date":"8/31/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":885,"Cost":469,"Date":"9/8/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":133,"Cost":126,"Date":"9/13/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":984,"Cost":498,"Date":"9/14/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":793,"Cost":528,"Date":"9/19/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":328,"Cost":220,"Date":"9/25/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":293,"Cost":166,"Date":"10/4/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":855,"Cost":637,"Date":"10/10/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":5,"Cost":2,"Date":"10/17/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":384,"Cost":345,"Date":"10/28/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":861,"Cost":515,"Date":"10/30/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":522,"Cost":316,"Date":"11/1/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":729,"Cost":561,"Date":"11/15/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":925,"Cost":797,"Date":"11/25/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":904,"Cost":493,"Date":"1/10/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":241,"Cost":172,"Date":"1/14/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":582,"Cost":414,"Date":"1/20/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":412,"Cost":275,"Date":"2/8/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":652,"Cost":436,"Date":"2/25/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":194,"Cost":169,"Date":"3/7/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":516,"Cost":462,"Date":"3/14/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":349,"Cost":225,"Date":"3/27/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":585,"Cost":302,"Date":"4/5/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":960,"Cost":828,"Date":"4/14/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":227,"Cost":183,"Date":"5/3/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":173,"Cost":162,"Date":"5/9/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":884,"Cost":735,"Date":"5/15/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":481,"Cost":343,"Date":"5/25/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":584,"Cost":552,"Date":"5/26/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":790,"Cost":608,"Date":"5/31/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":565,"Cost":301,"Date":"7/27/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":823,"Cost":755,"Date":"9/17/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":621,"Cost":585,"Date":"10/6/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":402,"Cost":277,"Date":"10/8/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":287,"Cost":235,"Date":"10/26/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":989,"Cost":553,"Date":"11/16/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":152,"Cost":112,"Date":"11/18/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"HM","Country":"Belgium","Sale":285,"Cost":145,"Date":"12/1/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":827,"Cost":623,"Date":"2/9/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":875,"Cost":573,"Date":"2/11/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":146,"Cost":132,"Date":"3/10/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":908,"Cost":779,"Date":"3/16/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":558,"Cost":357,"Date":"3/18/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":572,"Cost":340,"Date":"3/20/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":348,"Cost":178,"Date":"3/26/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":586,"Cost":437,"Date":"6/2/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":700,"Cost":567,"Date":"6/10/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":491,"Cost":290,"Date":"6/16/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":844,"Cost":707,"Date":"6/25/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":595,"Cost":494,"Date":"7/19/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":984,"Cost":729,"Date":"7/21/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":868,"Cost":488,"Date":"7/25/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":972,"Cost":566,"Date":"8/4/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":52,"Cost":30,"Date":"9/2/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":885,"Cost":473,"Date":"9/4/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":717,"Cost":512,"Date":"9/19/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":300,"Cost":259,"Date":"9/29/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":157,"Cost":87,"Date":"10/2/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":200,"Cost":156,"Date":"10/15/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":329,"Cost":290,"Date":"10/30/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":987,"Cost":671,"Date":"11/9/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":131,"Cost":109,"Date":"11/23/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":862,"Cost":735,"Date":"11/30/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":487,"Cost":299,"Date":"12/8/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":784,"Cost":473,"Date":"12/11/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":596,"Cost":531,"Date":"1/15/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":504,"Cost":404,"Date":"1/24/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":885,"Cost":818,"Date":"2/3/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":248,"Cost":126,"Date":"2/4/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":694,"Cost":487,"Date":"3/9/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":191,"Cost":166,"Date":"3/12/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":651,"Cost":344,"Date":"4/19/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":477,"Cost":429,"Date":"5/3/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":998,"Cost":885,"Date":"5/4/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":393,"Cost":323,"Date":"6/8/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":347,"Cost":269,"Date":"6/26/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":85,"Cost":68,"Date":"7/4/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":136,"Cost":108,"Date":"7/13/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":804,"Cost":502,"Date":"8/8/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":236,"Cost":169,"Date":"8/26/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":909,"Cost":812,"Date":"9/2/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":785,"Cost":676,"Date":"9/29/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":99,"Cost":50,"Date":"10/12/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":316,"Cost":209,"Date":"11/2/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":109,"Cost":79,"Date":"11/4/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":556,"Cost":453,"Date":"11/7/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":266,"Cost":199,"Date":"12/1/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":800,"Cost":626,"Date":"12/4/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":71,"Cost":62,"Date":"12/7/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":563,"Cost":336,"Date":"12/18/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":86,"Cost":77,"Date":"12/20/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":726,"Cost":619,"Date":"12/20/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":457,"Cost":377,"Date":"12/21/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":931,"Cost":754,"Date":"1/9/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":190,"Cost":175,"Date":"2/5/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":771,"Cost":675,"Date":"2/16/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":302,"Cost":182,"Date":"2/16/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":444,"Cost":394,"Date":"2/18/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":297,"Cost":230,"Date":"2/22/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":144,"Cost":77,"Date":"2/25/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":960,"Cost":782,"Date":"3/8/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":985,"Cost":642,"Date":"4/2/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":625,"Cost":594,"Date":"4/3/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":781,"Cost":651,"Date":"4/9/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":552,"Cost":326,"Date":"4/10/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":939,"Cost":620,"Date":"4/19/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":462,"Cost":385,"Date":"5/17/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":304,"Cost":204,"Date":"5/22/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":110,"Cost":67,"Date":"6/20/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":323,"Cost":299,"Date":"7/1/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":750,"Cost":551,"Date":"7/4/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":410,"Cost":338,"Date":"7/8/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":656,"Cost":599,"Date":"7/9/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":547,"Cost":404,"Date":"7/14/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":201,"Cost":147,"Date":"7/19/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":476,"Cost":304,"Date":"8/1/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":197,"Cost":158,"Date":"8/6/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":428,"Cost":341,"Date":"8/7/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":543,"Cost":441,"Date":"8/22/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":452,"Cost":395,"Date":"8/31/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":592,"Cost":378,"Date":"9/1/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":191,"Cost":111,"Date":"9/1/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":714,"Cost":448,"Date":"9/17/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":874,"Cost":822,"Date":"9/29/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":939,"Cost":547,"Date":"11/7/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":73,"Cost":62,"Date":"11/26/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":103,"Cost":89,"Date":"11/27/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":696,"Cost":430,"Date":"12/5/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":477,"Cost":365,"Date":"12/26/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":233,"Cost":140,"Date":"12/31/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":683,"Cost":507,"Date":"1/20/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":919,"Cost":556,"Date":"2/2/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":999,"Cost":924,"Date":"2/8/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":718,"Cost":518,"Date":"2/27/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":988,"Cost":630,"Date":"3/1/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":28,"Cost":21,"Date":"3/1/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":78,"Cost":60,"Date":"3/19/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":439,"Cost":315,"Date":"3/28/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":836,"Cost":760,"Date":"5/21/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":344,"Cost":199,"Date":"7/21/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":612,"Cost":426,"Date":"8/5/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":648,"Cost":498,"Date":"8/12/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":651,"Cost":393,"Date":"8/21/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":307,"Cost":256,"Date":"8/23/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":287,"Cost":165,"Date":"9/3/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":435,"Cost":286,"Date":"9/5/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":513,"Cost":441,"Date":"10/6/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":9,"Cost":5,"Date":"10/19/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":236,"Cost":159,"Date":"11/15/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":368,"Cost":187,"Date":"12/8/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":836,"Cost":492,"Date":"1/8/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":459,"Cost":238,"Date":"1/14/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":551,"Cost":437,"Date":"1/19/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":873,"Cost":450,"Date":"1/28/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":340,"Cost":256,"Date":"1/31/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":477,"Cost":285,"Date":"3/27/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":321,"Cost":181,"Date":"4/20/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":69,"Cost":52,"Date":"4/24/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":81,"Cost":73,"Date":"4/28/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":210,"Cost":187,"Date":"5/15/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":345,"Cost":292,"Date":"5/16/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":641,"Cost":364,"Date":"5/18/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":17,"Cost":15,"Date":"6/2/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":595,"Cost":494,"Date":"6/3/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":822,"Cost":508,"Date":"6/5/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":250,"Cost":205,"Date":"6/7/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":495,"Cost":454,"Date":"6/14/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":412,"Cost":359,"Date":"6/20/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":680,"Cost":638,"Date":"6/24/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":362,"Cost":298,"Date":"7/4/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":323,"Cost":263,"Date":"7/9/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":787,"Cost":563,"Date":"7/12/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":412,"Cost":281,"Date":"8/14/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":925,"Cost":729,"Date":"8/16/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":617,"Cost":308,"Date":"8/23/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":724,"Cost":596,"Date":"9/2/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":887,"Cost":454,"Date":"9/3/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":652,"Cost":499,"Date":"9/16/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":562,"Cost":391,"Date":"10/4/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":96,"Cost":75,"Date":"11/1/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":465,"Cost":288,"Date":"11/2/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":837,"Cost":648,"Date":"12/17/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":32,"Cost":27,"Date":"2/10/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":996,"Cost":505,"Date":"2/28/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":523,"Cost":399,"Date":"3/4/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":842,"Cost":782,"Date":"3/9/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":463,"Cost":366,"Date":"3/9/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":411,"Cost":375,"Date":"3/11/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":94,"Cost":80,"Date":"3/17/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":348,"Cost":227,"Date":"3/17/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":152,"Cost":87,"Date":"3/23/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":174,"Cost":120,"Date":"4/1/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":467,"Cost":388,"Date":"5/7/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":80,"Cost":57,"Date":"5/10/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":870,"Cost":682,"Date":"5/20/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":757,"Cost":619,"Date":"6/2/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":964,"Cost":545,"Date":"6/11/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":379,"Cost":193,"Date":"6/16/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":588,"Cost":323,"Date":"6/16/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":774,"Cost":537,"Date":"7/10/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":527,"Cost":346,"Date":"7/11/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":715,"Cost":506,"Date":"8/28/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":699,"Cost":562,"Date":"8/29/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":87,"Cost":59,"Date":"8/31/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":402,"Cost":347,"Date":"9/8/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":469,"Cost":348,"Date":"9/13/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":816,"Cost":554,"Date":"9/14/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":265,"Cost":133,"Date":"9/19/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":330,"Cost":223,"Date":"9/25/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":6,"Cost":5,"Date":"10/4/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":160,"Cost":118,"Date":"10/10/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":238,"Cost":191,"Date":"10/17/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":471,"Cost":368,"Date":"10/28/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":263,"Cost":159,"Date":"10/30/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":642,"Cost":358,"Date":"11/1/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":501,"Cost":363,"Date":"11/15/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":545,"Cost":472,"Date":"11/25/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":855,"Cost":428,"Date":"1/10/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":910,"Cost":674,"Date":"1/14/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":128,"Cost":119,"Date":"1/20/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":71,"Cost":42,"Date":"2/8/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":765,"Cost":609,"Date":"2/25/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":210,"Cost":111,"Date":"3/7/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":88,"Cost":67,"Date":"3/14/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":197,"Cost":181,"Date":"3/27/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":443,"Cost":322,"Date":"4/5/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":429,"Cost":289,"Date":"4/14/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":554,"Cost":489,"Date":"5/3/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":526,"Cost":329,"Date":"5/9/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":474,"Cost":264,"Date":"5/15/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":318,"Cost":276,"Date":"5/25/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":921,"Cost":535,"Date":"5/26/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":132,"Cost":73,"Date":"5/31/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":105,"Cost":67,"Date":"7/27/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":961,"Cost":529,"Date":"9/17/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":774,"Cost":411,"Date":"10/6/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":459,"Cost":312,"Date":"10/8/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":248,"Cost":163,"Date":"10/26/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":483,"Cost":440,"Date":"11/16/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":709,"Cost":531,"Date":"11/18/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"Jeans","Country":"Belgium","Sale":991,"Cost":666,"Date":"12/1/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":231,"Cost":139,"Date":"2/9/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":528,"Cost":442,"Date":"2/11/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":384,"Cost":210,"Date":"3/10/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":105,"Cost":87,"Date":"3/16/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":84,"Cost":56,"Date":"3/18/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":180,"Cost":140,"Date":"3/20/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":153,"Cost":127,"Date":"3/26/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":439,"Cost":331,"Date":"6/2/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":394,"Cost":222,"Date":"6/10/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":463,"Cost":308,"Date":"6/16/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":640,"Cost":377,"Date":"6/25/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":387,"Cost":209,"Date":"7/19/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":602,"Cost":506,"Date":"7/21/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":868,"Cost":699,"Date":"7/25/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":56,"Cost":49,"Date":"8/4/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":737,"Cost":375,"Date":"9/2/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":98,"Cost":77,"Date":"9/4/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":660,"Cost":560,"Date":"9/19/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":397,"Cost":325,"Date":"9/29/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":51,"Cost":46,"Date":"10/2/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":589,"Cost":416,"Date":"10/15/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":548,"Cost":432,"Date":"10/30/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":584,"Cost":546,"Date":"11/9/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":728,"Cost":460,"Date":"11/23/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":588,"Cost":441,"Date":"11/30/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":456,"Cost":401,"Date":"12/8/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":406,"Cost":237,"Date":"12/11/2018"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":645,"Cost":363,"Date":"1/15/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":184,"Cost":139,"Date":"1/24/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":374,"Cost":277,"Date":"2/3/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":353,"Cost":330,"Date":"2/4/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":451,"Cost":264,"Date":"3/9/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":604,"Cost":331,"Date":"3/12/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":737,"Cost":527,"Date":"4/19/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":703,"Cost":536,"Date":"5/3/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":39,"Cost":27,"Date":"5/4/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":261,"Cost":155,"Date":"6/8/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":537,"Cost":390,"Date":"6/26/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":212,"Cost":164,"Date":"7/4/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":943,"Cost":876,"Date":"7/13/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":150,"Cost":116,"Date":"8/8/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":457,"Cost":398,"Date":"8/26/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":189,"Cost":112,"Date":"9/2/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":429,"Cost":318,"Date":"9/29/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":872,"Cost":560,"Date":"10/12/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":312,"Cost":162,"Date":"11/2/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":655,"Cost":452,"Date":"11/4/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":574,"Cost":513,"Date":"11/7/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":122,"Cost":111,"Date":"12/1/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":267,"Cost":165,"Date":"12/4/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":669,"Cost":478,"Date":"12/7/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":401,"Cost":271,"Date":"12/18/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":798,"Cost":399,"Date":"12/20/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":996,"Cost":914,"Date":"12/20/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":445,"Cost":336,"Date":"12/21/2019"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":288,"Cost":268,"Date":"1/9/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":617,"Cost":550,"Date":"2/5/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":54,"Cost":42,"Date":"2/16/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":157,"Cost":83,"Date":"2/16/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":277,"Cost":179,"Date":"2/18/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":141,"Cost":85,"Date":"2/22/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":976,"Cost":711,"Date":"2/25/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":444,"Cost":379,"Date":"3/8/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":302,"Cost":269,"Date":"4/2/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":923,"Cost":869,"Date":"4/3/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":143,"Cost":90,"Date":"4/9/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":39,"Cost":23,"Date":"4/10/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":265,"Cost":239,"Date":"4/19/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":326,"Cost":211,"Date":"5/17/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":295,"Cost":229,"Date":"5/22/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":372,"Cost":236,"Date":"6/20/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":370,"Cost":285,"Date":"7/1/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":803,"Cost":695,"Date":"7/4/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":610,"Cost":404,"Date":"7/8/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":426,"Cost":340,"Date":"7/9/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":357,"Cost":249,"Date":"7/14/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":880,"Cost":763,"Date":"7/19/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":475,"Cost":423,"Date":"8/1/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":556,"Cost":376,"Date":"8/6/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":183,"Cost":142,"Date":"8/7/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":575,"Cost":533,"Date":"8/22/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":828,"Cost":537,"Date":"8/31/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":507,"Cost":299,"Date":"9/1/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":49,"Cost":35,"Date":"9/1/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":859,"Cost":516,"Date":"9/17/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":918,"Cost":488,"Date":"9/29/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":830,"Cost":743,"Date":"11/7/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":801,"Cost":583,"Date":"11/26/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":611,"Cost":417,"Date":"11/27/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":97,"Cost":76,"Date":"12/5/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":884,"Cost":744,"Date":"12/26/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":959,"Cost":901,"Date":"12/31/2020"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":992,"Cost":801,"Date":"1/20/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":240,"Cost":173,"Date":"2/2/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":22,"Cost":12,"Date":"2/8/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":119,"Cost":65,"Date":"2/27/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":735,"Cost":501,"Date":"3/1/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":912,"Cost":857,"Date":"3/1/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":34,"Cost":32,"Date":"3/19/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":682,"Cost":426,"Date":"3/28/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":672,"Cost":512,"Date":"5/21/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":312,"Cost":177,"Date":"7/21/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":731,"Cost":627,"Date":"8/5/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":374,"Cost":250,"Date":"8/12/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":30,"Cost":28,"Date":"8/21/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":495,"Cost":368,"Date":"8/23/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":5,"Cost":5,"Date":"9/3/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":689,"Cost":562,"Date":"9/5/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":810,"Cost":595,"Date":"10/6/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":771,"Cost":593,"Date":"10/19/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":947,"Cost":839,"Date":"11/15/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":212,"Cost":166,"Date":"12/8/2021"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":207,"Cost":171,"Date":"1/8/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":357,"Cost":317,"Date":"1/14/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":620,"Cost":354,"Date":"1/19/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":883,"Cost":538,"Date":"1/28/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":968,"Cost":708,"Date":"1/31/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":307,"Cost":235,"Date":"3/27/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":455,"Cost":320,"Date":"4/20/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":423,"Cost":266,"Date":"4/24/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":84,"Cost":57,"Date":"4/28/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":241,"Cost":140,"Date":"5/15/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":797,"Cost":721,"Date":"5/16/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":259,"Cost":200,"Date":"5/18/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":720,"Cost":576,"Date":"6/2/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":836,"Cost":521,"Date":"6/3/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":492,"Cost":380,"Date":"6/5/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":388,"Cost":254,"Date":"6/7/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":423,"Cost":327,"Date":"6/14/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":695,"Cost":623,"Date":"6/20/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":152,"Cost":117,"Date":"6/24/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":164,"Cost":93,"Date":"7/4/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":349,"Cost":202,"Date":"7/9/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":579,"Cost":325,"Date":"7/12/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":393,"Cost":236,"Date":"8/14/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":544,"Cost":363,"Date":"8/16/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":652,"Cost":383,"Date":"8/23/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":87,"Cost":46,"Date":"9/2/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":282,"Cost":248,"Date":"9/3/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":69,"Cost":47,"Date":"9/16/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":618,"Cost":486,"Date":"10/4/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":137,"Cost":94,"Date":"11/1/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":229,"Cost":140,"Date":"11/2/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":842,"Cost":649,"Date":"12/17/2022"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":128,"Cost":107,"Date":"2/10/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":26,"Cost":24,"Date":"2/28/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":238,"Cost":164,"Date":"3/4/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":864,"Cost":522,"Date":"3/9/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":323,"Cost":261,"Date":"3/9/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":656,"Cost":407,"Date":"3/11/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":206,"Cost":190,"Date":"3/17/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":201,"Cost":101,"Date":"3/17/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":907,"Cost":715,"Date":"3/23/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":212,"Cost":142,"Date":"4/1/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":497,"Cost":463,"Date":"5/7/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":507,"Cost":275,"Date":"5/10/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":271,"Cost":212,"Date":"5/20/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":531,"Cost":310,"Date":"6/2/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":440,"Cost":248,"Date":"6/11/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":906,"Cost":759,"Date":"6/16/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":67,"Cost":39,"Date":"6/16/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":133,"Cost":104,"Date":"7/10/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":739,"Cost":406,"Date":"7/11/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":407,"Cost":376,"Date":"8/28/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":341,"Cost":267,"Date":"8/29/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":107,"Cost":76,"Date":"8/31/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":372,"Cost":195,"Date":"9/8/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":167,"Cost":112,"Date":"9/13/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":811,"Cost":694,"Date":"9/14/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":979,"Cost":832,"Date":"9/19/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":607,"Cost":527,"Date":"9/25/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":428,"Cost":341,"Date":"10/4/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":62,"Cost":34,"Date":"10/10/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":449,"Cost":235,"Date":"10/17/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":840,"Cost":706,"Date":"10/28/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":93,"Cost":88,"Date":"10/30/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":814,"Cost":420,"Date":"11/1/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":692,"Cost":363,"Date":"11/15/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":716,"Cost":380,"Date":"11/25/2023"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":475,"Cost":374,"Date":"1/10/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":628,"Cost":517,"Date":"1/14/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":321,"Cost":281,"Date":"1/20/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":65,"Cost":33,"Date":"2/8/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":293,"Cost":225,"Date":"2/25/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":590,"Cost":431,"Date":"3/7/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":814,"Cost":729,"Date":"3/14/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":687,"Cost":411,"Date":"3/27/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":467,"Cost":335,"Date":"4/5/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":186,"Cost":99,"Date":"4/14/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":546,"Cost":487,"Date":"5/3/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":220,"Cost":113,"Date":"5/9/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":531,"Cost":331,"Date":"5/15/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":522,"Cost":475,"Date":"5/25/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":337,"Cost":242,"Date":"5/26/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":34,"Cost":26,"Date":"5/31/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":449,"Cost":337,"Date":"7/27/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":740,"Cost":629,"Date":"9/17/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":569,"Cost":327,"Date":"10/6/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":125,"Cost":62,"Date":"10/8/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":220,"Cost":147,"Date":"10/26/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":462,"Cost":353,"Date":"11/16/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":639,"Cost":423,"Date":"11/18/2024"},{"Store":"Basilix Shopping Center, Liège","Brand":"COS","Country":"Belgium","Sale":56,"Cost":30,"Date":"12/1/2024"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":678,"Cost":493,"Date":"2/9/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":151,"Cost":113,"Date":"2/11/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":198,"Cost":104,"Date":"3/10/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":894,"Cost":677,"Date":"3/16/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":377,"Cost":212,"Date":"3/18/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":281,"Cost":202,"Date":"3/20/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":191,"Cost":146,"Date":"3/26/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":32,"Cost":21,"Date":"6/2/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":551,"Cost":409,"Date":"6/10/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":297,"Cost":166,"Date":"6/16/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":929,"Cost":730,"Date":"6/25/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":793,"Cost":425,"Date":"7/19/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":303,"Cost":168,"Date":"7/21/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":496,"Cost":339,"Date":"7/25/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":952,"Cost":768,"Date":"8/4/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":790,"Cost":539,"Date":"9/2/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":754,"Cost":382,"Date":"9/4/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":989,"Cost":878,"Date":"9/19/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":306,"Cost":265,"Date":"9/29/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":268,"Cost":194,"Date":"10/2/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":631,"Cost":350,"Date":"10/15/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":22,"Cost":17,"Date":"10/30/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":93,"Cost":52,"Date":"11/9/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":788,"Cost":531,"Date":"11/23/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":2,"Cost":1,"Date":"11/30/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":110,"Cost":104,"Date":"12/8/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":850,"Cost":591,"Date":"12/11/2018"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":912,"Cost":735,"Date":"1/15/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":983,"Cost":526,"Date":"1/24/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":343,"Cost":252,"Date":"2/3/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":865,"Cost":612,"Date":"2/4/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":148,"Cost":78,"Date":"3/9/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":220,"Cost":192,"Date":"3/12/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":266,"Cost":171,"Date":"4/19/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":113,"Cost":61,"Date":"5/3/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":17,"Cost":16,"Date":"5/4/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":204,"Cost":128,"Date":"6/8/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":595,"Cost":354,"Date":"6/26/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":173,"Cost":114,"Date":"7/4/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":784,"Cost":733,"Date":"7/13/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":243,"Cost":181,"Date":"8/8/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":346,"Cost":251,"Date":"8/26/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":898,"Cost":747,"Date":"9/2/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":757,"Cost":433,"Date":"9/29/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":523,"Cost":293,"Date":"10/12/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":305,"Cost":238,"Date":"11/2/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":487,"Cost":371,"Date":"11/4/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":448,"Cost":271,"Date":"11/7/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":457,"Cost":422,"Date":"12/1/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":351,"Cost":205,"Date":"12/4/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":860,"Cost":588,"Date":"12/7/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":199,"Cost":185,"Date":"12/18/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":610,"Cost":395,"Date":"12/20/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":581,"Cost":414,"Date":"12/20/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":216,"Cost":203,"Date":"12/21/2019"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":105,"Cost":62,"Date":"1/9/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":776,"Cost":615,"Date":"2/5/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":342,"Cost":209,"Date":"2/16/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":681,"Cost":632,"Date":"2/16/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":882,"Cost":638,"Date":"2/18/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":193,"Cost":161,"Date":"2/22/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":70,"Cost":56,"Date":"2/25/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":722,"Cost":505,"Date":"3/8/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":759,"Cost":422,"Date":"4/2/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":769,"Cost":612,"Date":"4/3/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":787,"Cost":410,"Date":"4/9/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":478,"Cost":295,"Date":"4/10/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":422,"Cost":340,"Date":"4/19/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":291,"Cost":208,"Date":"5/17/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":688,"Cost":396,"Date":"5/22/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":444,"Cost":354,"Date":"6/20/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":879,"Cost":643,"Date":"7/1/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":971,"Cost":589,"Date":"7/4/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":308,"Cost":293,"Date":"7/8/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":636,"Cost":427,"Date":"7/9/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":287,"Cost":267,"Date":"7/14/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":894,"Cost":607,"Date":"7/19/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":911,"Cost":493,"Date":"8/1/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":296,"Cost":157,"Date":"8/6/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":448,"Cost":396,"Date":"8/7/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":863,"Cost":571,"Date":"8/22/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":460,"Cost":360,"Date":"8/31/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":529,"Cost":308,"Date":"9/1/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":734,"Cost":384,"Date":"9/1/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":497,"Cost":429,"Date":"9/17/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":819,"Cost":670,"Date":"9/29/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":932,"Cost":476,"Date":"11/7/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":303,"Cost":194,"Date":"11/26/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":998,"Cost":674,"Date":"11/27/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":280,"Cost":145,"Date":"12/5/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":289,"Cost":219,"Date":"12/26/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":241,"Cost":148,"Date":"12/31/2020"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":31,"Cost":26,"Date":"1/20/2021"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":383,"Cost":311,"Date":"2/2/2021"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":641,"Cost":435,"Date":"2/8/2021"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":272,"Cost":202,"Date":"2/27/2021"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":176,"Cost":96,"Date":"3/1/2021"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":160,"Cost":111,"Date":"3/1/2021"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":903,"Cost":779,"Date":"3/19/2021"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":721,"Cost":514,"Date":"3/28/2021"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":624,"Cost":580,"Date":"5/21/2021"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":528,"Cost":390,"Date":"7/21/2021"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":506,"Cost":467,"Date":"8/5/2021"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":788,"Cost":418,"Date":"8/12/2021"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":602,"Cost":336,"Date":"8/21/2021"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":958,"Cost":712,"Date":"8/23/2021"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":554,"Cost":310,"Date":"9/3/2021"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":491,"Cost":247,"Date":"9/5/2021"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":830,"Cost":444,"Date":"10/6/2021"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":799,"Cost":676,"Date":"10/19/2021"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":860,"Cost":583,"Date":"11/15/2021"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":316,"Cost":215,"Date":"12/8/2021"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":768,"Cost":581,"Date":"1/8/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":887,"Cost":685,"Date":"1/14/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":256,"Cost":136,"Date":"1/19/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":755,"Cost":706,"Date":"1/28/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":160,"Cost":136,"Date":"1/31/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":868,"Cost":660,"Date":"3/27/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":530,"Cost":375,"Date":"4/20/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":797,"Cost":610,"Date":"4/24/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":259,"Cost":133,"Date":"4/28/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":420,"Cost":351,"Date":"5/15/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":968,"Cost":559,"Date":"5/16/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":107,"Cost":69,"Date":"5/18/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":812,"Cost":479,"Date":"6/2/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":28,"Cost":25,"Date":"6/3/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":879,"Cost":781,"Date":"6/5/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":329,"Cost":221,"Date":"6/7/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":979,"Cost":692,"Date":"6/14/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":789,"Cost":674,"Date":"6/20/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":255,"Cost":223,"Date":"6/24/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":134,"Cost":67,"Date":"7/4/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":986,"Cost":658,"Date":"7/9/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":130,"Cost":98,"Date":"7/12/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":215,"Cost":165,"Date":"8/14/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":460,"Cost":294,"Date":"8/16/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":905,"Cost":733,"Date":"8/23/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":292,"Cost":172,"Date":"9/2/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":448,"Cost":339,"Date":"9/3/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":123,"Cost":114,"Date":"9/16/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":110,"Cost":73,"Date":"10/4/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":970,"Cost":732,"Date":"11/1/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":898,"Cost":802,"Date":"11/2/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":646,"Cost":564,"Date":"12/17/2022"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":837,"Cost":471,"Date":"2/10/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":564,"Cost":374,"Date":"2/28/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":105,"Cost":68,"Date":"3/4/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":458,"Cost":405,"Date":"3/9/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":272,"Cost":212,"Date":"3/9/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":86,"Cost":78,"Date":"3/11/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":330,"Cost":190,"Date":"3/17/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":237,"Cost":171,"Date":"3/17/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":224,"Cost":118,"Date":"3/23/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":437,"Cost":391,"Date":"4/1/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":644,"Cost":474,"Date":"5/7/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":778,"Cost":646,"Date":"5/10/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":567,"Cost":490,"Date":"5/20/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":151,"Cost":120,"Date":"6/2/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":307,"Cost":174,"Date":"6/11/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":370,"Cost":349,"Date":"6/16/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":916,"Cost":590,"Date":"6/16/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":242,"Cost":220,"Date":"7/10/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":213,"Cost":199,"Date":"7/11/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":563,"Cost":330,"Date":"8/28/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":302,"Cost":255,"Date":"8/29/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":766,"Cost":588,"Date":"8/31/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":917,"Cost":719,"Date":"9/8/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":789,"Cost":740,"Date":"9/13/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":793,"Cost":559,"Date":"9/14/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":414,"Cost":351,"Date":"9/19/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":676,"Cost":527,"Date":"9/25/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":2,"Cost":1,"Date":"10/4/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":443,"Cost":292,"Date":"10/10/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":378,"Cost":360,"Date":"10/17/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":314,"Cost":159,"Date":"10/28/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":496,"Cost":295,"Date":"10/30/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":971,"Cost":525,"Date":"11/1/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":746,"Cost":555,"Date":"11/15/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":677,"Cost":544,"Date":"11/25/2023"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":577,"Cost":498,"Date":"1/10/2024"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":560,"Cost":470,"Date":"1/14/2024"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":715,"Cost":537,"Date":"1/20/2024"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":788,"Cost":552,"Date":"2/8/2024"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":260,"Cost":143,"Date":"2/25/2024"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":143,"Cost":94,"Date":"3/7/2024"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":294,"Cost":217,"Date":"3/14/2024"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":85,"Cost":70,"Date":"3/27/2024"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":999,"Cost":758,"Date":"4/5/2024"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":901,"Cost":735,"Date":"4/14/2024"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":768,"Cost":472,"Date":"5/3/2024"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":603,"Cost":523,"Date":"5/9/2024"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":789,"Cost":504,"Date":"5/15/2024"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":278,"Cost":221,"Date":"5/25/2024"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":208,"Cost":121,"Date":"5/26/2024"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":299,"Cost":254,"Date":"5/31/2024"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":968,"Cost":762,"Date":"7/27/2024"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":994,"Cost":710,"Date":"9/17/2024"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":553,"Cost":491,"Date":"10/6/2024"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":868,"Cost":758,"Date":"10/8/2024"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":535,"Cost":462,"Date":"10/26/2024"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":780,"Cost":488,"Date":"11/16/2024"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":540,"Cost":380,"Date":"11/18/2024"},{"Store":"Méga Liège","Brand":"ARKET","Country":"Belgium","Sale":769,"Cost":575,"Date":"12/1/2024"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":699,"Cost":506,"Date":"2/9/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":600,"Cost":565,"Date":"2/11/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":569,"Cost":343,"Date":"3/10/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":373,"Cost":225,"Date":"3/16/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":213,"Cost":124,"Date":"3/18/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":298,"Cost":262,"Date":"3/20/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":298,"Cost":272,"Date":"3/26/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":549,"Cost":489,"Date":"6/2/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":233,"Cost":165,"Date":"6/10/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":940,"Cost":542,"Date":"6/16/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":715,"Cost":586,"Date":"6/25/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":508,"Cost":307,"Date":"7/19/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":685,"Cost":533,"Date":"7/21/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":811,"Cost":679,"Date":"7/25/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":773,"Cost":551,"Date":"8/4/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":546,"Cost":430,"Date":"9/2/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":400,"Cost":308,"Date":"9/4/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":600,"Cost":446,"Date":"9/19/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":707,"Cost":382,"Date":"9/29/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":401,"Cost":227,"Date":"10/2/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":301,"Cost":196,"Date":"10/15/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":62,"Cost":32,"Date":"10/30/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":515,"Cost":423,"Date":"11/9/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":974,"Cost":860,"Date":"11/23/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":601,"Cost":314,"Date":"11/30/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":909,"Cost":806,"Date":"12/8/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":110,"Cost":97,"Date":"12/11/2018"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":597,"Cost":542,"Date":"1/15/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":603,"Cost":568,"Date":"1/24/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":876,"Cost":797,"Date":"2/3/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":912,"Cost":530,"Date":"2/4/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":662,"Cost":435,"Date":"3/9/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":912,"Cost":800,"Date":"3/12/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":141,"Cost":114,"Date":"4/19/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":772,"Cost":493,"Date":"5/3/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":773,"Cost":493,"Date":"5/4/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":501,"Cost":350,"Date":"6/8/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":759,"Cost":677,"Date":"6/26/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":393,"Cost":353,"Date":"7/4/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":82,"Cost":75,"Date":"7/13/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":855,"Cost":790,"Date":"8/8/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":825,"Cost":721,"Date":"8/26/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":434,"Cost":390,"Date":"9/2/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":928,"Cost":484,"Date":"9/29/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":777,"Cost":617,"Date":"10/12/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":603,"Cost":305,"Date":"11/2/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":569,"Cost":295,"Date":"11/4/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":776,"Cost":411,"Date":"11/7/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":764,"Cost":634,"Date":"12/1/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":252,"Cost":209,"Date":"12/4/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":153,"Cost":145,"Date":"12/7/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":841,"Cost":466,"Date":"12/18/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":166,"Cost":127,"Date":"12/20/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":733,"Cost":535,"Date":"12/20/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":20,"Cost":13,"Date":"12/21/2019"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":850,"Cost":578,"Date":"1/9/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":388,"Cost":194,"Date":"2/5/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":589,"Cost":301,"Date":"2/16/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":25,"Cost":17,"Date":"2/16/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":40,"Cost":20,"Date":"2/18/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":192,"Cost":110,"Date":"2/22/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":164,"Cost":155,"Date":"2/25/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":536,"Cost":280,"Date":"3/8/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":32,"Cost":25,"Date":"4/2/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":341,"Cost":305,"Date":"4/3/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":862,"Cost":723,"Date":"4/9/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":782,"Cost":486,"Date":"4/10/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":328,"Cost":268,"Date":"4/19/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":350,"Cost":285,"Date":"5/17/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":909,"Cost":458,"Date":"5/22/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":331,"Cost":290,"Date":"6/20/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":424,"Cost":346,"Date":"7/1/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":351,"Cost":258,"Date":"7/4/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":572,"Cost":405,"Date":"7/8/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":72,"Cost":49,"Date":"7/9/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":167,"Cost":150,"Date":"7/14/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":727,"Cost":670,"Date":"7/19/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":336,"Cost":315,"Date":"8/1/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":850,"Cost":567,"Date":"8/6/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":698,"Cost":398,"Date":"8/7/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":689,"Cost":590,"Date":"8/22/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":673,"Cost":559,"Date":"8/31/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":948,"Cost":516,"Date":"9/1/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":442,"Cost":337,"Date":"9/1/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":907,"Cost":637,"Date":"9/17/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":90,"Cost":82,"Date":"9/29/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":290,"Cost":149,"Date":"11/7/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":144,"Cost":98,"Date":"11/26/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":80,"Cost":47,"Date":"11/27/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":210,"Cost":149,"Date":"12/5/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":414,"Cost":376,"Date":"12/26/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":51,"Cost":43,"Date":"12/31/2020"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":578,"Cost":454,"Date":"1/20/2021"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":513,"Cost":261,"Date":"2/2/2021"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":137,"Cost":96,"Date":"2/8/2021"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":212,"Cost":133,"Date":"2/27/2021"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":587,"Cost":378,"Date":"3/1/2021"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":941,"Cost":530,"Date":"3/1/2021"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":798,"Cost":599,"Date":"3/19/2021"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":711,"Cost":416,"Date":"3/28/2021"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":227,"Cost":179,"Date":"5/21/2021"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":976,"Cost":498,"Date":"7/21/2021"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":537,"Cost":473,"Date":"8/5/2021"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":496,"Cost":354,"Date":"8/12/2021"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":471,"Cost":242,"Date":"8/21/2021"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":493,"Cost":462,"Date":"8/23/2021"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":341,"Cost":211,"Date":"9/3/2021"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":109,"Cost":93,"Date":"9/5/2021"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":817,"Cost":459,"Date":"10/6/2021"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":179,"Cost":90,"Date":"10/19/2021"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":166,"Cost":117,"Date":"11/15/2021"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":219,"Cost":185,"Date":"12/8/2021"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":918,"Cost":772,"Date":"1/8/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":127,"Cost":109,"Date":"1/14/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":621,"Cost":496,"Date":"1/19/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":781,"Cost":720,"Date":"1/28/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":181,"Cost":112,"Date":"1/31/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":565,"Cost":282,"Date":"3/27/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":230,"Cost":211,"Date":"4/20/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":319,"Cost":220,"Date":"4/24/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":241,"Cost":155,"Date":"4/28/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":888,"Cost":765,"Date":"5/15/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":120,"Cost":109,"Date":"5/16/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":605,"Cost":312,"Date":"5/18/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":406,"Cost":298,"Date":"6/2/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":456,"Cost":386,"Date":"6/3/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":90,"Cost":47,"Date":"6/5/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":898,"Cost":572,"Date":"6/7/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":254,"Cost":186,"Date":"6/14/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":893,"Cost":611,"Date":"6/20/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":761,"Cost":522,"Date":"6/24/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":285,"Cost":226,"Date":"7/4/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":604,"Cost":539,"Date":"7/9/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":892,"Cost":847,"Date":"7/12/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":482,"Cost":347,"Date":"8/14/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":688,"Cost":552,"Date":"8/16/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":605,"Cost":331,"Date":"8/23/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":980,"Cost":815,"Date":"9/2/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":798,"Cost":474,"Date":"9/3/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":357,"Cost":251,"Date":"9/16/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":275,"Cost":203,"Date":"10/4/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":693,"Cost":534,"Date":"11/1/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":293,"Cost":184,"Date":"11/2/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":188,"Cost":172,"Date":"12/17/2022"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":67,"Cost":62,"Date":"2/10/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":468,"Cost":363,"Date":"2/28/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":612,"Cost":568,"Date":"3/4/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":545,"Cost":349,"Date":"3/9/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":820,"Cost":595,"Date":"3/9/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":402,"Cost":358,"Date":"3/11/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":334,"Cost":240,"Date":"3/17/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":981,"Cost":826,"Date":"3/17/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":664,"Cost":434,"Date":"3/23/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":849,"Cost":673,"Date":"4/1/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":478,"Cost":369,"Date":"5/7/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":547,"Cost":368,"Date":"5/10/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":967,"Cost":909,"Date":"5/20/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":599,"Cost":560,"Date":"6/2/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":596,"Cost":389,"Date":"6/11/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":965,"Cost":905,"Date":"6/16/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":311,"Cost":243,"Date":"6/16/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":881,"Cost":494,"Date":"7/10/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":290,"Cost":218,"Date":"7/11/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":353,"Cost":335,"Date":"8/28/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":880,"Cost":649,"Date":"8/29/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":968,"Cost":803,"Date":"8/31/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":179,"Cost":161,"Date":"9/8/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":548,"Cost":408,"Date":"9/13/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":666,"Cost":573,"Date":"9/14/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":270,"Cost":207,"Date":"9/19/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":444,"Cost":247,"Date":"9/25/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":905,"Cost":844,"Date":"10/4/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":747,"Cost":528,"Date":"10/10/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":757,"Cost":538,"Date":"10/17/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":207,"Cost":115,"Date":"10/28/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":971,"Cost":710,"Date":"10/30/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":558,"Cost":441,"Date":"11/1/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":486,"Cost":253,"Date":"11/15/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":379,"Cost":220,"Date":"11/25/2023"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":470,"Cost":311,"Date":"1/10/2024"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":677,"Cost":530,"Date":"1/14/2024"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":412,"Cost":295,"Date":"1/20/2024"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":585,"Cost":455,"Date":"2/8/2024"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":577,"Cost":465,"Date":"2/25/2024"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":752,"Cost":405,"Date":"3/7/2024"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":94,"Cost":86,"Date":"3/14/2024"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":813,"Cost":459,"Date":"3/27/2024"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":715,"Cost":397,"Date":"4/5/2024"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":414,"Cost":328,"Date":"4/14/2024"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":258,"Cost":178,"Date":"5/3/2024"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":982,"Cost":725,"Date":"5/9/2024"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":985,"Cost":935,"Date":"5/15/2024"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":444,"Cost":251,"Date":"5/25/2024"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":731,"Cost":498,"Date":"5/26/2024"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":869,"Cost":635,"Date":"5/31/2024"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":737,"Cost":684,"Date":"7/27/2024"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":973,"Cost":760,"Date":"9/17/2024"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":484,"Cost":314,"Date":"10/6/2024"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":393,"Cost":296,"Date":"10/8/2024"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":80,"Cost":71,"Date":"10/26/2024"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":146,"Cost":93,"Date":"11/16/2024"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":136,"Cost":76,"Date":"11/18/2024"},{"Store":"Méga Liège","Brand":"HM","Country":"Belgium","Sale":845,"Cost":504,"Date":"12/1/2024"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":272,"Cost":211,"Date":"2/9/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":60,"Cost":48,"Date":"2/11/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":113,"Cost":72,"Date":"3/10/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":496,"Cost":366,"Date":"3/16/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":133,"Cost":125,"Date":"3/18/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":682,"Cost":540,"Date":"3/20/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":30,"Cost":17,"Date":"3/26/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":897,"Cost":734,"Date":"6/2/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":11,"Cost":10,"Date":"6/10/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":417,"Cost":354,"Date":"6/16/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":258,"Cost":184,"Date":"6/25/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":371,"Cost":258,"Date":"7/19/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":5,"Cost":5,"Date":"7/21/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":315,"Cost":176,"Date":"7/25/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":719,"Cost":598,"Date":"8/4/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":626,"Cost":414,"Date":"9/2/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":351,"Cost":247,"Date":"9/4/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":416,"Cost":289,"Date":"9/19/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":122,"Cost":113,"Date":"9/29/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":694,"Cost":520,"Date":"10/2/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":531,"Cost":354,"Date":"10/15/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":108,"Cost":101,"Date":"10/30/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":831,"Cost":638,"Date":"11/9/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":890,"Cost":593,"Date":"11/23/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":157,"Cost":85,"Date":"11/30/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":232,"Cost":118,"Date":"12/8/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":97,"Cost":49,"Date":"12/11/2018"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":830,"Cost":418,"Date":"1/15/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":400,"Cost":269,"Date":"1/24/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":979,"Cost":494,"Date":"2/3/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":166,"Cost":90,"Date":"2/4/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":217,"Cost":204,"Date":"3/9/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":717,"Cost":663,"Date":"3/12/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":840,"Cost":589,"Date":"4/19/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":607,"Cost":359,"Date":"5/3/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":624,"Cost":460,"Date":"5/4/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":34,"Cost":23,"Date":"6/8/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":969,"Cost":772,"Date":"6/26/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":524,"Cost":356,"Date":"7/4/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":590,"Cost":521,"Date":"7/13/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":410,"Cost":338,"Date":"8/8/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":809,"Cost":561,"Date":"8/26/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":1000,"Cost":595,"Date":"9/2/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":239,"Cost":191,"Date":"9/29/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":676,"Cost":448,"Date":"10/12/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":624,"Cost":435,"Date":"11/2/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":748,"Cost":427,"Date":"11/4/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":320,"Cost":245,"Date":"11/7/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":959,"Cost":630,"Date":"12/1/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":147,"Cost":95,"Date":"12/4/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":381,"Cost":361,"Date":"12/7/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":609,"Cost":379,"Date":"12/18/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":39,"Cost":37,"Date":"12/20/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":49,"Cost":28,"Date":"12/20/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":291,"Cost":243,"Date":"12/21/2019"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":496,"Cost":423,"Date":"1/9/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":83,"Cost":73,"Date":"2/5/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":997,"Cost":773,"Date":"2/16/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":464,"Cost":300,"Date":"2/16/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":402,"Cost":304,"Date":"2/18/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":724,"Cost":416,"Date":"2/22/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":56,"Cost":28,"Date":"2/25/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":280,"Cost":252,"Date":"3/8/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":808,"Cost":693,"Date":"4/2/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":53,"Cost":39,"Date":"4/3/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":816,"Cost":756,"Date":"4/9/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":716,"Cost":471,"Date":"4/10/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":135,"Cost":89,"Date":"4/19/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":485,"Cost":396,"Date":"5/17/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":426,"Cost":315,"Date":"5/22/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":784,"Cost":731,"Date":"6/20/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":766,"Cost":715,"Date":"7/1/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":501,"Cost":269,"Date":"7/4/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":619,"Cost":335,"Date":"7/8/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":784,"Cost":633,"Date":"7/9/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":495,"Cost":339,"Date":"7/14/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":301,"Cost":193,"Date":"7/19/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":153,"Cost":92,"Date":"8/1/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":36,"Cost":29,"Date":"8/6/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":392,"Cost":228,"Date":"8/7/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":367,"Cost":329,"Date":"8/22/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":99,"Cost":72,"Date":"8/31/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":80,"Cost":57,"Date":"9/1/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":342,"Cost":226,"Date":"9/1/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":482,"Cost":241,"Date":"9/17/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":786,"Cost":582,"Date":"9/29/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":494,"Cost":386,"Date":"11/7/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":199,"Cost":124,"Date":"11/26/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":863,"Cost":477,"Date":"11/27/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":696,"Cost":473,"Date":"12/5/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":574,"Cost":373,"Date":"12/26/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":581,"Cost":539,"Date":"12/31/2020"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":251,"Cost":215,"Date":"1/20/2021"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":325,"Cost":213,"Date":"2/2/2021"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":490,"Cost":306,"Date":"2/8/2021"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":343,"Cost":264,"Date":"2/27/2021"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":137,"Cost":77,"Date":"3/1/2021"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":16,"Cost":13,"Date":"3/1/2021"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":106,"Cost":53,"Date":"3/19/2021"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":815,"Cost":714,"Date":"3/28/2021"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":800,"Cost":710,"Date":"5/21/2021"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":500,"Cost":339,"Date":"7/21/2021"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":18,"Cost":17,"Date":"8/5/2021"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":15,"Cost":14,"Date":"8/12/2021"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":681,"Cost":428,"Date":"8/21/2021"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":230,"Cost":212,"Date":"8/23/2021"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":912,"Cost":694,"Date":"9/3/2021"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":268,"Cost":254,"Date":"9/5/2021"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":281,"Cost":171,"Date":"10/6/2021"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":681,"Cost":465,"Date":"10/19/2021"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":561,"Cost":339,"Date":"11/15/2021"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":584,"Cost":372,"Date":"12/8/2021"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":891,"Cost":800,"Date":"1/8/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":789,"Cost":415,"Date":"1/14/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":90,"Cost":74,"Date":"1/19/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":761,"Cost":381,"Date":"1/28/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":673,"Cost":603,"Date":"1/31/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":40,"Cost":30,"Date":"3/27/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":974,"Cost":536,"Date":"4/20/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":635,"Cost":465,"Date":"4/24/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":113,"Cost":73,"Date":"4/28/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":730,"Cost":575,"Date":"5/15/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":872,"Cost":502,"Date":"5/16/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":894,"Cost":495,"Date":"5/18/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":126,"Cost":65,"Date":"6/2/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":453,"Cost":422,"Date":"6/3/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":969,"Cost":535,"Date":"6/5/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":794,"Cost":461,"Date":"6/7/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":594,"Cost":456,"Date":"6/14/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":390,"Cost":341,"Date":"6/20/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":424,"Cost":304,"Date":"6/24/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":215,"Cost":204,"Date":"7/4/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":513,"Cost":374,"Date":"7/9/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":391,"Cost":263,"Date":"7/12/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":820,"Cost":654,"Date":"8/14/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":991,"Cost":521,"Date":"8/16/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":321,"Cost":203,"Date":"8/23/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":181,"Cost":103,"Date":"9/2/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":491,"Cost":329,"Date":"9/3/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":56,"Cost":40,"Date":"9/16/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":803,"Cost":712,"Date":"10/4/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":113,"Cost":85,"Date":"11/1/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":428,"Cost":281,"Date":"11/2/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":453,"Cost":343,"Date":"12/17/2022"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":682,"Cost":539,"Date":"2/10/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":264,"Cost":250,"Date":"2/28/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":531,"Cost":487,"Date":"3/4/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":192,"Cost":100,"Date":"3/9/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":256,"Cost":152,"Date":"3/9/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":138,"Cost":114,"Date":"3/11/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":723,"Cost":675,"Date":"3/17/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":829,"Cost":660,"Date":"3/17/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":95,"Cost":74,"Date":"3/23/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":965,"Cost":846,"Date":"4/1/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":844,"Cost":552,"Date":"5/7/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":980,"Cost":761,"Date":"5/10/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":760,"Cost":402,"Date":"5/20/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":828,"Cost":771,"Date":"6/2/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":472,"Cost":376,"Date":"6/11/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":382,"Cost":200,"Date":"6/16/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":525,"Cost":374,"Date":"6/16/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":849,"Cost":585,"Date":"7/10/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":91,"Cost":61,"Date":"7/11/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":279,"Cost":245,"Date":"8/28/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":81,"Cost":52,"Date":"8/29/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":270,"Cost":202,"Date":"8/31/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":133,"Cost":68,"Date":"9/8/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":633,"Cost":470,"Date":"9/13/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":569,"Cost":301,"Date":"9/14/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":913,"Cost":490,"Date":"9/19/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":142,"Cost":128,"Date":"9/25/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":958,"Cost":515,"Date":"10/4/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":388,"Cost":361,"Date":"10/10/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":106,"Cost":58,"Date":"10/17/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":272,"Cost":199,"Date":"10/28/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":230,"Cost":189,"Date":"10/30/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":174,"Cost":97,"Date":"11/1/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":336,"Cost":253,"Date":"11/15/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":279,"Cost":200,"Date":"11/25/2023"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":644,"Cost":474,"Date":"1/10/2024"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":27,"Cost":16,"Date":"1/14/2024"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":834,"Cost":719,"Date":"1/20/2024"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":703,"Cost":596,"Date":"2/8/2024"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":693,"Cost":497,"Date":"2/25/2024"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":354,"Cost":220,"Date":"3/7/2024"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":905,"Cost":771,"Date":"3/14/2024"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":928,"Cost":881,"Date":"3/27/2024"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":39,"Cost":20,"Date":"4/5/2024"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":174,"Cost":116,"Date":"4/14/2024"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":330,"Cost":179,"Date":"5/3/2024"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":701,"Cost":509,"Date":"5/9/2024"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":835,"Cost":462,"Date":"5/15/2024"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":724,"Cost":393,"Date":"5/25/2024"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":692,"Cost":474,"Date":"5/26/2024"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":785,"Cost":725,"Date":"5/31/2024"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":324,"Cost":291,"Date":"7/27/2024"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":667,"Cost":620,"Date":"9/17/2024"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":943,"Cost":836,"Date":"10/6/2024"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":662,"Cost":587,"Date":"10/8/2024"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":872,"Cost":644,"Date":"10/26/2024"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":51,"Cost":35,"Date":"11/16/2024"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":550,"Cost":465,"Date":"11/18/2024"},{"Store":"Méga Liège","Brand":"Nova","Country":"Belgium","Sale":537,"Cost":375,"Date":"12/1/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":506,"Cost":440,"Date":"2/9/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":756,"Cost":475,"Date":"2/11/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":731,"Cost":506,"Date":"3/10/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":442,"Cost":376,"Date":"3/16/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":13,"Cost":10,"Date":"3/18/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":471,"Cost":294,"Date":"3/20/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":269,"Cost":148,"Date":"3/26/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":218,"Cost":139,"Date":"6/2/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":865,"Cost":708,"Date":"6/10/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":23,"Cost":13,"Date":"6/16/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":684,"Cost":360,"Date":"6/25/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":407,"Cost":335,"Date":"7/19/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":353,"Cost":243,"Date":"7/21/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":353,"Cost":236,"Date":"7/25/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":777,"Cost":596,"Date":"8/4/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":879,"Cost":479,"Date":"9/2/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":417,"Cost":289,"Date":"9/4/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":351,"Cost":276,"Date":"9/19/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":505,"Cost":407,"Date":"9/29/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":631,"Cost":351,"Date":"10/2/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":627,"Cost":338,"Date":"10/15/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":886,"Cost":477,"Date":"10/30/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":808,"Cost":467,"Date":"11/9/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":589,"Cost":497,"Date":"11/23/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":574,"Cost":413,"Date":"11/30/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":777,"Cost":625,"Date":"12/8/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":275,"Cost":154,"Date":"12/11/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":873,"Cost":817,"Date":"1/15/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":470,"Cost":261,"Date":"1/24/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":249,"Cost":188,"Date":"2/3/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":430,"Cost":369,"Date":"2/4/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":348,"Cost":319,"Date":"3/9/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":448,"Cost":357,"Date":"3/12/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":356,"Cost":227,"Date":"4/19/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":508,"Cost":285,"Date":"5/3/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":53,"Cost":26,"Date":"5/4/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":220,"Cost":125,"Date":"6/8/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":540,"Cost":307,"Date":"6/26/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":959,"Cost":896,"Date":"7/4/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":50,"Cost":42,"Date":"7/13/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":968,"Cost":617,"Date":"8/8/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":476,"Cost":426,"Date":"8/26/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":970,"Cost":644,"Date":"9/2/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":227,"Cost":208,"Date":"9/29/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":737,"Cost":489,"Date":"10/12/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":413,"Cost":222,"Date":"11/2/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":705,"Cost":626,"Date":"11/4/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":782,"Cost":578,"Date":"11/7/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":196,"Cost":182,"Date":"12/1/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":609,"Cost":452,"Date":"12/4/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":527,"Cost":343,"Date":"12/7/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":357,"Cost":218,"Date":"12/18/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":612,"Cost":497,"Date":"12/20/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":955,"Cost":556,"Date":"12/20/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":420,"Cost":223,"Date":"12/21/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":669,"Cost":352,"Date":"1/9/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":200,"Cost":111,"Date":"2/5/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":131,"Cost":94,"Date":"2/16/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":152,"Cost":99,"Date":"2/16/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":848,"Cost":453,"Date":"2/18/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":756,"Cost":447,"Date":"2/22/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":142,"Cost":81,"Date":"2/25/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":175,"Cost":162,"Date":"3/8/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":574,"Cost":518,"Date":"4/2/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":836,"Cost":450,"Date":"4/3/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":245,"Cost":179,"Date":"4/9/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":473,"Cost":384,"Date":"4/10/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":443,"Cost":244,"Date":"4/19/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":459,"Cost":293,"Date":"5/17/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":69,"Cost":62,"Date":"5/22/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":900,"Cost":616,"Date":"6/20/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":762,"Cost":511,"Date":"7/1/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":957,"Cost":644,"Date":"7/4/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":21,"Cost":19,"Date":"7/8/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":327,"Cost":226,"Date":"7/9/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":151,"Cost":78,"Date":"7/14/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":231,"Cost":180,"Date":"7/19/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":825,"Cost":610,"Date":"8/1/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":44,"Cost":40,"Date":"8/6/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":879,"Cost":834,"Date":"8/7/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":80,"Cost":48,"Date":"8/22/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":722,"Cost":456,"Date":"8/31/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":352,"Cost":296,"Date":"9/1/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":846,"Cost":656,"Date":"9/1/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":619,"Cost":448,"Date":"9/17/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":897,"Cost":453,"Date":"9/29/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":77,"Cost":61,"Date":"11/7/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":828,"Cost":725,"Date":"11/26/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":651,"Cost":491,"Date":"11/27/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":53,"Cost":36,"Date":"12/5/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":644,"Cost":577,"Date":"12/26/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":859,"Cost":583,"Date":"12/31/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":893,"Cost":504,"Date":"1/20/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":611,"Cost":506,"Date":"2/2/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":677,"Cost":599,"Date":"2/8/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":855,"Cost":618,"Date":"2/27/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":56,"Cost":33,"Date":"3/1/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":895,"Cost":758,"Date":"3/1/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":125,"Cost":88,"Date":"3/19/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":97,"Cost":51,"Date":"3/28/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":558,"Cost":468,"Date":"5/21/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":580,"Cost":488,"Date":"7/21/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":870,"Cost":698,"Date":"8/5/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":977,"Cost":587,"Date":"8/12/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":730,"Cost":678,"Date":"8/21/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":816,"Cost":531,"Date":"8/23/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":212,"Cost":201,"Date":"9/3/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":557,"Cost":327,"Date":"9/5/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":641,"Cost":498,"Date":"10/6/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":377,"Cost":206,"Date":"10/19/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":794,"Cost":605,"Date":"11/15/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":289,"Cost":235,"Date":"12/8/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":620,"Cost":365,"Date":"1/8/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":820,"Cost":711,"Date":"1/14/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":72,"Cost":41,"Date":"1/19/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":453,"Cost":275,"Date":"1/28/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":401,"Cost":215,"Date":"1/31/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":904,"Cost":758,"Date":"3/27/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":827,"Cost":706,"Date":"4/20/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":881,"Cost":777,"Date":"4/24/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":85,"Cost":60,"Date":"4/28/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":701,"Cost":645,"Date":"5/15/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":138,"Cost":126,"Date":"5/16/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":562,"Cost":510,"Date":"5/18/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":935,"Cost":474,"Date":"6/2/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":3,"Cost":3,"Date":"6/3/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":840,"Cost":482,"Date":"6/5/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":305,"Cost":228,"Date":"6/7/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":937,"Cost":834,"Date":"6/14/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":667,"Cost":551,"Date":"6/20/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":55,"Cost":29,"Date":"6/24/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":37,"Cost":27,"Date":"7/4/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":49,"Cost":24,"Date":"7/9/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":520,"Cost":484,"Date":"7/12/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":743,"Cost":624,"Date":"8/14/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":567,"Cost":316,"Date":"8/16/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":44,"Cost":34,"Date":"8/23/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":709,"Cost":521,"Date":"9/2/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":865,"Cost":574,"Date":"9/3/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":60,"Cost":33,"Date":"9/16/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":546,"Cost":398,"Date":"10/4/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":684,"Cost":567,"Date":"11/1/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":565,"Cost":398,"Date":"11/2/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":367,"Cost":328,"Date":"12/17/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":322,"Cost":269,"Date":"2/10/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":195,"Cost":150,"Date":"2/28/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":387,"Cost":225,"Date":"3/4/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":686,"Cost":597,"Date":"3/9/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":548,"Cost":345,"Date":"3/9/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":710,"Cost":429,"Date":"3/11/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":434,"Cost":342,"Date":"3/17/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":170,"Cost":129,"Date":"3/17/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":714,"Cost":383,"Date":"3/23/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":133,"Cost":99,"Date":"4/1/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":319,"Cost":291,"Date":"5/7/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":581,"Cost":496,"Date":"5/10/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":446,"Cost":397,"Date":"5/20/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":420,"Cost":382,"Date":"6/2/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":406,"Cost":291,"Date":"6/11/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":487,"Cost":402,"Date":"6/16/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":164,"Cost":107,"Date":"6/16/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":973,"Cost":631,"Date":"7/10/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":709,"Cost":448,"Date":"7/11/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":851,"Cost":703,"Date":"8/28/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":4,"Cost":4,"Date":"8/29/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":196,"Cost":157,"Date":"8/31/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":128,"Cost":84,"Date":"9/8/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":963,"Cost":507,"Date":"9/13/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":101,"Cost":66,"Date":"9/14/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":129,"Cost":87,"Date":"9/19/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":525,"Cost":348,"Date":"9/25/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":299,"Cost":231,"Date":"10/4/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":507,"Cost":316,"Date":"10/10/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":727,"Cost":557,"Date":"10/17/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":646,"Cost":414,"Date":"10/28/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":632,"Cost":474,"Date":"10/30/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":186,"Cost":171,"Date":"11/1/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":207,"Cost":130,"Date":"11/15/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":55,"Cost":43,"Date":"11/25/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":771,"Cost":426,"Date":"1/10/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":619,"Cost":321,"Date":"1/14/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":469,"Cost":358,"Date":"1/20/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":676,"Cost":373,"Date":"2/8/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":196,"Cost":109,"Date":"2/25/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":351,"Cost":207,"Date":"3/7/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":262,"Cost":210,"Date":"3/14/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":196,"Cost":107,"Date":"3/27/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":192,"Cost":112,"Date":"4/5/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":214,"Cost":135,"Date":"4/14/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":564,"Cost":439,"Date":"5/3/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":848,"Cost":660,"Date":"5/9/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":89,"Cost":76,"Date":"5/15/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":444,"Cost":245,"Date":"5/25/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":703,"Cost":545,"Date":"5/26/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":87,"Cost":71,"Date":"5/31/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":2,"Cost":1,"Date":"7/27/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":853,"Cost":588,"Date":"9/17/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":832,"Cost":726,"Date":"10/6/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":464,"Cost":299,"Date":"10/8/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":663,"Cost":559,"Date":"10/26/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":906,"Cost":849,"Date":"11/16/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":269,"Cost":211,"Date":"11/18/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"COS","Country":"Belgium","Sale":873,"Cost":621,"Date":"12/1/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":743,"Cost":549,"Date":"2/9/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":121,"Cost":81,"Date":"2/11/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":428,"Cost":216,"Date":"3/10/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":905,"Cost":554,"Date":"3/16/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":855,"Cost":731,"Date":"3/18/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":238,"Cost":215,"Date":"3/20/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":459,"Cost":366,"Date":"3/26/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":492,"Cost":432,"Date":"6/2/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":628,"Cost":354,"Date":"6/10/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":892,"Cost":559,"Date":"6/16/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":193,"Cost":154,"Date":"6/25/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":867,"Cost":646,"Date":"7/19/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":161,"Cost":122,"Date":"7/21/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":296,"Cost":198,"Date":"7/25/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":401,"Cost":307,"Date":"8/4/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":957,"Cost":696,"Date":"9/2/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":623,"Cost":526,"Date":"9/4/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":857,"Cost":714,"Date":"9/19/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":673,"Cost":622,"Date":"9/29/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":235,"Cost":149,"Date":"10/2/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":752,"Cost":590,"Date":"10/15/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":773,"Cost":531,"Date":"10/30/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":11,"Cost":8,"Date":"11/9/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":349,"Cost":307,"Date":"11/23/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":707,"Cost":457,"Date":"11/30/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":338,"Cost":270,"Date":"12/8/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":709,"Cost":471,"Date":"12/11/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":820,"Cost":455,"Date":"1/15/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":259,"Cost":142,"Date":"1/24/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":561,"Cost":481,"Date":"2/3/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":695,"Cost":482,"Date":"2/4/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":76,"Cost":46,"Date":"3/9/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":540,"Cost":326,"Date":"3/12/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":940,"Cost":741,"Date":"4/19/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":854,"Cost":543,"Date":"5/3/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":899,"Cost":453,"Date":"5/4/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":155,"Cost":80,"Date":"6/8/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":6,"Cost":4,"Date":"6/26/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":850,"Cost":451,"Date":"7/4/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":886,"Cost":641,"Date":"7/13/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":349,"Cost":276,"Date":"8/8/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":824,"Cost":432,"Date":"8/26/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":650,"Cost":398,"Date":"9/2/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":775,"Cost":544,"Date":"9/29/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":298,"Cost":251,"Date":"10/12/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":547,"Cost":435,"Date":"11/2/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":131,"Cost":119,"Date":"11/4/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":790,"Cost":397,"Date":"11/7/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":452,"Cost":326,"Date":"12/1/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":350,"Cost":221,"Date":"12/4/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":665,"Cost":406,"Date":"12/7/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":806,"Cost":625,"Date":"12/18/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":137,"Cost":121,"Date":"12/20/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":356,"Cost":275,"Date":"12/20/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":510,"Cost":443,"Date":"12/21/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":24,"Cost":23,"Date":"1/9/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":587,"Cost":509,"Date":"2/5/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":307,"Cost":166,"Date":"2/16/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":500,"Cost":315,"Date":"2/16/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":270,"Cost":226,"Date":"2/18/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":327,"Cost":188,"Date":"2/22/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":475,"Cost":428,"Date":"2/25/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":894,"Cost":553,"Date":"3/8/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":229,"Cost":117,"Date":"4/2/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":772,"Cost":717,"Date":"4/3/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":278,"Cost":247,"Date":"4/9/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":275,"Cost":224,"Date":"4/10/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":243,"Cost":224,"Date":"4/19/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":486,"Cost":375,"Date":"5/17/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":655,"Cost":527,"Date":"5/22/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":378,"Cost":300,"Date":"6/20/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":30,"Cost":16,"Date":"7/1/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":414,"Cost":331,"Date":"7/4/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":17,"Cost":14,"Date":"7/8/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":556,"Cost":340,"Date":"7/9/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":827,"Cost":429,"Date":"7/14/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":724,"Cost":552,"Date":"7/19/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":130,"Cost":102,"Date":"8/1/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":222,"Cost":128,"Date":"8/6/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":501,"Cost":314,"Date":"8/7/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":536,"Cost":287,"Date":"8/22/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":539,"Cost":374,"Date":"8/31/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":979,"Cost":504,"Date":"9/1/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":148,"Cost":122,"Date":"9/1/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":442,"Cost":260,"Date":"9/17/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":113,"Cost":64,"Date":"9/29/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":953,"Cost":804,"Date":"11/7/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":324,"Cost":191,"Date":"11/26/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":852,"Cost":644,"Date":"11/27/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":410,"Cost":281,"Date":"12/5/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":142,"Cost":99,"Date":"12/26/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":675,"Cost":518,"Date":"12/31/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":814,"Cost":632,"Date":"1/20/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":432,"Cost":363,"Date":"2/2/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":375,"Cost":211,"Date":"2/8/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":12,"Cost":8,"Date":"2/27/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":165,"Cost":90,"Date":"3/1/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":486,"Cost":265,"Date":"3/1/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":926,"Cost":639,"Date":"3/19/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":481,"Cost":336,"Date":"3/28/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":807,"Cost":445,"Date":"5/21/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":38,"Cost":34,"Date":"7/21/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":494,"Cost":338,"Date":"8/5/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":234,"Cost":211,"Date":"8/12/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":250,"Cost":203,"Date":"8/21/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":127,"Cost":120,"Date":"8/23/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":750,"Cost":630,"Date":"9/3/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":644,"Cost":402,"Date":"9/5/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":587,"Cost":459,"Date":"10/6/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":617,"Cost":533,"Date":"10/19/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":808,"Cost":524,"Date":"11/15/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":691,"Cost":621,"Date":"12/8/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":376,"Cost":254,"Date":"1/8/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":224,"Cost":212,"Date":"1/14/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":928,"Cost":475,"Date":"1/19/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":626,"Cost":521,"Date":"1/28/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":226,"Cost":168,"Date":"1/31/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":305,"Cost":285,"Date":"3/27/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":697,"Cost":473,"Date":"4/20/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":930,"Cost":616,"Date":"4/24/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":428,"Cost":333,"Date":"4/28/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":461,"Cost":243,"Date":"5/15/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":426,"Cost":262,"Date":"5/16/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":386,"Cost":263,"Date":"5/18/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":696,"Cost":510,"Date":"6/2/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":535,"Cost":485,"Date":"6/3/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":340,"Cost":187,"Date":"6/5/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":62,"Cost":32,"Date":"6/7/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":842,"Cost":555,"Date":"6/14/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":451,"Cost":367,"Date":"6/20/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":33,"Cost":20,"Date":"6/24/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":230,"Cost":166,"Date":"7/4/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":381,"Cost":327,"Date":"7/9/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":217,"Cost":180,"Date":"7/12/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":5,"Cost":2,"Date":"8/14/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":172,"Cost":158,"Date":"8/16/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":368,"Cost":224,"Date":"8/23/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":93,"Cost":59,"Date":"9/2/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":640,"Cost":547,"Date":"9/3/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":14,"Cost":11,"Date":"9/16/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":380,"Cost":332,"Date":"10/4/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":995,"Cost":836,"Date":"11/1/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":851,"Cost":451,"Date":"11/2/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":641,"Cost":418,"Date":"12/17/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":586,"Cost":358,"Date":"2/10/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":540,"Cost":347,"Date":"2/28/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":372,"Cost":345,"Date":"3/4/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":506,"Cost":442,"Date":"3/9/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":497,"Cost":284,"Date":"3/9/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":869,"Cost":741,"Date":"3/11/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":993,"Cost":707,"Date":"3/17/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":299,"Cost":161,"Date":"3/17/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":483,"Cost":458,"Date":"3/23/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":688,"Cost":612,"Date":"4/1/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":640,"Cost":514,"Date":"5/7/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":62,"Cost":55,"Date":"5/10/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":734,"Cost":443,"Date":"5/20/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":684,"Cost":575,"Date":"6/2/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":118,"Cost":111,"Date":"6/11/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":275,"Cost":147,"Date":"6/16/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":17,"Cost":15,"Date":"6/16/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":422,"Cost":250,"Date":"7/10/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":992,"Cost":811,"Date":"7/11/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":200,"Cost":172,"Date":"8/28/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":440,"Cost":333,"Date":"8/29/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":940,"Cost":750,"Date":"8/31/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":717,"Cost":428,"Date":"9/8/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":589,"Cost":551,"Date":"9/13/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":177,"Cost":168,"Date":"9/14/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":289,"Cost":243,"Date":"9/19/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":134,"Cost":83,"Date":"9/25/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":199,"Cost":168,"Date":"10/4/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":325,"Cost":193,"Date":"10/10/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":141,"Cost":95,"Date":"10/17/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":906,"Cost":504,"Date":"10/28/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":972,"Cost":568,"Date":"10/30/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":942,"Cost":759,"Date":"11/1/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":100,"Cost":56,"Date":"11/15/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":863,"Cost":811,"Date":"11/25/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":623,"Cost":558,"Date":"1/10/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":449,"Cost":260,"Date":"1/14/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":462,"Cost":242,"Date":"1/20/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":333,"Cost":245,"Date":"2/8/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":120,"Cost":85,"Date":"2/25/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":550,"Cost":393,"Date":"3/7/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":894,"Cost":619,"Date":"3/14/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":639,"Cost":459,"Date":"3/27/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":88,"Cost":75,"Date":"4/5/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":273,"Cost":144,"Date":"4/14/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":749,"Cost":407,"Date":"5/3/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":639,"Cost":338,"Date":"5/9/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":242,"Cost":182,"Date":"5/15/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":415,"Cost":285,"Date":"5/25/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":267,"Cost":156,"Date":"5/26/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":102,"Cost":94,"Date":"5/31/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":993,"Cost":691,"Date":"7/27/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":725,"Cost":516,"Date":"9/17/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":427,"Cost":389,"Date":"10/6/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":85,"Cost":64,"Date":"10/8/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":210,"Cost":125,"Date":"10/26/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":396,"Cost":301,"Date":"11/16/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":821,"Cost":432,"Date":"11/18/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Sellpy","Country":"Belgium","Sale":69,"Cost":41,"Date":"12/1/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":482,"Cost":350,"Date":"2/9/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":774,"Cost":678,"Date":"2/11/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":743,"Cost":403,"Date":"3/10/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":953,"Cost":665,"Date":"3/16/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":449,"Cost":426,"Date":"3/18/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":328,"Cost":290,"Date":"3/20/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":532,"Cost":345,"Date":"3/26/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":173,"Cost":142,"Date":"6/2/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":876,"Cost":439,"Date":"6/10/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":168,"Cost":120,"Date":"6/16/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":848,"Cost":471,"Date":"6/25/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":37,"Cost":25,"Date":"7/19/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":370,"Cost":220,"Date":"7/21/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":51,"Cost":36,"Date":"7/25/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":165,"Cost":114,"Date":"8/4/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":600,"Cost":471,"Date":"9/2/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":860,"Cost":559,"Date":"9/4/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":682,"Cost":349,"Date":"9/19/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":787,"Cost":607,"Date":"9/29/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":128,"Cost":70,"Date":"10/2/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":52,"Cost":32,"Date":"10/15/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":582,"Cost":375,"Date":"10/30/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":400,"Cost":246,"Date":"11/9/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":91,"Cost":83,"Date":"11/23/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":281,"Cost":189,"Date":"11/30/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":483,"Cost":440,"Date":"12/8/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":495,"Cost":393,"Date":"12/11/2018"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":854,"Cost":616,"Date":"1/15/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":694,"Cost":529,"Date":"1/24/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":397,"Cost":269,"Date":"2/3/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":961,"Cost":877,"Date":"2/4/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":641,"Cost":567,"Date":"3/9/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":170,"Cost":153,"Date":"3/12/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":507,"Cost":421,"Date":"4/19/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":15,"Cost":12,"Date":"5/3/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":950,"Cost":518,"Date":"5/4/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":234,"Cost":180,"Date":"6/8/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":500,"Cost":355,"Date":"6/26/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":78,"Cost":67,"Date":"7/4/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":314,"Cost":293,"Date":"7/13/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":146,"Cost":105,"Date":"8/8/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":590,"Cost":428,"Date":"8/26/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":534,"Cost":458,"Date":"9/2/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":383,"Cost":255,"Date":"9/29/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":779,"Cost":453,"Date":"10/12/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":319,"Cost":269,"Date":"11/2/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":411,"Cost":245,"Date":"11/4/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":316,"Cost":165,"Date":"11/7/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":186,"Cost":128,"Date":"12/1/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":824,"Cost":662,"Date":"12/4/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":805,"Cost":659,"Date":"12/7/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":603,"Cost":333,"Date":"12/18/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":606,"Cost":369,"Date":"12/20/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":76,"Cost":50,"Date":"12/20/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":177,"Cost":126,"Date":"12/21/2019"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":507,"Cost":264,"Date":"1/9/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":273,"Cost":166,"Date":"2/5/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":681,"Cost":441,"Date":"2/16/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":618,"Cost":438,"Date":"2/16/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":179,"Cost":118,"Date":"2/18/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":895,"Cost":731,"Date":"2/22/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":205,"Cost":111,"Date":"2/25/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":832,"Cost":426,"Date":"3/8/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":846,"Cost":583,"Date":"4/2/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":87,"Cost":71,"Date":"4/3/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":746,"Cost":395,"Date":"4/9/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":383,"Cost":278,"Date":"4/10/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":659,"Cost":579,"Date":"4/19/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":655,"Cost":335,"Date":"5/17/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":370,"Cost":310,"Date":"5/22/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":368,"Cost":248,"Date":"6/20/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":293,"Cost":270,"Date":"7/1/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":5,"Cost":3,"Date":"7/4/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":904,"Cost":685,"Date":"7/8/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":773,"Cost":601,"Date":"7/9/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":438,"Cost":251,"Date":"7/14/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":685,"Cost":373,"Date":"7/19/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":46,"Cost":26,"Date":"8/1/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":78,"Cost":49,"Date":"8/6/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":507,"Cost":356,"Date":"8/7/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":487,"Cost":333,"Date":"8/22/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":873,"Cost":790,"Date":"8/31/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":287,"Cost":230,"Date":"9/1/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":1,"Cost":1,"Date":"9/1/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":401,"Cost":352,"Date":"9/17/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":608,"Cost":501,"Date":"9/29/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":803,"Cost":411,"Date":"11/7/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":329,"Cost":215,"Date":"11/26/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":510,"Cost":324,"Date":"11/27/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":931,"Cost":586,"Date":"12/5/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":179,"Cost":95,"Date":"12/26/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":62,"Cost":53,"Date":"12/31/2020"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":203,"Cost":137,"Date":"1/20/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":98,"Cost":87,"Date":"2/2/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":891,"Cost":709,"Date":"2/8/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":202,"Cost":175,"Date":"2/27/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":148,"Cost":98,"Date":"3/1/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":512,"Cost":345,"Date":"3/1/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":114,"Cost":86,"Date":"3/19/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":470,"Cost":322,"Date":"3/28/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":352,"Cost":241,"Date":"5/21/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":358,"Cost":260,"Date":"7/21/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":207,"Cost":173,"Date":"8/5/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":445,"Cost":226,"Date":"8/12/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":983,"Cost":689,"Date":"8/21/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":741,"Cost":417,"Date":"8/23/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":539,"Cost":339,"Date":"9/3/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":796,"Cost":591,"Date":"9/5/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":879,"Cost":494,"Date":"10/6/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":454,"Cost":400,"Date":"10/19/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":749,"Cost":531,"Date":"11/15/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":538,"Cost":442,"Date":"12/8/2021"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":965,"Cost":816,"Date":"1/8/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":586,"Cost":375,"Date":"1/14/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":270,"Cost":153,"Date":"1/19/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":901,"Cost":489,"Date":"1/28/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":6,"Cost":6,"Date":"1/31/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":792,"Cost":580,"Date":"3/27/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":371,"Cost":193,"Date":"4/20/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":336,"Cost":290,"Date":"4/24/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":595,"Cost":443,"Date":"4/28/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":886,"Cost":503,"Date":"5/15/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":918,"Cost":688,"Date":"5/16/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":920,"Cost":715,"Date":"5/18/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":954,"Cost":791,"Date":"6/2/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":536,"Cost":459,"Date":"6/3/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":36,"Cost":19,"Date":"6/5/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":370,"Cost":280,"Date":"6/7/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":221,"Cost":130,"Date":"6/14/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":292,"Cost":262,"Date":"6/20/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":769,"Cost":445,"Date":"6/24/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":470,"Cost":326,"Date":"7/4/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":679,"Cost":633,"Date":"7/9/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":185,"Cost":125,"Date":"7/12/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":987,"Cost":729,"Date":"8/14/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":205,"Cost":176,"Date":"8/16/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":392,"Cost":350,"Date":"8/23/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":473,"Cost":236,"Date":"9/2/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":327,"Cost":235,"Date":"9/3/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":162,"Cost":132,"Date":"9/16/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":574,"Cost":512,"Date":"10/4/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":283,"Cost":250,"Date":"11/1/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":303,"Cost":183,"Date":"11/2/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":395,"Cost":342,"Date":"12/17/2022"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":860,"Cost":586,"Date":"2/10/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":380,"Cost":210,"Date":"2/28/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":961,"Cost":848,"Date":"3/4/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":791,"Cost":427,"Date":"3/9/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":575,"Cost":531,"Date":"3/9/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":611,"Cost":580,"Date":"3/11/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":123,"Cost":85,"Date":"3/17/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":221,"Cost":194,"Date":"3/17/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":72,"Cost":40,"Date":"3/23/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":873,"Cost":614,"Date":"4/1/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":325,"Cost":178,"Date":"5/7/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":206,"Cost":122,"Date":"5/10/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":122,"Cost":63,"Date":"5/20/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":696,"Cost":506,"Date":"6/2/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":502,"Cost":392,"Date":"6/11/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":591,"Cost":549,"Date":"6/16/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":380,"Cost":246,"Date":"6/16/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":23,"Cost":16,"Date":"7/10/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":742,"Cost":580,"Date":"7/11/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":659,"Cost":516,"Date":"8/28/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":853,"Cost":759,"Date":"8/29/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":69,"Cost":45,"Date":"8/31/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":899,"Cost":763,"Date":"9/8/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":2,"Cost":2,"Date":"9/13/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":482,"Cost":331,"Date":"9/14/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":773,"Cost":591,"Date":"9/19/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":984,"Cost":616,"Date":"9/25/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":407,"Cost":213,"Date":"10/4/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":116,"Cost":86,"Date":"10/10/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":223,"Cost":124,"Date":"10/17/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":846,"Cost":557,"Date":"10/28/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":372,"Cost":341,"Date":"10/30/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":386,"Cost":317,"Date":"11/1/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":651,"Cost":583,"Date":"11/15/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":704,"Cost":629,"Date":"11/25/2023"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":57,"Cost":32,"Date":"1/10/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":394,"Cost":303,"Date":"1/14/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":955,"Cost":889,"Date":"1/20/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":555,"Cost":512,"Date":"2/8/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":158,"Cost":108,"Date":"2/25/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":69,"Cost":66,"Date":"3/7/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":535,"Cost":277,"Date":"3/14/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":659,"Cost":462,"Date":"3/27/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":638,"Cost":370,"Date":"4/5/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":391,"Cost":286,"Date":"4/14/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":385,"Cost":204,"Date":"5/3/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":429,"Cost":360,"Date":"5/9/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":78,"Cost":57,"Date":"5/15/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":230,"Cost":150,"Date":"5/25/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":197,"Cost":111,"Date":"5/26/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":622,"Cost":561,"Date":"5/31/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":340,"Cost":259,"Date":"7/27/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":859,"Cost":537,"Date":"9/17/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":60,"Cost":35,"Date":"10/6/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":683,"Cost":649,"Date":"10/8/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":244,"Cost":126,"Date":"10/26/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":280,"Cost":250,"Date":"11/16/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":919,"Cost":466,"Date":"11/18/2024"},{"Store":"Rive Gauche, Charleroi","Brand":"Jeans","Country":"Belgium","Sale":787,"Cost":487,"Date":"12/1/2024"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":376,"Cost":333,"Date":"2/9/2018"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":247,"Cost":135,"Date":"2/11/2018"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":919,"Cost":756,"Date":"3/10/2018"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":846,"Cost":615,"Date":"3/16/2018"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":596,"Cost":300,"Date":"3/18/2018"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":777,"Cost":437,"Date":"3/20/2018"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":865,"Cost":750,"Date":"3/26/2018"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":92,"Cost":66,"Date":"6/2/2018"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":253,"Cost":214,"Date":"6/10/2018"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":977,"Cost":765,"Date":"6/16/2018"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":675,"Cost":575,"Date":"6/25/2018"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":448,"Cost":321,"Date":"7/19/2018"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":462,"Cost":231,"Date":"7/21/2018"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":89,"Cost":46,"Date":"7/25/2018"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":957,"Cost":678,"Date":"8/4/2018"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":567,"Cost":388,"Date":"9/2/2018"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":935,"Cost":692,"Date":"9/4/2018"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":108,"Cost":71,"Date":"9/19/2018"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":824,"Cost":714,"Date":"9/29/2018"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":310,"Cost":290,"Date":"10/2/2018"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":300,"Cost":260,"Date":"10/15/2018"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":133,"Cost":101,"Date":"10/30/2018"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":366,"Cost":208,"Date":"11/9/2018"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":126,"Cost":88,"Date":"11/23/2018"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":310,"Cost":233,"Date":"11/30/2018"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":152,"Cost":125,"Date":"12/8/2018"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":297,"Cost":195,"Date":"12/11/2018"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":796,"Cost":550,"Date":"1/15/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":976,"Cost":754,"Date":"1/24/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":496,"Cost":369,"Date":"2/3/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":540,"Cost":451,"Date":"2/4/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":281,"Cost":211,"Date":"3/9/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":847,"Cost":447,"Date":"3/12/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":364,"Cost":253,"Date":"4/19/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":66,"Cost":33,"Date":"5/3/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":282,"Cost":217,"Date":"5/4/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":836,"Cost":436,"Date":"6/8/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":945,"Cost":693,"Date":"6/26/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":360,"Cost":290,"Date":"7/4/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":755,"Cost":626,"Date":"7/13/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":480,"Cost":413,"Date":"8/8/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":445,"Cost":299,"Date":"8/26/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":383,"Cost":213,"Date":"9/2/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":415,"Cost":225,"Date":"9/29/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":616,"Cost":512,"Date":"10/12/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":888,"Cost":514,"Date":"11/2/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":11,"Cost":11,"Date":"11/4/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":230,"Cost":154,"Date":"11/7/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":235,"Cost":149,"Date":"12/1/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":511,"Cost":467,"Date":"12/4/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":849,"Cost":777,"Date":"12/7/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":788,"Cost":475,"Date":"12/18/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":262,"Cost":179,"Date":"12/20/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":839,"Cost":469,"Date":"12/20/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":875,"Cost":820,"Date":"12/21/2019"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":243,"Cost":157,"Date":"1/9/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":820,"Cost":770,"Date":"2/5/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":980,"Cost":735,"Date":"2/16/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":326,"Cost":188,"Date":"2/16/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":185,"Cost":148,"Date":"2/18/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":554,"Cost":488,"Date":"2/22/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":1000,"Cost":599,"Date":"2/25/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":680,"Cost":418,"Date":"3/8/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":679,"Cost":565,"Date":"4/2/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":80,"Cost":66,"Date":"4/3/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":534,"Cost":430,"Date":"4/9/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":292,"Cost":277,"Date":"4/10/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":683,"Cost":494,"Date":"4/19/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":769,"Cost":720,"Date":"5/17/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":552,"Cost":286,"Date":"5/22/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":12,"Cost":7,"Date":"6/20/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":737,"Cost":497,"Date":"7/1/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":879,"Cost":596,"Date":"7/4/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":905,"Cost":800,"Date":"7/8/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":814,"Cost":704,"Date":"7/9/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":205,"Cost":161,"Date":"7/14/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":924,"Cost":690,"Date":"7/19/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":855,"Cost":479,"Date":"8/1/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":701,"Cost":503,"Date":"8/6/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":427,"Cost":221,"Date":"8/7/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":457,"Cost":279,"Date":"8/22/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":466,"Cost":344,"Date":"8/31/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":694,"Cost":657,"Date":"9/1/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":10,"Cost":9,"Date":"9/1/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":43,"Cost":34,"Date":"9/17/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":32,"Cost":24,"Date":"9/29/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":588,"Cost":328,"Date":"11/7/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":8,"Cost":7,"Date":"11/26/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":746,"Cost":402,"Date":"11/27/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":261,"Cost":154,"Date":"12/5/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":973,"Cost":622,"Date":"12/26/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":581,"Cost":306,"Date":"12/31/2020"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":272,"Cost":167,"Date":"1/20/2021"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":355,"Cost":306,"Date":"2/2/2021"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":518,"Cost":326,"Date":"2/8/2021"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":119,"Cost":90,"Date":"2/27/2021"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":226,"Cost":118,"Date":"3/1/2021"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":29,"Cost":23,"Date":"3/1/2021"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":59,"Cost":44,"Date":"3/19/2021"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":219,"Cost":147,"Date":"3/28/2021"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":86,"Cost":72,"Date":"5/21/2021"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":670,"Cost":338,"Date":"7/21/2021"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":864,"Cost":640,"Date":"8/5/2021"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":341,"Cost":268,"Date":"8/12/2021"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":966,"Cost":711,"Date":"8/21/2021"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":234,"Cost":150,"Date":"8/23/2021"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":93,"Cost":89,"Date":"9/3/2021"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":351,"Cost":325,"Date":"9/5/2021"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":732,"Cost":408,"Date":"10/6/2021"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":267,"Cost":217,"Date":"10/19/2021"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":392,"Cost":280,"Date":"11/15/2021"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":567,"Cost":502,"Date":"12/8/2021"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":317,"Cost":223,"Date":"1/8/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":246,"Cost":170,"Date":"1/14/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":206,"Cost":112,"Date":"1/19/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":631,"Cost":560,"Date":"1/28/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":277,"Cost":154,"Date":"1/31/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":55,"Cost":33,"Date":"3/27/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":752,"Cost":613,"Date":"4/20/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":659,"Cost":368,"Date":"4/24/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":261,"Cost":230,"Date":"4/28/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":602,"Cost":510,"Date":"5/15/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":885,"Cost":529,"Date":"5/16/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":385,"Cost":233,"Date":"5/18/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":917,"Cost":605,"Date":"6/2/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":371,"Cost":321,"Date":"6/3/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":662,"Cost":484,"Date":"6/5/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":183,"Cost":130,"Date":"6/7/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":720,"Cost":404,"Date":"6/14/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":474,"Cost":377,"Date":"6/20/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":288,"Cost":170,"Date":"6/24/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":791,"Cost":628,"Date":"7/4/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":279,"Cost":188,"Date":"7/9/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":502,"Cost":294,"Date":"7/12/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":867,"Cost":479,"Date":"8/14/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":417,"Cost":208,"Date":"8/16/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":13,"Cost":6,"Date":"8/23/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":517,"Cost":359,"Date":"9/2/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":18,"Cost":13,"Date":"9/3/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":615,"Cost":343,"Date":"9/16/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":323,"Cost":229,"Date":"10/4/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":482,"Cost":270,"Date":"11/1/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":845,"Cost":493,"Date":"11/2/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":973,"Cost":494,"Date":"12/17/2022"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":774,"Cost":413,"Date":"2/10/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":49,"Cost":30,"Date":"2/28/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":636,"Cost":326,"Date":"3/4/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":305,"Cost":286,"Date":"3/9/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":720,"Cost":515,"Date":"3/9/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":506,"Cost":255,"Date":"3/11/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":58,"Cost":42,"Date":"3/17/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":143,"Cost":117,"Date":"3/17/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":119,"Cost":90,"Date":"3/23/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":99,"Cost":73,"Date":"4/1/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":633,"Cost":523,"Date":"5/7/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":495,"Cost":306,"Date":"5/10/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":262,"Cost":162,"Date":"5/20/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":458,"Cost":232,"Date":"6/2/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":906,"Cost":820,"Date":"6/11/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":632,"Cost":334,"Date":"6/16/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":878,"Cost":538,"Date":"6/16/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":537,"Cost":391,"Date":"7/10/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":176,"Cost":129,"Date":"7/11/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":108,"Cost":95,"Date":"8/28/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":698,"Cost":527,"Date":"8/29/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":401,"Cost":339,"Date":"8/31/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":359,"Cost":253,"Date":"9/8/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":744,"Cost":389,"Date":"9/13/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":669,"Cost":512,"Date":"9/14/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":557,"Cost":509,"Date":"9/19/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":408,"Cost":364,"Date":"9/25/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":599,"Cost":526,"Date":"10/4/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":141,"Cost":93,"Date":"10/10/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":913,"Cost":584,"Date":"10/17/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":475,"Cost":378,"Date":"10/28/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":319,"Cost":230,"Date":"10/30/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":520,"Cost":305,"Date":"11/1/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":29,"Cost":25,"Date":"11/15/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":834,"Cost":603,"Date":"11/25/2023"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":527,"Cost":450,"Date":"1/10/2024"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":524,"Cost":281,"Date":"1/14/2024"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":338,"Cost":229,"Date":"1/20/2024"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":380,"Cost":238,"Date":"2/8/2024"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":678,"Cost":347,"Date":"2/25/2024"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":852,"Cost":606,"Date":"3/7/2024"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":845,"Cost":591,"Date":"3/14/2024"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":596,"Cost":415,"Date":"3/27/2024"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":558,"Cost":465,"Date":"4/5/2024"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":601,"Cost":483,"Date":"4/14/2024"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":943,"Cost":782,"Date":"5/3/2024"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":996,"Cost":882,"Date":"5/9/2024"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":298,"Cost":181,"Date":"5/15/2024"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":366,"Cost":195,"Date":"5/25/2024"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":654,"Cost":439,"Date":"5/26/2024"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":296,"Cost":279,"Date":"5/31/2024"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":71,"Cost":41,"Date":"7/27/2024"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":729,"Cost":507,"Date":"9/17/2024"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":803,"Cost":490,"Date":"10/6/2024"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":547,"Cost":411,"Date":"10/8/2024"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":404,"Cost":250,"Date":"10/26/2024"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":511,"Cost":305,"Date":"11/16/2024"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":206,"Cost":166,"Date":"11/18/2024"},{"Store":"City Mall, Charleroi","Brand":"HM","Country":"Belgium","Sale":286,"Cost":247,"Date":"12/1/2024"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":573,"Cost":423,"Date":"2/9/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":632,"Cost":407,"Date":"2/11/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":873,"Cost":783,"Date":"3/10/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":932,"Cost":748,"Date":"3/16/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":527,"Cost":498,"Date":"3/18/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":86,"Cost":52,"Date":"3/20/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":319,"Cost":278,"Date":"3/26/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":856,"Cost":682,"Date":"6/2/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":22,"Cost":18,"Date":"6/10/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":523,"Cost":348,"Date":"6/16/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":428,"Cost":393,"Date":"6/25/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":203,"Cost":138,"Date":"7/19/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":123,"Cost":110,"Date":"7/21/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":365,"Cost":262,"Date":"7/25/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":695,"Cost":644,"Date":"8/4/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":32,"Cost":16,"Date":"9/2/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":88,"Cost":49,"Date":"9/4/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":597,"Cost":550,"Date":"9/19/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":834,"Cost":530,"Date":"9/29/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":653,"Cost":443,"Date":"10/2/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":248,"Cost":211,"Date":"10/15/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":694,"Cost":376,"Date":"10/30/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":378,"Cost":228,"Date":"11/9/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":89,"Cost":59,"Date":"11/23/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":798,"Cost":590,"Date":"11/30/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":106,"Cost":86,"Date":"12/8/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":400,"Cost":356,"Date":"12/11/2018"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":465,"Cost":241,"Date":"1/15/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":987,"Cost":756,"Date":"1/24/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":762,"Cost":385,"Date":"2/3/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":134,"Cost":82,"Date":"2/4/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":907,"Cost":803,"Date":"3/9/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":36,"Cost":26,"Date":"3/12/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":655,"Cost":473,"Date":"4/19/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":934,"Cost":680,"Date":"5/3/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":309,"Cost":241,"Date":"5/4/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":404,"Cost":368,"Date":"6/8/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":999,"Cost":724,"Date":"6/26/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":475,"Cost":317,"Date":"7/4/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":826,"Cost":777,"Date":"7/13/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":704,"Cost":398,"Date":"8/8/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":219,"Cost":127,"Date":"8/26/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":963,"Cost":836,"Date":"9/2/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":60,"Cost":44,"Date":"9/29/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":356,"Cost":252,"Date":"10/12/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":999,"Cost":891,"Date":"11/2/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":969,"Cost":611,"Date":"11/4/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":443,"Cost":335,"Date":"11/7/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":388,"Cost":247,"Date":"12/1/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":917,"Cost":462,"Date":"12/4/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":272,"Cost":189,"Date":"12/7/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":724,"Cost":420,"Date":"12/18/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":977,"Cost":915,"Date":"12/20/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":591,"Cost":434,"Date":"12/20/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":867,"Cost":516,"Date":"12/21/2019"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":113,"Cost":81,"Date":"1/9/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":471,"Cost":325,"Date":"2/5/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":494,"Cost":451,"Date":"2/16/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":561,"Cost":441,"Date":"2/16/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":917,"Cost":588,"Date":"2/18/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":17,"Cost":16,"Date":"2/22/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":272,"Cost":190,"Date":"2/25/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":204,"Cost":123,"Date":"3/8/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":572,"Cost":524,"Date":"4/2/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":30,"Cost":29,"Date":"4/3/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":694,"Cost":583,"Date":"4/9/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":406,"Cost":358,"Date":"4/10/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":89,"Cost":70,"Date":"4/19/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":798,"Cost":671,"Date":"5/17/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":710,"Cost":648,"Date":"5/22/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":914,"Cost":618,"Date":"6/20/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":485,"Cost":435,"Date":"7/1/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":172,"Cost":106,"Date":"7/4/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":351,"Cost":259,"Date":"7/8/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":355,"Cost":326,"Date":"7/9/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":52,"Cost":29,"Date":"7/14/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":692,"Cost":576,"Date":"7/19/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":207,"Cost":121,"Date":"8/1/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":789,"Cost":706,"Date":"8/6/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":908,"Cost":794,"Date":"8/7/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":651,"Cost":415,"Date":"8/22/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":456,"Cost":353,"Date":"8/31/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":616,"Cost":479,"Date":"9/1/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":45,"Cost":36,"Date":"9/1/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":250,"Cost":227,"Date":"9/17/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":575,"Cost":453,"Date":"9/29/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":296,"Cost":163,"Date":"11/7/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":480,"Cost":444,"Date":"11/26/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":120,"Cost":111,"Date":"11/27/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":927,"Cost":787,"Date":"12/5/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":330,"Cost":199,"Date":"12/26/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":366,"Cost":236,"Date":"12/31/2020"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":699,"Cost":409,"Date":"1/20/2021"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":860,"Cost":747,"Date":"2/2/2021"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":145,"Cost":129,"Date":"2/8/2021"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":205,"Cost":136,"Date":"2/27/2021"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":849,"Cost":780,"Date":"3/1/2021"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":284,"Cost":183,"Date":"3/1/2021"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":886,"Cost":497,"Date":"3/19/2021"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":31,"Cost":15,"Date":"3/28/2021"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":529,"Cost":487,"Date":"5/21/2021"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":945,"Cost":503,"Date":"7/21/2021"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":301,"Cost":256,"Date":"8/5/2021"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":916,"Cost":861,"Date":"8/12/2021"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":161,"Cost":126,"Date":"8/21/2021"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":924,"Cost":829,"Date":"8/23/2021"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":176,"Cost":112,"Date":"9/3/2021"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":332,"Cost":289,"Date":"9/5/2021"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":355,"Cost":276,"Date":"10/6/2021"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":143,"Cost":132,"Date":"10/19/2021"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":79,"Cost":55,"Date":"11/15/2021"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":448,"Cost":246,"Date":"12/8/2021"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":751,"Cost":645,"Date":"1/8/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":394,"Cost":336,"Date":"1/14/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":583,"Cost":531,"Date":"1/19/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":791,"Cost":632,"Date":"1/28/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":725,"Cost":591,"Date":"1/31/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":246,"Cost":184,"Date":"3/27/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":319,"Cost":303,"Date":"4/20/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":573,"Cost":350,"Date":"4/24/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":920,"Cost":821,"Date":"4/28/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":946,"Cost":745,"Date":"5/15/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":275,"Cost":222,"Date":"5/16/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":27,"Cost":18,"Date":"5/18/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":186,"Cost":140,"Date":"6/2/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":526,"Cost":450,"Date":"6/3/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":771,"Cost":718,"Date":"6/5/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":754,"Cost":623,"Date":"6/7/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":987,"Cost":778,"Date":"6/14/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":787,"Cost":544,"Date":"6/20/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":153,"Cost":81,"Date":"6/24/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":633,"Cost":570,"Date":"7/4/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":832,"Cost":572,"Date":"7/9/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":79,"Cost":49,"Date":"7/12/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":185,"Cost":156,"Date":"8/14/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":767,"Cost":456,"Date":"8/16/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":245,"Cost":126,"Date":"8/23/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":968,"Cost":577,"Date":"9/2/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":379,"Cost":280,"Date":"9/3/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":961,"Cost":564,"Date":"9/16/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":771,"Cost":703,"Date":"10/4/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":809,"Cost":546,"Date":"11/1/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":721,"Cost":647,"Date":"11/2/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":731,"Cost":602,"Date":"12/17/2022"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":56,"Cost":28,"Date":"2/10/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":998,"Cost":512,"Date":"2/28/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":556,"Cost":285,"Date":"3/4/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":67,"Cost":52,"Date":"3/9/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":585,"Cost":410,"Date":"3/9/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":446,"Cost":382,"Date":"3/11/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":213,"Cost":133,"Date":"3/17/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":132,"Cost":114,"Date":"3/17/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":988,"Cost":872,"Date":"3/23/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":245,"Cost":174,"Date":"4/1/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":590,"Cost":374,"Date":"5/7/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":371,"Cost":206,"Date":"5/10/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":895,"Cost":758,"Date":"5/20/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":837,"Cost":494,"Date":"6/2/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":627,"Cost":383,"Date":"6/11/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":405,"Cost":336,"Date":"6/16/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":867,"Cost":569,"Date":"6/16/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":731,"Cost":401,"Date":"7/10/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":936,"Cost":474,"Date":"7/11/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":192,"Cost":151,"Date":"8/28/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":971,"Cost":527,"Date":"8/29/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":176,"Cost":160,"Date":"8/31/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":109,"Cost":79,"Date":"9/8/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":488,"Cost":438,"Date":"9/13/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":818,"Cost":506,"Date":"9/14/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":391,"Cost":246,"Date":"9/19/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":972,"Cost":809,"Date":"9/25/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":481,"Cost":443,"Date":"10/4/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":423,"Cost":389,"Date":"10/10/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":528,"Cost":376,"Date":"10/17/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":212,"Cost":201,"Date":"10/28/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":374,"Cost":351,"Date":"10/30/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":581,"Cost":335,"Date":"11/1/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":690,"Cost":367,"Date":"11/15/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":151,"Cost":132,"Date":"11/25/2023"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":830,"Cost":554,"Date":"1/10/2024"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":162,"Cost":147,"Date":"1/14/2024"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":132,"Cost":118,"Date":"1/20/2024"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":690,"Cost":507,"Date":"2/8/2024"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":387,"Cost":367,"Date":"2/25/2024"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":101,"Cost":69,"Date":"3/7/2024"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":541,"Cost":472,"Date":"3/14/2024"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":247,"Cost":188,"Date":"3/27/2024"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":966,"Cost":810,"Date":"4/5/2024"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":301,"Cost":206,"Date":"4/14/2024"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":585,"Cost":340,"Date":"5/3/2024"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":224,"Cost":142,"Date":"5/9/2024"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":249,"Cost":157,"Date":"5/15/2024"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":504,"Cost":474,"Date":"5/25/2024"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":648,"Cost":599,"Date":"5/26/2024"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":330,"Cost":179,"Date":"5/31/2024"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":385,"Cost":262,"Date":"7/27/2024"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":820,"Cost":697,"Date":"9/17/2024"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":266,"Cost":241,"Date":"10/6/2024"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":399,"Cost":333,"Date":"10/8/2024"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":536,"Cost":322,"Date":"10/26/2024"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":147,"Cost":87,"Date":"11/16/2024"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":616,"Cost":509,"Date":"11/18/2024"},{"Store":"City Mall, Charleroi","Brand":"COS","Country":"Belgium","Sale":440,"Cost":298,"Date":"12/1/2024"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":242,"Cost":131,"Date":"2/9/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":665,"Cost":450,"Date":"2/11/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":141,"Cost":89,"Date":"3/10/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":149,"Cost":115,"Date":"3/16/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":471,"Cost":379,"Date":"3/18/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":398,"Cost":271,"Date":"3/20/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":7,"Cost":7,"Date":"3/26/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":822,"Cost":761,"Date":"6/2/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":318,"Cost":206,"Date":"6/10/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":913,"Cost":461,"Date":"6/16/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":893,"Cost":480,"Date":"6/25/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":971,"Cost":695,"Date":"7/19/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":60,"Cost":47,"Date":"7/21/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":475,"Cost":253,"Date":"7/25/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":25,"Cost":18,"Date":"8/4/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":10,"Cost":7,"Date":"9/2/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":171,"Cost":89,"Date":"9/4/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":537,"Cost":510,"Date":"9/19/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":192,"Cost":158,"Date":"9/29/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":838,"Cost":512,"Date":"10/2/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":682,"Cost":539,"Date":"10/15/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":651,"Cost":457,"Date":"10/30/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":732,"Cost":418,"Date":"11/9/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":924,"Cost":524,"Date":"11/23/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":782,"Cost":691,"Date":"11/30/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":245,"Cost":183,"Date":"12/8/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":609,"Cost":382,"Date":"12/11/2018"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":182,"Cost":91,"Date":"1/15/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":61,"Cost":48,"Date":"1/24/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":580,"Cost":412,"Date":"2/3/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":672,"Cost":581,"Date":"2/4/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":226,"Cost":183,"Date":"3/9/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":89,"Cost":77,"Date":"3/12/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":948,"Cost":851,"Date":"4/19/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":618,"Cost":485,"Date":"5/3/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":962,"Cost":541,"Date":"5/4/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":82,"Cost":74,"Date":"6/8/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":219,"Cost":159,"Date":"6/26/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":698,"Cost":543,"Date":"7/4/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":817,"Cost":469,"Date":"7/13/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":138,"Cost":112,"Date":"8/8/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":113,"Cost":78,"Date":"8/26/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":602,"Cost":523,"Date":"9/2/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":746,"Cost":704,"Date":"9/29/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":766,"Cost":705,"Date":"10/12/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":587,"Cost":391,"Date":"11/2/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":195,"Cost":118,"Date":"11/4/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":330,"Cost":184,"Date":"11/7/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":540,"Cost":407,"Date":"12/1/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":854,"Cost":475,"Date":"12/4/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":655,"Cost":458,"Date":"12/7/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":705,"Cost":446,"Date":"12/18/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":581,"Cost":529,"Date":"12/20/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":629,"Cost":411,"Date":"12/20/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":942,"Cost":519,"Date":"12/21/2019"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":134,"Cost":109,"Date":"1/9/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":838,"Cost":687,"Date":"2/5/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":989,"Cost":873,"Date":"2/16/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":390,"Cost":301,"Date":"2/16/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":292,"Cost":217,"Date":"2/18/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":448,"Cost":422,"Date":"2/22/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":487,"Cost":447,"Date":"2/25/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":22,"Cost":19,"Date":"3/8/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":305,"Cost":168,"Date":"4/2/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":693,"Cost":455,"Date":"4/3/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":510,"Cost":481,"Date":"4/9/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":315,"Cost":258,"Date":"4/10/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":290,"Cost":158,"Date":"4/19/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":102,"Cost":68,"Date":"5/17/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":261,"Cost":136,"Date":"5/22/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":301,"Cost":266,"Date":"6/20/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":92,"Cost":83,"Date":"7/1/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":601,"Cost":362,"Date":"7/4/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":209,"Cost":185,"Date":"7/8/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":916,"Cost":550,"Date":"7/9/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":885,"Cost":445,"Date":"7/14/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":215,"Cost":165,"Date":"7/19/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":568,"Cost":385,"Date":"8/1/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":923,"Cost":862,"Date":"8/6/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":3,"Cost":1,"Date":"8/7/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":365,"Cost":234,"Date":"8/22/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":844,"Cost":616,"Date":"8/31/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":166,"Cost":140,"Date":"9/1/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":923,"Cost":830,"Date":"9/1/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":895,"Cost":556,"Date":"9/17/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":412,"Cost":206,"Date":"9/29/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":570,"Cost":392,"Date":"11/7/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":901,"Cost":849,"Date":"11/26/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":197,"Cost":107,"Date":"11/27/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":573,"Cost":366,"Date":"12/5/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":926,"Cost":540,"Date":"12/26/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":886,"Cost":675,"Date":"12/31/2020"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":888,"Cost":566,"Date":"1/20/2021"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":908,"Cost":557,"Date":"2/2/2021"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":650,"Cost":392,"Date":"2/8/2021"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":877,"Cost":533,"Date":"2/27/2021"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":443,"Cost":250,"Date":"3/1/2021"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":376,"Cost":243,"Date":"3/1/2021"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":679,"Cost":376,"Date":"3/19/2021"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":648,"Cost":338,"Date":"3/28/2021"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":114,"Cost":91,"Date":"5/21/2021"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":382,"Cost":224,"Date":"7/21/2021"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":936,"Cost":749,"Date":"8/5/2021"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":793,"Cost":685,"Date":"8/12/2021"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":8,"Cost":8,"Date":"8/21/2021"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":269,"Cost":211,"Date":"8/23/2021"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":757,"Cost":545,"Date":"9/3/2021"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":366,"Cost":319,"Date":"9/5/2021"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":490,"Cost":340,"Date":"10/6/2021"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":636,"Cost":507,"Date":"10/19/2021"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":803,"Cost":422,"Date":"11/15/2021"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":290,"Cost":234,"Date":"12/8/2021"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":526,"Cost":355,"Date":"1/8/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":791,"Cost":678,"Date":"1/14/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":514,"Cost":356,"Date":"1/19/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":747,"Cost":594,"Date":"1/28/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":674,"Cost":396,"Date":"1/31/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":852,"Cost":748,"Date":"3/27/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":49,"Cost":28,"Date":"4/20/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":984,"Cost":625,"Date":"4/24/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":194,"Cost":168,"Date":"4/28/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":813,"Cost":476,"Date":"5/15/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":6,"Cost":5,"Date":"5/16/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":782,"Cost":498,"Date":"5/18/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":645,"Cost":588,"Date":"6/2/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":817,"Cost":754,"Date":"6/3/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":663,"Cost":462,"Date":"6/5/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":776,"Cost":653,"Date":"6/7/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":964,"Cost":797,"Date":"6/14/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":436,"Cost":271,"Date":"6/20/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":434,"Cost":311,"Date":"6/24/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":241,"Cost":186,"Date":"7/4/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":659,"Cost":446,"Date":"7/9/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":673,"Cost":443,"Date":"7/12/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":43,"Cost":31,"Date":"8/14/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":965,"Cost":644,"Date":"8/16/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":835,"Cost":417,"Date":"8/23/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":11,"Cost":6,"Date":"9/2/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":672,"Cost":430,"Date":"9/3/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":883,"Cost":817,"Date":"9/16/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":608,"Cost":508,"Date":"10/4/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":465,"Cost":274,"Date":"11/1/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":179,"Cost":111,"Date":"11/2/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":871,"Cost":600,"Date":"12/17/2022"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":403,"Cost":347,"Date":"2/10/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":644,"Cost":369,"Date":"2/28/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":639,"Cost":587,"Date":"3/4/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":345,"Cost":243,"Date":"3/9/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":179,"Cost":89,"Date":"3/9/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":456,"Cost":299,"Date":"3/11/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":802,"Cost":568,"Date":"3/17/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":584,"Cost":436,"Date":"3/17/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":830,"Cost":499,"Date":"3/23/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":495,"Cost":365,"Date":"4/1/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":369,"Cost":217,"Date":"5/7/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":30,"Cost":28,"Date":"5/10/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":45,"Cost":39,"Date":"5/20/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":643,"Cost":424,"Date":"6/2/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":401,"Cost":292,"Date":"6/11/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":718,"Cost":390,"Date":"6/16/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":429,"Cost":253,"Date":"6/16/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":232,"Cost":209,"Date":"7/10/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":470,"Cost":313,"Date":"7/11/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":178,"Cost":153,"Date":"8/28/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":813,"Cost":524,"Date":"8/29/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":991,"Cost":811,"Date":"8/31/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":486,"Cost":313,"Date":"9/8/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":125,"Cost":96,"Date":"9/13/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":162,"Cost":115,"Date":"9/14/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":968,"Cost":557,"Date":"9/19/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":34,"Cost":24,"Date":"9/25/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":981,"Cost":573,"Date":"10/4/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":284,"Cost":256,"Date":"10/10/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":135,"Cost":105,"Date":"10/17/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":396,"Cost":232,"Date":"10/28/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":870,"Cost":798,"Date":"10/30/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":796,"Cost":535,"Date":"11/1/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":308,"Cost":211,"Date":"11/15/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":745,"Cost":566,"Date":"11/25/2023"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":19,"Cost":18,"Date":"1/10/2024"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":41,"Cost":28,"Date":"1/14/2024"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":828,"Cost":746,"Date":"1/20/2024"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":496,"Cost":328,"Date":"2/8/2024"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":63,"Cost":50,"Date":"2/25/2024"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":717,"Cost":364,"Date":"3/7/2024"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":164,"Cost":154,"Date":"3/14/2024"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":563,"Cost":524,"Date":"3/27/2024"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":212,"Cost":133,"Date":"4/5/2024"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":522,"Cost":290,"Date":"4/14/2024"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":769,"Cost":700,"Date":"5/3/2024"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":964,"Cost":680,"Date":"5/9/2024"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":510,"Cost":256,"Date":"5/15/2024"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":389,"Cost":331,"Date":"5/25/2024"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":136,"Cost":111,"Date":"5/26/2024"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":346,"Cost":204,"Date":"5/31/2024"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":976,"Cost":763,"Date":"7/27/2024"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":283,"Cost":166,"Date":"9/17/2024"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":735,"Cost":690,"Date":"10/6/2024"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":442,"Cost":409,"Date":"10/8/2024"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":130,"Cost":96,"Date":"10/26/2024"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":721,"Cost":681,"Date":"11/16/2024"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":715,"Cost":536,"Date":"11/18/2024"},{"Store":"City Mall, Charleroi","Brand":"HM Home","Country":"Belgium","Sale":749,"Cost":690,"Date":"12/1/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":175,"Cost":147,"Date":"2/9/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":304,"Cost":191,"Date":"2/11/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":997,"Cost":926,"Date":"3/10/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":560,"Cost":288,"Date":"3/16/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":866,"Cost":558,"Date":"3/18/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":795,"Cost":721,"Date":"3/20/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":143,"Cost":135,"Date":"3/26/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":591,"Cost":463,"Date":"6/2/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":338,"Cost":320,"Date":"6/10/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":683,"Cost":433,"Date":"6/16/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":482,"Cost":441,"Date":"6/25/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":473,"Cost":332,"Date":"7/19/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":432,"Cost":252,"Date":"7/21/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":957,"Cost":692,"Date":"7/25/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":943,"Cost":608,"Date":"8/4/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":304,"Cost":171,"Date":"9/2/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":67,"Cost":62,"Date":"9/4/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":838,"Cost":618,"Date":"9/19/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":576,"Cost":414,"Date":"9/29/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":35,"Cost":30,"Date":"10/2/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":304,"Cost":227,"Date":"10/15/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":688,"Cost":641,"Date":"10/30/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":209,"Cost":162,"Date":"11/9/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":972,"Cost":880,"Date":"11/23/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":514,"Cost":382,"Date":"11/30/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":13,"Cost":8,"Date":"12/8/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":361,"Cost":307,"Date":"12/11/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":106,"Cost":79,"Date":"1/15/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":833,"Cost":687,"Date":"1/24/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":674,"Cost":462,"Date":"2/3/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":647,"Cost":364,"Date":"2/4/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":294,"Cost":223,"Date":"3/9/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":668,"Cost":466,"Date":"3/12/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":624,"Cost":460,"Date":"4/19/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":391,"Cost":245,"Date":"5/3/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":211,"Cost":158,"Date":"5/4/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":73,"Cost":54,"Date":"6/8/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":765,"Cost":476,"Date":"6/26/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":710,"Cost":643,"Date":"7/4/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":143,"Cost":99,"Date":"7/13/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":252,"Cost":164,"Date":"8/8/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":200,"Cost":124,"Date":"8/26/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":560,"Cost":388,"Date":"9/2/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":648,"Cost":455,"Date":"9/29/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":339,"Cost":182,"Date":"10/12/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":659,"Cost":405,"Date":"11/2/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":71,"Cost":54,"Date":"11/4/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":60,"Cost":37,"Date":"11/7/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":734,"Cost":388,"Date":"12/1/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":309,"Cost":207,"Date":"12/4/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":973,"Cost":541,"Date":"12/7/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":523,"Cost":375,"Date":"12/18/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":147,"Cost":132,"Date":"12/20/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":486,"Cost":308,"Date":"12/20/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":7,"Cost":3,"Date":"12/21/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":734,"Cost":379,"Date":"1/9/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":515,"Cost":473,"Date":"2/5/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":571,"Cost":476,"Date":"2/16/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":916,"Cost":761,"Date":"2/16/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":607,"Cost":307,"Date":"2/18/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":694,"Cost":375,"Date":"2/22/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":806,"Cost":744,"Date":"2/25/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":423,"Cost":328,"Date":"3/8/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":18,"Cost":16,"Date":"4/2/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":785,"Cost":443,"Date":"4/3/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":984,"Cost":717,"Date":"4/9/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":846,"Cost":475,"Date":"4/10/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":627,"Cost":385,"Date":"4/19/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":28,"Cost":25,"Date":"5/17/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":718,"Cost":485,"Date":"5/22/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":814,"Cost":609,"Date":"6/20/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":591,"Cost":469,"Date":"7/1/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":374,"Cost":293,"Date":"7/4/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":833,"Cost":564,"Date":"7/8/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":151,"Cost":86,"Date":"7/9/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":871,"Cost":676,"Date":"7/14/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":66,"Cost":44,"Date":"7/19/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":342,"Cost":287,"Date":"8/1/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":395,"Cost":337,"Date":"8/6/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":520,"Cost":396,"Date":"8/7/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":643,"Cost":342,"Date":"8/22/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":230,"Cost":187,"Date":"8/31/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":320,"Cost":239,"Date":"9/1/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":957,"Cost":715,"Date":"9/1/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":148,"Cost":86,"Date":"9/17/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":272,"Cost":190,"Date":"9/29/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":647,"Cost":326,"Date":"11/7/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":885,"Cost":606,"Date":"11/26/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":965,"Cost":673,"Date":"11/27/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":644,"Cost":603,"Date":"12/5/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":995,"Cost":736,"Date":"12/26/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":960,"Cost":841,"Date":"12/31/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":277,"Cost":242,"Date":"1/20/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":744,"Cost":556,"Date":"2/2/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":766,"Cost":493,"Date":"2/8/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":668,"Cost":358,"Date":"2/27/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":886,"Cost":774,"Date":"3/1/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":997,"Cost":695,"Date":"3/1/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":196,"Cost":109,"Date":"3/19/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":55,"Cost":37,"Date":"3/28/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":281,"Cost":169,"Date":"5/21/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":55,"Cost":49,"Date":"7/21/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":862,"Cost":622,"Date":"8/5/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":769,"Cost":397,"Date":"8/12/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":414,"Cost":357,"Date":"8/21/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":802,"Cost":452,"Date":"8/23/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":705,"Cost":535,"Date":"9/3/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":786,"Cost":682,"Date":"9/5/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":720,"Cost":371,"Date":"10/6/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":986,"Cost":877,"Date":"10/19/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":970,"Cost":487,"Date":"11/15/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":186,"Cost":109,"Date":"12/8/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":864,"Cost":456,"Date":"1/8/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":561,"Cost":419,"Date":"1/14/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":990,"Cost":769,"Date":"1/19/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":999,"Cost":529,"Date":"1/28/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":296,"Cost":269,"Date":"1/31/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":384,"Cost":233,"Date":"3/27/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":774,"Cost":723,"Date":"4/20/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":409,"Cost":232,"Date":"4/24/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":292,"Cost":184,"Date":"4/28/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":142,"Cost":104,"Date":"5/15/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":65,"Cost":44,"Date":"5/16/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":297,"Cost":220,"Date":"5/18/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":310,"Cost":240,"Date":"6/2/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":846,"Cost":629,"Date":"6/3/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":1000,"Cost":759,"Date":"6/5/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":963,"Cost":617,"Date":"6/7/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":810,"Cost":746,"Date":"6/14/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":642,"Cost":423,"Date":"6/20/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":398,"Cost":204,"Date":"6/24/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":792,"Cost":727,"Date":"7/4/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":517,"Cost":316,"Date":"7/9/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":712,"Cost":380,"Date":"7/12/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":203,"Cost":158,"Date":"8/14/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":663,"Cost":436,"Date":"8/16/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":902,"Cost":586,"Date":"8/23/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":89,"Cost":47,"Date":"9/2/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":492,"Cost":467,"Date":"9/3/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":896,"Cost":500,"Date":"9/16/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":707,"Cost":584,"Date":"10/4/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":231,"Cost":129,"Date":"11/1/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":402,"Cost":371,"Date":"11/2/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":89,"Cost":46,"Date":"12/17/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":841,"Cost":427,"Date":"2/10/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":576,"Cost":423,"Date":"2/28/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":31,"Cost":15,"Date":"3/4/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":319,"Cost":159,"Date":"3/9/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":320,"Cost":243,"Date":"3/9/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":754,"Cost":503,"Date":"3/11/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":832,"Cost":499,"Date":"3/17/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":381,"Cost":236,"Date":"3/17/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":32,"Cost":22,"Date":"3/23/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":527,"Cost":265,"Date":"4/1/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":198,"Cost":168,"Date":"5/7/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":776,"Cost":564,"Date":"5/10/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":72,"Cost":37,"Date":"5/20/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":787,"Cost":504,"Date":"6/2/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":923,"Cost":556,"Date":"6/11/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":9,"Cost":9,"Date":"6/16/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":786,"Cost":493,"Date":"6/16/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":191,"Cost":137,"Date":"7/10/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":703,"Cost":594,"Date":"7/11/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":917,"Cost":592,"Date":"8/28/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":105,"Cost":57,"Date":"8/29/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":282,"Cost":241,"Date":"8/31/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":549,"Cost":307,"Date":"9/8/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":884,"Cost":774,"Date":"9/13/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":899,"Cost":832,"Date":"9/14/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":36,"Cost":21,"Date":"9/19/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":163,"Cost":91,"Date":"9/25/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":792,"Cost":739,"Date":"10/4/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":888,"Cost":833,"Date":"10/10/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":506,"Cost":370,"Date":"10/17/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":889,"Cost":715,"Date":"10/28/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":702,"Cost":584,"Date":"10/30/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":542,"Cost":397,"Date":"11/1/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":858,"Cost":718,"Date":"11/15/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":757,"Cost":400,"Date":"11/25/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":89,"Cost":56,"Date":"1/10/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":236,"Cost":128,"Date":"1/14/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":288,"Cost":183,"Date":"1/20/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":882,"Cost":501,"Date":"2/8/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":539,"Cost":444,"Date":"2/25/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":502,"Cost":458,"Date":"3/7/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":386,"Cost":287,"Date":"3/14/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":720,"Cost":516,"Date":"3/27/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":42,"Cost":38,"Date":"4/5/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":589,"Cost":367,"Date":"4/14/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":385,"Cost":197,"Date":"5/3/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":529,"Cost":397,"Date":"5/9/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":440,"Cost":406,"Date":"5/15/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":886,"Cost":796,"Date":"5/25/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":400,"Cost":369,"Date":"5/26/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":801,"Cost":727,"Date":"5/31/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":834,"Cost":436,"Date":"7/27/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":775,"Cost":557,"Date":"9/17/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":586,"Cost":367,"Date":"10/6/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":353,"Cost":201,"Date":"10/8/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":636,"Cost":333,"Date":"10/26/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":688,"Cost":361,"Date":"11/16/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":590,"Cost":463,"Date":"11/18/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":894,"Cost":744,"Date":"12/1/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":12,"Cost":6,"Date":"2/9/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":718,"Cost":625,"Date":"2/11/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":690,"Cost":412,"Date":"3/10/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":997,"Cost":921,"Date":"3/16/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":552,"Cost":368,"Date":"3/18/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":73,"Cost":36,"Date":"3/20/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":589,"Cost":360,"Date":"3/26/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":208,"Cost":170,"Date":"6/2/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":388,"Cost":222,"Date":"6/10/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":268,"Cost":234,"Date":"6/16/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":620,"Cost":381,"Date":"6/25/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":616,"Cost":473,"Date":"7/19/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":212,"Cost":132,"Date":"7/21/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":912,"Cost":654,"Date":"7/25/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":430,"Cost":337,"Date":"8/4/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":853,"Cost":550,"Date":"9/2/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":475,"Cost":299,"Date":"9/4/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":735,"Cost":607,"Date":"9/19/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":769,"Cost":531,"Date":"9/29/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":916,"Cost":645,"Date":"10/2/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":971,"Cost":561,"Date":"10/15/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":437,"Cost":393,"Date":"10/30/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":787,"Cost":542,"Date":"11/9/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":183,"Cost":154,"Date":"11/23/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":371,"Cost":286,"Date":"11/30/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":405,"Cost":329,"Date":"12/8/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":927,"Cost":577,"Date":"12/11/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":758,"Cost":485,"Date":"1/15/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":546,"Cost":373,"Date":"1/24/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":952,"Cost":726,"Date":"2/3/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":549,"Cost":327,"Date":"2/4/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":272,"Cost":213,"Date":"3/9/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":6,"Cost":4,"Date":"3/12/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":340,"Cost":302,"Date":"4/19/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":588,"Cost":374,"Date":"5/3/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":227,"Cost":130,"Date":"5/4/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":346,"Cost":295,"Date":"6/8/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":19,"Cost":9,"Date":"6/26/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":746,"Cost":617,"Date":"7/4/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":503,"Cost":299,"Date":"7/13/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":669,"Cost":529,"Date":"8/8/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":922,"Cost":580,"Date":"8/26/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":863,"Cost":624,"Date":"9/2/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":533,"Cost":466,"Date":"9/29/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":882,"Cost":736,"Date":"10/12/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":307,"Cost":286,"Date":"11/2/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":361,"Cost":339,"Date":"11/4/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":305,"Cost":263,"Date":"11/7/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":946,"Cost":825,"Date":"12/1/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":757,"Cost":506,"Date":"12/4/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":231,"Cost":138,"Date":"12/7/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":909,"Cost":586,"Date":"12/18/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":605,"Cost":400,"Date":"12/20/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":453,"Cost":284,"Date":"12/20/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":890,"Cost":589,"Date":"12/21/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":255,"Cost":190,"Date":"1/9/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":391,"Cost":308,"Date":"2/5/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":287,"Cost":196,"Date":"2/16/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":352,"Cost":234,"Date":"2/16/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":120,"Cost":114,"Date":"2/18/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":907,"Cost":664,"Date":"2/22/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":680,"Cost":538,"Date":"2/25/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":264,"Cost":206,"Date":"3/8/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":323,"Cost":251,"Date":"4/2/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":598,"Cost":386,"Date":"4/3/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":731,"Cost":382,"Date":"4/9/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":312,"Cost":260,"Date":"4/10/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":790,"Cost":424,"Date":"4/19/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":951,"Cost":858,"Date":"5/17/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":140,"Cost":128,"Date":"5/22/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":506,"Cost":321,"Date":"6/20/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":610,"Cost":554,"Date":"7/1/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":582,"Cost":478,"Date":"7/4/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":993,"Cost":516,"Date":"7/8/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":527,"Cost":390,"Date":"7/9/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":990,"Cost":810,"Date":"7/14/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":805,"Cost":463,"Date":"7/19/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":849,"Cost":490,"Date":"8/1/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":445,"Cost":345,"Date":"8/6/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":541,"Cost":360,"Date":"8/7/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":165,"Cost":131,"Date":"8/22/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":904,"Cost":652,"Date":"8/31/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":738,"Cost":384,"Date":"9/1/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":249,"Cost":135,"Date":"9/1/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":158,"Cost":143,"Date":"9/17/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":14,"Cost":12,"Date":"9/29/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":446,"Cost":228,"Date":"11/7/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":874,"Cost":460,"Date":"11/26/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":928,"Cost":780,"Date":"11/27/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":569,"Cost":337,"Date":"12/5/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":255,"Cost":193,"Date":"12/26/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":567,"Cost":330,"Date":"12/31/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":190,"Cost":163,"Date":"1/20/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":534,"Cost":278,"Date":"2/2/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":321,"Cost":284,"Date":"2/8/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":5,"Cost":4,"Date":"2/27/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":225,"Cost":136,"Date":"3/1/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":747,"Cost":605,"Date":"3/1/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":555,"Cost":340,"Date":"3/19/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":65,"Cost":55,"Date":"3/28/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":846,"Cost":569,"Date":"5/21/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":793,"Cost":455,"Date":"7/21/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":986,"Cost":525,"Date":"8/5/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":161,"Cost":96,"Date":"8/12/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":544,"Cost":465,"Date":"8/21/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":781,"Cost":667,"Date":"8/23/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":158,"Cost":123,"Date":"9/3/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":622,"Cost":311,"Date":"9/5/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":569,"Cost":471,"Date":"10/6/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":579,"Cost":528,"Date":"10/19/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":768,"Cost":428,"Date":"11/15/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":556,"Cost":432,"Date":"12/8/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":20,"Cost":14,"Date":"1/8/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":46,"Cost":40,"Date":"1/14/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":414,"Cost":288,"Date":"1/19/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":677,"Cost":549,"Date":"1/28/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":140,"Cost":83,"Date":"1/31/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":397,"Cost":355,"Date":"3/27/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":246,"Cost":169,"Date":"4/20/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":808,"Cost":728,"Date":"4/24/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":276,"Cost":163,"Date":"4/28/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":738,"Cost":615,"Date":"5/15/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":394,"Cost":371,"Date":"5/16/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":753,"Cost":683,"Date":"5/18/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":376,"Cost":253,"Date":"6/2/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":417,"Cost":276,"Date":"6/3/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":834,"Cost":641,"Date":"6/5/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":209,"Cost":170,"Date":"6/7/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":626,"Cost":349,"Date":"6/14/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":12,"Cost":10,"Date":"6/20/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":549,"Cost":340,"Date":"6/24/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":649,"Cost":343,"Date":"7/4/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":890,"Cost":510,"Date":"7/9/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":158,"Cost":102,"Date":"7/12/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":273,"Cost":204,"Date":"8/14/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":619,"Cost":556,"Date":"8/16/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":676,"Cost":423,"Date":"8/23/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":531,"Cost":440,"Date":"9/2/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":847,"Cost":722,"Date":"9/3/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":913,"Cost":835,"Date":"9/16/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":265,"Cost":132,"Date":"10/4/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":579,"Cost":419,"Date":"11/1/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":250,"Cost":227,"Date":"11/2/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":712,"Cost":628,"Date":"12/17/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":958,"Cost":616,"Date":"2/10/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":563,"Cost":455,"Date":"2/28/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":889,"Cost":578,"Date":"3/4/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":458,"Cost":405,"Date":"3/9/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":631,"Cost":461,"Date":"3/9/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":591,"Cost":530,"Date":"3/11/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":28,"Cost":24,"Date":"3/17/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":342,"Cost":188,"Date":"3/17/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":873,"Cost":716,"Date":"3/23/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":780,"Cost":437,"Date":"4/1/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":559,"Cost":383,"Date":"5/7/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":639,"Cost":560,"Date":"5/10/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":833,"Cost":428,"Date":"5/20/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":619,"Cost":399,"Date":"6/2/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":856,"Cost":721,"Date":"6/11/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":216,"Cost":161,"Date":"6/16/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":888,"Cost":765,"Date":"6/16/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":491,"Cost":455,"Date":"7/10/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":91,"Cost":57,"Date":"7/11/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":528,"Cost":460,"Date":"8/28/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":870,"Cost":506,"Date":"8/29/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":273,"Cost":194,"Date":"8/31/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":579,"Cost":540,"Date":"9/8/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":469,"Cost":434,"Date":"9/13/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":765,"Cost":459,"Date":"9/14/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":159,"Cost":122,"Date":"9/19/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":703,"Cost":503,"Date":"9/25/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":999,"Cost":912,"Date":"10/4/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":577,"Cost":415,"Date":"10/10/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":274,"Cost":203,"Date":"10/17/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":860,"Cost":618,"Date":"10/28/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":879,"Cost":801,"Date":"10/30/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":31,"Cost":25,"Date":"11/1/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":178,"Cost":169,"Date":"11/15/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":535,"Cost":505,"Date":"11/25/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":830,"Cost":671,"Date":"1/10/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":227,"Cost":165,"Date":"1/14/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":199,"Cost":132,"Date":"1/20/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":502,"Cost":279,"Date":"2/8/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":490,"Cost":251,"Date":"2/25/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":573,"Cost":501,"Date":"3/7/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":205,"Cost":119,"Date":"3/14/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":486,"Cost":287,"Date":"3/27/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":908,"Cost":550,"Date":"4/5/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":52,"Cost":49,"Date":"4/14/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":505,"Cost":402,"Date":"5/3/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":260,"Cost":144,"Date":"5/9/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":74,"Cost":40,"Date":"5/15/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":212,"Cost":140,"Date":"5/25/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":710,"Cost":558,"Date":"5/26/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":870,"Cost":494,"Date":"5/31/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":259,"Cost":130,"Date":"7/27/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":901,"Cost":607,"Date":"9/17/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":588,"Cost":350,"Date":"10/6/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":534,"Cost":453,"Date":"10/8/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":905,"Cost":811,"Date":"10/26/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":640,"Cost":376,"Date":"11/16/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":758,"Cost":382,"Date":"11/18/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"COS","Country":"Belgium","Sale":799,"Cost":650,"Date":"12/1/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":852,"Cost":573,"Date":"2/9/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":371,"Cost":351,"Date":"2/11/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":694,"Cost":626,"Date":"3/10/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":585,"Cost":509,"Date":"3/16/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":220,"Cost":136,"Date":"3/18/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":792,"Cost":720,"Date":"3/20/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":419,"Cost":394,"Date":"3/26/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":449,"Cost":348,"Date":"6/2/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":372,"Cost":320,"Date":"6/10/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":559,"Cost":280,"Date":"6/16/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":277,"Cost":198,"Date":"6/25/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":322,"Cost":259,"Date":"7/19/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":904,"Cost":531,"Date":"7/21/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":883,"Cost":606,"Date":"7/25/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":668,"Cost":609,"Date":"8/4/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":478,"Cost":416,"Date":"9/2/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":263,"Cost":176,"Date":"9/4/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":280,"Cost":181,"Date":"9/19/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":935,"Cost":516,"Date":"9/29/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":34,"Cost":30,"Date":"10/2/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":837,"Cost":698,"Date":"10/15/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":861,"Cost":551,"Date":"10/30/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":418,"Cost":384,"Date":"11/9/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":795,"Cost":546,"Date":"11/23/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":753,"Cost":558,"Date":"11/30/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":434,"Cost":386,"Date":"12/8/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":562,"Cost":507,"Date":"12/11/2018"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":658,"Cost":358,"Date":"1/15/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":993,"Cost":725,"Date":"1/24/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":485,"Cost":320,"Date":"2/3/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":867,"Cost":671,"Date":"2/4/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":551,"Cost":291,"Date":"3/9/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":621,"Cost":440,"Date":"3/12/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":658,"Cost":444,"Date":"4/19/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":561,"Cost":425,"Date":"5/3/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":71,"Cost":52,"Date":"5/4/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":837,"Cost":562,"Date":"6/8/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":366,"Cost":219,"Date":"6/26/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":864,"Cost":635,"Date":"7/4/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":37,"Cost":32,"Date":"7/13/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":597,"Cost":457,"Date":"8/8/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":791,"Cost":693,"Date":"8/26/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":258,"Cost":139,"Date":"9/2/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":294,"Cost":157,"Date":"9/29/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":28,"Cost":24,"Date":"10/12/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":634,"Cost":591,"Date":"11/2/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":389,"Cost":346,"Date":"11/4/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":165,"Cost":137,"Date":"11/7/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":74,"Cost":42,"Date":"12/1/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":635,"Cost":405,"Date":"12/4/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":744,"Cost":502,"Date":"12/7/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":805,"Cost":482,"Date":"12/18/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":603,"Cost":550,"Date":"12/20/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":836,"Cost":506,"Date":"12/20/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":259,"Cost":163,"Date":"12/21/2019"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":246,"Cost":207,"Date":"1/9/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":618,"Cost":410,"Date":"2/5/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":295,"Cost":239,"Date":"2/16/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":178,"Cost":149,"Date":"2/16/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":153,"Cost":113,"Date":"2/18/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":383,"Cost":354,"Date":"2/22/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":181,"Cost":99,"Date":"2/25/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":500,"Cost":401,"Date":"3/8/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":895,"Cost":624,"Date":"4/2/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":699,"Cost":620,"Date":"4/3/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":480,"Cost":312,"Date":"4/9/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":388,"Cost":326,"Date":"4/10/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":721,"Cost":547,"Date":"4/19/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":398,"Cost":237,"Date":"5/17/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":493,"Cost":404,"Date":"5/22/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":530,"Cost":369,"Date":"6/20/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":29,"Cost":26,"Date":"7/1/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":168,"Cost":102,"Date":"7/4/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":179,"Cost":144,"Date":"7/8/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":871,"Cost":522,"Date":"7/9/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":687,"Cost":455,"Date":"7/14/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":478,"Cost":240,"Date":"7/19/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":387,"Cost":354,"Date":"8/1/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":728,"Cost":489,"Date":"8/6/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":52,"Cost":36,"Date":"8/7/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":389,"Cost":364,"Date":"8/22/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":358,"Cost":277,"Date":"8/31/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":590,"Cost":334,"Date":"9/1/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":222,"Cost":124,"Date":"9/1/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":469,"Cost":445,"Date":"9/17/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":247,"Cost":191,"Date":"9/29/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":150,"Cost":110,"Date":"11/7/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":89,"Cost":68,"Date":"11/26/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":375,"Cost":290,"Date":"11/27/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":305,"Cost":180,"Date":"12/5/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":175,"Cost":158,"Date":"12/26/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":755,"Cost":599,"Date":"12/31/2020"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":831,"Cost":577,"Date":"1/20/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":966,"Cost":714,"Date":"2/2/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":28,"Cost":19,"Date":"2/8/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":492,"Cost":405,"Date":"2/27/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":731,"Cost":670,"Date":"3/1/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":585,"Cost":340,"Date":"3/1/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":273,"Cost":257,"Date":"3/19/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":159,"Cost":126,"Date":"3/28/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":645,"Cost":420,"Date":"5/21/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":643,"Cost":374,"Date":"7/21/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":767,"Cost":438,"Date":"8/5/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":370,"Cost":205,"Date":"8/12/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":322,"Cost":193,"Date":"8/21/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":65,"Cost":54,"Date":"8/23/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":11,"Cost":6,"Date":"9/3/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":437,"Cost":368,"Date":"9/5/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":967,"Cost":878,"Date":"10/6/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":373,"Cost":320,"Date":"10/19/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":908,"Cost":644,"Date":"11/15/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":693,"Cost":445,"Date":"12/8/2021"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":202,"Cost":111,"Date":"1/8/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":640,"Cost":378,"Date":"1/14/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":833,"Cost":719,"Date":"1/19/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":307,"Cost":172,"Date":"1/28/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":847,"Cost":680,"Date":"1/31/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":139,"Cost":123,"Date":"3/27/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":407,"Cost":267,"Date":"4/20/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":482,"Cost":341,"Date":"4/24/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":519,"Cost":454,"Date":"4/28/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":971,"Cost":509,"Date":"5/15/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":733,"Cost":656,"Date":"5/16/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":48,"Cost":30,"Date":"5/18/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":646,"Cost":562,"Date":"6/2/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":942,"Cost":758,"Date":"6/3/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":483,"Cost":317,"Date":"6/5/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":893,"Cost":787,"Date":"6/7/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":377,"Cost":281,"Date":"6/14/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":713,"Cost":605,"Date":"6/20/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":746,"Cost":687,"Date":"6/24/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":360,"Cost":319,"Date":"7/4/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":620,"Cost":380,"Date":"7/9/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":638,"Cost":510,"Date":"7/12/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":279,"Cost":260,"Date":"8/14/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":401,"Cost":221,"Date":"8/16/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":799,"Cost":695,"Date":"8/23/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":148,"Cost":124,"Date":"9/2/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":157,"Cost":94,"Date":"9/3/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":558,"Cost":300,"Date":"9/16/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":276,"Cost":153,"Date":"10/4/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":42,"Cost":39,"Date":"11/1/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":936,"Cost":700,"Date":"11/2/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":379,"Cost":272,"Date":"12/17/2022"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":330,"Cost":237,"Date":"2/10/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":74,"Cost":66,"Date":"2/28/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":787,"Cost":550,"Date":"3/4/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":32,"Cost":18,"Date":"3/9/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":239,"Cost":132,"Date":"3/9/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":87,"Cost":83,"Date":"3/11/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":290,"Cost":235,"Date":"3/17/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":420,"Cost":375,"Date":"3/17/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":971,"Cost":766,"Date":"3/23/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":450,"Cost":340,"Date":"4/1/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":653,"Cost":587,"Date":"5/7/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":28,"Cost":15,"Date":"5/10/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":338,"Cost":231,"Date":"5/20/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":248,"Cost":128,"Date":"6/2/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":695,"Cost":581,"Date":"6/11/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":91,"Cost":58,"Date":"6/16/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":488,"Cost":285,"Date":"6/16/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":447,"Cost":424,"Date":"7/10/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":533,"Cost":420,"Date":"7/11/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":133,"Cost":93,"Date":"8/28/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":69,"Cost":36,"Date":"8/29/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":750,"Cost":443,"Date":"8/31/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":111,"Cost":87,"Date":"9/8/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":509,"Cost":458,"Date":"9/13/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":24,"Cost":18,"Date":"9/14/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":742,"Cost":477,"Date":"9/19/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":646,"Cost":358,"Date":"9/25/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":591,"Cost":343,"Date":"10/4/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":896,"Cost":724,"Date":"10/10/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":466,"Cost":369,"Date":"10/17/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":412,"Cost":260,"Date":"10/28/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":351,"Cost":214,"Date":"10/30/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":181,"Cost":157,"Date":"11/1/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":11,"Cost":8,"Date":"11/15/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":668,"Cost":601,"Date":"11/25/2023"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":671,"Cost":593,"Date":"1/10/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":119,"Cost":89,"Date":"1/14/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":803,"Cost":518,"Date":"1/20/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":686,"Cost":575,"Date":"2/8/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":720,"Cost":522,"Date":"2/25/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":383,"Cost":327,"Date":"3/7/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":934,"Cost":632,"Date":"3/14/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":274,"Cost":148,"Date":"3/27/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":543,"Cost":440,"Date":"4/5/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":46,"Cost":32,"Date":"4/14/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":81,"Cost":41,"Date":"5/3/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":317,"Cost":252,"Date":"5/9/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":876,"Cost":632,"Date":"5/15/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":53,"Cost":36,"Date":"5/25/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":103,"Cost":64,"Date":"5/26/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":184,"Cost":101,"Date":"5/31/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":532,"Cost":343,"Date":"7/27/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":11,"Cost":7,"Date":"9/17/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":156,"Cost":131,"Date":"10/6/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":438,"Cost":263,"Date":"10/8/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":463,"Cost":288,"Date":"10/26/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":670,"Cost":460,"Date":"11/16/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":711,"Cost":455,"Date":"11/18/2024"},{"Store":"Tiany Shopping Center, Bruges","Brand":"Jeans","Country":"Belgium","Sale":66,"Cost":39,"Date":"12/1/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":540,"Cost":329,"Date":"2/9/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":468,"Cost":256,"Date":"2/11/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":324,"Cost":208,"Date":"3/10/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":295,"Cost":197,"Date":"3/16/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":331,"Cost":309,"Date":"3/18/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":939,"Cost":542,"Date":"3/20/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":730,"Cost":491,"Date":"3/26/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":796,"Cost":504,"Date":"6/2/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":798,"Cost":514,"Date":"6/10/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":106,"Cost":68,"Date":"6/16/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":843,"Cost":573,"Date":"6/25/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":206,"Cost":170,"Date":"7/19/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":745,"Cost":427,"Date":"7/21/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":460,"Cost":337,"Date":"7/25/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":161,"Cost":149,"Date":"8/4/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":15,"Cost":12,"Date":"9/2/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":40,"Cost":22,"Date":"9/4/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":175,"Cost":133,"Date":"9/19/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":904,"Cost":823,"Date":"9/29/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":466,"Cost":404,"Date":"10/2/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":986,"Cost":875,"Date":"10/15/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":665,"Cost":427,"Date":"10/30/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":857,"Cost":487,"Date":"11/9/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":831,"Cost":545,"Date":"11/23/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":327,"Cost":283,"Date":"11/30/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":466,"Cost":311,"Date":"12/8/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":761,"Cost":687,"Date":"12/11/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":704,"Cost":381,"Date":"1/15/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":74,"Cost":56,"Date":"1/24/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":583,"Cost":374,"Date":"2/3/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":824,"Cost":436,"Date":"2/4/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":517,"Cost":289,"Date":"3/9/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":26,"Cost":23,"Date":"3/12/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":248,"Cost":195,"Date":"4/19/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":693,"Cost":525,"Date":"5/3/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":583,"Cost":419,"Date":"5/4/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":290,"Cost":241,"Date":"6/8/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":810,"Cost":466,"Date":"6/26/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":259,"Cost":235,"Date":"7/4/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":929,"Cost":576,"Date":"7/13/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":832,"Cost":502,"Date":"8/8/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":424,"Cost":330,"Date":"8/26/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":105,"Cost":73,"Date":"9/2/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":118,"Cost":70,"Date":"9/29/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":758,"Cost":527,"Date":"10/12/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":709,"Cost":622,"Date":"11/2/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":760,"Cost":460,"Date":"11/4/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":591,"Cost":416,"Date":"11/7/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":367,"Cost":193,"Date":"12/1/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":771,"Cost":725,"Date":"12/4/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":45,"Cost":36,"Date":"12/7/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":930,"Cost":822,"Date":"12/18/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":923,"Cost":838,"Date":"12/20/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":341,"Cost":220,"Date":"12/20/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":235,"Cost":182,"Date":"12/21/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":976,"Cost":836,"Date":"1/9/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":578,"Cost":442,"Date":"2/5/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":983,"Cost":771,"Date":"2/16/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":303,"Cost":273,"Date":"2/16/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":896,"Cost":698,"Date":"2/18/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":835,"Cost":746,"Date":"2/22/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":346,"Cost":244,"Date":"2/25/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":646,"Cost":612,"Date":"3/8/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":662,"Cost":602,"Date":"4/2/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":811,"Cost":731,"Date":"4/3/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":379,"Cost":196,"Date":"4/9/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":956,"Cost":599,"Date":"4/10/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":331,"Cost":315,"Date":"4/19/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":387,"Cost":270,"Date":"5/17/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":73,"Cost":57,"Date":"5/22/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":332,"Cost":169,"Date":"6/20/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":163,"Cost":148,"Date":"7/1/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":389,"Cost":285,"Date":"7/4/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":346,"Cost":315,"Date":"7/8/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":865,"Cost":771,"Date":"7/9/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":123,"Cost":70,"Date":"7/14/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":842,"Cost":574,"Date":"7/19/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":601,"Cost":469,"Date":"8/1/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":891,"Cost":758,"Date":"8/6/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":723,"Cost":440,"Date":"8/7/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":489,"Cost":247,"Date":"8/22/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":572,"Cost":395,"Date":"8/31/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":960,"Cost":591,"Date":"9/1/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":792,"Cost":729,"Date":"9/1/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":758,"Cost":389,"Date":"9/17/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":167,"Cost":130,"Date":"9/29/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":176,"Cost":129,"Date":"11/7/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":176,"Cost":150,"Date":"11/26/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":799,"Cost":539,"Date":"11/27/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":64,"Cost":57,"Date":"12/5/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":687,"Cost":415,"Date":"12/26/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":476,"Cost":364,"Date":"12/31/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":732,"Cost":686,"Date":"1/20/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":797,"Cost":495,"Date":"2/2/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":732,"Cost":682,"Date":"2/8/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":946,"Cost":581,"Date":"2/27/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":482,"Cost":259,"Date":"3/1/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":993,"Cost":725,"Date":"3/1/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":659,"Cost":479,"Date":"3/19/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":248,"Cost":216,"Date":"3/28/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":480,"Cost":350,"Date":"5/21/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":471,"Cost":333,"Date":"7/21/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":684,"Cost":357,"Date":"8/5/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":591,"Cost":526,"Date":"8/12/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":510,"Cost":374,"Date":"8/21/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":916,"Cost":848,"Date":"8/23/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":827,"Cost":604,"Date":"9/3/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":696,"Cost":488,"Date":"9/5/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":228,"Cost":211,"Date":"10/6/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":490,"Cost":451,"Date":"10/19/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":969,"Cost":565,"Date":"11/15/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":338,"Cost":299,"Date":"12/8/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":24,"Cost":17,"Date":"1/8/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":56,"Cost":37,"Date":"1/14/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":260,"Cost":144,"Date":"1/19/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":473,"Cost":326,"Date":"1/28/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":880,"Cost":600,"Date":"1/31/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":371,"Cost":342,"Date":"3/27/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":607,"Cost":469,"Date":"4/20/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":495,"Cost":312,"Date":"4/24/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":368,"Cost":300,"Date":"4/28/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":455,"Cost":415,"Date":"5/15/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":824,"Cost":573,"Date":"5/16/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":618,"Cost":484,"Date":"5/18/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":948,"Cost":713,"Date":"6/2/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":604,"Cost":547,"Date":"6/3/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":646,"Cost":368,"Date":"6/5/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":565,"Cost":332,"Date":"6/7/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":851,"Cost":453,"Date":"6/14/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":965,"Cost":690,"Date":"6/20/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":897,"Cost":803,"Date":"6/24/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":182,"Cost":149,"Date":"7/4/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":100,"Cost":74,"Date":"7/9/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":172,"Cost":134,"Date":"7/12/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":380,"Cost":338,"Date":"8/14/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":437,"Cost":266,"Date":"8/16/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":610,"Cost":459,"Date":"8/23/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":446,"Cost":247,"Date":"9/2/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":526,"Cost":398,"Date":"9/3/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":338,"Cost":255,"Date":"9/16/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":396,"Cost":346,"Date":"10/4/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":645,"Cost":368,"Date":"11/1/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":117,"Cost":72,"Date":"11/2/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":706,"Cost":412,"Date":"12/17/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":705,"Cost":486,"Date":"2/10/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":335,"Cost":318,"Date":"2/28/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":529,"Cost":329,"Date":"3/4/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":175,"Cost":164,"Date":"3/9/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":130,"Cost":116,"Date":"3/9/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":432,"Cost":323,"Date":"3/11/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":75,"Cost":59,"Date":"3/17/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":160,"Cost":87,"Date":"3/17/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":848,"Cost":693,"Date":"3/23/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":421,"Cost":362,"Date":"4/1/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":937,"Cost":746,"Date":"5/7/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":794,"Cost":441,"Date":"5/10/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":19,"Cost":17,"Date":"5/20/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":951,"Cost":542,"Date":"6/2/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":427,"Cost":355,"Date":"6/11/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":466,"Cost":345,"Date":"6/16/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":116,"Cost":79,"Date":"6/16/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":106,"Cost":60,"Date":"7/10/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":440,"Cost":319,"Date":"7/11/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":220,"Cost":178,"Date":"8/28/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":922,"Cost":547,"Date":"8/29/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":830,"Cost":777,"Date":"8/31/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":378,"Cost":351,"Date":"9/8/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":719,"Cost":509,"Date":"9/13/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":653,"Cost":600,"Date":"9/14/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":302,"Cost":260,"Date":"9/19/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":333,"Cost":168,"Date":"9/25/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":611,"Cost":555,"Date":"10/4/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":892,"Cost":574,"Date":"10/10/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":602,"Cost":504,"Date":"10/17/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":983,"Cost":624,"Date":"10/28/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":955,"Cost":819,"Date":"10/30/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":654,"Cost":541,"Date":"11/1/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":194,"Cost":102,"Date":"11/15/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":944,"Cost":569,"Date":"11/25/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":159,"Cost":100,"Date":"1/10/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":236,"Cost":128,"Date":"1/14/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":524,"Cost":336,"Date":"1/20/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":687,"Cost":426,"Date":"2/8/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":189,"Cost":168,"Date":"2/25/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":869,"Cost":621,"Date":"3/7/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":125,"Cost":108,"Date":"3/14/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":306,"Cost":237,"Date":"3/27/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":734,"Cost":473,"Date":"4/5/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":792,"Cost":464,"Date":"4/14/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":929,"Cost":687,"Date":"5/3/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":61,"Cost":38,"Date":"5/9/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":787,"Cost":482,"Date":"5/15/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":470,"Cost":416,"Date":"5/25/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":416,"Cost":271,"Date":"5/26/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":733,"Cost":664,"Date":"5/31/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":929,"Cost":622,"Date":"7/27/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":585,"Cost":391,"Date":"9/17/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":716,"Cost":429,"Date":"10/6/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":264,"Cost":169,"Date":"10/8/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":434,"Cost":386,"Date":"10/26/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":935,"Cost":680,"Date":"11/16/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":997,"Cost":667,"Date":"11/18/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"Jeans","Country":"Belgium","Sale":797,"Cost":511,"Date":"12/1/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":919,"Cost":611,"Date":"2/9/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":19,"Cost":16,"Date":"2/11/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":121,"Cost":88,"Date":"3/10/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":911,"Cost":825,"Date":"3/16/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":382,"Cost":232,"Date":"3/18/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":776,"Cost":680,"Date":"3/20/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":451,"Cost":271,"Date":"3/26/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":431,"Cost":389,"Date":"6/2/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":424,"Cost":219,"Date":"6/10/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":149,"Cost":112,"Date":"6/16/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":493,"Cost":266,"Date":"6/25/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":792,"Cost":684,"Date":"7/19/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":163,"Cost":122,"Date":"7/21/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":294,"Cost":275,"Date":"7/25/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":307,"Cost":213,"Date":"8/4/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":799,"Cost":422,"Date":"9/2/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":334,"Cost":203,"Date":"9/4/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":756,"Cost":473,"Date":"9/19/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":43,"Cost":22,"Date":"9/29/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":749,"Cost":705,"Date":"10/2/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":776,"Cost":670,"Date":"10/15/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":34,"Cost":29,"Date":"10/30/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":24,"Cost":12,"Date":"11/9/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":961,"Cost":564,"Date":"11/23/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":453,"Cost":266,"Date":"11/30/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":132,"Cost":66,"Date":"12/8/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":433,"Cost":299,"Date":"12/11/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":216,"Cost":152,"Date":"1/15/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":255,"Cost":142,"Date":"1/24/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":911,"Cost":528,"Date":"2/3/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":627,"Cost":593,"Date":"2/4/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":5,"Cost":2,"Date":"3/9/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":247,"Cost":155,"Date":"3/12/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":493,"Cost":357,"Date":"4/19/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":991,"Cost":558,"Date":"5/3/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":965,"Cost":718,"Date":"5/4/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":694,"Cost":349,"Date":"6/8/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":621,"Cost":528,"Date":"6/26/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":685,"Cost":388,"Date":"7/4/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":144,"Cost":137,"Date":"7/13/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":827,"Cost":459,"Date":"8/8/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":77,"Cost":61,"Date":"8/26/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":715,"Cost":617,"Date":"9/2/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":508,"Cost":340,"Date":"9/29/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":624,"Cost":562,"Date":"10/12/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":32,"Cost":25,"Date":"11/2/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":901,"Cost":540,"Date":"11/4/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":480,"Cost":367,"Date":"11/7/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":258,"Cost":191,"Date":"12/1/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":430,"Cost":371,"Date":"12/4/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":698,"Cost":515,"Date":"12/7/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":753,"Cost":573,"Date":"12/18/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":883,"Cost":584,"Date":"12/20/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":353,"Cost":290,"Date":"12/20/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":643,"Cost":415,"Date":"12/21/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":452,"Cost":336,"Date":"1/9/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":366,"Cost":304,"Date":"2/5/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":411,"Cost":209,"Date":"2/16/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":351,"Cost":208,"Date":"2/16/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":122,"Cost":106,"Date":"2/18/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":754,"Cost":691,"Date":"2/22/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":954,"Cost":499,"Date":"2/25/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":903,"Cost":610,"Date":"3/8/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":324,"Cost":220,"Date":"4/2/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":865,"Cost":741,"Date":"4/3/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":705,"Cost":617,"Date":"4/9/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":613,"Cost":352,"Date":"4/10/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":551,"Cost":357,"Date":"4/19/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":962,"Cost":780,"Date":"5/17/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":1,"Cost":1,"Date":"5/22/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":908,"Cost":770,"Date":"6/20/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":914,"Cost":775,"Date":"7/1/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":825,"Cost":776,"Date":"7/4/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":884,"Cost":544,"Date":"7/8/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":123,"Cost":71,"Date":"7/9/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":73,"Cost":55,"Date":"7/14/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":853,"Cost":503,"Date":"7/19/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":491,"Cost":251,"Date":"8/1/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":13,"Cost":12,"Date":"8/6/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":907,"Cost":589,"Date":"8/7/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":498,"Cost":369,"Date":"8/22/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":308,"Cost":269,"Date":"8/31/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":664,"Cost":523,"Date":"9/1/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":779,"Cost":423,"Date":"9/1/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":47,"Cost":42,"Date":"9/17/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":575,"Cost":498,"Date":"9/29/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":319,"Cost":231,"Date":"11/7/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":369,"Cost":284,"Date":"11/26/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":679,"Cost":504,"Date":"11/27/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":706,"Cost":613,"Date":"12/5/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":714,"Cost":380,"Date":"12/26/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":302,"Cost":160,"Date":"12/31/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":968,"Cost":770,"Date":"1/20/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":33,"Cost":32,"Date":"2/2/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":631,"Cost":376,"Date":"2/8/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":260,"Cost":151,"Date":"2/27/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":922,"Cost":631,"Date":"3/1/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":67,"Cost":37,"Date":"3/1/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":743,"Cost":519,"Date":"3/19/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":778,"Cost":653,"Date":"3/28/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":156,"Cost":92,"Date":"5/21/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":581,"Cost":368,"Date":"7/21/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":843,"Cost":451,"Date":"8/5/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":149,"Cost":104,"Date":"8/12/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":952,"Cost":866,"Date":"8/21/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":369,"Cost":230,"Date":"8/23/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":515,"Cost":363,"Date":"9/3/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":753,"Cost":537,"Date":"9/5/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":802,"Cost":418,"Date":"10/6/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":45,"Cost":29,"Date":"10/19/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":618,"Cost":344,"Date":"11/15/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":236,"Cost":126,"Date":"12/8/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":516,"Cost":322,"Date":"1/8/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":899,"Cost":600,"Date":"1/14/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":494,"Cost":363,"Date":"1/19/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":360,"Cost":251,"Date":"1/28/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":669,"Cost":623,"Date":"1/31/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":106,"Cost":77,"Date":"3/27/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":510,"Cost":356,"Date":"4/20/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":98,"Cost":66,"Date":"4/24/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":875,"Cost":469,"Date":"4/28/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":30,"Cost":27,"Date":"5/15/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":798,"Cost":528,"Date":"5/16/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":788,"Cost":437,"Date":"5/18/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":769,"Cost":599,"Date":"6/2/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":794,"Cost":550,"Date":"6/3/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":337,"Cost":231,"Date":"6/5/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":459,"Cost":315,"Date":"6/7/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":639,"Cost":584,"Date":"6/14/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":913,"Cost":711,"Date":"6/20/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":537,"Cost":498,"Date":"6/24/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":423,"Cost":308,"Date":"7/4/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":220,"Cost":119,"Date":"7/9/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":708,"Cost":508,"Date":"7/12/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":281,"Cost":213,"Date":"8/14/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":909,"Cost":686,"Date":"8/16/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":462,"Cost":296,"Date":"8/23/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":841,"Cost":636,"Date":"9/2/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":593,"Cost":333,"Date":"9/3/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":30,"Cost":18,"Date":"9/16/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":589,"Cost":548,"Date":"10/4/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":14,"Cost":11,"Date":"11/1/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":630,"Cost":324,"Date":"11/2/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":426,"Cost":301,"Date":"12/17/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":82,"Cost":45,"Date":"2/10/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":431,"Cost":387,"Date":"2/28/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":870,"Cost":773,"Date":"3/4/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":998,"Cost":525,"Date":"3/9/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":670,"Cost":630,"Date":"3/9/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":593,"Cost":560,"Date":"3/11/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":941,"Cost":659,"Date":"3/17/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":51,"Cost":29,"Date":"3/17/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":589,"Cost":340,"Date":"3/23/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":149,"Cost":142,"Date":"4/1/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":434,"Cost":252,"Date":"5/7/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":51,"Cost":30,"Date":"5/10/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":209,"Cost":193,"Date":"5/20/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":528,"Cost":429,"Date":"6/2/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":517,"Cost":300,"Date":"6/11/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":869,"Cost":628,"Date":"6/16/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":49,"Cost":34,"Date":"6/16/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":106,"Cost":78,"Date":"7/10/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":124,"Cost":76,"Date":"7/11/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":564,"Cost":511,"Date":"8/28/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":59,"Cost":36,"Date":"8/29/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":614,"Cost":529,"Date":"8/31/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":22,"Cost":16,"Date":"9/8/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":230,"Cost":173,"Date":"9/13/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":504,"Cost":305,"Date":"9/14/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":697,"Cost":478,"Date":"9/19/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":412,"Cost":336,"Date":"9/25/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":90,"Cost":61,"Date":"10/4/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":21,"Cost":14,"Date":"10/10/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":216,"Cost":204,"Date":"10/17/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":936,"Cost":524,"Date":"10/28/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":286,"Cost":251,"Date":"10/30/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":318,"Cost":241,"Date":"11/1/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":719,"Cost":408,"Date":"11/15/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":51,"Cost":39,"Date":"11/25/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":37,"Cost":21,"Date":"1/10/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":220,"Cost":203,"Date":"1/14/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":180,"Cost":143,"Date":"1/20/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":577,"Cost":384,"Date":"2/8/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":648,"Cost":448,"Date":"2/25/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":989,"Cost":761,"Date":"3/7/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":658,"Cost":538,"Date":"3/14/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":782,"Cost":407,"Date":"3/27/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":915,"Cost":809,"Date":"4/5/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":335,"Cost":207,"Date":"4/14/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":165,"Cost":91,"Date":"5/3/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":441,"Cost":364,"Date":"5/9/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":886,"Cost":750,"Date":"5/15/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":496,"Cost":286,"Date":"5/25/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":103,"Cost":52,"Date":"5/26/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":813,"Cost":464,"Date":"5/31/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":548,"Cost":485,"Date":"7/27/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":953,"Cost":479,"Date":"9/17/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":871,"Cost":523,"Date":"10/6/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":737,"Cost":645,"Date":"10/8/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":61,"Cost":51,"Date":"10/26/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":885,"Cost":717,"Date":"11/16/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":100,"Cost":84,"Date":"11/18/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":678,"Cost":623,"Date":"12/1/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":740,"Cost":487,"Date":"2/9/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":174,"Cost":153,"Date":"2/11/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":967,"Cost":808,"Date":"3/10/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":534,"Cost":446,"Date":"3/16/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":674,"Cost":536,"Date":"3/18/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":351,"Cost":316,"Date":"3/20/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":980,"Cost":768,"Date":"3/26/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":205,"Cost":108,"Date":"6/2/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":799,"Cost":731,"Date":"6/10/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":59,"Cost":31,"Date":"6/16/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":476,"Cost":411,"Date":"6/25/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":214,"Cost":157,"Date":"7/19/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":371,"Cost":261,"Date":"7/21/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":972,"Cost":771,"Date":"7/25/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":870,"Cost":719,"Date":"8/4/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":199,"Cost":173,"Date":"9/2/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":190,"Cost":149,"Date":"9/4/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":276,"Cost":152,"Date":"9/19/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":95,"Cost":74,"Date":"9/29/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":739,"Cost":489,"Date":"10/2/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":311,"Cost":267,"Date":"10/15/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":631,"Cost":360,"Date":"10/30/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":994,"Cost":676,"Date":"11/9/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":859,"Cost":736,"Date":"11/23/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":292,"Cost":153,"Date":"11/30/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":597,"Cost":523,"Date":"12/8/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":26,"Cost":21,"Date":"12/11/2018"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":525,"Cost":380,"Date":"1/15/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":968,"Cost":827,"Date":"1/24/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":73,"Cost":40,"Date":"2/3/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":155,"Cost":129,"Date":"2/4/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":522,"Cost":395,"Date":"3/9/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":169,"Cost":115,"Date":"3/12/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":161,"Cost":86,"Date":"4/19/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":103,"Cost":90,"Date":"5/3/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":130,"Cost":93,"Date":"5/4/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":510,"Cost":421,"Date":"6/8/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":380,"Cost":321,"Date":"6/26/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":162,"Cost":94,"Date":"7/4/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":639,"Cost":560,"Date":"7/13/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":125,"Cost":111,"Date":"8/8/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":799,"Cost":617,"Date":"8/26/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":859,"Cost":544,"Date":"9/2/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":872,"Cost":821,"Date":"9/29/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":981,"Cost":610,"Date":"10/12/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":276,"Cost":152,"Date":"11/2/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":522,"Cost":439,"Date":"11/4/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":448,"Cost":376,"Date":"11/7/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":635,"Cost":424,"Date":"12/1/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":413,"Cost":262,"Date":"12/4/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":590,"Cost":457,"Date":"12/7/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":135,"Cost":109,"Date":"12/18/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":862,"Cost":696,"Date":"12/20/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":898,"Cost":853,"Date":"12/20/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":520,"Cost":262,"Date":"12/21/2019"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":727,"Cost":393,"Date":"1/9/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":233,"Cost":145,"Date":"2/5/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":359,"Cost":269,"Date":"2/16/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":273,"Cost":153,"Date":"2/16/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":391,"Cost":291,"Date":"2/18/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":945,"Cost":639,"Date":"2/22/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":679,"Cost":569,"Date":"2/25/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":211,"Cost":170,"Date":"3/8/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":400,"Cost":327,"Date":"4/2/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":27,"Cost":14,"Date":"4/3/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":373,"Cost":317,"Date":"4/9/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":623,"Cost":520,"Date":"4/10/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":662,"Cost":345,"Date":"4/19/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":622,"Cost":339,"Date":"5/17/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":594,"Cost":475,"Date":"5/22/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":894,"Cost":732,"Date":"6/20/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":941,"Cost":534,"Date":"7/1/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":561,"Cost":505,"Date":"7/4/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":446,"Cost":324,"Date":"7/8/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":449,"Cost":307,"Date":"7/9/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":121,"Cost":70,"Date":"7/14/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":204,"Cost":103,"Date":"7/19/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":642,"Cost":555,"Date":"8/1/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":53,"Cost":26,"Date":"8/6/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":67,"Cost":37,"Date":"8/7/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":505,"Cost":260,"Date":"8/22/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":915,"Cost":835,"Date":"8/31/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":178,"Cost":161,"Date":"9/1/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":223,"Cost":150,"Date":"9/1/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":961,"Cost":836,"Date":"9/17/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":958,"Cost":571,"Date":"9/29/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":997,"Cost":505,"Date":"11/7/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":224,"Cost":144,"Date":"11/26/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":548,"Cost":510,"Date":"11/27/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":595,"Cost":342,"Date":"12/5/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":526,"Cost":467,"Date":"12/26/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":398,"Cost":359,"Date":"12/31/2020"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":863,"Cost":496,"Date":"1/20/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":530,"Cost":497,"Date":"2/2/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":834,"Cost":580,"Date":"2/8/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":770,"Cost":577,"Date":"2/27/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":438,"Cost":338,"Date":"3/1/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":3,"Cost":3,"Date":"3/1/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":820,"Cost":468,"Date":"3/19/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":655,"Cost":564,"Date":"3/28/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":270,"Cost":245,"Date":"5/21/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":282,"Cost":194,"Date":"7/21/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":104,"Cost":54,"Date":"8/5/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":777,"Cost":440,"Date":"8/12/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":209,"Cost":176,"Date":"8/21/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":998,"Cost":866,"Date":"8/23/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":344,"Cost":263,"Date":"9/3/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":538,"Cost":474,"Date":"9/5/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":275,"Cost":209,"Date":"10/6/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":384,"Cost":214,"Date":"10/19/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":883,"Cost":461,"Date":"11/15/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":364,"Cost":335,"Date":"12/8/2021"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":850,"Cost":793,"Date":"1/8/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":307,"Cost":235,"Date":"1/14/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":941,"Cost":575,"Date":"1/19/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":358,"Cost":181,"Date":"1/28/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":573,"Cost":362,"Date":"1/31/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":662,"Cost":525,"Date":"3/27/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":873,"Cost":818,"Date":"4/20/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":258,"Cost":139,"Date":"4/24/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":219,"Cost":116,"Date":"4/28/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":559,"Cost":379,"Date":"5/15/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":781,"Cost":430,"Date":"5/16/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":231,"Cost":188,"Date":"5/18/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":78,"Cost":58,"Date":"6/2/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":723,"Cost":569,"Date":"6/3/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":497,"Cost":425,"Date":"6/5/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":140,"Cost":100,"Date":"6/7/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":545,"Cost":356,"Date":"6/14/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":333,"Cost":184,"Date":"6/20/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":876,"Cost":755,"Date":"6/24/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":727,"Cost":503,"Date":"7/4/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":608,"Cost":545,"Date":"7/9/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":643,"Cost":406,"Date":"7/12/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":544,"Cost":309,"Date":"8/14/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":468,"Cost":434,"Date":"8/16/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":884,"Cost":790,"Date":"8/23/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":178,"Cost":159,"Date":"9/2/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":23,"Cost":13,"Date":"9/3/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":929,"Cost":475,"Date":"9/16/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":645,"Cost":592,"Date":"10/4/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":323,"Cost":298,"Date":"11/1/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":488,"Cost":442,"Date":"11/2/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":506,"Cost":472,"Date":"12/17/2022"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":472,"Cost":300,"Date":"2/10/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":976,"Cost":616,"Date":"2/28/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":768,"Cost":603,"Date":"3/4/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":175,"Cost":150,"Date":"3/9/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":549,"Cost":340,"Date":"3/9/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":232,"Cost":175,"Date":"3/11/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":945,"Cost":704,"Date":"3/17/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":376,"Cost":270,"Date":"3/17/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":524,"Cost":460,"Date":"3/23/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":528,"Cost":282,"Date":"4/1/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":523,"Cost":344,"Date":"5/7/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":146,"Cost":93,"Date":"5/10/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":59,"Cost":44,"Date":"5/20/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":61,"Cost":41,"Date":"6/2/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":470,"Cost":404,"Date":"6/11/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":29,"Cost":23,"Date":"6/16/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":313,"Cost":231,"Date":"6/16/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":339,"Cost":310,"Date":"7/10/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":10,"Cost":9,"Date":"7/11/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":378,"Cost":358,"Date":"8/28/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":625,"Cost":424,"Date":"8/29/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":491,"Cost":285,"Date":"8/31/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":594,"Cost":309,"Date":"9/8/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":476,"Cost":242,"Date":"9/13/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":724,"Cost":501,"Date":"9/14/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":105,"Cost":93,"Date":"9/19/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":373,"Cost":345,"Date":"9/25/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":732,"Cost":607,"Date":"10/4/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":386,"Cost":237,"Date":"10/10/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":926,"Cost":572,"Date":"10/17/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":68,"Cost":55,"Date":"10/28/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":930,"Cost":810,"Date":"10/30/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":341,"Cost":205,"Date":"11/1/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":226,"Cost":152,"Date":"11/15/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":45,"Cost":24,"Date":"11/25/2023"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":517,"Cost":481,"Date":"1/10/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":867,"Cost":751,"Date":"1/14/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":813,"Cost":471,"Date":"1/20/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":425,"Cost":383,"Date":"2/8/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":447,"Cost":312,"Date":"2/25/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":920,"Cost":494,"Date":"3/7/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":649,"Cost":504,"Date":"3/14/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":24,"Cost":15,"Date":"3/27/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":807,"Cost":468,"Date":"4/5/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":970,"Cost":673,"Date":"4/14/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":490,"Cost":260,"Date":"5/3/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":457,"Cost":342,"Date":"5/9/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":774,"Cost":407,"Date":"5/15/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":372,"Cost":231,"Date":"5/25/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":908,"Cost":671,"Date":"5/26/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":543,"Cost":398,"Date":"5/31/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":157,"Cost":136,"Date":"7/27/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":713,"Cost":666,"Date":"9/17/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":630,"Cost":586,"Date":"10/6/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":421,"Cost":305,"Date":"10/8/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":337,"Cost":301,"Date":"10/26/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":944,"Cost":487,"Date":"11/16/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":127,"Cost":112,"Date":"11/18/2024"},{"Store":"Stadhuisbrug Shopping, Bruges","Brand":"HM Home","Country":"Belgium","Sale":552,"Cost":292,"Date":"12/1/2024"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":273,"Cost":239,"Date":"2/9/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":410,"Cost":318,"Date":"2/11/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":735,"Cost":649,"Date":"3/10/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":300,"Cost":269,"Date":"3/16/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":101,"Cost":60,"Date":"3/18/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":418,"Cost":259,"Date":"3/20/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":357,"Cost":190,"Date":"3/26/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":346,"Cost":218,"Date":"6/2/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":350,"Cost":187,"Date":"6/10/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":325,"Cost":166,"Date":"6/16/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":600,"Cost":450,"Date":"6/25/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":18,"Cost":17,"Date":"7/19/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":817,"Cost":429,"Date":"7/21/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":379,"Cost":233,"Date":"7/25/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":752,"Cost":522,"Date":"8/4/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":69,"Cost":58,"Date":"9/2/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":215,"Cost":113,"Date":"9/4/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":492,"Cost":377,"Date":"9/19/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":669,"Cost":443,"Date":"9/29/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":951,"Cost":845,"Date":"10/2/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":765,"Cost":488,"Date":"10/15/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":298,"Cost":256,"Date":"10/30/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":785,"Cost":456,"Date":"11/9/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":603,"Cost":535,"Date":"11/23/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":2,"Cost":2,"Date":"11/30/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":933,"Cost":610,"Date":"12/8/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":268,"Cost":137,"Date":"12/11/2018"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":130,"Cost":108,"Date":"1/15/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":989,"Cost":690,"Date":"1/24/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":423,"Cost":378,"Date":"2/3/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":912,"Cost":850,"Date":"2/4/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":61,"Cost":32,"Date":"3/9/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":872,"Cost":500,"Date":"3/12/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":792,"Cost":609,"Date":"4/19/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":747,"Cost":530,"Date":"5/3/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":138,"Cost":126,"Date":"5/4/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":95,"Cost":50,"Date":"6/8/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":962,"Cost":564,"Date":"6/26/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":149,"Cost":100,"Date":"7/4/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":68,"Cost":38,"Date":"7/13/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":22,"Cost":21,"Date":"8/8/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":712,"Cost":664,"Date":"8/26/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":402,"Cost":269,"Date":"9/2/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":962,"Cost":668,"Date":"9/29/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":67,"Cost":50,"Date":"10/12/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":969,"Cost":501,"Date":"11/2/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":136,"Cost":103,"Date":"11/4/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":29,"Cost":21,"Date":"11/7/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":833,"Cost":753,"Date":"12/1/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":576,"Cost":525,"Date":"12/4/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":276,"Cost":138,"Date":"12/7/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":39,"Cost":35,"Date":"12/18/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":569,"Cost":452,"Date":"12/20/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":339,"Cost":176,"Date":"12/20/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":727,"Cost":439,"Date":"12/21/2019"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":961,"Cost":892,"Date":"1/9/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":231,"Cost":115,"Date":"2/5/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":934,"Cost":626,"Date":"2/16/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":312,"Cost":263,"Date":"2/16/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":905,"Cost":528,"Date":"2/18/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":607,"Cost":566,"Date":"2/22/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":819,"Cost":729,"Date":"2/25/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":246,"Cost":175,"Date":"3/8/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":190,"Cost":130,"Date":"4/2/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":458,"Cost":273,"Date":"4/3/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":953,"Cost":698,"Date":"4/9/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":596,"Cost":373,"Date":"4/10/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":677,"Cost":364,"Date":"4/19/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":513,"Cost":438,"Date":"5/17/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":197,"Cost":152,"Date":"5/22/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":738,"Cost":568,"Date":"6/20/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":183,"Cost":148,"Date":"7/1/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":684,"Cost":519,"Date":"7/4/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":698,"Cost":443,"Date":"7/8/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":776,"Cost":558,"Date":"7/9/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":611,"Cost":409,"Date":"7/14/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":436,"Cost":356,"Date":"7/19/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":58,"Cost":46,"Date":"8/1/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":821,"Cost":665,"Date":"8/6/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":672,"Cost":544,"Date":"8/7/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":22,"Cost":20,"Date":"8/22/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":259,"Cost":153,"Date":"8/31/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":181,"Cost":146,"Date":"9/1/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":373,"Cost":320,"Date":"9/1/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":261,"Cost":220,"Date":"9/17/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":560,"Cost":448,"Date":"9/29/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":179,"Cost":154,"Date":"11/7/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":239,"Cost":135,"Date":"11/26/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":611,"Cost":349,"Date":"11/27/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":201,"Cost":123,"Date":"12/5/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":564,"Cost":286,"Date":"12/26/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":460,"Cost":350,"Date":"12/31/2020"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":74,"Cost":50,"Date":"1/20/2021"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":743,"Cost":654,"Date":"2/2/2021"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":69,"Cost":65,"Date":"2/8/2021"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":38,"Cost":19,"Date":"2/27/2021"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":202,"Cost":128,"Date":"3/1/2021"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":685,"Cost":508,"Date":"3/1/2021"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":636,"Cost":372,"Date":"3/19/2021"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":459,"Cost":273,"Date":"3/28/2021"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":460,"Cost":310,"Date":"5/21/2021"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":850,"Cost":639,"Date":"7/21/2021"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":176,"Cost":120,"Date":"8/5/2021"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":740,"Cost":473,"Date":"8/12/2021"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":702,"Cost":374,"Date":"8/21/2021"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":39,"Cost":36,"Date":"8/23/2021"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":453,"Cost":357,"Date":"9/3/2021"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":665,"Cost":480,"Date":"9/5/2021"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":808,"Cost":580,"Date":"10/6/2021"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":920,"Cost":657,"Date":"10/19/2021"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":841,"Cost":585,"Date":"11/15/2021"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":663,"Cost":488,"Date":"12/8/2021"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":113,"Cost":100,"Date":"1/8/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":209,"Cost":187,"Date":"1/14/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":167,"Cost":157,"Date":"1/19/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":54,"Cost":41,"Date":"1/28/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":387,"Cost":200,"Date":"1/31/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":675,"Cost":446,"Date":"3/27/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":110,"Cost":96,"Date":"4/20/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":205,"Cost":113,"Date":"4/24/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":742,"Cost":427,"Date":"4/28/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":33,"Cost":28,"Date":"5/15/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":989,"Cost":647,"Date":"5/16/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":304,"Cost":174,"Date":"5/18/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":467,"Cost":429,"Date":"6/2/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":261,"Cost":171,"Date":"6/3/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":584,"Cost":380,"Date":"6/5/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":965,"Cost":767,"Date":"6/7/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":323,"Cost":256,"Date":"6/14/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":804,"Cost":405,"Date":"6/20/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":400,"Cost":264,"Date":"6/24/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":838,"Cost":617,"Date":"7/4/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":233,"Cost":171,"Date":"7/9/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":397,"Cost":282,"Date":"7/12/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":932,"Cost":555,"Date":"8/14/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":991,"Cost":669,"Date":"8/16/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":286,"Cost":150,"Date":"8/23/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":549,"Cost":319,"Date":"9/2/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":825,"Cost":705,"Date":"9/3/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":867,"Cost":636,"Date":"9/16/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":443,"Cost":295,"Date":"10/4/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":541,"Cost":271,"Date":"11/1/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":433,"Cost":255,"Date":"11/2/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":187,"Cost":110,"Date":"12/17/2022"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":54,"Cost":40,"Date":"2/10/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":629,"Cost":357,"Date":"2/28/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":512,"Cost":481,"Date":"3/4/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":178,"Cost":103,"Date":"3/9/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":89,"Cost":78,"Date":"3/9/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":794,"Cost":402,"Date":"3/11/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":577,"Cost":294,"Date":"3/17/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":760,"Cost":720,"Date":"3/17/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":62,"Cost":37,"Date":"3/23/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":89,"Cost":55,"Date":"4/1/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":888,"Cost":787,"Date":"5/7/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":555,"Cost":387,"Date":"5/10/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":867,"Cost":608,"Date":"5/20/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":346,"Cost":296,"Date":"6/2/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":136,"Cost":110,"Date":"6/11/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":704,"Cost":484,"Date":"6/16/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":998,"Cost":682,"Date":"6/16/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":775,"Cost":633,"Date":"7/10/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":775,"Cost":520,"Date":"7/11/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":338,"Cost":266,"Date":"8/28/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":954,"Cost":903,"Date":"8/29/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":323,"Cost":219,"Date":"8/31/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":350,"Cost":298,"Date":"9/8/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":708,"Cost":410,"Date":"9/13/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":601,"Cost":566,"Date":"9/14/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":305,"Cost":189,"Date":"9/19/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":463,"Cost":251,"Date":"9/25/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":299,"Cost":255,"Date":"10/4/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":87,"Cost":79,"Date":"10/10/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":166,"Cost":139,"Date":"10/17/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":127,"Cost":108,"Date":"10/28/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":655,"Cost":590,"Date":"10/30/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":930,"Cost":839,"Date":"11/1/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":188,"Cost":136,"Date":"11/15/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":91,"Cost":81,"Date":"11/25/2023"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":215,"Cost":174,"Date":"1/10/2024"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":635,"Cost":464,"Date":"1/14/2024"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":641,"Cost":321,"Date":"1/20/2024"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":773,"Cost":400,"Date":"2/8/2024"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":881,"Cost":523,"Date":"2/25/2024"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":742,"Cost":689,"Date":"3/7/2024"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":973,"Cost":662,"Date":"3/14/2024"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":897,"Cost":486,"Date":"3/27/2024"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":735,"Cost":532,"Date":"4/5/2024"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":566,"Cost":344,"Date":"4/14/2024"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":837,"Cost":697,"Date":"5/3/2024"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":140,"Cost":83,"Date":"5/9/2024"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":445,"Cost":377,"Date":"5/15/2024"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":737,"Cost":503,"Date":"5/25/2024"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":633,"Cost":474,"Date":"5/26/2024"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":444,"Cost":244,"Date":"5/31/2024"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":343,"Cost":191,"Date":"7/27/2024"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":477,"Cost":273,"Date":"9/17/2024"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":574,"Cost":530,"Date":"10/6/2024"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":317,"Cost":253,"Date":"10/8/2024"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":671,"Cost":465,"Date":"10/26/2024"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":912,"Cost":494,"Date":"11/16/2024"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":157,"Cost":125,"Date":"11/18/2024"},{"Store":"Leuven Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":190,"Cost":162,"Date":"12/1/2024"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":694,"Cost":538,"Date":"2/9/2018"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":731,"Cost":560,"Date":"2/11/2018"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":697,"Cost":478,"Date":"3/10/2018"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":168,"Cost":157,"Date":"3/16/2018"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":317,"Cost":193,"Date":"3/18/2018"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":17,"Cost":11,"Date":"3/20/2018"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":353,"Cost":328,"Date":"3/26/2018"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":229,"Cost":217,"Date":"6/2/2018"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":745,"Cost":567,"Date":"6/10/2018"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":32,"Cost":27,"Date":"6/16/2018"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":375,"Cost":314,"Date":"6/25/2018"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":937,"Cost":647,"Date":"7/19/2018"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":689,"Cost":407,"Date":"7/21/2018"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":76,"Cost":47,"Date":"7/25/2018"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":710,"Cost":387,"Date":"8/4/2018"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":295,"Cost":191,"Date":"9/2/2018"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":864,"Cost":496,"Date":"9/4/2018"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":783,"Cost":649,"Date":"9/19/2018"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":531,"Cost":404,"Date":"9/29/2018"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":68,"Cost":49,"Date":"10/2/2018"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":2,"Cost":1,"Date":"10/15/2018"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":496,"Cost":275,"Date":"10/30/2018"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":6,"Cost":5,"Date":"11/9/2018"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":765,"Cost":666,"Date":"11/23/2018"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":656,"Cost":375,"Date":"11/30/2018"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":619,"Cost":488,"Date":"12/8/2018"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":274,"Cost":226,"Date":"12/11/2018"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":702,"Cost":533,"Date":"1/15/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":120,"Cost":70,"Date":"1/24/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":122,"Cost":63,"Date":"2/3/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":168,"Cost":117,"Date":"2/4/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":489,"Cost":417,"Date":"3/9/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":375,"Cost":299,"Date":"3/12/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":518,"Cost":277,"Date":"4/19/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":345,"Cost":175,"Date":"5/3/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":295,"Cost":274,"Date":"5/4/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":388,"Cost":345,"Date":"6/8/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":546,"Cost":400,"Date":"6/26/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":425,"Cost":348,"Date":"7/4/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":701,"Cost":445,"Date":"7/13/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":217,"Cost":113,"Date":"8/8/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":325,"Cost":235,"Date":"8/26/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":266,"Cost":246,"Date":"9/2/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":162,"Cost":144,"Date":"9/29/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":852,"Cost":524,"Date":"10/12/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":981,"Cost":496,"Date":"11/2/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":570,"Cost":516,"Date":"11/4/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":390,"Cost":263,"Date":"11/7/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":89,"Cost":80,"Date":"12/1/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":741,"Cost":684,"Date":"12/4/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":157,"Cost":148,"Date":"12/7/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":710,"Cost":449,"Date":"12/18/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":556,"Cost":411,"Date":"12/20/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":171,"Cost":159,"Date":"12/20/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":288,"Cost":248,"Date":"12/21/2019"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":239,"Cost":173,"Date":"1/9/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":54,"Cost":37,"Date":"2/5/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":985,"Cost":568,"Date":"2/16/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":965,"Cost":811,"Date":"2/16/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":560,"Cost":383,"Date":"2/18/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":439,"Cost":336,"Date":"2/22/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":218,"Cost":151,"Date":"2/25/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":248,"Cost":193,"Date":"3/8/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":618,"Cost":573,"Date":"4/2/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":944,"Cost":644,"Date":"4/3/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":951,"Cost":687,"Date":"4/9/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":595,"Cost":463,"Date":"4/10/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":113,"Cost":78,"Date":"4/19/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":802,"Cost":448,"Date":"5/17/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":949,"Cost":512,"Date":"5/22/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":692,"Cost":442,"Date":"6/20/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":630,"Cost":501,"Date":"7/1/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":687,"Cost":379,"Date":"7/4/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":759,"Cost":675,"Date":"7/8/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":386,"Cost":234,"Date":"7/9/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":383,"Cost":253,"Date":"7/14/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":587,"Cost":527,"Date":"7/19/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":105,"Cost":69,"Date":"8/1/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":687,"Cost":519,"Date":"8/6/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":857,"Cost":594,"Date":"8/7/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":621,"Cost":393,"Date":"8/22/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":981,"Cost":576,"Date":"8/31/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":535,"Cost":415,"Date":"9/1/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":101,"Cost":59,"Date":"9/1/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":28,"Cost":15,"Date":"9/17/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":406,"Cost":218,"Date":"9/29/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":315,"Cost":241,"Date":"11/7/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":637,"Cost":456,"Date":"11/26/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":764,"Cost":538,"Date":"11/27/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":236,"Cost":137,"Date":"12/5/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":666,"Cost":413,"Date":"12/26/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":38,"Cost":24,"Date":"12/31/2020"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":631,"Cost":542,"Date":"1/20/2021"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":901,"Cost":708,"Date":"2/2/2021"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":162,"Cost":96,"Date":"2/8/2021"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":783,"Cost":448,"Date":"2/27/2021"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":670,"Cost":407,"Date":"3/1/2021"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":830,"Cost":541,"Date":"3/1/2021"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":325,"Cost":258,"Date":"3/19/2021"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":889,"Cost":573,"Date":"3/28/2021"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":194,"Cost":112,"Date":"5/21/2021"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":765,"Cost":387,"Date":"7/21/2021"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":280,"Cost":232,"Date":"8/5/2021"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":368,"Cost":209,"Date":"8/12/2021"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":37,"Cost":29,"Date":"8/21/2021"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":209,"Cost":136,"Date":"8/23/2021"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":858,"Cost":590,"Date":"9/3/2021"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":599,"Cost":393,"Date":"9/5/2021"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":386,"Cost":296,"Date":"10/6/2021"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":425,"Cost":282,"Date":"10/19/2021"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":541,"Cost":308,"Date":"11/15/2021"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":387,"Cost":300,"Date":"12/8/2021"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":297,"Cost":180,"Date":"1/8/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":16,"Cost":13,"Date":"1/14/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":311,"Cost":204,"Date":"1/19/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":480,"Cost":447,"Date":"1/28/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":942,"Cost":657,"Date":"1/31/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":76,"Cost":43,"Date":"3/27/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":300,"Cost":189,"Date":"4/20/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":838,"Cost":682,"Date":"4/24/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":827,"Cost":613,"Date":"4/28/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":340,"Cost":269,"Date":"5/15/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":811,"Cost":433,"Date":"5/16/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":112,"Cost":100,"Date":"5/18/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":792,"Cost":530,"Date":"6/2/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":263,"Cost":192,"Date":"6/3/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":215,"Cost":187,"Date":"6/5/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":130,"Cost":88,"Date":"6/7/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":284,"Cost":255,"Date":"6/14/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":199,"Cost":185,"Date":"6/20/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":137,"Cost":98,"Date":"6/24/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":181,"Cost":163,"Date":"7/4/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":186,"Cost":172,"Date":"7/9/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":410,"Cost":205,"Date":"7/12/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":735,"Cost":524,"Date":"8/14/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":462,"Cost":314,"Date":"8/16/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":858,"Cost":694,"Date":"8/23/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":711,"Cost":511,"Date":"9/2/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":184,"Cost":110,"Date":"9/3/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":205,"Cost":154,"Date":"9/16/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":309,"Cost":223,"Date":"10/4/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":695,"Cost":420,"Date":"11/1/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":242,"Cost":222,"Date":"11/2/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":550,"Cost":523,"Date":"12/17/2022"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":8,"Cost":7,"Date":"2/10/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":248,"Cost":190,"Date":"2/28/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":945,"Cost":878,"Date":"3/4/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":244,"Cost":214,"Date":"3/9/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":231,"Cost":154,"Date":"3/9/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":503,"Cost":416,"Date":"3/11/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":823,"Cost":415,"Date":"3/17/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":25,"Cost":24,"Date":"3/17/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":378,"Cost":205,"Date":"3/23/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":485,"Cost":350,"Date":"4/1/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":837,"Cost":512,"Date":"5/7/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":768,"Cost":705,"Date":"5/10/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":629,"Cost":584,"Date":"5/20/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":99,"Cost":83,"Date":"6/2/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":1000,"Cost":565,"Date":"6/11/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":353,"Cost":197,"Date":"6/16/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":507,"Cost":306,"Date":"6/16/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":457,"Cost":378,"Date":"7/10/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":186,"Cost":113,"Date":"7/11/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":839,"Cost":794,"Date":"8/28/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":569,"Cost":308,"Date":"8/29/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":462,"Cost":363,"Date":"8/31/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":983,"Cost":865,"Date":"9/8/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":5,"Cost":4,"Date":"9/13/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":369,"Cost":344,"Date":"9/14/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":904,"Cost":466,"Date":"9/19/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":716,"Cost":655,"Date":"9/25/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":232,"Cost":188,"Date":"10/4/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":188,"Cost":120,"Date":"10/10/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":256,"Cost":225,"Date":"10/17/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":237,"Cost":225,"Date":"10/28/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":923,"Cost":867,"Date":"10/30/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":133,"Cost":98,"Date":"11/1/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":594,"Cost":297,"Date":"11/15/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":166,"Cost":148,"Date":"11/25/2023"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":744,"Cost":562,"Date":"1/10/2024"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":926,"Cost":589,"Date":"1/14/2024"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":446,"Cost":301,"Date":"1/20/2024"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":155,"Cost":107,"Date":"2/8/2024"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":470,"Cost":289,"Date":"2/25/2024"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":496,"Cost":400,"Date":"3/7/2024"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":179,"Cost":169,"Date":"3/14/2024"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":565,"Cost":404,"Date":"3/27/2024"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":685,"Cost":536,"Date":"4/5/2024"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":487,"Cost":381,"Date":"4/14/2024"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":459,"Cost":268,"Date":"5/3/2024"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":632,"Cost":532,"Date":"5/9/2024"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":440,"Cost":267,"Date":"5/15/2024"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":590,"Cost":305,"Date":"5/25/2024"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":9,"Cost":4,"Date":"5/26/2024"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":207,"Cost":163,"Date":"5/31/2024"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":355,"Cost":330,"Date":"7/27/2024"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":94,"Cost":72,"Date":"9/17/2024"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":65,"Cost":56,"Date":"10/6/2024"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":227,"Cost":151,"Date":"10/8/2024"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":59,"Cost":54,"Date":"10/26/2024"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":793,"Cost":421,"Date":"11/16/2024"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":632,"Cost":360,"Date":"11/18/2024"},{"Store":"Leuven Shopping Center","Brand":"HM","Country":"Belgium","Sale":939,"Cost":565,"Date":"12/1/2024"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":153,"Cost":86,"Date":"2/9/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":453,"Cost":320,"Date":"2/11/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":250,"Cost":159,"Date":"3/10/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":241,"Cost":151,"Date":"3/16/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":645,"Cost":437,"Date":"3/18/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":282,"Cost":166,"Date":"3/20/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":499,"Cost":473,"Date":"3/26/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":632,"Cost":540,"Date":"6/2/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":299,"Cost":232,"Date":"6/10/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":723,"Cost":403,"Date":"6/16/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":825,"Cost":530,"Date":"6/25/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":843,"Cost":527,"Date":"7/19/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":924,"Cost":845,"Date":"7/21/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":700,"Cost":410,"Date":"7/25/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":146,"Cost":129,"Date":"8/4/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":756,"Cost":685,"Date":"9/2/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":311,"Cost":198,"Date":"9/4/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":262,"Cost":202,"Date":"9/19/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":3,"Cost":2,"Date":"9/29/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":399,"Cost":336,"Date":"10/2/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":52,"Cost":27,"Date":"10/15/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":534,"Cost":340,"Date":"10/30/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":81,"Cost":42,"Date":"11/9/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":268,"Cost":238,"Date":"11/23/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":142,"Cost":131,"Date":"11/30/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":70,"Cost":62,"Date":"12/8/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":17,"Cost":11,"Date":"12/11/2018"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":711,"Cost":442,"Date":"1/15/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":961,"Cost":614,"Date":"1/24/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":184,"Cost":98,"Date":"2/3/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":399,"Cost":199,"Date":"2/4/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":267,"Cost":224,"Date":"3/9/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":241,"Cost":206,"Date":"3/12/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":212,"Cost":111,"Date":"4/19/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":950,"Cost":632,"Date":"5/3/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":270,"Cost":205,"Date":"5/4/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":102,"Cost":54,"Date":"6/8/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":69,"Cost":64,"Date":"6/26/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":56,"Cost":29,"Date":"7/4/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":814,"Cost":744,"Date":"7/13/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":322,"Cost":294,"Date":"8/8/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":855,"Cost":524,"Date":"8/26/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":507,"Cost":480,"Date":"9/2/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":259,"Cost":199,"Date":"9/29/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":5,"Cost":4,"Date":"10/12/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":653,"Cost":416,"Date":"11/2/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":38,"Cost":35,"Date":"11/4/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":480,"Cost":418,"Date":"11/7/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":671,"Cost":361,"Date":"12/1/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":838,"Cost":694,"Date":"12/4/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":748,"Cost":665,"Date":"12/7/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":498,"Cost":401,"Date":"12/18/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":170,"Cost":145,"Date":"12/20/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":412,"Cost":330,"Date":"12/20/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":383,"Cost":220,"Date":"12/21/2019"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":49,"Cost":47,"Date":"1/9/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":211,"Cost":183,"Date":"2/5/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":644,"Cost":403,"Date":"2/16/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":745,"Cost":512,"Date":"2/16/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":664,"Cost":443,"Date":"2/18/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":880,"Cost":482,"Date":"2/22/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":89,"Cost":56,"Date":"2/25/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":99,"Cost":76,"Date":"3/8/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":433,"Cost":224,"Date":"4/2/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":300,"Cost":166,"Date":"4/3/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":527,"Cost":483,"Date":"4/9/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":908,"Cost":689,"Date":"4/10/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":411,"Cost":206,"Date":"4/19/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":13,"Cost":12,"Date":"5/17/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":654,"Cost":529,"Date":"5/22/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":263,"Cost":157,"Date":"6/20/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":230,"Cost":197,"Date":"7/1/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":579,"Cost":378,"Date":"7/4/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":212,"Cost":185,"Date":"7/8/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":548,"Cost":455,"Date":"7/9/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":59,"Cost":29,"Date":"7/14/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":988,"Cost":594,"Date":"7/19/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":478,"Cost":349,"Date":"8/1/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":903,"Cost":702,"Date":"8/6/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":953,"Cost":714,"Date":"8/7/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":22,"Cost":17,"Date":"8/22/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":987,"Cost":712,"Date":"8/31/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":407,"Cost":361,"Date":"9/1/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":298,"Cost":226,"Date":"9/1/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":641,"Cost":375,"Date":"9/17/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":919,"Cost":750,"Date":"9/29/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":758,"Cost":677,"Date":"11/7/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":46,"Cost":33,"Date":"11/26/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":551,"Cost":281,"Date":"11/27/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":266,"Cost":155,"Date":"12/5/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":48,"Cost":39,"Date":"12/26/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":229,"Cost":189,"Date":"12/31/2020"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":73,"Cost":40,"Date":"1/20/2021"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":612,"Cost":329,"Date":"2/2/2021"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":950,"Cost":716,"Date":"2/8/2021"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":801,"Cost":671,"Date":"2/27/2021"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":485,"Cost":298,"Date":"3/1/2021"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":169,"Cost":105,"Date":"3/1/2021"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":917,"Cost":776,"Date":"3/19/2021"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":923,"Cost":634,"Date":"3/28/2021"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":682,"Cost":349,"Date":"5/21/2021"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":886,"Cost":558,"Date":"7/21/2021"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":228,"Cost":198,"Date":"8/5/2021"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":932,"Cost":716,"Date":"8/12/2021"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":908,"Cost":504,"Date":"8/21/2021"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":781,"Cost":649,"Date":"8/23/2021"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":976,"Cost":881,"Date":"9/3/2021"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":394,"Cost":199,"Date":"9/5/2021"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":842,"Cost":733,"Date":"10/6/2021"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":736,"Cost":550,"Date":"10/19/2021"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":956,"Cost":719,"Date":"11/15/2021"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":592,"Cost":505,"Date":"12/8/2021"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":767,"Cost":485,"Date":"1/8/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":735,"Cost":590,"Date":"1/14/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":480,"Cost":304,"Date":"1/19/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":401,"Cost":286,"Date":"1/28/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":325,"Cost":203,"Date":"1/31/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":603,"Cost":413,"Date":"3/27/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":335,"Cost":280,"Date":"4/20/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":367,"Cost":246,"Date":"4/24/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":260,"Cost":233,"Date":"4/28/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":672,"Cost":352,"Date":"5/15/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":808,"Cost":409,"Date":"5/16/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":35,"Cost":27,"Date":"5/18/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":222,"Cost":153,"Date":"6/2/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":801,"Cost":630,"Date":"6/3/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":463,"Cost":372,"Date":"6/5/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":726,"Cost":486,"Date":"6/7/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":205,"Cost":167,"Date":"6/14/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":580,"Cost":500,"Date":"6/20/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":834,"Cost":646,"Date":"6/24/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":631,"Cost":438,"Date":"7/4/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":323,"Cost":171,"Date":"7/9/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":94,"Cost":67,"Date":"7/12/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":653,"Cost":565,"Date":"8/14/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":173,"Cost":111,"Date":"8/16/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":878,"Cost":545,"Date":"8/23/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":96,"Cost":69,"Date":"9/2/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":769,"Cost":471,"Date":"9/3/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":614,"Cost":583,"Date":"9/16/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":204,"Cost":166,"Date":"10/4/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":301,"Cost":268,"Date":"11/1/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":128,"Cost":112,"Date":"11/2/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":665,"Cost":608,"Date":"12/17/2022"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":601,"Cost":488,"Date":"2/10/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":27,"Cost":18,"Date":"2/28/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":793,"Cost":512,"Date":"3/4/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":938,"Cost":891,"Date":"3/9/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":847,"Cost":585,"Date":"3/9/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":81,"Cost":70,"Date":"3/11/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":777,"Cost":568,"Date":"3/17/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":512,"Cost":333,"Date":"3/17/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":609,"Cost":368,"Date":"3/23/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":82,"Cost":54,"Date":"4/1/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":914,"Cost":601,"Date":"5/7/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":163,"Cost":103,"Date":"5/10/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":956,"Cost":621,"Date":"5/20/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":918,"Cost":660,"Date":"6/2/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":942,"Cost":676,"Date":"6/11/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":181,"Cost":163,"Date":"6/16/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":100,"Cost":55,"Date":"6/16/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":941,"Cost":622,"Date":"7/10/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":475,"Cost":268,"Date":"7/11/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":813,"Cost":691,"Date":"8/28/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":913,"Cost":488,"Date":"8/29/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":281,"Cost":220,"Date":"8/31/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":881,"Cost":679,"Date":"9/8/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":453,"Cost":364,"Date":"9/13/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":415,"Cost":268,"Date":"9/14/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":883,"Cost":599,"Date":"9/19/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":330,"Cost":171,"Date":"9/25/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":73,"Cost":36,"Date":"10/4/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":642,"Cost":348,"Date":"10/10/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":972,"Cost":819,"Date":"10/17/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":397,"Cost":262,"Date":"10/28/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":145,"Cost":95,"Date":"10/30/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":99,"Cost":64,"Date":"11/1/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":140,"Cost":84,"Date":"11/15/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":834,"Cost":643,"Date":"11/25/2023"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":711,"Cost":576,"Date":"1/10/2024"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":223,"Cost":148,"Date":"1/14/2024"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":83,"Cost":70,"Date":"1/20/2024"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":2,"Cost":2,"Date":"2/8/2024"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":167,"Cost":102,"Date":"2/25/2024"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":296,"Cost":254,"Date":"3/7/2024"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":311,"Cost":220,"Date":"3/14/2024"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":249,"Cost":219,"Date":"3/27/2024"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":685,"Cost":575,"Date":"4/5/2024"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":345,"Cost":281,"Date":"4/14/2024"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":920,"Cost":658,"Date":"5/3/2024"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":703,"Cost":476,"Date":"5/9/2024"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":726,"Cost":564,"Date":"5/15/2024"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":879,"Cost":602,"Date":"5/25/2024"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":635,"Cost":474,"Date":"5/26/2024"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":581,"Cost":537,"Date":"5/31/2024"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":179,"Cost":152,"Date":"7/27/2024"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":343,"Cost":178,"Date":"9/17/2024"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":177,"Cost":122,"Date":"10/6/2024"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":39,"Cost":32,"Date":"10/8/2024"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":121,"Cost":100,"Date":"10/26/2024"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":370,"Cost":190,"Date":"11/16/2024"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":704,"Cost":560,"Date":"11/18/2024"},{"Store":"Leuven Shopping Center","Brand":"Jeans","Country":"Belgium","Sale":42,"Cost":21,"Date":"12/1/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":842,"Cost":478,"Date":"2/9/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":926,"Cost":535,"Date":"2/11/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":619,"Cost":313,"Date":"3/10/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":961,"Cost":527,"Date":"3/16/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":927,"Cost":853,"Date":"3/18/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":655,"Cost":538,"Date":"3/20/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":303,"Cost":266,"Date":"3/26/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":296,"Cost":232,"Date":"6/2/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":138,"Cost":131,"Date":"6/10/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":947,"Cost":801,"Date":"6/16/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":765,"Cost":573,"Date":"6/25/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":863,"Cost":811,"Date":"7/19/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":45,"Cost":25,"Date":"7/21/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":423,"Cost":390,"Date":"7/25/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":43,"Cost":38,"Date":"8/4/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":919,"Cost":480,"Date":"9/2/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":762,"Cost":574,"Date":"9/4/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":240,"Cost":209,"Date":"9/19/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":313,"Cost":210,"Date":"9/29/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":408,"Cost":274,"Date":"10/2/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":263,"Cost":187,"Date":"10/15/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":302,"Cost":185,"Date":"10/30/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":918,"Cost":845,"Date":"11/9/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":718,"Cost":664,"Date":"11/23/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":462,"Cost":295,"Date":"11/30/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":413,"Cost":378,"Date":"12/8/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":635,"Cost":527,"Date":"12/11/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":879,"Cost":643,"Date":"1/15/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":87,"Cost":71,"Date":"1/24/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":754,"Cost":548,"Date":"2/3/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":838,"Cost":527,"Date":"2/4/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":786,"Cost":537,"Date":"3/9/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":133,"Cost":105,"Date":"3/12/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":747,"Cost":441,"Date":"4/19/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":38,"Cost":36,"Date":"5/3/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":216,"Cost":167,"Date":"5/4/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":279,"Cost":167,"Date":"6/8/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":339,"Cost":247,"Date":"6/26/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":105,"Cost":87,"Date":"7/4/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":38,"Cost":28,"Date":"7/13/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":451,"Cost":360,"Date":"8/8/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":284,"Cost":213,"Date":"8/26/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":636,"Cost":578,"Date":"9/2/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":216,"Cost":143,"Date":"9/29/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":892,"Cost":631,"Date":"10/12/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":43,"Cost":38,"Date":"11/2/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":572,"Cost":458,"Date":"11/4/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":151,"Cost":90,"Date":"11/7/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":417,"Cost":214,"Date":"12/1/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":317,"Cost":271,"Date":"12/4/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":39,"Cost":23,"Date":"12/7/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":124,"Cost":66,"Date":"12/18/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":201,"Cost":115,"Date":"12/20/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":113,"Cost":98,"Date":"12/20/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":515,"Cost":266,"Date":"12/21/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":283,"Cost":167,"Date":"1/9/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":639,"Cost":380,"Date":"2/5/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":334,"Cost":287,"Date":"2/16/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":521,"Cost":463,"Date":"2/16/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":515,"Cost":461,"Date":"2/18/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":345,"Cost":192,"Date":"2/22/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":368,"Cost":347,"Date":"2/25/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":636,"Cost":454,"Date":"3/8/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":719,"Cost":506,"Date":"4/2/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":719,"Cost":513,"Date":"4/3/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":148,"Cost":135,"Date":"4/9/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":873,"Cost":743,"Date":"4/10/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":485,"Cost":393,"Date":"4/19/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":664,"Cost":586,"Date":"5/17/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":921,"Cost":718,"Date":"5/22/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":474,"Cost":395,"Date":"6/20/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":934,"Cost":611,"Date":"7/1/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":356,"Cost":223,"Date":"7/4/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":118,"Cost":83,"Date":"7/8/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":535,"Cost":497,"Date":"7/9/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":562,"Cost":398,"Date":"7/14/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":423,"Cost":353,"Date":"7/19/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":224,"Cost":213,"Date":"8/1/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":359,"Cost":250,"Date":"8/6/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":817,"Cost":526,"Date":"8/7/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":114,"Cost":84,"Date":"8/22/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":62,"Cost":53,"Date":"8/31/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":222,"Cost":204,"Date":"9/1/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":497,"Cost":404,"Date":"9/1/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":17,"Cost":13,"Date":"9/17/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":965,"Cost":531,"Date":"9/29/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":107,"Cost":72,"Date":"11/7/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":308,"Cost":159,"Date":"11/26/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":423,"Cost":365,"Date":"11/27/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":707,"Cost":473,"Date":"12/5/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":727,"Cost":416,"Date":"12/26/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":401,"Cost":351,"Date":"12/31/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":792,"Cost":550,"Date":"1/20/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":733,"Cost":458,"Date":"2/2/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":312,"Cost":201,"Date":"2/8/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":295,"Cost":162,"Date":"2/27/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":585,"Cost":493,"Date":"3/1/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":516,"Cost":365,"Date":"3/1/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":720,"Cost":396,"Date":"3/19/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":543,"Cost":501,"Date":"3/28/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":663,"Cost":344,"Date":"5/21/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":961,"Cost":748,"Date":"7/21/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":618,"Cost":338,"Date":"8/5/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":378,"Cost":288,"Date":"8/12/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":983,"Cost":510,"Date":"8/21/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":126,"Cost":76,"Date":"8/23/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":677,"Cost":371,"Date":"9/3/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":681,"Cost":503,"Date":"9/5/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":277,"Cost":148,"Date":"10/6/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":50,"Cost":30,"Date":"10/19/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":639,"Cost":534,"Date":"11/15/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":909,"Cost":778,"Date":"12/8/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":600,"Cost":443,"Date":"1/8/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":129,"Cost":69,"Date":"1/14/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":955,"Cost":893,"Date":"1/19/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":948,"Cost":654,"Date":"1/28/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":926,"Cost":802,"Date":"1/31/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":710,"Cost":563,"Date":"3/27/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":389,"Cost":320,"Date":"4/20/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":484,"Cost":276,"Date":"4/24/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":424,"Cost":227,"Date":"4/28/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":132,"Cost":102,"Date":"5/15/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":933,"Cost":663,"Date":"5/16/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":985,"Cost":891,"Date":"5/18/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":239,"Cost":155,"Date":"6/2/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":555,"Cost":386,"Date":"6/3/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":475,"Cost":368,"Date":"6/5/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":415,"Cost":221,"Date":"6/7/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":981,"Cost":702,"Date":"6/14/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":629,"Cost":426,"Date":"6/20/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":729,"Cost":645,"Date":"6/24/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":230,"Cost":121,"Date":"7/4/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":345,"Cost":324,"Date":"7/9/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":964,"Cost":664,"Date":"7/12/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":304,"Cost":206,"Date":"8/14/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":417,"Cost":234,"Date":"8/16/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":773,"Cost":434,"Date":"8/23/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":271,"Cost":156,"Date":"9/2/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":452,"Cost":387,"Date":"9/3/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":29,"Cost":27,"Date":"9/16/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":243,"Cost":224,"Date":"10/4/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":874,"Cost":634,"Date":"11/1/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":42,"Cost":37,"Date":"11/2/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":435,"Cost":288,"Date":"12/17/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":323,"Cost":173,"Date":"2/10/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":980,"Cost":816,"Date":"2/28/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":860,"Cost":543,"Date":"3/4/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":265,"Cost":165,"Date":"3/9/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":716,"Cost":430,"Date":"3/9/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":326,"Cost":215,"Date":"3/11/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":909,"Cost":650,"Date":"3/17/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":958,"Cost":836,"Date":"3/17/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":136,"Cost":111,"Date":"3/23/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":640,"Cost":535,"Date":"4/1/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":346,"Cost":328,"Date":"5/7/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":550,"Cost":365,"Date":"5/10/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":637,"Cost":322,"Date":"5/20/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":55,"Cost":42,"Date":"6/2/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":975,"Cost":502,"Date":"6/11/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":855,"Cost":434,"Date":"6/16/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":139,"Cost":80,"Date":"6/16/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":24,"Cost":22,"Date":"7/10/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":993,"Cost":921,"Date":"7/11/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":518,"Cost":338,"Date":"8/28/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":965,"Cost":701,"Date":"8/29/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":37,"Cost":19,"Date":"8/31/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":311,"Cost":183,"Date":"9/8/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":513,"Cost":316,"Date":"9/13/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":228,"Cost":158,"Date":"9/14/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":969,"Cost":609,"Date":"9/19/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":754,"Cost":548,"Date":"9/25/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":439,"Cost":316,"Date":"10/4/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":664,"Cost":545,"Date":"10/10/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":955,"Cost":660,"Date":"10/17/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":258,"Cost":188,"Date":"10/28/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":361,"Cost":282,"Date":"10/30/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":275,"Cost":143,"Date":"11/1/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":10,"Cost":7,"Date":"11/15/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":390,"Cost":221,"Date":"11/25/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":361,"Cost":306,"Date":"1/10/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":97,"Cost":80,"Date":"1/14/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":619,"Cost":457,"Date":"1/20/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":221,"Cost":204,"Date":"2/8/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":409,"Cost":249,"Date":"2/25/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":972,"Cost":778,"Date":"3/7/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":176,"Cost":103,"Date":"3/14/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":636,"Cost":410,"Date":"3/27/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":171,"Cost":156,"Date":"4/5/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":664,"Cost":420,"Date":"4/14/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":535,"Cost":325,"Date":"5/3/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":181,"Cost":91,"Date":"5/9/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":143,"Cost":100,"Date":"5/15/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":313,"Cost":269,"Date":"5/25/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":705,"Cost":665,"Date":"5/26/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":30,"Cost":21,"Date":"5/31/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":435,"Cost":307,"Date":"7/27/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":426,"Cost":332,"Date":"9/17/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":316,"Cost":217,"Date":"10/6/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":994,"Cost":616,"Date":"10/8/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":772,"Cost":673,"Date":"10/26/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":906,"Cost":499,"Date":"11/16/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":622,"Cost":508,"Date":"11/18/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"COS","Country":"Belgium","Sale":119,"Cost":92,"Date":"12/1/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":92,"Cost":83,"Date":"2/9/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":198,"Cost":158,"Date":"2/11/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":598,"Cost":464,"Date":"3/10/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":73,"Cost":63,"Date":"3/16/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":267,"Cost":224,"Date":"3/18/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":800,"Cost":609,"Date":"3/20/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":875,"Cost":537,"Date":"3/26/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":62,"Cost":46,"Date":"6/2/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":268,"Cost":244,"Date":"6/10/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":534,"Cost":279,"Date":"6/16/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":987,"Cost":581,"Date":"6/25/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":733,"Cost":435,"Date":"7/19/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":372,"Cost":242,"Date":"7/21/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":379,"Cost":221,"Date":"7/25/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":949,"Cost":888,"Date":"8/4/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":719,"Cost":532,"Date":"9/2/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":399,"Cost":270,"Date":"9/4/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":362,"Cost":285,"Date":"9/19/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":506,"Cost":433,"Date":"9/29/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":729,"Cost":684,"Date":"10/2/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":645,"Cost":389,"Date":"10/15/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":977,"Cost":679,"Date":"10/30/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":27,"Cost":22,"Date":"11/9/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":289,"Cost":150,"Date":"11/23/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":207,"Cost":149,"Date":"11/30/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":495,"Cost":335,"Date":"12/8/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":264,"Cost":182,"Date":"12/11/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":791,"Cost":697,"Date":"1/15/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":285,"Cost":179,"Date":"1/24/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":607,"Cost":540,"Date":"2/3/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":933,"Cost":486,"Date":"2/4/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":438,"Cost":233,"Date":"3/9/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":799,"Cost":594,"Date":"3/12/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":571,"Cost":288,"Date":"4/19/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":322,"Cost":195,"Date":"5/3/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":937,"Cost":832,"Date":"5/4/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":862,"Cost":665,"Date":"6/8/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":316,"Cost":249,"Date":"6/26/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":541,"Cost":306,"Date":"7/4/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":785,"Cost":530,"Date":"7/13/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":544,"Cost":367,"Date":"8/8/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":17,"Cost":17,"Date":"8/26/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":799,"Cost":735,"Date":"9/2/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":747,"Cost":462,"Date":"9/29/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":904,"Cost":602,"Date":"10/12/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":501,"Cost":423,"Date":"11/2/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":322,"Cost":238,"Date":"11/4/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":198,"Cost":180,"Date":"11/7/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":137,"Cost":86,"Date":"12/1/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":989,"Cost":921,"Date":"12/4/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":278,"Cost":258,"Date":"12/7/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":656,"Cost":397,"Date":"12/18/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":543,"Cost":404,"Date":"12/20/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":610,"Cost":305,"Date":"12/20/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":481,"Cost":271,"Date":"12/21/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":444,"Cost":415,"Date":"1/9/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":669,"Cost":577,"Date":"2/5/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":376,"Cost":253,"Date":"2/16/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":765,"Cost":591,"Date":"2/16/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":645,"Cost":538,"Date":"2/18/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":116,"Cost":75,"Date":"2/22/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":707,"Cost":549,"Date":"2/25/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":875,"Cost":639,"Date":"3/8/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":848,"Cost":557,"Date":"4/2/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":603,"Cost":421,"Date":"4/3/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":337,"Cost":245,"Date":"4/9/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":25,"Cost":16,"Date":"4/10/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":139,"Cost":132,"Date":"4/19/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":605,"Cost":363,"Date":"5/17/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":815,"Cost":446,"Date":"5/22/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":815,"Cost":487,"Date":"6/20/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":579,"Cost":407,"Date":"7/1/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":846,"Cost":669,"Date":"7/4/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":480,"Cost":289,"Date":"7/8/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":917,"Cost":794,"Date":"7/9/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":672,"Cost":560,"Date":"7/14/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":770,"Cost":570,"Date":"7/19/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":581,"Cost":444,"Date":"8/1/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":782,"Cost":724,"Date":"8/6/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":663,"Cost":623,"Date":"8/7/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":410,"Cost":268,"Date":"8/22/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":919,"Cost":720,"Date":"8/31/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":726,"Cost":415,"Date":"9/1/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":277,"Cost":207,"Date":"9/1/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":704,"Cost":502,"Date":"9/17/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":522,"Cost":465,"Date":"9/29/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":666,"Cost":393,"Date":"11/7/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":578,"Cost":453,"Date":"11/26/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":658,"Cost":441,"Date":"11/27/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":303,"Cost":277,"Date":"12/5/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":699,"Cost":592,"Date":"12/26/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":72,"Cost":56,"Date":"12/31/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":350,"Cost":204,"Date":"1/20/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":218,"Cost":200,"Date":"2/2/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":967,"Cost":594,"Date":"2/8/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":369,"Cost":276,"Date":"2/27/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":884,"Cost":594,"Date":"3/1/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":59,"Cost":39,"Date":"3/1/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":420,"Cost":258,"Date":"3/19/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":831,"Cost":604,"Date":"3/28/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":944,"Cost":816,"Date":"5/21/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":894,"Cost":463,"Date":"7/21/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":563,"Cost":365,"Date":"8/5/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":47,"Cost":40,"Date":"8/12/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":878,"Cost":571,"Date":"8/21/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":938,"Cost":851,"Date":"8/23/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":570,"Cost":328,"Date":"9/3/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":428,"Cost":309,"Date":"9/5/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":396,"Cost":371,"Date":"10/6/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":612,"Cost":498,"Date":"10/19/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":149,"Cost":92,"Date":"11/15/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":978,"Cost":916,"Date":"12/8/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":485,"Cost":245,"Date":"1/8/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":748,"Cost":566,"Date":"1/14/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":872,"Cost":462,"Date":"1/19/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":125,"Cost":90,"Date":"1/28/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":264,"Cost":211,"Date":"1/31/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":595,"Cost":476,"Date":"3/27/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":293,"Cost":232,"Date":"4/20/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":873,"Cost":550,"Date":"4/24/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":297,"Cost":164,"Date":"4/28/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":234,"Cost":157,"Date":"5/15/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":562,"Cost":529,"Date":"5/16/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":731,"Cost":648,"Date":"5/18/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":716,"Cost":359,"Date":"6/2/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":329,"Cost":219,"Date":"6/3/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":91,"Cost":60,"Date":"6/5/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":187,"Cost":104,"Date":"6/7/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":541,"Cost":477,"Date":"6/14/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":215,"Cost":162,"Date":"6/20/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":743,"Cost":618,"Date":"6/24/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":982,"Cost":629,"Date":"7/4/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":412,"Cost":374,"Date":"7/9/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":921,"Cost":480,"Date":"7/12/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":698,"Cost":570,"Date":"8/14/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":791,"Cost":639,"Date":"8/16/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":382,"Cost":234,"Date":"8/23/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":757,"Cost":439,"Date":"9/2/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":990,"Cost":709,"Date":"9/3/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":990,"Cost":831,"Date":"9/16/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":188,"Cost":116,"Date":"10/4/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":397,"Cost":306,"Date":"11/1/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":699,"Cost":630,"Date":"11/2/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":327,"Cost":301,"Date":"12/17/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":727,"Cost":531,"Date":"2/10/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":342,"Cost":218,"Date":"2/28/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":952,"Cost":890,"Date":"3/4/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":160,"Cost":131,"Date":"3/9/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":543,"Cost":435,"Date":"3/9/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":851,"Cost":671,"Date":"3/11/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":34,"Cost":29,"Date":"3/17/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":566,"Cost":321,"Date":"3/17/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":673,"Cost":634,"Date":"3/23/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":629,"Cost":431,"Date":"4/1/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":235,"Cost":190,"Date":"5/7/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":409,"Cost":366,"Date":"5/10/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":462,"Cost":397,"Date":"5/20/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":437,"Cost":340,"Date":"6/2/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":455,"Cost":300,"Date":"6/11/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":111,"Cost":60,"Date":"6/16/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":587,"Cost":360,"Date":"6/16/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":557,"Cost":346,"Date":"7/10/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":786,"Cost":491,"Date":"7/11/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":580,"Cost":411,"Date":"8/28/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":407,"Cost":298,"Date":"8/29/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":498,"Cost":400,"Date":"8/31/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":141,"Cost":108,"Date":"9/8/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":560,"Cost":397,"Date":"9/13/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":799,"Cost":733,"Date":"9/14/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":265,"Cost":216,"Date":"9/19/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":319,"Cost":196,"Date":"9/25/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":539,"Cost":368,"Date":"10/4/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":686,"Cost":432,"Date":"10/10/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":413,"Cost":244,"Date":"10/17/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":604,"Cost":336,"Date":"10/28/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":863,"Cost":461,"Date":"10/30/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":748,"Cost":404,"Date":"11/1/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":339,"Cost":228,"Date":"11/15/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":187,"Cost":119,"Date":"11/25/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":322,"Cost":299,"Date":"1/10/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":751,"Cost":540,"Date":"1/14/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":779,"Cost":707,"Date":"1/20/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":94,"Cost":83,"Date":"2/8/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":743,"Cost":699,"Date":"2/25/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":242,"Cost":170,"Date":"3/7/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":481,"Cost":312,"Date":"3/14/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":371,"Cost":275,"Date":"3/27/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":851,"Cost":778,"Date":"4/5/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":668,"Cost":582,"Date":"4/14/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":886,"Cost":732,"Date":"5/3/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":32,"Cost":22,"Date":"5/9/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":763,"Cost":673,"Date":"5/15/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":232,"Cost":131,"Date":"5/25/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":728,"Cost":485,"Date":"5/26/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":785,"Cost":718,"Date":"5/31/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":646,"Cost":435,"Date":"7/27/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":409,"Cost":345,"Date":"9/17/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":249,"Cost":165,"Date":"10/6/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":651,"Cost":351,"Date":"10/8/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":367,"Cost":240,"Date":"10/26/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":959,"Cost":481,"Date":"11/16/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":971,"Cost":696,"Date":"11/18/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Jeans","Country":"Belgium","Sale":865,"Cost":650,"Date":"12/1/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":515,"Cost":418,"Date":"2/9/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":121,"Cost":98,"Date":"2/11/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":603,"Cost":329,"Date":"3/10/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":579,"Cost":527,"Date":"3/16/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":551,"Cost":383,"Date":"3/18/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":250,"Cost":203,"Date":"3/20/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":588,"Cost":459,"Date":"3/26/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":42,"Cost":22,"Date":"6/2/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":584,"Cost":380,"Date":"6/10/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":898,"Cost":702,"Date":"6/16/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":250,"Cost":191,"Date":"6/25/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":628,"Cost":501,"Date":"7/19/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":981,"Cost":560,"Date":"7/21/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":68,"Cost":61,"Date":"7/25/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":683,"Cost":615,"Date":"8/4/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":716,"Cost":450,"Date":"9/2/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":536,"Cost":335,"Date":"9/4/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":659,"Cost":569,"Date":"9/19/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":917,"Cost":706,"Date":"9/29/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":667,"Cost":577,"Date":"10/2/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":684,"Cost":550,"Date":"10/15/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":878,"Cost":470,"Date":"10/30/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":954,"Cost":713,"Date":"11/9/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":858,"Cost":659,"Date":"11/23/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":389,"Cost":259,"Date":"11/30/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":282,"Cost":197,"Date":"12/8/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":576,"Cost":348,"Date":"12/11/2018"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":937,"Cost":663,"Date":"1/15/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":764,"Cost":625,"Date":"1/24/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":512,"Cost":281,"Date":"2/3/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":234,"Cost":130,"Date":"2/4/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":367,"Cost":285,"Date":"3/9/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":516,"Cost":491,"Date":"3/12/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":304,"Cost":254,"Date":"4/19/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":150,"Cost":125,"Date":"5/3/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":523,"Cost":418,"Date":"5/4/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":543,"Cost":365,"Date":"6/8/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":287,"Cost":157,"Date":"6/26/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":916,"Cost":708,"Date":"7/4/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":519,"Cost":383,"Date":"7/13/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":75,"Cost":44,"Date":"8/8/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":973,"Cost":678,"Date":"8/26/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":162,"Cost":151,"Date":"9/2/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":693,"Cost":385,"Date":"9/29/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":307,"Cost":266,"Date":"10/12/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":913,"Cost":585,"Date":"11/2/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":754,"Cost":590,"Date":"11/4/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":239,"Cost":227,"Date":"11/7/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":121,"Cost":96,"Date":"12/1/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":805,"Cost":744,"Date":"12/4/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":523,"Cost":338,"Date":"12/7/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":383,"Cost":207,"Date":"12/18/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":69,"Cost":43,"Date":"12/20/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":878,"Cost":559,"Date":"12/20/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":127,"Cost":66,"Date":"12/21/2019"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":403,"Cost":339,"Date":"1/9/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":116,"Cost":98,"Date":"2/5/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":305,"Cost":261,"Date":"2/16/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":708,"Cost":640,"Date":"2/16/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":294,"Cost":148,"Date":"2/18/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":136,"Cost":114,"Date":"2/22/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":312,"Cost":218,"Date":"2/25/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":508,"Cost":464,"Date":"3/8/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":240,"Cost":216,"Date":"4/2/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":324,"Cost":307,"Date":"4/3/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":266,"Cost":226,"Date":"4/9/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":720,"Cost":593,"Date":"4/10/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":153,"Cost":118,"Date":"4/19/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":602,"Cost":565,"Date":"5/17/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":804,"Cost":663,"Date":"5/22/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":929,"Cost":637,"Date":"6/20/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":596,"Cost":381,"Date":"7/1/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":412,"Cost":283,"Date":"7/4/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":921,"Cost":840,"Date":"7/8/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":808,"Cost":446,"Date":"7/9/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":854,"Cost":614,"Date":"7/14/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":789,"Cost":522,"Date":"7/19/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":38,"Cost":30,"Date":"8/1/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":411,"Cost":221,"Date":"8/6/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":931,"Cost":785,"Date":"8/7/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":488,"Cost":266,"Date":"8/22/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":580,"Cost":465,"Date":"8/31/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":783,"Cost":629,"Date":"9/1/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":69,"Cost":56,"Date":"9/1/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":753,"Cost":383,"Date":"9/17/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":960,"Cost":664,"Date":"9/29/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":735,"Cost":568,"Date":"11/7/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":416,"Cost":385,"Date":"11/26/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":148,"Cost":93,"Date":"11/27/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":611,"Cost":350,"Date":"12/5/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":771,"Cost":470,"Date":"12/26/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":100,"Cost":84,"Date":"12/31/2020"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":593,"Cost":403,"Date":"1/20/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":924,"Cost":814,"Date":"2/2/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":735,"Cost":414,"Date":"2/8/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":138,"Cost":111,"Date":"2/27/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":838,"Cost":697,"Date":"3/1/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":359,"Cost":323,"Date":"3/1/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":36,"Cost":29,"Date":"3/19/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":607,"Cost":416,"Date":"3/28/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":265,"Cost":200,"Date":"5/21/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":631,"Cost":545,"Date":"7/21/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":801,"Cost":761,"Date":"8/5/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":912,"Cost":733,"Date":"8/12/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":840,"Cost":764,"Date":"8/21/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":850,"Cost":593,"Date":"8/23/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":435,"Cost":391,"Date":"9/3/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":894,"Cost":559,"Date":"9/5/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":811,"Cost":410,"Date":"10/6/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":533,"Cost":455,"Date":"10/19/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":50,"Cost":26,"Date":"11/15/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":950,"Cost":519,"Date":"12/8/2021"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":726,"Cost":429,"Date":"1/8/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":104,"Cost":96,"Date":"1/14/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":29,"Cost":25,"Date":"1/19/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":197,"Cost":109,"Date":"1/28/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":80,"Cost":59,"Date":"1/31/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":850,"Cost":433,"Date":"3/27/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":504,"Cost":344,"Date":"4/20/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":534,"Cost":470,"Date":"4/24/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":849,"Cost":767,"Date":"4/28/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":83,"Cost":49,"Date":"5/15/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":1,"Cost":1,"Date":"5/16/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":767,"Cost":607,"Date":"5/18/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":808,"Cost":759,"Date":"6/2/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":524,"Cost":363,"Date":"6/3/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":143,"Cost":106,"Date":"6/5/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":234,"Cost":163,"Date":"6/7/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":28,"Cost":14,"Date":"6/14/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":803,"Cost":410,"Date":"6/20/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":357,"Cost":200,"Date":"6/24/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":20,"Cost":19,"Date":"7/4/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":645,"Cost":552,"Date":"7/9/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":703,"Cost":546,"Date":"7/12/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":325,"Cost":176,"Date":"8/14/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":788,"Cost":695,"Date":"8/16/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":896,"Cost":496,"Date":"8/23/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":57,"Cost":35,"Date":"9/2/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":446,"Cost":361,"Date":"9/3/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":627,"Cost":418,"Date":"9/16/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":848,"Cost":672,"Date":"10/4/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":465,"Cost":373,"Date":"11/1/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":75,"Cost":38,"Date":"11/2/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":410,"Cost":374,"Date":"12/17/2022"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":447,"Cost":303,"Date":"2/10/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":189,"Cost":122,"Date":"2/28/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":4,"Cost":2,"Date":"3/4/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":515,"Cost":288,"Date":"3/9/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":22,"Cost":16,"Date":"3/9/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":164,"Cost":111,"Date":"3/11/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":853,"Cost":586,"Date":"3/17/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":489,"Cost":408,"Date":"3/17/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":328,"Cost":223,"Date":"3/23/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":833,"Cost":475,"Date":"4/1/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":160,"Cost":84,"Date":"5/7/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":321,"Cost":179,"Date":"5/10/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":272,"Cost":243,"Date":"5/20/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":376,"Cost":314,"Date":"6/2/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":301,"Cost":180,"Date":"6/11/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":857,"Cost":554,"Date":"6/16/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":770,"Cost":555,"Date":"6/16/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":708,"Cost":423,"Date":"7/10/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":956,"Cost":875,"Date":"7/11/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":952,"Cost":838,"Date":"8/28/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":327,"Cost":290,"Date":"8/29/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":431,"Cost":277,"Date":"8/31/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":525,"Cost":266,"Date":"9/8/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":151,"Cost":143,"Date":"9/13/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":229,"Cost":121,"Date":"9/14/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":104,"Cost":75,"Date":"9/19/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":612,"Cost":351,"Date":"9/25/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":336,"Cost":274,"Date":"10/4/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":793,"Cost":735,"Date":"10/10/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":694,"Cost":548,"Date":"10/17/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":878,"Cost":687,"Date":"10/28/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":533,"Cost":370,"Date":"10/30/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":801,"Cost":449,"Date":"11/1/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":423,"Cost":288,"Date":"11/15/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":152,"Cost":83,"Date":"11/25/2023"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":278,"Cost":210,"Date":"1/10/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":735,"Cost":374,"Date":"1/14/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":302,"Cost":255,"Date":"1/20/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":389,"Cost":356,"Date":"2/8/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":48,"Cost":44,"Date":"2/25/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":161,"Cost":109,"Date":"3/7/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":122,"Cost":78,"Date":"3/14/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":320,"Cost":247,"Date":"3/27/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":354,"Cost":307,"Date":"4/5/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":766,"Cost":618,"Date":"4/14/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":91,"Cost":73,"Date":"5/3/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":724,"Cost":562,"Date":"5/9/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":301,"Cost":185,"Date":"5/15/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":680,"Cost":495,"Date":"5/25/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":190,"Cost":129,"Date":"5/26/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":783,"Cost":697,"Date":"5/31/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":934,"Cost":536,"Date":"7/27/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":317,"Cost":267,"Date":"9/17/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":737,"Cost":422,"Date":"10/6/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":11,"Cost":7,"Date":"10/8/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":429,"Cost":278,"Date":"10/26/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":207,"Cost":158,"Date":"11/16/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":465,"Cost":406,"Date":"11/18/2024"},{"Store":"Winkelcentrum Ledeberg, Leuven","Brand":"Sellpy","Country":"Belgium","Sale":446,"Cost":279,"Date":"12/1/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":388,"Cost":303,"Date":"2/9/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":103,"Cost":53,"Date":"2/11/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":346,"Cost":304,"Date":"3/10/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":525,"Cost":284,"Date":"3/16/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":287,"Cost":164,"Date":"3/18/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":282,"Cost":264,"Date":"3/20/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":954,"Cost":504,"Date":"3/26/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":468,"Cost":367,"Date":"6/2/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":576,"Cost":437,"Date":"6/10/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":345,"Cost":246,"Date":"6/16/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":832,"Cost":611,"Date":"6/25/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":406,"Cost":356,"Date":"7/19/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":156,"Cost":100,"Date":"7/21/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":257,"Cost":239,"Date":"7/25/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":207,"Cost":180,"Date":"8/4/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":456,"Cost":389,"Date":"9/2/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":359,"Cost":213,"Date":"9/4/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":697,"Cost":552,"Date":"9/19/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":493,"Cost":274,"Date":"9/29/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":918,"Cost":560,"Date":"10/2/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":192,"Cost":153,"Date":"10/15/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":399,"Cost":241,"Date":"10/30/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":437,"Cost":225,"Date":"11/9/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":124,"Cost":76,"Date":"11/23/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":853,"Cost":756,"Date":"11/30/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":762,"Cost":592,"Date":"12/8/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":548,"Cost":473,"Date":"12/11/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":124,"Cost":80,"Date":"1/15/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":541,"Cost":434,"Date":"1/24/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":352,"Cost":229,"Date":"2/3/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":696,"Cost":456,"Date":"2/4/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":973,"Cost":712,"Date":"3/9/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":118,"Cost":87,"Date":"3/12/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":722,"Cost":458,"Date":"4/19/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":480,"Cost":428,"Date":"5/3/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":727,"Cost":585,"Date":"5/4/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":297,"Cost":248,"Date":"6/8/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":258,"Cost":186,"Date":"6/26/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":121,"Cost":81,"Date":"7/4/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":163,"Cost":85,"Date":"7/13/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":378,"Cost":336,"Date":"8/8/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":15,"Cost":8,"Date":"8/26/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":32,"Cost":19,"Date":"9/2/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":493,"Cost":386,"Date":"9/29/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":176,"Cost":157,"Date":"10/12/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":219,"Cost":160,"Date":"11/2/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":436,"Cost":370,"Date":"11/4/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":648,"Cost":470,"Date":"11/7/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":86,"Cost":62,"Date":"12/1/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":362,"Cost":207,"Date":"12/4/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":755,"Cost":624,"Date":"12/7/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":202,"Cost":112,"Date":"12/18/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":255,"Cost":228,"Date":"12/20/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":274,"Cost":161,"Date":"12/20/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":334,"Cost":293,"Date":"12/21/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":893,"Cost":506,"Date":"1/9/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":544,"Cost":278,"Date":"2/5/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":880,"Cost":524,"Date":"2/16/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":793,"Cost":422,"Date":"2/16/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":380,"Cost":259,"Date":"2/18/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":838,"Cost":732,"Date":"2/22/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":625,"Cost":412,"Date":"2/25/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":641,"Cost":483,"Date":"3/8/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":766,"Cost":533,"Date":"4/2/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":966,"Cost":534,"Date":"4/3/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":294,"Cost":238,"Date":"4/9/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":523,"Cost":383,"Date":"4/10/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":701,"Cost":649,"Date":"4/19/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":945,"Cost":808,"Date":"5/17/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":617,"Cost":475,"Date":"5/22/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":420,"Cost":390,"Date":"6/20/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":436,"Cost":236,"Date":"7/1/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":958,"Cost":773,"Date":"7/4/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":740,"Cost":395,"Date":"7/8/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":375,"Cost":333,"Date":"7/9/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":754,"Cost":377,"Date":"7/14/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":487,"Cost":361,"Date":"7/19/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":729,"Cost":509,"Date":"8/1/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":910,"Cost":775,"Date":"8/6/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":857,"Cost":766,"Date":"8/7/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":634,"Cost":396,"Date":"8/22/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":148,"Cost":94,"Date":"8/31/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":495,"Cost":312,"Date":"9/1/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":488,"Cost":451,"Date":"9/1/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":249,"Cost":203,"Date":"9/17/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":383,"Cost":261,"Date":"9/29/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":629,"Cost":324,"Date":"11/7/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":782,"Cost":558,"Date":"11/26/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":423,"Cost":391,"Date":"11/27/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":865,"Cost":453,"Date":"12/5/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":283,"Cost":239,"Date":"12/26/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":729,"Cost":472,"Date":"12/31/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":738,"Cost":663,"Date":"1/20/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":386,"Cost":242,"Date":"2/2/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":251,"Cost":188,"Date":"2/8/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":950,"Cost":538,"Date":"2/27/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":408,"Cost":322,"Date":"3/1/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":968,"Cost":678,"Date":"3/1/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":140,"Cost":83,"Date":"3/19/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":428,"Cost":406,"Date":"3/28/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":357,"Cost":218,"Date":"5/21/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":969,"Cost":524,"Date":"7/21/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":999,"Cost":936,"Date":"8/5/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":213,"Cost":167,"Date":"8/12/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":934,"Cost":679,"Date":"8/21/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":558,"Cost":389,"Date":"8/23/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":83,"Cost":62,"Date":"9/3/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":914,"Cost":765,"Date":"9/5/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":787,"Cost":623,"Date":"10/6/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":638,"Cost":371,"Date":"10/19/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":850,"Cost":479,"Date":"11/15/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":889,"Cost":571,"Date":"12/8/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":170,"Cost":133,"Date":"1/8/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":742,"Cost":694,"Date":"1/14/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":187,"Cost":136,"Date":"1/19/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":290,"Cost":233,"Date":"1/28/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":650,"Cost":534,"Date":"1/31/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":359,"Cost":330,"Date":"3/27/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":852,"Cost":593,"Date":"4/20/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":956,"Cost":626,"Date":"4/24/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":446,"Cost":339,"Date":"4/28/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":241,"Cost":131,"Date":"5/15/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":642,"Cost":335,"Date":"5/16/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":568,"Cost":501,"Date":"5/18/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":532,"Cost":378,"Date":"6/2/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":824,"Cost":487,"Date":"6/3/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":953,"Cost":734,"Date":"6/5/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":75,"Cost":38,"Date":"6/7/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":811,"Cost":644,"Date":"6/14/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":991,"Cost":914,"Date":"6/20/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":624,"Cost":417,"Date":"6/24/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":562,"Cost":389,"Date":"7/4/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":13,"Cost":12,"Date":"7/9/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":223,"Cost":179,"Date":"7/12/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":606,"Cost":355,"Date":"8/14/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":6,"Cost":3,"Date":"8/16/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":224,"Cost":213,"Date":"8/23/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":91,"Cost":80,"Date":"9/2/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":540,"Cost":424,"Date":"9/3/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":509,"Cost":399,"Date":"9/16/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":979,"Cost":744,"Date":"10/4/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":530,"Cost":299,"Date":"11/1/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":127,"Cost":96,"Date":"11/2/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":171,"Cost":88,"Date":"12/17/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":749,"Cost":475,"Date":"2/10/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":899,"Cost":607,"Date":"2/28/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":311,"Cost":270,"Date":"3/4/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":265,"Cost":183,"Date":"3/9/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":350,"Cost":297,"Date":"3/9/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":825,"Cost":435,"Date":"3/11/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":733,"Cost":475,"Date":"3/17/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":589,"Cost":315,"Date":"3/17/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":418,"Cost":339,"Date":"3/23/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":915,"Cost":780,"Date":"4/1/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":407,"Cost":211,"Date":"5/7/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":10,"Cost":5,"Date":"5/10/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":540,"Cost":427,"Date":"5/20/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":190,"Cost":173,"Date":"6/2/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":539,"Cost":402,"Date":"6/11/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":600,"Cost":557,"Date":"6/16/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":336,"Cost":192,"Date":"6/16/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":75,"Cost":42,"Date":"7/10/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":183,"Cost":121,"Date":"7/11/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":186,"Cost":141,"Date":"8/28/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":641,"Cost":542,"Date":"8/29/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":330,"Cost":202,"Date":"8/31/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":548,"Cost":517,"Date":"9/8/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":221,"Cost":156,"Date":"9/13/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":399,"Cost":243,"Date":"9/14/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":775,"Cost":725,"Date":"9/19/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":152,"Cost":100,"Date":"9/25/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":568,"Cost":306,"Date":"10/4/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":368,"Cost":228,"Date":"10/10/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":650,"Cost":426,"Date":"10/17/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":132,"Cost":97,"Date":"10/28/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":967,"Cost":573,"Date":"10/30/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":979,"Cost":496,"Date":"11/1/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":855,"Cost":496,"Date":"11/15/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":924,"Cost":796,"Date":"11/25/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":37,"Cost":32,"Date":"1/10/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":384,"Cost":250,"Date":"1/14/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":390,"Cost":223,"Date":"1/20/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":147,"Cost":127,"Date":"2/8/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":688,"Cost":535,"Date":"2/25/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":608,"Cost":309,"Date":"3/7/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":242,"Cost":142,"Date":"3/14/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":121,"Cost":91,"Date":"3/27/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":346,"Cost":224,"Date":"4/5/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":664,"Cost":507,"Date":"4/14/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":575,"Cost":461,"Date":"5/3/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":719,"Cost":453,"Date":"5/9/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":581,"Cost":373,"Date":"5/15/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":811,"Cost":700,"Date":"5/25/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":139,"Cost":75,"Date":"5/26/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":849,"Cost":777,"Date":"5/31/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":356,"Cost":224,"Date":"7/27/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":657,"Cost":474,"Date":"9/17/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":867,"Cost":763,"Date":"10/6/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":90,"Cost":79,"Date":"10/8/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":213,"Cost":119,"Date":"10/26/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":561,"Cost":509,"Date":"11/16/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":676,"Cost":626,"Date":"11/18/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"ARKET","Country":"Belgium","Sale":476,"Cost":356,"Date":"12/1/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":255,"Cost":130,"Date":"2/9/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":882,"Cost":443,"Date":"2/11/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":684,"Cost":382,"Date":"3/10/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":316,"Cost":264,"Date":"3/16/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":2,"Cost":2,"Date":"3/18/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":368,"Cost":285,"Date":"3/20/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":693,"Cost":467,"Date":"3/26/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":933,"Cost":795,"Date":"6/2/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":419,"Cost":280,"Date":"6/10/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":123,"Cost":86,"Date":"6/16/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":154,"Cost":112,"Date":"6/25/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":480,"Cost":281,"Date":"7/19/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":860,"Cost":795,"Date":"7/21/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":832,"Cost":749,"Date":"7/25/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":261,"Cost":140,"Date":"8/4/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":504,"Cost":386,"Date":"9/2/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":36,"Cost":28,"Date":"9/4/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":302,"Cost":166,"Date":"9/19/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":742,"Cost":477,"Date":"9/29/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":914,"Cost":778,"Date":"10/2/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":625,"Cost":397,"Date":"10/15/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":31,"Cost":28,"Date":"10/30/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":241,"Cost":166,"Date":"11/9/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":9,"Cost":7,"Date":"11/23/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":101,"Cost":70,"Date":"11/30/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":233,"Cost":214,"Date":"12/8/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":437,"Cost":256,"Date":"12/11/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":686,"Cost":553,"Date":"1/15/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":249,"Cost":166,"Date":"1/24/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":883,"Cost":710,"Date":"2/3/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":429,"Cost":280,"Date":"2/4/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":384,"Cost":273,"Date":"3/9/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":465,"Cost":372,"Date":"3/12/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":78,"Cost":61,"Date":"4/19/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":500,"Cost":429,"Date":"5/3/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":758,"Cost":707,"Date":"5/4/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":484,"Cost":262,"Date":"6/8/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":927,"Cost":761,"Date":"6/26/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":821,"Cost":611,"Date":"7/4/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":706,"Cost":461,"Date":"7/13/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":877,"Cost":729,"Date":"8/8/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":900,"Cost":721,"Date":"8/26/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":700,"Cost":405,"Date":"9/2/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":313,"Cost":259,"Date":"9/29/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":236,"Cost":184,"Date":"10/12/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":515,"Cost":285,"Date":"11/2/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":848,"Cost":714,"Date":"11/4/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":839,"Cost":634,"Date":"11/7/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":684,"Cost":486,"Date":"12/1/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":188,"Cost":142,"Date":"12/4/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":150,"Cost":97,"Date":"12/7/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":238,"Cost":208,"Date":"12/18/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":36,"Cost":32,"Date":"12/20/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":749,"Cost":474,"Date":"12/20/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":138,"Cost":113,"Date":"12/21/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":709,"Cost":405,"Date":"1/9/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":684,"Cost":569,"Date":"2/5/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":569,"Cost":398,"Date":"2/16/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":553,"Cost":486,"Date":"2/16/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":641,"Cost":572,"Date":"2/18/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":138,"Cost":120,"Date":"2/22/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":502,"Cost":447,"Date":"2/25/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":847,"Cost":649,"Date":"3/8/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":313,"Cost":242,"Date":"4/2/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":454,"Cost":241,"Date":"4/3/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":870,"Cost":690,"Date":"4/9/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":726,"Cost":498,"Date":"4/10/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":141,"Cost":95,"Date":"4/19/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":288,"Cost":168,"Date":"5/17/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":890,"Cost":645,"Date":"5/22/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":219,"Cost":197,"Date":"6/20/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":792,"Cost":465,"Date":"7/1/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":334,"Cost":171,"Date":"7/4/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":976,"Cost":762,"Date":"7/8/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":777,"Cost":585,"Date":"7/9/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":173,"Cost":98,"Date":"7/14/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":902,"Cost":788,"Date":"7/19/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":476,"Cost":267,"Date":"8/1/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":192,"Cost":167,"Date":"8/6/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":173,"Cost":121,"Date":"8/7/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":968,"Cost":609,"Date":"8/22/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":777,"Cost":716,"Date":"8/31/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":334,"Cost":185,"Date":"9/1/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":403,"Cost":362,"Date":"9/1/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":32,"Cost":18,"Date":"9/17/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":92,"Cost":65,"Date":"9/29/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":404,"Cost":367,"Date":"11/7/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":503,"Cost":469,"Date":"11/26/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":999,"Cost":684,"Date":"11/27/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":402,"Cost":207,"Date":"12/5/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":907,"Cost":862,"Date":"12/26/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":793,"Cost":689,"Date":"12/31/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":809,"Cost":726,"Date":"1/20/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":542,"Cost":404,"Date":"2/2/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":606,"Cost":448,"Date":"2/8/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":893,"Cost":840,"Date":"2/27/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":501,"Cost":354,"Date":"3/1/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":547,"Cost":316,"Date":"3/1/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":950,"Cost":634,"Date":"3/19/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":479,"Cost":391,"Date":"3/28/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":478,"Cost":425,"Date":"5/21/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":248,"Cost":218,"Date":"7/21/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":170,"Cost":139,"Date":"8/5/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":927,"Cost":507,"Date":"8/12/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":960,"Cost":750,"Date":"8/21/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":897,"Cost":832,"Date":"8/23/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":153,"Cost":88,"Date":"9/3/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":864,"Cost":765,"Date":"9/5/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":86,"Cost":62,"Date":"10/6/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":136,"Cost":89,"Date":"10/19/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":730,"Cost":491,"Date":"11/15/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":103,"Cost":71,"Date":"12/8/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":41,"Cost":33,"Date":"1/8/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":904,"Cost":558,"Date":"1/14/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":82,"Cost":56,"Date":"1/19/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":735,"Cost":690,"Date":"1/28/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":956,"Cost":576,"Date":"1/31/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":781,"Cost":544,"Date":"3/27/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":716,"Cost":452,"Date":"4/20/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":756,"Cost":385,"Date":"4/24/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":944,"Cost":477,"Date":"4/28/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":705,"Cost":639,"Date":"5/15/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":991,"Cost":594,"Date":"5/16/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":623,"Cost":350,"Date":"5/18/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":734,"Cost":661,"Date":"6/2/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":638,"Cost":387,"Date":"6/3/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":656,"Cost":493,"Date":"6/5/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":591,"Cost":548,"Date":"6/7/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":692,"Cost":603,"Date":"6/14/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":290,"Cost":237,"Date":"6/20/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":246,"Cost":133,"Date":"6/24/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":767,"Cost":661,"Date":"7/4/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":146,"Cost":116,"Date":"7/9/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":909,"Cost":474,"Date":"7/12/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":856,"Cost":644,"Date":"8/14/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":444,"Cost":317,"Date":"8/16/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":700,"Cost":552,"Date":"8/23/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":182,"Cost":143,"Date":"9/2/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":226,"Cost":169,"Date":"9/3/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":534,"Cost":390,"Date":"9/16/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":285,"Cost":256,"Date":"10/4/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":162,"Cost":101,"Date":"11/1/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":124,"Cost":115,"Date":"11/2/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":400,"Cost":329,"Date":"12/17/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":558,"Cost":466,"Date":"2/10/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":670,"Cost":489,"Date":"2/28/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":504,"Cost":473,"Date":"3/4/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":371,"Cost":218,"Date":"3/9/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":274,"Cost":140,"Date":"3/9/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":935,"Cost":532,"Date":"3/11/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":36,"Cost":31,"Date":"3/17/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":944,"Cost":655,"Date":"3/17/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":207,"Cost":133,"Date":"3/23/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":960,"Cost":647,"Date":"4/1/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":427,"Cost":291,"Date":"5/7/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":638,"Cost":370,"Date":"5/10/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":203,"Cost":109,"Date":"5/20/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":225,"Cost":189,"Date":"6/2/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":255,"Cost":128,"Date":"6/11/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":703,"Cost":570,"Date":"6/16/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":289,"Cost":192,"Date":"6/16/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":986,"Cost":558,"Date":"7/10/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":507,"Cost":399,"Date":"7/11/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":361,"Cost":259,"Date":"8/28/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":214,"Cost":155,"Date":"8/29/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":122,"Cost":95,"Date":"8/31/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":140,"Cost":118,"Date":"9/8/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":895,"Cost":756,"Date":"9/13/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":953,"Cost":880,"Date":"9/14/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":913,"Cost":685,"Date":"9/19/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":690,"Cost":593,"Date":"9/25/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":519,"Cost":385,"Date":"10/4/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":154,"Cost":102,"Date":"10/10/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":520,"Cost":266,"Date":"10/17/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":409,"Cost":315,"Date":"10/28/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":213,"Cost":183,"Date":"10/30/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":590,"Cost":554,"Date":"11/1/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":271,"Cost":154,"Date":"11/15/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":6,"Cost":6,"Date":"11/25/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":650,"Cost":433,"Date":"1/10/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":742,"Cost":380,"Date":"1/14/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":388,"Cost":318,"Date":"1/20/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":669,"Cost":397,"Date":"2/8/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":680,"Cost":554,"Date":"2/25/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":259,"Cost":239,"Date":"3/7/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":158,"Cost":110,"Date":"3/14/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":391,"Cost":273,"Date":"3/27/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":429,"Cost":402,"Date":"4/5/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":849,"Cost":788,"Date":"4/14/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":119,"Cost":95,"Date":"5/3/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":559,"Cost":390,"Date":"5/9/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":660,"Cost":548,"Date":"5/15/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":84,"Cost":46,"Date":"5/25/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":962,"Cost":647,"Date":"5/26/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":17,"Cost":10,"Date":"5/31/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":270,"Cost":219,"Date":"7/27/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":895,"Cost":699,"Date":"9/17/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":790,"Cost":663,"Date":"10/6/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":129,"Cost":90,"Date":"10/8/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":101,"Cost":70,"Date":"10/26/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":315,"Cost":222,"Date":"11/16/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":442,"Cost":238,"Date":"11/18/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"COS","Country":"Belgium","Sale":276,"Cost":178,"Date":"12/1/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":947,"Cost":874,"Date":"2/9/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":980,"Cost":706,"Date":"2/11/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":945,"Cost":853,"Date":"3/10/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":691,"Cost":428,"Date":"3/16/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":558,"Cost":381,"Date":"3/18/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":260,"Cost":229,"Date":"3/20/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":720,"Cost":468,"Date":"3/26/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":663,"Cost":622,"Date":"6/2/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":939,"Cost":612,"Date":"6/10/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":74,"Cost":40,"Date":"6/16/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":651,"Cost":452,"Date":"6/25/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":966,"Cost":769,"Date":"7/19/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":817,"Cost":462,"Date":"7/21/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":888,"Cost":743,"Date":"7/25/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":41,"Cost":37,"Date":"8/4/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":266,"Cost":194,"Date":"9/2/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":228,"Cost":118,"Date":"9/4/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":537,"Cost":469,"Date":"9/19/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":838,"Cost":718,"Date":"9/29/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":548,"Cost":503,"Date":"10/2/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":729,"Cost":448,"Date":"10/15/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":406,"Cost":348,"Date":"10/30/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":498,"Cost":283,"Date":"11/9/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":373,"Cost":269,"Date":"11/23/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":653,"Cost":496,"Date":"11/30/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":366,"Cost":259,"Date":"12/8/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":955,"Cost":825,"Date":"12/11/2018"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":648,"Cost":501,"Date":"1/15/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":449,"Cost":224,"Date":"1/24/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":56,"Cost":30,"Date":"2/3/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":686,"Cost":380,"Date":"2/4/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":299,"Cost":227,"Date":"3/9/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":154,"Cost":124,"Date":"3/12/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":210,"Cost":144,"Date":"4/19/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":543,"Cost":497,"Date":"5/3/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":277,"Cost":221,"Date":"5/4/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":179,"Cost":90,"Date":"6/8/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":311,"Cost":267,"Date":"6/26/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":132,"Cost":89,"Date":"7/4/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":271,"Cost":154,"Date":"7/13/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":434,"Cost":283,"Date":"8/8/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":322,"Cost":248,"Date":"8/26/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":220,"Cost":184,"Date":"9/2/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":411,"Cost":259,"Date":"9/29/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":505,"Cost":265,"Date":"10/12/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":609,"Cost":469,"Date":"11/2/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":458,"Cost":378,"Date":"11/4/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":496,"Cost":257,"Date":"11/7/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":128,"Cost":68,"Date":"12/1/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":927,"Cost":864,"Date":"12/4/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":397,"Cost":225,"Date":"12/7/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":309,"Cost":177,"Date":"12/18/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":698,"Cost":545,"Date":"12/20/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":25,"Cost":21,"Date":"12/20/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":759,"Cost":442,"Date":"12/21/2019"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":634,"Cost":543,"Date":"1/9/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":620,"Cost":575,"Date":"2/5/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":310,"Cost":265,"Date":"2/16/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":955,"Cost":730,"Date":"2/16/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":793,"Cost":732,"Date":"2/18/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":882,"Cost":558,"Date":"2/22/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":738,"Cost":508,"Date":"2/25/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":870,"Cost":772,"Date":"3/8/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":404,"Cost":204,"Date":"4/2/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":638,"Cost":413,"Date":"4/3/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":733,"Cost":676,"Date":"4/9/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":118,"Cost":81,"Date":"4/10/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":963,"Cost":895,"Date":"4/19/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":819,"Cost":627,"Date":"5/17/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":167,"Cost":153,"Date":"5/22/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":202,"Cost":154,"Date":"6/20/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":62,"Cost":54,"Date":"7/1/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":844,"Cost":470,"Date":"7/4/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":742,"Cost":583,"Date":"7/8/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":184,"Cost":125,"Date":"7/9/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":424,"Cost":297,"Date":"7/14/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":117,"Cost":109,"Date":"7/19/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":673,"Cost":454,"Date":"8/1/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":273,"Cost":167,"Date":"8/6/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":382,"Cost":305,"Date":"8/7/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":29,"Cost":21,"Date":"8/22/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":350,"Cost":321,"Date":"8/31/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":448,"Cost":385,"Date":"9/1/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":841,"Cost":664,"Date":"9/1/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":385,"Cost":264,"Date":"9/17/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":121,"Cost":91,"Date":"9/29/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":772,"Cost":588,"Date":"11/7/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":806,"Cost":744,"Date":"11/26/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":596,"Cost":394,"Date":"11/27/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":556,"Cost":344,"Date":"12/5/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":173,"Cost":110,"Date":"12/26/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":251,"Cost":148,"Date":"12/31/2020"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":824,"Cost":525,"Date":"1/20/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":984,"Cost":548,"Date":"2/2/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":668,"Cost":533,"Date":"2/8/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":356,"Cost":265,"Date":"2/27/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":839,"Cost":630,"Date":"3/1/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":614,"Cost":417,"Date":"3/1/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":478,"Cost":294,"Date":"3/19/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":233,"Cost":131,"Date":"3/28/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":557,"Cost":298,"Date":"5/21/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":717,"Cost":440,"Date":"7/21/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":647,"Cost":601,"Date":"8/5/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":518,"Cost":388,"Date":"8/12/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":85,"Cost":58,"Date":"8/21/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":715,"Cost":391,"Date":"8/23/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":309,"Cost":221,"Date":"9/3/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":824,"Cost":674,"Date":"9/5/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":935,"Cost":771,"Date":"10/6/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":278,"Cost":151,"Date":"10/19/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":207,"Cost":187,"Date":"11/15/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":16,"Cost":10,"Date":"12/8/2021"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":891,"Cost":669,"Date":"1/8/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":325,"Cost":210,"Date":"1/14/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":34,"Cost":32,"Date":"1/19/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":270,"Cost":146,"Date":"1/28/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":156,"Cost":117,"Date":"1/31/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":877,"Cost":827,"Date":"3/27/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":869,"Cost":470,"Date":"4/20/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":122,"Cost":69,"Date":"4/24/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":608,"Cost":313,"Date":"4/28/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":551,"Cost":404,"Date":"5/15/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":857,"Cost":636,"Date":"5/16/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":501,"Cost":405,"Date":"5/18/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":816,"Cost":712,"Date":"6/2/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":417,"Cost":332,"Date":"6/3/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":984,"Cost":904,"Date":"6/5/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":368,"Cost":311,"Date":"6/7/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":29,"Cost":24,"Date":"6/14/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":303,"Cost":180,"Date":"6/20/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":199,"Cost":121,"Date":"6/24/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":530,"Cost":323,"Date":"7/4/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":523,"Cost":468,"Date":"7/9/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":315,"Cost":243,"Date":"7/12/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":598,"Cost":356,"Date":"8/14/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":686,"Cost":642,"Date":"8/16/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":185,"Cost":165,"Date":"8/23/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":723,"Cost":561,"Date":"9/2/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":264,"Cost":203,"Date":"9/3/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":444,"Cost":330,"Date":"9/16/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":246,"Cost":152,"Date":"10/4/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":229,"Cost":116,"Date":"11/1/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":633,"Cost":579,"Date":"11/2/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":233,"Cost":149,"Date":"12/17/2022"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":185,"Cost":114,"Date":"2/10/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":823,"Cost":753,"Date":"2/28/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":725,"Cost":398,"Date":"3/4/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":655,"Cost":425,"Date":"3/9/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":161,"Cost":106,"Date":"3/9/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":741,"Cost":552,"Date":"3/11/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":498,"Cost":436,"Date":"3/17/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":123,"Cost":68,"Date":"3/17/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":431,"Cost":335,"Date":"3/23/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":108,"Cost":99,"Date":"4/1/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":268,"Cost":228,"Date":"5/7/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":45,"Cost":37,"Date":"5/10/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":295,"Cost":236,"Date":"5/20/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":423,"Cost":396,"Date":"6/2/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":476,"Cost":310,"Date":"6/11/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":3,"Cost":3,"Date":"6/16/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":789,"Cost":548,"Date":"6/16/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":52,"Cost":47,"Date":"7/10/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":738,"Cost":623,"Date":"7/11/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":375,"Cost":224,"Date":"8/28/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":16,"Cost":11,"Date":"8/29/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":516,"Cost":420,"Date":"8/31/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":422,"Cost":226,"Date":"9/8/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":285,"Cost":204,"Date":"9/13/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":196,"Cost":99,"Date":"9/14/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":882,"Cost":564,"Date":"9/19/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":87,"Cost":53,"Date":"9/25/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":206,"Cost":151,"Date":"10/4/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":902,"Cost":713,"Date":"10/10/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":108,"Cost":103,"Date":"10/17/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":769,"Cost":676,"Date":"10/28/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":273,"Cost":142,"Date":"10/30/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":198,"Cost":181,"Date":"11/1/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":293,"Cost":232,"Date":"11/15/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":569,"Cost":405,"Date":"11/25/2023"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":757,"Cost":519,"Date":"1/10/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":472,"Cost":393,"Date":"1/14/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":708,"Cost":531,"Date":"1/20/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":166,"Cost":135,"Date":"2/8/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":408,"Cost":363,"Date":"2/25/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":569,"Cost":465,"Date":"3/7/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":158,"Cost":98,"Date":"3/14/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":383,"Cost":210,"Date":"3/27/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":785,"Cost":535,"Date":"4/5/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":91,"Cost":74,"Date":"4/14/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":137,"Cost":128,"Date":"5/3/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":798,"Cost":552,"Date":"5/9/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":406,"Cost":337,"Date":"5/15/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":384,"Cost":260,"Date":"5/25/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":130,"Cost":85,"Date":"5/26/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":352,"Cost":215,"Date":"5/31/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":836,"Cost":537,"Date":"7/27/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":915,"Cost":775,"Date":"9/17/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":736,"Cost":424,"Date":"10/6/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":908,"Cost":853,"Date":"10/8/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":755,"Cost":710,"Date":"10/26/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":873,"Cost":822,"Date":"11/16/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":550,"Cost":460,"Date":"11/18/2024"},{"Store":"Louvain-la-Neuve Shopping","Brand":"Jeans","Country":"Belgium","Sale":402,"Cost":340,"Date":"12/1/2024"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":634,"Cost":318,"Date":"2/9/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":369,"Cost":188,"Date":"2/11/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":602,"Cost":504,"Date":"3/10/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":235,"Cost":187,"Date":"3/16/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":229,"Cost":180,"Date":"3/18/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":322,"Cost":285,"Date":"3/20/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":941,"Cost":475,"Date":"3/26/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":374,"Cost":202,"Date":"6/2/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":387,"Cost":332,"Date":"6/10/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":670,"Cost":392,"Date":"6/16/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":412,"Cost":285,"Date":"6/25/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":65,"Cost":58,"Date":"7/19/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":226,"Cost":177,"Date":"7/21/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":108,"Cost":70,"Date":"7/25/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":637,"Cost":577,"Date":"8/4/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":111,"Cost":76,"Date":"9/2/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":247,"Cost":195,"Date":"9/4/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":144,"Cost":78,"Date":"9/19/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":560,"Cost":438,"Date":"9/29/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":738,"Cost":470,"Date":"10/2/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":265,"Cost":176,"Date":"10/15/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":841,"Cost":559,"Date":"10/30/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":263,"Cost":207,"Date":"11/9/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":949,"Cost":581,"Date":"11/23/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":372,"Cost":274,"Date":"11/30/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":885,"Cost":779,"Date":"12/8/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":98,"Cost":92,"Date":"12/11/2018"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":459,"Cost":402,"Date":"1/15/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":350,"Cost":244,"Date":"1/24/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":238,"Cost":221,"Date":"2/3/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":786,"Cost":697,"Date":"2/4/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":862,"Cost":808,"Date":"3/9/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":876,"Cost":601,"Date":"3/12/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":230,"Cost":206,"Date":"4/19/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":62,"Cost":43,"Date":"5/3/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":610,"Cost":435,"Date":"5/4/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":225,"Cost":150,"Date":"6/8/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":792,"Cost":431,"Date":"6/26/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":835,"Cost":716,"Date":"7/4/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":537,"Cost":354,"Date":"7/13/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":395,"Cost":368,"Date":"8/8/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":517,"Cost":418,"Date":"8/26/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":261,"Cost":222,"Date":"9/2/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":34,"Cost":27,"Date":"9/29/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":704,"Cost":445,"Date":"10/12/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":257,"Cost":204,"Date":"11/2/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":249,"Cost":195,"Date":"11/4/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":720,"Cost":626,"Date":"11/7/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":79,"Cost":59,"Date":"12/1/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":696,"Cost":492,"Date":"12/4/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":856,"Cost":705,"Date":"12/7/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":551,"Cost":314,"Date":"12/18/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":635,"Cost":360,"Date":"12/20/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":640,"Cost":592,"Date":"12/20/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":709,"Cost":612,"Date":"12/21/2019"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":869,"Cost":788,"Date":"1/9/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":324,"Cost":187,"Date":"2/5/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":834,"Cost":714,"Date":"2/16/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":715,"Cost":626,"Date":"2/16/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":93,"Cost":57,"Date":"2/18/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":584,"Cost":477,"Date":"2/22/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":810,"Cost":490,"Date":"2/25/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":151,"Cost":76,"Date":"3/8/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":302,"Cost":275,"Date":"4/2/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":553,"Cost":480,"Date":"4/3/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":233,"Cost":191,"Date":"4/9/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":360,"Cost":335,"Date":"4/10/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":891,"Cost":809,"Date":"4/19/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":333,"Cost":207,"Date":"5/17/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":386,"Cost":339,"Date":"5/22/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":825,"Cost":491,"Date":"6/20/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":202,"Cost":178,"Date":"7/1/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":791,"Cost":420,"Date":"7/4/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":35,"Cost":22,"Date":"7/8/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":356,"Cost":196,"Date":"7/9/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":890,"Cost":736,"Date":"7/14/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":76,"Cost":39,"Date":"7/19/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":927,"Cost":557,"Date":"8/1/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":890,"Cost":599,"Date":"8/6/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":661,"Cost":433,"Date":"8/7/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":188,"Cost":174,"Date":"8/22/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":579,"Cost":360,"Date":"8/31/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":92,"Cost":54,"Date":"9/1/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":507,"Cost":319,"Date":"9/1/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":834,"Cost":670,"Date":"9/17/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":352,"Cost":199,"Date":"9/29/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":971,"Cost":637,"Date":"11/7/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":367,"Cost":291,"Date":"11/26/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":821,"Cost":636,"Date":"11/27/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":399,"Cost":242,"Date":"12/5/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":847,"Cost":778,"Date":"12/26/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":914,"Cost":663,"Date":"12/31/2020"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":148,"Cost":112,"Date":"1/20/2021"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":750,"Cost":427,"Date":"2/2/2021"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":404,"Cost":270,"Date":"2/8/2021"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":828,"Cost":567,"Date":"2/27/2021"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":553,"Cost":406,"Date":"3/1/2021"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":417,"Cost":287,"Date":"3/1/2021"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":778,"Cost":389,"Date":"3/19/2021"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":381,"Cost":265,"Date":"3/28/2021"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":212,"Cost":131,"Date":"5/21/2021"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":661,"Cost":568,"Date":"7/21/2021"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":698,"Cost":583,"Date":"8/5/2021"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":540,"Cost":306,"Date":"8/12/2021"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":90,"Cost":52,"Date":"8/21/2021"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":76,"Cost":65,"Date":"8/23/2021"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":275,"Cost":182,"Date":"9/3/2021"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":793,"Cost":676,"Date":"9/5/2021"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":81,"Cost":60,"Date":"10/6/2021"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":781,"Cost":472,"Date":"10/19/2021"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":944,"Cost":700,"Date":"11/15/2021"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":665,"Cost":442,"Date":"12/8/2021"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":841,"Cost":584,"Date":"1/8/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":622,"Cost":510,"Date":"1/14/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":165,"Cost":102,"Date":"1/19/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":101,"Cost":56,"Date":"1/28/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":3,"Cost":2,"Date":"1/31/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":773,"Cost":721,"Date":"3/27/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":690,"Cost":432,"Date":"4/20/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":61,"Cost":51,"Date":"4/24/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":715,"Cost":399,"Date":"4/28/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":964,"Cost":607,"Date":"5/15/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":93,"Cost":80,"Date":"5/16/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":300,"Cost":230,"Date":"5/18/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":616,"Cost":511,"Date":"6/2/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":9,"Cost":6,"Date":"6/3/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":124,"Cost":69,"Date":"6/5/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":437,"Cost":254,"Date":"6/7/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":672,"Cost":621,"Date":"6/14/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":512,"Cost":372,"Date":"6/20/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":503,"Cost":446,"Date":"6/24/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":698,"Cost":476,"Date":"7/4/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":632,"Cost":327,"Date":"7/9/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":430,"Cost":232,"Date":"7/12/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":858,"Cost":574,"Date":"8/14/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":237,"Cost":127,"Date":"8/16/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":372,"Cost":287,"Date":"8/23/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":879,"Cost":706,"Date":"9/2/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":347,"Cost":221,"Date":"9/3/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":687,"Cost":366,"Date":"9/16/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":503,"Cost":280,"Date":"10/4/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":191,"Cost":162,"Date":"11/1/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":173,"Cost":112,"Date":"11/2/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":432,"Cost":325,"Date":"12/17/2022"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":276,"Cost":258,"Date":"2/10/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":735,"Cost":660,"Date":"2/28/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":733,"Cost":387,"Date":"3/4/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":69,"Cost":47,"Date":"3/9/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":530,"Cost":480,"Date":"3/9/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":69,"Cost":39,"Date":"3/11/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":122,"Cost":88,"Date":"3/17/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":897,"Cost":775,"Date":"3/17/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":829,"Cost":765,"Date":"3/23/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":74,"Cost":39,"Date":"4/1/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":589,"Cost":499,"Date":"5/7/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":673,"Cost":382,"Date":"5/10/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":797,"Cost":484,"Date":"5/20/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":441,"Cost":272,"Date":"6/2/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":565,"Cost":532,"Date":"6/11/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":819,"Cost":666,"Date":"6/16/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":321,"Cost":246,"Date":"6/16/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":59,"Cost":51,"Date":"7/10/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":768,"Cost":557,"Date":"7/11/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":395,"Cost":346,"Date":"8/28/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":182,"Cost":159,"Date":"8/29/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":155,"Cost":84,"Date":"8/31/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":125,"Cost":104,"Date":"9/8/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":518,"Cost":275,"Date":"9/13/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":450,"Cost":410,"Date":"9/14/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":4,"Cost":4,"Date":"9/19/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":774,"Cost":607,"Date":"9/25/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":811,"Cost":543,"Date":"10/4/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":178,"Cost":132,"Date":"10/10/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":170,"Cost":123,"Date":"10/17/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":152,"Cost":113,"Date":"10/28/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":740,"Cost":494,"Date":"10/30/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":31,"Cost":27,"Date":"11/1/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":172,"Cost":107,"Date":"11/15/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":26,"Cost":20,"Date":"11/25/2023"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":133,"Cost":101,"Date":"1/10/2024"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":262,"Cost":132,"Date":"1/14/2024"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":579,"Cost":345,"Date":"1/20/2024"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":58,"Cost":50,"Date":"2/8/2024"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":62,"Cost":49,"Date":"2/25/2024"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":569,"Cost":478,"Date":"3/7/2024"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":432,"Cost":275,"Date":"3/14/2024"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":669,"Cost":635,"Date":"3/27/2024"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":557,"Cost":525,"Date":"4/5/2024"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":368,"Cost":293,"Date":"4/14/2024"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":436,"Cost":247,"Date":"5/3/2024"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":513,"Cost":298,"Date":"5/9/2024"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":415,"Cost":217,"Date":"5/15/2024"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":457,"Cost":256,"Date":"5/25/2024"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":701,"Cost":468,"Date":"5/26/2024"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":530,"Cost":303,"Date":"5/31/2024"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":14,"Cost":14,"Date":"7/27/2024"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":444,"Cost":265,"Date":"9/17/2024"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":811,"Cost":701,"Date":"10/6/2024"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":936,"Cost":493,"Date":"10/8/2024"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":530,"Cost":503,"Date":"10/26/2024"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":311,"Cost":180,"Date":"11/16/2024"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":145,"Cost":127,"Date":"11/18/2024"},{"Store":"Shopping Namur","Brand":"Jeans","Country":"Belgium","Sale":546,"Cost":379,"Date":"12/1/2024"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":872,"Cost":740,"Date":"2/9/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":613,"Cost":315,"Date":"2/11/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":547,"Cost":354,"Date":"3/10/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":696,"Cost":566,"Date":"3/16/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":364,"Cost":309,"Date":"3/18/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":569,"Cost":308,"Date":"3/20/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":548,"Cost":447,"Date":"3/26/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":825,"Cost":774,"Date":"6/2/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":460,"Cost":305,"Date":"6/10/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":228,"Cost":165,"Date":"6/16/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":537,"Cost":421,"Date":"6/25/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":791,"Cost":596,"Date":"7/19/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":107,"Cost":70,"Date":"7/21/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":976,"Cost":577,"Date":"7/25/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":276,"Cost":165,"Date":"8/4/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":147,"Cost":111,"Date":"9/2/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":898,"Cost":762,"Date":"9/4/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":718,"Cost":553,"Date":"9/19/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":229,"Cost":115,"Date":"9/29/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":112,"Cost":87,"Date":"10/2/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":575,"Cost":535,"Date":"10/15/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":995,"Cost":602,"Date":"10/30/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":254,"Cost":154,"Date":"11/9/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":133,"Cost":98,"Date":"11/23/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":847,"Cost":734,"Date":"11/30/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":375,"Cost":326,"Date":"12/8/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":865,"Cost":729,"Date":"12/11/2018"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":640,"Cost":483,"Date":"1/15/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":282,"Cost":174,"Date":"1/24/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":585,"Cost":481,"Date":"2/3/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":269,"Cost":171,"Date":"2/4/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":267,"Cost":217,"Date":"3/9/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":175,"Cost":103,"Date":"3/12/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":337,"Cost":222,"Date":"4/19/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":897,"Cost":818,"Date":"5/3/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":173,"Cost":120,"Date":"5/4/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":881,"Cost":583,"Date":"6/8/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":489,"Cost":356,"Date":"6/26/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":543,"Cost":411,"Date":"7/4/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":917,"Cost":740,"Date":"7/13/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":632,"Cost":568,"Date":"8/8/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":829,"Cost":748,"Date":"8/26/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":687,"Cost":617,"Date":"9/2/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":592,"Cost":380,"Date":"9/29/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":231,"Cost":139,"Date":"10/12/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":205,"Cost":122,"Date":"11/2/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":883,"Cost":552,"Date":"11/4/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":924,"Cost":721,"Date":"11/7/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":222,"Cost":203,"Date":"12/1/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":291,"Cost":194,"Date":"12/4/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":979,"Cost":833,"Date":"12/7/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":906,"Cost":644,"Date":"12/18/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":796,"Cost":514,"Date":"12/20/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":150,"Cost":139,"Date":"12/20/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":830,"Cost":424,"Date":"12/21/2019"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":729,"Cost":671,"Date":"1/9/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":503,"Cost":386,"Date":"2/5/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":562,"Cost":521,"Date":"2/16/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":470,"Cost":365,"Date":"2/16/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":127,"Cost":75,"Date":"2/18/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":301,"Cost":164,"Date":"2/22/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":935,"Cost":537,"Date":"2/25/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":565,"Cost":527,"Date":"3/8/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":83,"Cost":63,"Date":"4/2/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":721,"Cost":634,"Date":"4/3/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":977,"Cost":809,"Date":"4/9/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":490,"Cost":370,"Date":"4/10/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":892,"Cost":519,"Date":"4/19/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":699,"Cost":417,"Date":"5/17/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":51,"Cost":32,"Date":"5/22/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":534,"Cost":292,"Date":"6/20/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":904,"Cost":846,"Date":"7/1/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":721,"Cost":380,"Date":"7/4/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":200,"Cost":151,"Date":"7/8/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":222,"Cost":151,"Date":"7/9/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":129,"Cost":86,"Date":"7/14/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":349,"Cost":258,"Date":"7/19/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":858,"Cost":579,"Date":"8/1/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":575,"Cost":433,"Date":"8/6/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":487,"Cost":355,"Date":"8/7/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":904,"Cost":790,"Date":"8/22/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":131,"Cost":93,"Date":"8/31/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":21,"Cost":15,"Date":"9/1/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":55,"Cost":45,"Date":"9/1/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":912,"Cost":734,"Date":"9/17/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":555,"Cost":481,"Date":"9/29/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":538,"Cost":335,"Date":"11/7/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":526,"Cost":380,"Date":"11/26/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":837,"Cost":537,"Date":"11/27/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":810,"Cost":571,"Date":"12/5/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":562,"Cost":363,"Date":"12/26/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":92,"Cost":85,"Date":"12/31/2020"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":157,"Cost":125,"Date":"1/20/2021"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":240,"Cost":205,"Date":"2/2/2021"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":512,"Cost":307,"Date":"2/8/2021"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":412,"Cost":388,"Date":"2/27/2021"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":336,"Cost":189,"Date":"3/1/2021"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":475,"Cost":244,"Date":"3/1/2021"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":769,"Cost":400,"Date":"3/19/2021"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":223,"Cost":139,"Date":"3/28/2021"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":162,"Cost":125,"Date":"5/21/2021"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":830,"Cost":542,"Date":"7/21/2021"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":211,"Cost":173,"Date":"8/5/2021"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":838,"Cost":727,"Date":"8/12/2021"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":143,"Cost":132,"Date":"8/21/2021"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":118,"Cost":88,"Date":"8/23/2021"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":213,"Cost":184,"Date":"9/3/2021"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":486,"Cost":308,"Date":"9/5/2021"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":742,"Cost":459,"Date":"10/6/2021"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":650,"Cost":441,"Date":"10/19/2021"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":505,"Cost":317,"Date":"11/15/2021"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":919,"Cost":486,"Date":"12/8/2021"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":534,"Cost":430,"Date":"1/8/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":445,"Cost":296,"Date":"1/14/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":538,"Cost":397,"Date":"1/19/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":649,"Cost":538,"Date":"1/28/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":966,"Cost":696,"Date":"1/31/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":574,"Cost":502,"Date":"3/27/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":781,"Cost":576,"Date":"4/20/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":823,"Cost":572,"Date":"4/24/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":356,"Cost":319,"Date":"4/28/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":530,"Cost":388,"Date":"5/15/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":860,"Cost":755,"Date":"5/16/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":795,"Cost":457,"Date":"5/18/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":138,"Cost":110,"Date":"6/2/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":320,"Cost":277,"Date":"6/3/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":569,"Cost":407,"Date":"6/5/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":405,"Cost":367,"Date":"6/7/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":20,"Cost":13,"Date":"6/14/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":406,"Cost":340,"Date":"6/20/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":49,"Cost":31,"Date":"6/24/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":499,"Cost":302,"Date":"7/4/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":883,"Cost":480,"Date":"7/9/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":248,"Cost":179,"Date":"7/12/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":767,"Cost":611,"Date":"8/14/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":805,"Cost":640,"Date":"8/16/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":165,"Cost":151,"Date":"8/23/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":626,"Cost":412,"Date":"9/2/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":509,"Cost":401,"Date":"9/3/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":961,"Cost":878,"Date":"9/16/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":71,"Cost":61,"Date":"10/4/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":792,"Cost":447,"Date":"11/1/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":672,"Cost":612,"Date":"11/2/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":4,"Cost":2,"Date":"12/17/2022"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":641,"Cost":571,"Date":"2/10/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":684,"Cost":491,"Date":"2/28/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":896,"Cost":788,"Date":"3/4/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":320,"Cost":250,"Date":"3/9/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":379,"Cost":348,"Date":"3/9/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":995,"Cost":586,"Date":"3/11/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":639,"Cost":345,"Date":"3/17/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":600,"Cost":554,"Date":"3/17/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":575,"Cost":329,"Date":"3/23/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":447,"Cost":283,"Date":"4/1/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":293,"Cost":153,"Date":"5/7/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":283,"Cost":207,"Date":"5/10/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":557,"Cost":319,"Date":"5/20/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":820,"Cost":526,"Date":"6/2/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":516,"Cost":279,"Date":"6/11/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":200,"Cost":150,"Date":"6/16/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":914,"Cost":789,"Date":"6/16/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":498,"Cost":316,"Date":"7/10/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":985,"Cost":801,"Date":"7/11/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":713,"Cost":563,"Date":"8/28/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":279,"Cost":177,"Date":"8/29/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":230,"Cost":118,"Date":"8/31/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":968,"Cost":850,"Date":"9/8/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":742,"Cost":623,"Date":"9/13/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":599,"Cost":341,"Date":"9/14/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":122,"Cost":84,"Date":"9/19/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":312,"Cost":254,"Date":"9/25/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":273,"Cost":181,"Date":"10/4/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":15,"Cost":8,"Date":"10/10/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":442,"Cost":296,"Date":"10/17/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":168,"Cost":91,"Date":"10/28/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":546,"Cost":344,"Date":"10/30/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":156,"Cost":97,"Date":"11/1/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":330,"Cost":308,"Date":"11/15/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":551,"Cost":367,"Date":"11/25/2023"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":115,"Cost":93,"Date":"1/10/2024"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":99,"Cost":63,"Date":"1/14/2024"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":736,"Cost":669,"Date":"1/20/2024"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":927,"Cost":869,"Date":"2/8/2024"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":679,"Cost":505,"Date":"2/25/2024"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":916,"Cost":480,"Date":"3/7/2024"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":404,"Cost":302,"Date":"3/14/2024"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":318,"Cost":273,"Date":"3/27/2024"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":423,"Cost":289,"Date":"4/5/2024"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":369,"Cost":243,"Date":"4/14/2024"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":440,"Cost":270,"Date":"5/3/2024"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":136,"Cost":120,"Date":"5/9/2024"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":441,"Cost":263,"Date":"5/15/2024"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":549,"Cost":350,"Date":"5/25/2024"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":668,"Cost":621,"Date":"5/26/2024"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":314,"Cost":164,"Date":"5/31/2024"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":379,"Cost":216,"Date":"7/27/2024"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":943,"Cost":819,"Date":"9/17/2024"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":161,"Cost":129,"Date":"10/6/2024"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":57,"Cost":37,"Date":"10/8/2024"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":364,"Cost":305,"Date":"10/26/2024"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":434,"Cost":223,"Date":"11/16/2024"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":359,"Cost":179,"Date":"11/18/2024"},{"Store":"Shopping Namur","Brand":"Nova","Country":"Belgium","Sale":672,"Cost":549,"Date":"12/1/2024"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":854,"Cost":808,"Date":"2/9/2018"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":327,"Cost":233,"Date":"2/11/2018"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":574,"Cost":460,"Date":"3/10/2018"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":37,"Cost":32,"Date":"3/16/2018"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":909,"Cost":661,"Date":"3/18/2018"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":612,"Cost":471,"Date":"3/20/2018"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":500,"Cost":425,"Date":"3/26/2018"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":193,"Cost":117,"Date":"6/2/2018"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":408,"Cost":339,"Date":"6/10/2018"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":754,"Cost":597,"Date":"6/16/2018"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":145,"Cost":109,"Date":"6/25/2018"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":513,"Cost":354,"Date":"7/19/2018"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":86,"Cost":60,"Date":"7/21/2018"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":753,"Cost":660,"Date":"7/25/2018"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":791,"Cost":596,"Date":"8/4/2018"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":596,"Cost":333,"Date":"9/2/2018"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":862,"Cost":758,"Date":"9/4/2018"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":70,"Cost":61,"Date":"9/19/2018"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":302,"Cost":230,"Date":"9/29/2018"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":873,"Cost":590,"Date":"10/2/2018"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":839,"Cost":564,"Date":"10/15/2018"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":454,"Cost":324,"Date":"10/30/2018"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":213,"Cost":193,"Date":"11/9/2018"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":397,"Cost":335,"Date":"11/23/2018"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":222,"Cost":170,"Date":"11/30/2018"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":291,"Cost":224,"Date":"12/8/2018"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":350,"Cost":316,"Date":"12/11/2018"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":676,"Cost":526,"Date":"1/15/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":75,"Cost":64,"Date":"1/24/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":212,"Cost":141,"Date":"2/3/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":251,"Cost":228,"Date":"2/4/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":241,"Cost":153,"Date":"3/9/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":525,"Cost":415,"Date":"3/12/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":561,"Cost":297,"Date":"4/19/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":670,"Cost":450,"Date":"5/3/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":937,"Cost":657,"Date":"5/4/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":115,"Cost":65,"Date":"6/8/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":993,"Cost":794,"Date":"6/26/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":784,"Cost":398,"Date":"7/4/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":269,"Cost":157,"Date":"7/13/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":271,"Cost":207,"Date":"8/8/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":883,"Cost":528,"Date":"8/26/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":958,"Cost":634,"Date":"9/2/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":673,"Cost":381,"Date":"9/29/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":416,"Cost":219,"Date":"10/12/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":387,"Cost":281,"Date":"11/2/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":59,"Cost":44,"Date":"11/4/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":482,"Cost":377,"Date":"11/7/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":36,"Cost":33,"Date":"12/1/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":194,"Cost":126,"Date":"12/4/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":393,"Cost":332,"Date":"12/7/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":790,"Cost":460,"Date":"12/18/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":924,"Cost":481,"Date":"12/20/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":570,"Cost":385,"Date":"12/20/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":65,"Cost":47,"Date":"12/21/2019"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":509,"Cost":347,"Date":"1/9/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":832,"Cost":518,"Date":"2/5/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":134,"Cost":119,"Date":"2/16/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":685,"Cost":354,"Date":"2/16/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":653,"Cost":587,"Date":"2/18/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":963,"Cost":713,"Date":"2/22/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":657,"Cost":428,"Date":"2/25/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":262,"Cost":172,"Date":"3/8/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":754,"Cost":570,"Date":"4/2/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":342,"Cost":235,"Date":"4/3/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":716,"Cost":622,"Date":"4/9/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":615,"Cost":476,"Date":"4/10/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":962,"Cost":909,"Date":"4/19/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":119,"Cost":107,"Date":"5/17/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":666,"Cost":481,"Date":"5/22/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":963,"Cost":738,"Date":"6/20/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":200,"Cost":148,"Date":"7/1/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":156,"Cost":105,"Date":"7/4/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":471,"Cost":391,"Date":"7/8/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":542,"Cost":283,"Date":"7/9/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":9,"Cost":6,"Date":"7/14/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":104,"Cost":83,"Date":"7/19/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":897,"Cost":705,"Date":"8/1/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":431,"Cost":301,"Date":"8/6/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":656,"Cost":473,"Date":"8/7/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":321,"Cost":260,"Date":"8/22/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":180,"Cost":153,"Date":"8/31/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":466,"Cost":288,"Date":"9/1/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":992,"Cost":830,"Date":"9/1/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":250,"Cost":209,"Date":"9/17/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":595,"Cost":529,"Date":"9/29/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":727,"Cost":502,"Date":"11/7/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":884,"Cost":447,"Date":"11/26/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":316,"Cost":235,"Date":"11/27/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":571,"Cost":436,"Date":"12/5/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":307,"Cost":174,"Date":"12/26/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":908,"Cost":847,"Date":"12/31/2020"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":884,"Cost":498,"Date":"1/20/2021"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":771,"Cost":395,"Date":"2/2/2021"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":50,"Cost":38,"Date":"2/8/2021"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":212,"Cost":179,"Date":"2/27/2021"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":291,"Cost":207,"Date":"3/1/2021"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":939,"Cost":594,"Date":"3/1/2021"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":307,"Cost":292,"Date":"3/19/2021"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":824,"Cost":683,"Date":"3/28/2021"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":283,"Cost":204,"Date":"5/21/2021"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":614,"Cost":463,"Date":"7/21/2021"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":813,"Cost":422,"Date":"8/5/2021"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":668,"Cost":602,"Date":"8/12/2021"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":725,"Cost":417,"Date":"8/21/2021"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":118,"Cost":60,"Date":"8/23/2021"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":54,"Cost":37,"Date":"9/3/2021"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":942,"Cost":853,"Date":"9/5/2021"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":742,"Cost":559,"Date":"10/6/2021"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":80,"Cost":59,"Date":"10/19/2021"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":165,"Cost":145,"Date":"11/15/2021"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":155,"Cost":133,"Date":"12/8/2021"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":736,"Cost":546,"Date":"1/8/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":611,"Cost":431,"Date":"1/14/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":556,"Cost":328,"Date":"1/19/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":69,"Cost":41,"Date":"1/28/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":983,"Cost":737,"Date":"1/31/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":853,"Cost":648,"Date":"3/27/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":635,"Cost":490,"Date":"4/20/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":38,"Cost":36,"Date":"4/24/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":677,"Cost":374,"Date":"4/28/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":998,"Cost":780,"Date":"5/15/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":971,"Cost":643,"Date":"5/16/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":403,"Cost":330,"Date":"5/18/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":86,"Cost":58,"Date":"6/2/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":92,"Cost":54,"Date":"6/3/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":6,"Cost":4,"Date":"6/5/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":898,"Cost":805,"Date":"6/7/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":346,"Cost":255,"Date":"6/14/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":633,"Cost":578,"Date":"6/20/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":820,"Cost":447,"Date":"6/24/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":667,"Cost":524,"Date":"7/4/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":20,"Cost":17,"Date":"7/9/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":670,"Cost":353,"Date":"7/12/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":588,"Cost":329,"Date":"8/14/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":459,"Cost":307,"Date":"8/16/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":583,"Cost":453,"Date":"8/23/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":62,"Cost":58,"Date":"9/2/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":615,"Cost":350,"Date":"9/3/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":271,"Cost":198,"Date":"9/16/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":837,"Cost":562,"Date":"10/4/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":949,"Cost":786,"Date":"11/1/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":582,"Cost":482,"Date":"11/2/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":419,"Cost":235,"Date":"12/17/2022"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":479,"Cost":308,"Date":"2/10/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":154,"Cost":137,"Date":"2/28/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":426,"Cost":356,"Date":"3/4/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":986,"Cost":743,"Date":"3/9/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":514,"Cost":263,"Date":"3/9/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":332,"Cost":211,"Date":"3/11/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":291,"Cost":239,"Date":"3/17/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":237,"Cost":179,"Date":"3/17/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":305,"Cost":181,"Date":"3/23/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":361,"Cost":339,"Date":"4/1/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":687,"Cost":570,"Date":"5/7/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":306,"Cost":180,"Date":"5/10/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":542,"Cost":372,"Date":"5/20/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":321,"Cost":179,"Date":"6/2/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":157,"Cost":148,"Date":"6/11/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":458,"Cost":252,"Date":"6/16/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":562,"Cost":341,"Date":"6/16/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":114,"Cost":93,"Date":"7/10/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":205,"Cost":165,"Date":"7/11/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":272,"Cost":173,"Date":"8/28/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":713,"Cost":386,"Date":"8/29/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":436,"Cost":252,"Date":"8/31/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":963,"Cost":904,"Date":"9/8/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":913,"Cost":608,"Date":"9/13/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":546,"Cost":329,"Date":"9/14/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":932,"Cost":649,"Date":"9/19/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":780,"Cost":500,"Date":"9/25/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":519,"Cost":489,"Date":"10/4/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":243,"Cost":140,"Date":"10/10/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":507,"Cost":401,"Date":"10/17/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":6,"Cost":5,"Date":"10/28/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":678,"Cost":357,"Date":"10/30/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":936,"Cost":885,"Date":"11/1/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":438,"Cost":302,"Date":"11/15/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":907,"Cost":628,"Date":"11/25/2023"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":471,"Cost":324,"Date":"1/10/2024"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":741,"Cost":558,"Date":"1/14/2024"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":802,"Cost":608,"Date":"1/20/2024"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":519,"Cost":386,"Date":"2/8/2024"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":272,"Cost":198,"Date":"2/25/2024"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":56,"Cost":51,"Date":"3/7/2024"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":554,"Cost":475,"Date":"3/14/2024"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":738,"Cost":408,"Date":"3/27/2024"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":136,"Cost":98,"Date":"4/5/2024"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":582,"Cost":361,"Date":"4/14/2024"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":26,"Cost":14,"Date":"5/3/2024"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":431,"Cost":247,"Date":"5/9/2024"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":563,"Cost":394,"Date":"5/15/2024"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":243,"Cost":176,"Date":"5/25/2024"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":182,"Cost":135,"Date":"5/26/2024"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":74,"Cost":48,"Date":"5/31/2024"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":797,"Cost":656,"Date":"7/27/2024"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":566,"Cost":487,"Date":"9/17/2024"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":814,"Cost":526,"Date":"10/6/2024"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":681,"Cost":436,"Date":"10/8/2024"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":240,"Cost":222,"Date":"10/26/2024"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":827,"Cost":747,"Date":"11/16/2024"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":131,"Cost":80,"Date":"11/18/2024"},{"Store":"Shopping Namur","Brand":"ARKET","Country":"Belgium","Sale":623,"Cost":464,"Date":"12/1/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":601,"Cost":553,"Date":"2/9/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":817,"Cost":703,"Date":"2/11/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":607,"Cost":543,"Date":"3/10/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":246,"Cost":226,"Date":"3/16/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":273,"Cost":150,"Date":"3/18/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":464,"Cost":292,"Date":"3/20/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":737,"Cost":597,"Date":"3/26/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":38,"Cost":19,"Date":"6/2/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":893,"Cost":719,"Date":"6/10/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":116,"Cost":89,"Date":"6/16/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":723,"Cost":562,"Date":"6/25/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":49,"Cost":29,"Date":"7/19/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":46,"Cost":42,"Date":"7/21/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":19,"Cost":17,"Date":"7/25/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":205,"Cost":130,"Date":"8/4/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":601,"Cost":493,"Date":"9/2/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":290,"Cost":231,"Date":"9/4/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":936,"Cost":706,"Date":"9/19/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":4,"Cost":2,"Date":"9/29/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":601,"Cost":369,"Date":"10/2/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":410,"Cost":373,"Date":"10/15/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":173,"Cost":152,"Date":"10/30/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":927,"Cost":600,"Date":"11/9/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":396,"Cost":358,"Date":"11/23/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":331,"Cost":202,"Date":"11/30/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":575,"Cost":348,"Date":"12/8/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":606,"Cost":503,"Date":"12/11/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":121,"Cost":63,"Date":"1/15/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":701,"Cost":410,"Date":"1/24/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":90,"Cost":83,"Date":"2/3/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":845,"Cost":758,"Date":"2/4/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":655,"Cost":541,"Date":"3/9/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":23,"Cost":22,"Date":"3/12/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":345,"Cost":302,"Date":"4/19/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":846,"Cost":773,"Date":"5/3/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":730,"Cost":479,"Date":"5/4/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":162,"Cost":91,"Date":"6/8/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":693,"Cost":408,"Date":"6/26/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":334,"Cost":249,"Date":"7/4/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":53,"Cost":38,"Date":"7/13/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":399,"Cost":262,"Date":"8/8/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":17,"Cost":14,"Date":"8/26/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":844,"Cost":649,"Date":"9/2/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":880,"Cost":651,"Date":"9/29/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":872,"Cost":693,"Date":"10/12/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":852,"Cost":664,"Date":"11/2/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":638,"Cost":588,"Date":"11/4/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":842,"Cost":561,"Date":"11/7/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":941,"Cost":656,"Date":"12/1/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":2,"Cost":2,"Date":"12/4/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":686,"Cost":464,"Date":"12/7/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":885,"Cost":622,"Date":"12/18/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":935,"Cost":560,"Date":"12/20/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":33,"Cost":16,"Date":"12/20/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":161,"Cost":111,"Date":"12/21/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":303,"Cost":156,"Date":"1/9/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":263,"Cost":212,"Date":"2/5/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":508,"Cost":403,"Date":"2/16/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":371,"Cost":296,"Date":"2/16/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":66,"Cost":46,"Date":"2/18/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":325,"Cost":243,"Date":"2/22/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":516,"Cost":371,"Date":"2/25/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":513,"Cost":400,"Date":"3/8/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":899,"Cost":659,"Date":"4/2/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":235,"Cost":149,"Date":"4/3/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":934,"Cost":561,"Date":"4/9/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":462,"Cost":374,"Date":"4/10/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":295,"Cost":244,"Date":"4/19/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":198,"Cost":118,"Date":"5/17/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":708,"Cost":364,"Date":"5/22/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":216,"Cost":175,"Date":"6/20/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":565,"Cost":465,"Date":"7/1/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":386,"Cost":233,"Date":"7/4/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":537,"Cost":458,"Date":"7/8/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":746,"Cost":501,"Date":"7/9/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":805,"Cost":454,"Date":"7/14/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":832,"Cost":449,"Date":"7/19/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":227,"Cost":190,"Date":"8/1/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":497,"Cost":288,"Date":"8/6/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":282,"Cost":188,"Date":"8/7/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":398,"Cost":202,"Date":"8/22/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":382,"Cost":290,"Date":"8/31/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":142,"Cost":85,"Date":"9/1/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":691,"Cost":529,"Date":"9/1/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":986,"Cost":727,"Date":"9/17/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":859,"Cost":499,"Date":"9/29/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":985,"Cost":921,"Date":"11/7/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":792,"Cost":537,"Date":"11/26/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":869,"Cost":717,"Date":"11/27/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":74,"Cost":62,"Date":"12/5/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":533,"Cost":375,"Date":"12/26/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":576,"Cost":534,"Date":"12/31/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":909,"Cost":773,"Date":"1/20/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":387,"Cost":322,"Date":"2/2/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":53,"Cost":38,"Date":"2/8/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":107,"Cost":71,"Date":"2/27/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":339,"Cost":253,"Date":"3/1/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":234,"Cost":122,"Date":"3/1/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":323,"Cost":280,"Date":"3/19/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":879,"Cost":662,"Date":"3/28/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":786,"Cost":458,"Date":"5/21/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":574,"Cost":358,"Date":"7/21/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":94,"Cost":82,"Date":"8/5/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":374,"Cost":230,"Date":"8/12/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":700,"Cost":515,"Date":"8/21/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":679,"Cost":462,"Date":"8/23/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":173,"Cost":97,"Date":"9/3/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":127,"Cost":80,"Date":"9/5/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":33,"Cost":32,"Date":"10/6/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":657,"Cost":594,"Date":"10/19/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":477,"Cost":341,"Date":"11/15/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":492,"Cost":275,"Date":"12/8/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":653,"Cost":423,"Date":"1/8/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":355,"Cost":323,"Date":"1/14/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":62,"Cost":47,"Date":"1/19/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":555,"Cost":322,"Date":"1/28/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":538,"Cost":466,"Date":"1/31/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":457,"Cost":398,"Date":"3/27/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":561,"Cost":349,"Date":"4/20/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":250,"Cost":187,"Date":"4/24/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":22,"Cost":16,"Date":"4/28/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":524,"Cost":482,"Date":"5/15/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":709,"Cost":364,"Date":"5/16/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":11,"Cost":9,"Date":"5/18/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":315,"Cost":278,"Date":"6/2/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":682,"Cost":360,"Date":"6/3/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":292,"Cost":147,"Date":"6/5/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":116,"Cost":85,"Date":"6/7/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":351,"Cost":327,"Date":"6/14/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":239,"Cost":175,"Date":"6/20/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":895,"Cost":608,"Date":"6/24/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":316,"Cost":191,"Date":"7/4/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":793,"Cost":425,"Date":"7/9/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":585,"Cost":349,"Date":"7/12/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":127,"Cost":79,"Date":"8/14/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":221,"Cost":178,"Date":"8/16/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":867,"Cost":699,"Date":"8/23/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":421,"Cost":335,"Date":"9/2/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":320,"Cost":261,"Date":"9/3/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":721,"Cost":617,"Date":"9/16/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":959,"Cost":755,"Date":"10/4/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":403,"Cost":296,"Date":"11/1/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":412,"Cost":271,"Date":"11/2/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":530,"Cost":397,"Date":"12/17/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":500,"Cost":460,"Date":"2/10/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":841,"Cost":787,"Date":"2/28/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":377,"Cost":205,"Date":"3/4/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":747,"Cost":662,"Date":"3/9/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":167,"Cost":84,"Date":"3/9/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":940,"Cost":652,"Date":"3/11/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":68,"Cost":56,"Date":"3/17/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":773,"Cost":716,"Date":"3/17/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":506,"Cost":475,"Date":"3/23/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":785,"Cost":446,"Date":"4/1/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":355,"Cost":227,"Date":"5/7/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":677,"Cost":441,"Date":"5/10/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":376,"Cost":263,"Date":"5/20/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":106,"Cost":92,"Date":"6/2/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":362,"Cost":341,"Date":"6/11/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":21,"Cost":17,"Date":"6/16/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":355,"Cost":242,"Date":"6/16/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":378,"Cost":230,"Date":"7/10/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":552,"Cost":418,"Date":"7/11/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":65,"Cost":32,"Date":"8/28/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":524,"Cost":350,"Date":"8/29/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":519,"Cost":476,"Date":"8/31/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":985,"Cost":755,"Date":"9/8/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":897,"Cost":769,"Date":"9/13/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":22,"Cost":14,"Date":"9/14/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":247,"Cost":160,"Date":"9/19/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":538,"Cost":448,"Date":"9/25/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":615,"Cost":390,"Date":"10/4/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":328,"Cost":177,"Date":"10/10/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":177,"Cost":123,"Date":"10/17/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":146,"Cost":117,"Date":"10/28/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":965,"Cost":754,"Date":"10/30/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":825,"Cost":581,"Date":"11/1/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":917,"Cost":521,"Date":"11/15/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":220,"Cost":120,"Date":"11/25/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":506,"Cost":402,"Date":"1/10/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":916,"Cost":692,"Date":"1/14/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":130,"Cost":113,"Date":"1/20/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":155,"Cost":125,"Date":"2/8/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":642,"Cost":342,"Date":"2/25/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":962,"Cost":702,"Date":"3/7/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":345,"Cost":319,"Date":"3/14/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":611,"Cost":350,"Date":"3/27/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":295,"Cost":237,"Date":"4/5/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":317,"Cost":252,"Date":"4/14/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":529,"Cost":293,"Date":"5/3/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":885,"Cost":476,"Date":"5/9/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":629,"Cost":467,"Date":"5/15/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":367,"Cost":297,"Date":"5/25/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":458,"Cost":254,"Date":"5/26/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":811,"Cost":708,"Date":"5/31/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":249,"Cost":158,"Date":"7/27/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":354,"Cost":192,"Date":"9/17/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":787,"Cost":496,"Date":"10/6/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":731,"Cost":417,"Date":"10/8/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":422,"Cost":300,"Date":"10/26/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":613,"Cost":332,"Date":"11/16/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":364,"Cost":279,"Date":"11/18/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":871,"Cost":484,"Date":"12/1/2024"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":19,"Cost":12,"Date":"2/9/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":398,"Cost":259,"Date":"2/11/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":938,"Cost":628,"Date":"3/10/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":246,"Cost":208,"Date":"3/16/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":338,"Cost":307,"Date":"3/18/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":903,"Cost":611,"Date":"3/20/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":453,"Cost":235,"Date":"3/26/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":532,"Cost":333,"Date":"6/2/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":580,"Cost":300,"Date":"6/10/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":987,"Cost":776,"Date":"6/16/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":886,"Cost":672,"Date":"6/25/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":598,"Cost":415,"Date":"7/19/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":775,"Cost":735,"Date":"7/21/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":206,"Cost":172,"Date":"7/25/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":321,"Cost":223,"Date":"8/4/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":170,"Cost":108,"Date":"9/2/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":788,"Cost":491,"Date":"9/4/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":796,"Cost":577,"Date":"9/19/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":347,"Cost":284,"Date":"9/29/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":83,"Cost":73,"Date":"10/2/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":561,"Cost":401,"Date":"10/15/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":327,"Cost":264,"Date":"10/30/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":140,"Cost":89,"Date":"11/9/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":140,"Cost":96,"Date":"11/23/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":118,"Cost":73,"Date":"11/30/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":433,"Cost":384,"Date":"12/8/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":404,"Cost":349,"Date":"12/11/2018"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":403,"Cost":251,"Date":"1/15/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":170,"Cost":113,"Date":"1/24/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":799,"Cost":540,"Date":"2/3/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":192,"Cost":129,"Date":"2/4/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":300,"Cost":167,"Date":"3/9/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":446,"Cost":374,"Date":"3/12/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":911,"Cost":463,"Date":"4/19/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":233,"Cost":181,"Date":"5/3/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":685,"Cost":493,"Date":"5/4/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":238,"Cost":149,"Date":"6/8/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":705,"Cost":526,"Date":"6/26/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":357,"Cost":323,"Date":"7/4/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":155,"Cost":139,"Date":"7/13/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":502,"Cost":445,"Date":"8/8/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":454,"Cost":313,"Date":"8/26/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":329,"Cost":166,"Date":"9/2/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":624,"Cost":342,"Date":"9/29/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":907,"Cost":454,"Date":"10/12/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":847,"Cost":579,"Date":"11/2/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":824,"Cost":426,"Date":"11/4/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":768,"Cost":685,"Date":"11/7/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":252,"Cost":154,"Date":"12/1/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":541,"Cost":281,"Date":"12/4/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":523,"Cost":440,"Date":"12/7/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":989,"Cost":779,"Date":"12/18/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":677,"Cost":416,"Date":"12/20/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":61,"Cost":52,"Date":"12/20/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":734,"Cost":693,"Date":"12/21/2019"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":215,"Cost":203,"Date":"1/9/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":167,"Cost":134,"Date":"2/5/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":522,"Cost":377,"Date":"2/16/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":635,"Cost":384,"Date":"2/16/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":225,"Cost":121,"Date":"2/18/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":380,"Cost":192,"Date":"2/22/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":184,"Cost":135,"Date":"2/25/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":171,"Cost":87,"Date":"3/8/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":719,"Cost":420,"Date":"4/2/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":186,"Cost":145,"Date":"4/3/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":924,"Cost":511,"Date":"4/9/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":952,"Cost":778,"Date":"4/10/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":267,"Cost":228,"Date":"4/19/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":227,"Cost":191,"Date":"5/17/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":602,"Cost":564,"Date":"5/22/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":633,"Cost":575,"Date":"6/20/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":227,"Cost":163,"Date":"7/1/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":7,"Cost":4,"Date":"7/4/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":532,"Cost":500,"Date":"7/8/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":474,"Cost":367,"Date":"7/9/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":112,"Cost":105,"Date":"7/14/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":883,"Cost":732,"Date":"7/19/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":630,"Cost":471,"Date":"8/1/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":134,"Cost":115,"Date":"8/6/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":827,"Cost":466,"Date":"8/7/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":25,"Cost":16,"Date":"8/22/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":772,"Cost":660,"Date":"8/31/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":281,"Cost":184,"Date":"9/1/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":899,"Cost":499,"Date":"9/1/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":906,"Cost":637,"Date":"9/17/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":448,"Cost":246,"Date":"9/29/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":646,"Cost":489,"Date":"11/7/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":40,"Cost":36,"Date":"11/26/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":680,"Cost":510,"Date":"11/27/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":434,"Cost":297,"Date":"12/5/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":394,"Cost":201,"Date":"12/26/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":135,"Cost":71,"Date":"12/31/2020"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":881,"Cost":707,"Date":"1/20/2021"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":890,"Cost":500,"Date":"2/2/2021"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":909,"Cost":794,"Date":"2/8/2021"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":928,"Cost":697,"Date":"2/27/2021"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":514,"Cost":406,"Date":"3/1/2021"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":514,"Cost":471,"Date":"3/1/2021"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":425,"Cost":373,"Date":"3/19/2021"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":937,"Cost":695,"Date":"3/28/2021"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":307,"Cost":278,"Date":"5/21/2021"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":55,"Cost":44,"Date":"7/21/2021"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":63,"Cost":43,"Date":"8/5/2021"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":346,"Cost":254,"Date":"8/12/2021"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":755,"Cost":493,"Date":"8/21/2021"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":881,"Cost":512,"Date":"8/23/2021"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":187,"Cost":117,"Date":"9/3/2021"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":998,"Cost":514,"Date":"9/5/2021"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":229,"Cost":217,"Date":"10/6/2021"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":453,"Cost":323,"Date":"10/19/2021"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":528,"Cost":343,"Date":"11/15/2021"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":549,"Cost":315,"Date":"12/8/2021"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":224,"Cost":155,"Date":"1/8/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":489,"Cost":323,"Date":"1/14/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":64,"Cost":33,"Date":"1/19/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":997,"Cost":528,"Date":"1/28/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":69,"Cost":60,"Date":"1/31/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":912,"Cost":689,"Date":"3/27/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":200,"Cost":118,"Date":"4/20/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":587,"Cost":323,"Date":"4/24/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":176,"Cost":110,"Date":"4/28/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":654,"Cost":597,"Date":"5/15/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":103,"Cost":76,"Date":"5/16/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":972,"Cost":496,"Date":"5/18/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":933,"Cost":882,"Date":"6/2/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":531,"Cost":321,"Date":"6/3/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":1000,"Cost":761,"Date":"6/5/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":211,"Cost":181,"Date":"6/7/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":5,"Cost":4,"Date":"6/14/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":535,"Cost":273,"Date":"6/20/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":602,"Cost":552,"Date":"6/24/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":155,"Cost":142,"Date":"7/4/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":650,"Cost":485,"Date":"7/9/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":394,"Cost":305,"Date":"7/12/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":816,"Cost":651,"Date":"8/14/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":340,"Cost":313,"Date":"8/16/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":550,"Cost":305,"Date":"8/23/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":533,"Cost":447,"Date":"9/2/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":360,"Cost":238,"Date":"9/3/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":771,"Cost":719,"Date":"9/16/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":37,"Cost":23,"Date":"10/4/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":607,"Cost":345,"Date":"11/1/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":440,"Cost":261,"Date":"11/2/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":396,"Cost":202,"Date":"12/17/2022"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":875,"Cost":537,"Date":"2/10/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":883,"Cost":820,"Date":"2/28/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":93,"Cost":46,"Date":"3/4/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":754,"Cost":651,"Date":"3/9/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":358,"Cost":254,"Date":"3/9/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":274,"Cost":160,"Date":"3/11/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":672,"Cost":531,"Date":"3/17/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":659,"Cost":466,"Date":"3/17/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":450,"Cost":226,"Date":"3/23/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":297,"Cost":207,"Date":"4/1/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":879,"Cost":549,"Date":"5/7/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":982,"Cost":777,"Date":"5/10/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":157,"Cost":99,"Date":"5/20/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":685,"Cost":424,"Date":"6/2/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":152,"Cost":81,"Date":"6/11/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":617,"Cost":477,"Date":"6/16/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":551,"Cost":386,"Date":"6/16/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":424,"Cost":315,"Date":"7/10/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":359,"Cost":204,"Date":"7/11/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":765,"Cost":694,"Date":"8/28/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":594,"Cost":413,"Date":"8/29/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":373,"Cost":210,"Date":"8/31/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":693,"Cost":395,"Date":"9/8/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":544,"Cost":440,"Date":"9/13/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":933,"Cost":471,"Date":"9/14/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":227,"Cost":130,"Date":"9/19/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":427,"Cost":358,"Date":"9/25/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":415,"Cost":280,"Date":"10/4/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":544,"Cost":329,"Date":"10/10/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":96,"Cost":78,"Date":"10/17/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":918,"Cost":842,"Date":"10/28/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":322,"Cost":233,"Date":"10/30/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":430,"Cost":252,"Date":"11/1/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":454,"Cost":355,"Date":"11/15/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":756,"Cost":455,"Date":"11/25/2023"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":370,"Cost":273,"Date":"1/10/2024"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":968,"Cost":725,"Date":"1/14/2024"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":147,"Cost":134,"Date":"1/20/2024"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":127,"Cost":106,"Date":"2/8/2024"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":325,"Cost":257,"Date":"2/25/2024"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":578,"Cost":473,"Date":"3/7/2024"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":908,"Cost":649,"Date":"3/14/2024"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":241,"Cost":152,"Date":"3/27/2024"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":291,"Cost":254,"Date":"4/5/2024"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":809,"Cost":435,"Date":"4/14/2024"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":323,"Cost":285,"Date":"5/3/2024"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":233,"Cost":119,"Date":"5/9/2024"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":53,"Cost":38,"Date":"5/15/2024"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":892,"Cost":721,"Date":"5/25/2024"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":607,"Cost":310,"Date":"5/26/2024"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":229,"Cost":186,"Date":"5/31/2024"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":459,"Cost":316,"Date":"7/27/2024"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":106,"Cost":97,"Date":"9/17/2024"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":928,"Cost":466,"Date":"10/6/2024"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":342,"Cost":311,"Date":"10/8/2024"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":160,"Cost":90,"Date":"10/26/2024"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":540,"Cost":384,"Date":"11/16/2024"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":828,"Cost":548,"Date":"11/18/2024"},{"Store":"Les Grands Prés, Mons","Brand":"Sellpy","Country":"Belgium","Sale":688,"Cost":512,"Date":"12/1/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":834,"Cost":534,"Date":"2/9/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":43,"Cost":27,"Date":"2/11/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":650,"Cost":417,"Date":"3/10/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":378,"Cost":356,"Date":"3/16/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":478,"Cost":268,"Date":"3/18/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":865,"Cost":821,"Date":"3/20/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":22,"Cost":16,"Date":"3/26/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":473,"Cost":261,"Date":"6/2/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":384,"Cost":331,"Date":"6/10/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":416,"Cost":358,"Date":"6/16/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":743,"Cost":450,"Date":"6/25/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":865,"Cost":574,"Date":"7/19/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":106,"Cost":80,"Date":"7/21/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":59,"Cost":54,"Date":"7/25/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":824,"Cost":720,"Date":"8/4/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":966,"Cost":913,"Date":"9/2/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":3,"Cost":2,"Date":"9/4/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":186,"Cost":148,"Date":"9/19/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":827,"Cost":776,"Date":"9/29/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":162,"Cost":103,"Date":"10/2/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":123,"Cost":89,"Date":"10/15/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":24,"Cost":18,"Date":"10/30/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":316,"Cost":292,"Date":"11/9/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":592,"Cost":351,"Date":"11/23/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":800,"Cost":666,"Date":"11/30/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":629,"Cost":535,"Date":"12/8/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":553,"Cost":485,"Date":"12/11/2018"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":366,"Cost":269,"Date":"1/15/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":399,"Cost":309,"Date":"1/24/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":406,"Cost":227,"Date":"2/3/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":73,"Cost":56,"Date":"2/4/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":719,"Cost":626,"Date":"3/9/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":419,"Cost":286,"Date":"3/12/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":269,"Cost":220,"Date":"4/19/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":186,"Cost":137,"Date":"5/3/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":128,"Cost":68,"Date":"5/4/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":835,"Cost":641,"Date":"6/8/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":342,"Cost":277,"Date":"6/26/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":330,"Cost":284,"Date":"7/4/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":331,"Cost":229,"Date":"7/13/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":370,"Cost":347,"Date":"8/8/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":764,"Cost":409,"Date":"8/26/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":151,"Cost":104,"Date":"9/2/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":854,"Cost":599,"Date":"9/29/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":998,"Cost":938,"Date":"10/12/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":807,"Cost":672,"Date":"11/2/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":988,"Cost":932,"Date":"11/4/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":751,"Cost":574,"Date":"11/7/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":449,"Cost":318,"Date":"12/1/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":732,"Cost":625,"Date":"12/4/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":467,"Cost":365,"Date":"12/7/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":781,"Cost":557,"Date":"12/18/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":290,"Cost":217,"Date":"12/20/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":615,"Cost":394,"Date":"12/20/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":600,"Cost":317,"Date":"12/21/2019"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":225,"Cost":141,"Date":"1/9/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":128,"Cost":82,"Date":"2/5/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":998,"Cost":683,"Date":"2/16/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":717,"Cost":460,"Date":"2/16/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":963,"Cost":828,"Date":"2/18/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":44,"Cost":25,"Date":"2/22/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":80,"Cost":44,"Date":"2/25/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":809,"Cost":441,"Date":"3/8/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":238,"Cost":221,"Date":"4/2/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":554,"Cost":443,"Date":"4/3/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":311,"Cost":202,"Date":"4/9/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":330,"Cost":272,"Date":"4/10/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":961,"Cost":669,"Date":"4/19/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":801,"Cost":739,"Date":"5/17/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":72,"Cost":54,"Date":"5/22/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":308,"Cost":223,"Date":"6/20/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":540,"Cost":276,"Date":"7/1/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":833,"Cost":605,"Date":"7/4/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":978,"Cost":668,"Date":"7/8/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":960,"Cost":708,"Date":"7/9/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":312,"Cost":205,"Date":"7/14/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":88,"Cost":66,"Date":"7/19/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":581,"Cost":347,"Date":"8/1/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":467,"Cost":421,"Date":"8/6/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":124,"Cost":83,"Date":"8/7/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":577,"Cost":538,"Date":"8/22/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":15,"Cost":10,"Date":"8/31/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":862,"Cost":737,"Date":"9/1/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":909,"Cost":608,"Date":"9/1/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":216,"Cost":161,"Date":"9/17/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":263,"Cost":140,"Date":"9/29/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":288,"Cost":240,"Date":"11/7/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":333,"Cost":175,"Date":"11/26/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":716,"Cost":594,"Date":"11/27/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":129,"Cost":74,"Date":"12/5/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":264,"Cost":167,"Date":"12/26/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":533,"Cost":361,"Date":"12/31/2020"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":566,"Cost":410,"Date":"1/20/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":80,"Cost":73,"Date":"2/2/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":63,"Cost":55,"Date":"2/8/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":18,"Cost":16,"Date":"2/27/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":448,"Cost":300,"Date":"3/1/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":517,"Cost":441,"Date":"3/1/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":735,"Cost":394,"Date":"3/19/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":932,"Cost":512,"Date":"3/28/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":140,"Cost":110,"Date":"5/21/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":280,"Cost":209,"Date":"7/21/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":252,"Cost":224,"Date":"8/5/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":699,"Cost":501,"Date":"8/12/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":545,"Cost":400,"Date":"8/21/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":750,"Cost":666,"Date":"8/23/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":566,"Cost":443,"Date":"9/3/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":427,"Cost":364,"Date":"9/5/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":646,"Cost":405,"Date":"10/6/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":805,"Cost":748,"Date":"10/19/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":776,"Cost":592,"Date":"11/15/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":28,"Cost":14,"Date":"12/8/2021"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":448,"Cost":340,"Date":"1/8/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":1000,"Cost":747,"Date":"1/14/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":981,"Cost":770,"Date":"1/19/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":832,"Cost":432,"Date":"1/28/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":211,"Cost":107,"Date":"1/31/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":165,"Cost":134,"Date":"3/27/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":39,"Cost":36,"Date":"4/20/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":979,"Cost":662,"Date":"4/24/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":75,"Cost":60,"Date":"4/28/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":929,"Cost":522,"Date":"5/15/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":645,"Cost":599,"Date":"5/16/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":657,"Cost":418,"Date":"5/18/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":700,"Cost":360,"Date":"6/2/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":558,"Cost":303,"Date":"6/3/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":939,"Cost":510,"Date":"6/5/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":2,"Cost":1,"Date":"6/7/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":40,"Cost":20,"Date":"6/14/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":101,"Cost":77,"Date":"6/20/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":736,"Cost":599,"Date":"6/24/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":563,"Cost":291,"Date":"7/4/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":693,"Cost":647,"Date":"7/9/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":594,"Cost":421,"Date":"7/12/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":826,"Cost":576,"Date":"8/14/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":15,"Cost":10,"Date":"8/16/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":519,"Cost":279,"Date":"8/23/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":15,"Cost":14,"Date":"9/2/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":441,"Cost":285,"Date":"9/3/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":14,"Cost":11,"Date":"9/16/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":601,"Cost":314,"Date":"10/4/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":148,"Cost":121,"Date":"11/1/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":105,"Cost":76,"Date":"11/2/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":801,"Cost":421,"Date":"12/17/2022"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":784,"Cost":580,"Date":"2/10/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":127,"Cost":63,"Date":"2/28/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":370,"Cost":312,"Date":"3/4/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":173,"Cost":118,"Date":"3/9/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":75,"Cost":66,"Date":"3/9/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":158,"Cost":88,"Date":"3/11/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":266,"Cost":198,"Date":"3/17/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":100,"Cost":51,"Date":"3/17/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":336,"Cost":192,"Date":"3/23/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":131,"Cost":107,"Date":"4/1/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":376,"Cost":238,"Date":"5/7/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":236,"Cost":177,"Date":"5/10/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":640,"Cost":408,"Date":"5/20/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":933,"Cost":620,"Date":"6/2/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":333,"Cost":210,"Date":"6/11/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":283,"Cost":196,"Date":"6/16/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":248,"Cost":180,"Date":"6/16/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":984,"Cost":720,"Date":"7/10/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":670,"Cost":557,"Date":"7/11/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":205,"Cost":141,"Date":"8/28/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":21,"Cost":12,"Date":"8/29/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":701,"Cost":391,"Date":"8/31/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":631,"Cost":574,"Date":"9/8/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":679,"Cost":458,"Date":"9/13/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":924,"Cost":715,"Date":"9/14/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":904,"Cost":487,"Date":"9/19/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":166,"Cost":112,"Date":"9/25/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":592,"Cost":302,"Date":"10/4/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":926,"Cost":751,"Date":"10/10/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":727,"Cost":558,"Date":"10/17/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":629,"Cost":327,"Date":"10/28/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":281,"Cost":204,"Date":"10/30/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":508,"Cost":473,"Date":"11/1/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":277,"Cost":218,"Date":"11/15/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":425,"Cost":338,"Date":"11/25/2023"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":812,"Cost":571,"Date":"1/10/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":441,"Cost":305,"Date":"1/14/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":333,"Cost":247,"Date":"1/20/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":357,"Cost":278,"Date":"2/8/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":127,"Cost":102,"Date":"2/25/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":225,"Cost":167,"Date":"3/7/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":774,"Cost":424,"Date":"3/14/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":800,"Cost":681,"Date":"3/27/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":629,"Cost":592,"Date":"4/5/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":70,"Cost":65,"Date":"4/14/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":238,"Cost":183,"Date":"5/3/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":967,"Cost":517,"Date":"5/9/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":118,"Cost":97,"Date":"5/15/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":600,"Cost":519,"Date":"5/25/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":333,"Cost":267,"Date":"5/26/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":227,"Cost":206,"Date":"5/31/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":980,"Cost":923,"Date":"7/27/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":593,"Cost":546,"Date":"9/17/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":20,"Cost":15,"Date":"10/6/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":8,"Cost":7,"Date":"10/8/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":269,"Cost":249,"Date":"10/26/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":242,"Cost":133,"Date":"11/16/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":322,"Cost":234,"Date":"11/18/2024"},{"Store":"Les Grands Prés, Mons","Brand":"ARKET","Country":"Belgium","Sale":338,"Cost":208,"Date":"12/1/2024"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":63,"Cost":33,"Date":"2/9/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":574,"Cost":339,"Date":"2/11/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":508,"Cost":440,"Date":"3/10/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":152,"Cost":92,"Date":"3/16/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":417,"Cost":342,"Date":"3/18/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":112,"Cost":97,"Date":"3/20/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":503,"Cost":376,"Date":"3/26/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":30,"Cost":24,"Date":"6/2/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":762,"Cost":398,"Date":"6/10/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":467,"Cost":325,"Date":"6/16/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":293,"Cost":259,"Date":"6/25/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":50,"Cost":45,"Date":"7/19/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":180,"Cost":160,"Date":"7/21/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":359,"Cost":185,"Date":"7/25/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":863,"Cost":455,"Date":"8/4/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":488,"Cost":354,"Date":"9/2/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":566,"Cost":316,"Date":"9/4/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":184,"Cost":128,"Date":"9/19/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":858,"Cost":592,"Date":"9/29/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":495,"Cost":316,"Date":"10/2/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":608,"Cost":310,"Date":"10/15/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":576,"Cost":449,"Date":"10/30/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":716,"Cost":443,"Date":"11/9/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":340,"Cost":296,"Date":"11/23/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":872,"Cost":718,"Date":"11/30/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":118,"Cost":81,"Date":"12/8/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":712,"Cost":552,"Date":"12/11/2018"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":2,"Cost":1,"Date":"1/15/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":857,"Cost":612,"Date":"1/24/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":363,"Cost":219,"Date":"2/3/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":719,"Cost":580,"Date":"2/4/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":828,"Cost":538,"Date":"3/9/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":500,"Cost":410,"Date":"3/12/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":613,"Cost":566,"Date":"4/19/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":572,"Cost":499,"Date":"5/3/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":453,"Cost":330,"Date":"5/4/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":970,"Cost":904,"Date":"6/8/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":807,"Cost":711,"Date":"6/26/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":215,"Cost":176,"Date":"7/4/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":837,"Cost":517,"Date":"7/13/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":58,"Cost":40,"Date":"8/8/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":413,"Cost":345,"Date":"8/26/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":307,"Cost":210,"Date":"9/2/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":940,"Cost":839,"Date":"9/29/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":885,"Cost":646,"Date":"10/12/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":461,"Cost":241,"Date":"11/2/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":747,"Cost":689,"Date":"11/4/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":788,"Cost":701,"Date":"11/7/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":594,"Cost":433,"Date":"12/1/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":86,"Cost":64,"Date":"12/4/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":661,"Cost":580,"Date":"12/7/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":422,"Cost":236,"Date":"12/18/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":452,"Cost":338,"Date":"12/20/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":820,"Cost":433,"Date":"12/20/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":460,"Cost":313,"Date":"12/21/2019"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":946,"Cost":505,"Date":"1/9/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":923,"Cost":838,"Date":"2/5/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":180,"Cost":162,"Date":"2/16/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":520,"Cost":441,"Date":"2/16/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":239,"Cost":204,"Date":"2/18/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":37,"Cost":25,"Date":"2/22/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":561,"Cost":342,"Date":"2/25/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":371,"Cost":316,"Date":"3/8/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":434,"Cost":322,"Date":"4/2/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":241,"Cost":219,"Date":"4/3/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":675,"Cost":528,"Date":"4/9/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":110,"Cost":62,"Date":"4/10/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":749,"Cost":375,"Date":"4/19/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":326,"Cost":216,"Date":"5/17/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":644,"Cost":546,"Date":"5/22/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":429,"Cost":330,"Date":"6/20/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":237,"Cost":142,"Date":"7/1/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":197,"Cost":105,"Date":"7/4/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":456,"Cost":300,"Date":"7/8/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":386,"Cost":344,"Date":"7/9/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":587,"Cost":334,"Date":"7/14/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":95,"Cost":58,"Date":"7/19/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":987,"Cost":798,"Date":"8/1/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":287,"Cost":249,"Date":"8/6/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":15,"Cost":7,"Date":"8/7/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":954,"Cost":491,"Date":"8/22/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":42,"Cost":37,"Date":"8/31/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":929,"Cost":805,"Date":"9/1/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":168,"Cost":102,"Date":"9/1/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":539,"Cost":300,"Date":"9/17/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":5,"Cost":3,"Date":"9/29/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":905,"Cost":804,"Date":"11/7/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":435,"Cost":372,"Date":"11/26/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":499,"Cost":294,"Date":"11/27/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":285,"Cost":144,"Date":"12/5/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":453,"Cost":274,"Date":"12/26/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":743,"Cost":527,"Date":"12/31/2020"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":731,"Cost":687,"Date":"1/20/2021"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":36,"Cost":35,"Date":"2/2/2021"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":542,"Cost":399,"Date":"2/8/2021"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":158,"Cost":80,"Date":"2/27/2021"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":828,"Cost":597,"Date":"3/1/2021"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":743,"Cost":683,"Date":"3/1/2021"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":699,"Cost":626,"Date":"3/19/2021"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":340,"Cost":315,"Date":"3/28/2021"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":509,"Cost":351,"Date":"5/21/2021"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":143,"Cost":72,"Date":"7/21/2021"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":84,"Cost":62,"Date":"8/5/2021"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":961,"Cost":904,"Date":"8/12/2021"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":56,"Cost":34,"Date":"8/21/2021"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":781,"Cost":591,"Date":"8/23/2021"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":96,"Cost":82,"Date":"9/3/2021"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":474,"Cost":410,"Date":"9/5/2021"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":628,"Cost":463,"Date":"10/6/2021"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":103,"Cost":55,"Date":"10/19/2021"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":600,"Cost":522,"Date":"11/15/2021"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":553,"Cost":305,"Date":"12/8/2021"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":198,"Cost":162,"Date":"1/8/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":604,"Cost":429,"Date":"1/14/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":527,"Cost":301,"Date":"1/19/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":693,"Cost":616,"Date":"1/28/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":789,"Cost":692,"Date":"1/31/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":80,"Cost":75,"Date":"3/27/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":889,"Cost":657,"Date":"4/20/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":262,"Cost":179,"Date":"4/24/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":703,"Cost":457,"Date":"4/28/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":103,"Cost":93,"Date":"5/15/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":11,"Cost":11,"Date":"5/16/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":369,"Cost":322,"Date":"5/18/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":513,"Cost":393,"Date":"6/2/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":699,"Cost":368,"Date":"6/3/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":615,"Cost":394,"Date":"6/5/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":553,"Cost":364,"Date":"6/7/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":653,"Cost":615,"Date":"6/14/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":830,"Cost":600,"Date":"6/20/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":355,"Cost":260,"Date":"6/24/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":949,"Cost":721,"Date":"7/4/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":924,"Cost":562,"Date":"7/9/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":782,"Cost":558,"Date":"7/12/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":401,"Cost":268,"Date":"8/14/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":80,"Cost":49,"Date":"8/16/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":910,"Cost":860,"Date":"8/23/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":569,"Cost":532,"Date":"9/2/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":326,"Cost":291,"Date":"9/3/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":58,"Cost":55,"Date":"9/16/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":364,"Cost":251,"Date":"10/4/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":931,"Cost":565,"Date":"11/1/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":376,"Cost":282,"Date":"11/2/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":548,"Cost":295,"Date":"12/17/2022"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":364,"Cost":195,"Date":"2/10/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":615,"Cost":474,"Date":"2/28/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":393,"Cost":205,"Date":"3/4/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":932,"Cost":739,"Date":"3/9/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":526,"Cost":295,"Date":"3/9/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":579,"Cost":548,"Date":"3/11/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":575,"Cost":345,"Date":"3/17/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":190,"Cost":156,"Date":"3/17/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":362,"Cost":297,"Date":"3/23/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":798,"Cost":453,"Date":"4/1/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":932,"Cost":607,"Date":"5/7/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":660,"Cost":368,"Date":"5/10/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":980,"Cost":786,"Date":"5/20/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":923,"Cost":736,"Date":"6/2/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":944,"Cost":874,"Date":"6/11/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":122,"Cost":77,"Date":"6/16/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":600,"Cost":337,"Date":"6/16/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":199,"Cost":142,"Date":"7/10/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":584,"Cost":439,"Date":"7/11/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":824,"Cost":735,"Date":"8/28/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":812,"Cost":499,"Date":"8/29/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":390,"Cost":356,"Date":"8/31/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":697,"Cost":466,"Date":"9/8/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":693,"Cost":367,"Date":"9/13/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":592,"Cost":521,"Date":"9/14/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":505,"Cost":300,"Date":"9/19/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":809,"Cost":621,"Date":"9/25/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":230,"Cost":170,"Date":"10/4/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":300,"Cost":222,"Date":"10/10/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":705,"Cost":436,"Date":"10/17/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":153,"Cost":87,"Date":"10/28/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":37,"Cost":35,"Date":"10/30/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":27,"Cost":18,"Date":"11/1/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":618,"Cost":578,"Date":"11/15/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":375,"Cost":241,"Date":"11/25/2023"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":783,"Cost":571,"Date":"1/10/2024"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":312,"Cost":209,"Date":"1/14/2024"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":647,"Cost":564,"Date":"1/20/2024"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":547,"Cost":454,"Date":"2/8/2024"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":774,"Cost":620,"Date":"2/25/2024"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":248,"Cost":161,"Date":"3/7/2024"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":174,"Cost":113,"Date":"3/14/2024"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":729,"Cost":412,"Date":"3/27/2024"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":922,"Cost":776,"Date":"4/5/2024"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":898,"Cost":537,"Date":"4/14/2024"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":895,"Cost":569,"Date":"5/3/2024"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":962,"Cost":597,"Date":"5/9/2024"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":137,"Cost":125,"Date":"5/15/2024"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":812,"Cost":434,"Date":"5/25/2024"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":238,"Cost":192,"Date":"5/26/2024"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":812,"Cost":628,"Date":"5/31/2024"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":925,"Cost":543,"Date":"7/27/2024"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":734,"Cost":368,"Date":"9/17/2024"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":628,"Cost":531,"Date":"10/6/2024"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":958,"Cost":593,"Date":"10/8/2024"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":796,"Cost":451,"Date":"10/26/2024"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":939,"Cost":714,"Date":"11/16/2024"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":677,"Cost":549,"Date":"11/18/2024"},{"Store":"Eupen Shopping Center","Brand":"Sellpy","Country":"Belgium","Sale":969,"Cost":839,"Date":"12/1/2024"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":480,"Cost":364,"Date":"2/9/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":720,"Cost":479,"Date":"2/11/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":575,"Cost":440,"Date":"3/10/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":637,"Cost":572,"Date":"3/16/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":838,"Cost":526,"Date":"3/18/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":467,"Cost":420,"Date":"3/20/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":276,"Cost":139,"Date":"3/26/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":756,"Cost":478,"Date":"6/2/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":323,"Cost":295,"Date":"6/10/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":467,"Cost":403,"Date":"6/16/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":718,"Cost":640,"Date":"6/25/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":207,"Cost":177,"Date":"7/19/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":656,"Cost":623,"Date":"7/21/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":829,"Cost":646,"Date":"7/25/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":928,"Cost":557,"Date":"8/4/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":375,"Cost":204,"Date":"9/2/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":164,"Cost":128,"Date":"9/4/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":622,"Cost":584,"Date":"9/19/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":291,"Cost":197,"Date":"9/29/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":983,"Cost":785,"Date":"10/2/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":62,"Cost":54,"Date":"10/15/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":362,"Cost":235,"Date":"10/30/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":113,"Cost":79,"Date":"11/9/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":980,"Cost":923,"Date":"11/23/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":681,"Cost":515,"Date":"11/30/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":580,"Cost":436,"Date":"12/8/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":325,"Cost":174,"Date":"12/11/2018"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":731,"Cost":583,"Date":"1/15/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":531,"Cost":436,"Date":"1/24/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":545,"Cost":291,"Date":"2/3/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":89,"Cost":60,"Date":"2/4/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":8,"Cost":5,"Date":"3/9/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":428,"Cost":250,"Date":"3/12/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":744,"Cost":627,"Date":"4/19/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":592,"Cost":367,"Date":"5/3/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":172,"Cost":108,"Date":"5/4/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":142,"Cost":115,"Date":"6/8/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":724,"Cost":403,"Date":"6/26/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":212,"Cost":199,"Date":"7/4/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":738,"Cost":441,"Date":"7/13/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":125,"Cost":80,"Date":"8/8/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":411,"Cost":292,"Date":"8/26/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":386,"Cost":284,"Date":"9/2/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":894,"Cost":820,"Date":"9/29/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":14,"Cost":7,"Date":"10/12/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":42,"Cost":37,"Date":"11/2/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":953,"Cost":605,"Date":"11/4/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":97,"Cost":52,"Date":"11/7/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":428,"Cost":347,"Date":"12/1/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":884,"Cost":522,"Date":"12/4/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":40,"Cost":37,"Date":"12/7/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":414,"Cost":361,"Date":"12/18/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":162,"Cost":114,"Date":"12/20/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":265,"Cost":147,"Date":"12/20/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":385,"Cost":339,"Date":"12/21/2019"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":423,"Cost":361,"Date":"1/9/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":891,"Cost":714,"Date":"2/5/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":623,"Cost":464,"Date":"2/16/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":67,"Cost":38,"Date":"2/16/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":14,"Cost":7,"Date":"2/18/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":454,"Cost":382,"Date":"2/22/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":211,"Cost":111,"Date":"2/25/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":525,"Cost":386,"Date":"3/8/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":485,"Cost":344,"Date":"4/2/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":2,"Cost":1,"Date":"4/3/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":438,"Cost":309,"Date":"4/9/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":711,"Cost":586,"Date":"4/10/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":40,"Cost":38,"Date":"4/19/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":59,"Cost":43,"Date":"5/17/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":536,"Cost":465,"Date":"5/22/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":469,"Cost":381,"Date":"6/20/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":706,"Cost":568,"Date":"7/1/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":659,"Cost":617,"Date":"7/4/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":435,"Cost":283,"Date":"7/8/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":811,"Cost":623,"Date":"7/9/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":822,"Cost":701,"Date":"7/14/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":799,"Cost":460,"Date":"7/19/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":272,"Cost":250,"Date":"8/1/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":411,"Cost":357,"Date":"8/6/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":627,"Cost":579,"Date":"8/7/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":883,"Cost":509,"Date":"8/22/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":660,"Cost":390,"Date":"8/31/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":41,"Cost":22,"Date":"9/1/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":634,"Cost":379,"Date":"9/1/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":798,"Cost":509,"Date":"9/17/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":430,"Cost":255,"Date":"9/29/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":337,"Cost":194,"Date":"11/7/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":153,"Cost":118,"Date":"11/26/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":370,"Cost":341,"Date":"11/27/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":739,"Cost":698,"Date":"12/5/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":919,"Cost":869,"Date":"12/26/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":861,"Cost":680,"Date":"12/31/2020"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":527,"Cost":398,"Date":"1/20/2021"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":129,"Cost":118,"Date":"2/2/2021"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":520,"Cost":456,"Date":"2/8/2021"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":792,"Cost":440,"Date":"2/27/2021"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":988,"Cost":888,"Date":"3/1/2021"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":139,"Cost":84,"Date":"3/1/2021"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":128,"Cost":84,"Date":"3/19/2021"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":48,"Cost":37,"Date":"3/28/2021"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":993,"Cost":741,"Date":"5/21/2021"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":993,"Cost":784,"Date":"7/21/2021"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":503,"Cost":364,"Date":"8/5/2021"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":432,"Cost":383,"Date":"8/12/2021"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":252,"Cost":132,"Date":"8/21/2021"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":717,"Cost":580,"Date":"8/23/2021"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":934,"Cost":753,"Date":"9/3/2021"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":529,"Cost":436,"Date":"9/5/2021"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":145,"Cost":106,"Date":"10/6/2021"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":661,"Cost":447,"Date":"10/19/2021"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":240,"Cost":198,"Date":"11/15/2021"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":225,"Cost":125,"Date":"12/8/2021"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":246,"Cost":212,"Date":"1/8/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":986,"Cost":626,"Date":"1/14/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":255,"Cost":179,"Date":"1/19/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":400,"Cost":211,"Date":"1/28/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":128,"Cost":74,"Date":"1/31/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":496,"Cost":425,"Date":"3/27/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":453,"Cost":337,"Date":"4/20/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":14,"Cost":9,"Date":"4/24/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":493,"Cost":321,"Date":"4/28/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":374,"Cost":301,"Date":"5/15/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":990,"Cost":679,"Date":"5/16/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":32,"Cost":22,"Date":"5/18/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":387,"Cost":368,"Date":"6/2/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":726,"Cost":482,"Date":"6/3/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":85,"Cost":50,"Date":"6/5/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":171,"Cost":162,"Date":"6/7/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":505,"Cost":260,"Date":"6/14/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":99,"Cost":83,"Date":"6/20/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":271,"Cost":234,"Date":"6/24/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":416,"Cost":356,"Date":"7/4/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":284,"Cost":237,"Date":"7/9/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":624,"Cost":471,"Date":"7/12/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":947,"Cost":672,"Date":"8/14/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":515,"Cost":421,"Date":"8/16/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":325,"Cost":188,"Date":"8/23/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":501,"Cost":308,"Date":"9/2/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":96,"Cost":76,"Date":"9/3/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":40,"Cost":30,"Date":"9/16/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":878,"Cost":509,"Date":"10/4/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":575,"Cost":446,"Date":"11/1/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":414,"Cost":308,"Date":"11/2/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":618,"Cost":339,"Date":"12/17/2022"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":180,"Cost":115,"Date":"2/10/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":281,"Cost":197,"Date":"2/28/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":663,"Cost":570,"Date":"3/4/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":549,"Cost":517,"Date":"3/9/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":440,"Cost":302,"Date":"3/9/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":991,"Cost":772,"Date":"3/11/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":749,"Cost":683,"Date":"3/17/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":860,"Cost":777,"Date":"3/17/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":185,"Cost":175,"Date":"3/23/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":704,"Cost":603,"Date":"4/1/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":694,"Cost":398,"Date":"5/7/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":43,"Cost":41,"Date":"5/10/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":130,"Cost":111,"Date":"5/20/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":62,"Cost":56,"Date":"6/2/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":488,"Cost":275,"Date":"6/11/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":125,"Cost":66,"Date":"6/16/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":421,"Cost":335,"Date":"6/16/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":400,"Cost":252,"Date":"7/10/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":671,"Cost":635,"Date":"7/11/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":288,"Cost":272,"Date":"8/28/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":379,"Cost":259,"Date":"8/29/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":972,"Cost":742,"Date":"8/31/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":127,"Cost":79,"Date":"9/8/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":51,"Cost":41,"Date":"9/13/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":651,"Cost":616,"Date":"9/14/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":214,"Cost":189,"Date":"9/19/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":835,"Cost":524,"Date":"9/25/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":204,"Cost":168,"Date":"10/4/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":28,"Cost":16,"Date":"10/10/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":693,"Cost":584,"Date":"10/17/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":483,"Cost":317,"Date":"10/28/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":317,"Cost":301,"Date":"10/30/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":10,"Cost":10,"Date":"11/1/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":691,"Cost":406,"Date":"11/15/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":964,"Cost":751,"Date":"11/25/2023"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":342,"Cost":307,"Date":"1/10/2024"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":642,"Cost":346,"Date":"1/14/2024"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":644,"Cost":519,"Date":"1/20/2024"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":685,"Cost":613,"Date":"2/8/2024"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":136,"Cost":100,"Date":"2/25/2024"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":878,"Cost":578,"Date":"3/7/2024"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":881,"Cost":500,"Date":"3/14/2024"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":450,"Cost":270,"Date":"3/27/2024"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":121,"Cost":89,"Date":"4/5/2024"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":714,"Cost":647,"Date":"4/14/2024"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":223,"Cost":154,"Date":"5/3/2024"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":868,"Cost":538,"Date":"5/9/2024"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":434,"Cost":241,"Date":"5/15/2024"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":156,"Cost":100,"Date":"5/25/2024"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":698,"Cost":383,"Date":"5/26/2024"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":435,"Cost":244,"Date":"5/31/2024"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":122,"Cost":103,"Date":"7/27/2024"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":64,"Cost":51,"Date":"9/17/2024"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":900,"Cost":735,"Date":"10/6/2024"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":947,"Cost":801,"Date":"10/8/2024"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":825,"Cost":541,"Date":"10/26/2024"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":467,"Cost":440,"Date":"11/16/2024"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":392,"Cost":338,"Date":"11/18/2024"},{"Store":"Eupen Shopping Center","Brand":"HM Home","Country":"Belgium","Sale":131,"Cost":74,"Date":"12/1/2024"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":61,"Cost":35,"Date":"2/9/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":226,"Cost":190,"Date":"2/11/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":146,"Cost":137,"Date":"3/10/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":820,"Cost":440,"Date":"3/16/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":28,"Cost":20,"Date":"3/18/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":979,"Cost":578,"Date":"3/20/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":297,"Cost":268,"Date":"3/26/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":275,"Cost":143,"Date":"6/2/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":205,"Cost":137,"Date":"6/10/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":875,"Cost":687,"Date":"6/16/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":237,"Cost":167,"Date":"6/25/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":683,"Cost":580,"Date":"7/19/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":133,"Cost":98,"Date":"7/21/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":467,"Cost":391,"Date":"7/25/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":482,"Cost":327,"Date":"8/4/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":486,"Cost":276,"Date":"9/2/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":651,"Cost":530,"Date":"9/4/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":177,"Cost":116,"Date":"9/19/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":646,"Cost":456,"Date":"9/29/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":336,"Cost":239,"Date":"10/2/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":820,"Cost":749,"Date":"10/15/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":449,"Cost":421,"Date":"10/30/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":382,"Cost":337,"Date":"11/9/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":481,"Cost":259,"Date":"11/23/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":566,"Cost":455,"Date":"11/30/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":374,"Cost":197,"Date":"12/8/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":609,"Cost":535,"Date":"12/11/2018"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":217,"Cost":184,"Date":"1/15/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":695,"Cost":406,"Date":"1/24/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":693,"Cost":587,"Date":"2/3/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":330,"Cost":241,"Date":"2/4/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":173,"Cost":157,"Date":"3/9/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":878,"Cost":522,"Date":"3/12/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":163,"Cost":140,"Date":"4/19/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":912,"Cost":800,"Date":"5/3/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":924,"Cost":748,"Date":"5/4/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":251,"Cost":140,"Date":"6/8/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":226,"Cost":169,"Date":"6/26/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":245,"Cost":142,"Date":"7/4/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":580,"Cost":325,"Date":"7/13/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":466,"Cost":402,"Date":"8/8/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":802,"Cost":484,"Date":"8/26/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":745,"Cost":616,"Date":"9/2/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":637,"Cost":490,"Date":"9/29/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":409,"Cost":387,"Date":"10/12/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":91,"Cost":59,"Date":"11/2/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":997,"Cost":731,"Date":"11/4/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":28,"Cost":20,"Date":"11/7/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":625,"Cost":522,"Date":"12/1/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":265,"Cost":134,"Date":"12/4/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":688,"Cost":521,"Date":"12/7/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":507,"Cost":303,"Date":"12/18/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":258,"Cost":205,"Date":"12/20/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":533,"Cost":428,"Date":"12/20/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":238,"Cost":148,"Date":"12/21/2019"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":698,"Cost":473,"Date":"1/9/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":847,"Cost":668,"Date":"2/5/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":906,"Cost":562,"Date":"2/16/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":238,"Cost":174,"Date":"2/16/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":144,"Cost":105,"Date":"2/18/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":119,"Cost":63,"Date":"2/22/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":483,"Cost":288,"Date":"2/25/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":489,"Cost":403,"Date":"3/8/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":66,"Cost":51,"Date":"4/2/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":770,"Cost":656,"Date":"4/3/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":775,"Cost":492,"Date":"4/9/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":458,"Cost":339,"Date":"4/10/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":235,"Cost":156,"Date":"4/19/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":334,"Cost":274,"Date":"5/17/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":571,"Cost":464,"Date":"5/22/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":767,"Cost":606,"Date":"6/20/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":428,"Cost":304,"Date":"7/1/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":262,"Cost":176,"Date":"7/4/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":455,"Cost":299,"Date":"7/8/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":374,"Cost":256,"Date":"7/9/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":41,"Cost":22,"Date":"7/14/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":414,"Cost":345,"Date":"7/19/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":202,"Cost":175,"Date":"8/1/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":553,"Cost":446,"Date":"8/6/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":853,"Cost":558,"Date":"8/7/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":978,"Cost":793,"Date":"8/22/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":884,"Cost":531,"Date":"8/31/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":169,"Cost":88,"Date":"9/1/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":930,"Cost":502,"Date":"9/1/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":324,"Cost":202,"Date":"9/17/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":776,"Cost":576,"Date":"9/29/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":741,"Cost":377,"Date":"11/7/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":547,"Cost":310,"Date":"11/26/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":391,"Cost":238,"Date":"11/27/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":619,"Cost":444,"Date":"12/5/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":807,"Cost":661,"Date":"12/26/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":164,"Cost":142,"Date":"12/31/2020"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":936,"Cost":510,"Date":"1/20/2021"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":31,"Cost":18,"Date":"2/2/2021"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":821,"Cost":719,"Date":"2/8/2021"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":298,"Cost":249,"Date":"2/27/2021"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":905,"Cost":794,"Date":"3/1/2021"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":811,"Cost":619,"Date":"3/1/2021"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":129,"Cost":96,"Date":"3/19/2021"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":713,"Cost":635,"Date":"3/28/2021"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":991,"Cost":901,"Date":"5/21/2021"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":280,"Cost":180,"Date":"7/21/2021"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":119,"Cost":91,"Date":"8/5/2021"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":252,"Cost":230,"Date":"8/12/2021"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":133,"Cost":91,"Date":"8/21/2021"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":448,"Cost":275,"Date":"8/23/2021"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":175,"Cost":123,"Date":"9/3/2021"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":715,"Cost":437,"Date":"9/5/2021"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":486,"Cost":316,"Date":"10/6/2021"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":267,"Cost":172,"Date":"10/19/2021"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":857,"Cost":679,"Date":"11/15/2021"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":98,"Cost":82,"Date":"12/8/2021"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":74,"Cost":51,"Date":"1/8/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":382,"Cost":348,"Date":"1/14/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":274,"Cost":238,"Date":"1/19/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":396,"Cost":373,"Date":"1/28/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":331,"Cost":237,"Date":"1/31/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":847,"Cost":602,"Date":"3/27/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":519,"Cost":295,"Date":"4/20/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":626,"Cost":472,"Date":"4/24/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":939,"Cost":563,"Date":"4/28/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":363,"Cost":194,"Date":"5/15/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":236,"Cost":219,"Date":"5/16/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":469,"Cost":308,"Date":"5/18/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":951,"Cost":689,"Date":"6/2/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":490,"Cost":277,"Date":"6/3/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":142,"Cost":130,"Date":"6/5/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":1,"Cost":1,"Date":"6/7/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":129,"Cost":121,"Date":"6/14/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":358,"Cost":186,"Date":"6/20/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":549,"Cost":472,"Date":"6/24/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":167,"Cost":83,"Date":"7/4/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":71,"Cost":64,"Date":"7/9/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":88,"Cost":46,"Date":"7/12/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":537,"Cost":277,"Date":"8/14/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":994,"Cost":756,"Date":"8/16/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":790,"Cost":582,"Date":"8/23/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":876,"Cost":673,"Date":"9/2/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":220,"Cost":189,"Date":"9/3/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":319,"Cost":241,"Date":"9/16/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":541,"Cost":315,"Date":"10/4/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":931,"Cost":694,"Date":"11/1/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":213,"Cost":159,"Date":"11/2/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":301,"Cost":272,"Date":"12/17/2022"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":417,"Cost":262,"Date":"2/10/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":218,"Cost":187,"Date":"2/28/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":572,"Cost":454,"Date":"3/4/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":280,"Cost":247,"Date":"3/9/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":263,"Cost":136,"Date":"3/9/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":319,"Cost":161,"Date":"3/11/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":400,"Cost":234,"Date":"3/17/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":369,"Cost":219,"Date":"3/17/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":825,"Cost":546,"Date":"3/23/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":368,"Cost":318,"Date":"4/1/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":363,"Cost":269,"Date":"5/7/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":513,"Cost":358,"Date":"5/10/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":612,"Cost":536,"Date":"5/20/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":630,"Cost":387,"Date":"6/2/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":239,"Cost":148,"Date":"6/11/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":415,"Cost":355,"Date":"6/16/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":676,"Cost":630,"Date":"6/16/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":495,"Cost":274,"Date":"7/10/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":295,"Cost":230,"Date":"7/11/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":282,"Cost":204,"Date":"8/28/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":239,"Cost":165,"Date":"8/29/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":310,"Cost":169,"Date":"8/31/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":978,"Cost":676,"Date":"9/8/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":31,"Cost":26,"Date":"9/13/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":786,"Cost":450,"Date":"9/14/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":96,"Cost":87,"Date":"9/19/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":989,"Cost":649,"Date":"9/25/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":608,"Cost":396,"Date":"10/4/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":370,"Cost":352,"Date":"10/10/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":237,"Cost":198,"Date":"10/17/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":50,"Cost":32,"Date":"10/28/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":927,"Cost":496,"Date":"10/30/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":416,"Cost":259,"Date":"11/1/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":110,"Cost":101,"Date":"11/15/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":211,"Cost":125,"Date":"11/25/2023"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":413,"Cost":295,"Date":"1/10/2024"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":671,"Cost":531,"Date":"1/14/2024"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":93,"Cost":80,"Date":"1/20/2024"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":99,"Cost":88,"Date":"2/8/2024"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":166,"Cost":144,"Date":"2/25/2024"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":584,"Cost":294,"Date":"3/7/2024"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":711,"Cost":614,"Date":"3/14/2024"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":445,"Cost":339,"Date":"3/27/2024"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":837,"Cost":602,"Date":"4/5/2024"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":358,"Cost":289,"Date":"4/14/2024"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":839,"Cost":627,"Date":"5/3/2024"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":656,"Cost":539,"Date":"5/9/2024"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":99,"Cost":89,"Date":"5/15/2024"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":185,"Cost":175,"Date":"5/25/2024"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":347,"Cost":180,"Date":"5/26/2024"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":310,"Cost":288,"Date":"5/31/2024"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":406,"Cost":220,"Date":"7/27/2024"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":904,"Cost":654,"Date":"9/17/2024"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":799,"Cost":484,"Date":"10/6/2024"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":909,"Cost":668,"Date":"10/8/2024"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":228,"Cost":176,"Date":"10/26/2024"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":553,"Cost":402,"Date":"11/16/2024"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":540,"Cost":329,"Date":"11/18/2024"},{"Store":"Eupen Shopping Center","Brand":"HM","Country":"Belgium","Sale":283,"Cost":231,"Date":"12/1/2024"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":406,"Cost":227,"Date":"2/9/2018"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":594,"Cost":367,"Date":"2/11/2018"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":420,"Cost":267,"Date":"3/10/2018"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":279,"Cost":206,"Date":"3/16/2018"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":92,"Cost":53,"Date":"3/18/2018"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":919,"Cost":706,"Date":"3/20/2018"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":562,"Cost":368,"Date":"3/26/2018"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":21,"Cost":12,"Date":"6/2/2018"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":57,"Cost":55,"Date":"6/10/2018"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":156,"Cost":94,"Date":"6/16/2018"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":556,"Cost":369,"Date":"6/25/2018"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":77,"Cost":51,"Date":"7/19/2018"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":928,"Cost":502,"Date":"7/21/2018"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":753,"Cost":589,"Date":"7/25/2018"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":874,"Cost":475,"Date":"8/4/2018"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":690,"Cost":417,"Date":"9/2/2018"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":917,"Cost":545,"Date":"9/4/2018"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":501,"Cost":471,"Date":"9/19/2018"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":891,"Cost":826,"Date":"9/29/2018"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":962,"Cost":840,"Date":"10/2/2018"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":895,"Cost":715,"Date":"10/15/2018"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":313,"Cost":199,"Date":"10/30/2018"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":104,"Cost":85,"Date":"11/9/2018"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":745,"Cost":411,"Date":"11/23/2018"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":828,"Cost":752,"Date":"11/30/2018"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":854,"Cost":557,"Date":"12/8/2018"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":213,"Cost":151,"Date":"12/11/2018"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":94,"Cost":55,"Date":"1/15/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":421,"Cost":327,"Date":"1/24/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":869,"Cost":492,"Date":"2/3/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":780,"Cost":500,"Date":"2/4/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":441,"Cost":282,"Date":"3/9/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":660,"Cost":622,"Date":"3/12/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":65,"Cost":57,"Date":"4/19/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":211,"Cost":109,"Date":"5/3/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":752,"Cost":578,"Date":"5/4/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":352,"Cost":180,"Date":"6/8/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":733,"Cost":374,"Date":"6/26/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":547,"Cost":363,"Date":"7/4/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":796,"Cost":604,"Date":"7/13/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":878,"Cost":585,"Date":"8/8/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":662,"Cost":581,"Date":"8/26/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":234,"Cost":219,"Date":"9/2/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":205,"Cost":162,"Date":"9/29/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":334,"Cost":318,"Date":"10/12/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":213,"Cost":174,"Date":"11/2/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":886,"Cost":470,"Date":"11/4/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":293,"Cost":200,"Date":"11/7/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":303,"Cost":218,"Date":"12/1/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":583,"Cost":389,"Date":"12/4/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":61,"Cost":51,"Date":"12/7/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":595,"Cost":513,"Date":"12/18/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":863,"Cost":437,"Date":"12/20/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":492,"Cost":406,"Date":"12/20/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":409,"Cost":235,"Date":"12/21/2019"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":826,"Cost":585,"Date":"1/9/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":391,"Cost":223,"Date":"2/5/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":243,"Cost":217,"Date":"2/16/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":398,"Cost":320,"Date":"2/16/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":422,"Cost":323,"Date":"2/18/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":244,"Cost":146,"Date":"2/22/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":854,"Cost":551,"Date":"2/25/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":986,"Cost":896,"Date":"3/8/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":946,"Cost":841,"Date":"4/2/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":802,"Cost":753,"Date":"4/3/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":168,"Cost":159,"Date":"4/9/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":780,"Cost":480,"Date":"4/10/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":634,"Cost":330,"Date":"4/19/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":676,"Cost":353,"Date":"5/17/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":819,"Cost":754,"Date":"5/22/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":782,"Cost":685,"Date":"6/20/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":343,"Cost":321,"Date":"7/1/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":277,"Cost":214,"Date":"7/4/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":543,"Cost":493,"Date":"7/8/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":227,"Cost":152,"Date":"7/9/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":291,"Cost":258,"Date":"7/14/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":345,"Cost":222,"Date":"7/19/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":897,"Cost":470,"Date":"8/1/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":192,"Cost":99,"Date":"8/6/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":589,"Cost":312,"Date":"8/7/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":981,"Cost":597,"Date":"8/22/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":86,"Cost":53,"Date":"8/31/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":260,"Cost":212,"Date":"9/1/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":909,"Cost":712,"Date":"9/1/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":573,"Cost":447,"Date":"9/17/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":305,"Cost":176,"Date":"9/29/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":114,"Cost":84,"Date":"11/7/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":805,"Cost":532,"Date":"11/26/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":743,"Cost":550,"Date":"11/27/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":51,"Cost":48,"Date":"12/5/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":762,"Cost":584,"Date":"12/26/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":564,"Cost":342,"Date":"12/31/2020"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":166,"Cost":125,"Date":"1/20/2021"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":746,"Cost":400,"Date":"2/2/2021"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":718,"Cost":409,"Date":"2/8/2021"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":491,"Cost":276,"Date":"2/27/2021"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":390,"Cost":293,"Date":"3/1/2021"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":858,"Cost":617,"Date":"3/1/2021"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":234,"Cost":181,"Date":"3/19/2021"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":787,"Cost":418,"Date":"3/28/2021"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":483,"Cost":360,"Date":"5/21/2021"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":728,"Cost":380,"Date":"7/21/2021"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":323,"Cost":224,"Date":"8/5/2021"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":865,"Cost":461,"Date":"8/12/2021"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":95,"Cost":68,"Date":"8/21/2021"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":213,"Cost":178,"Date":"8/23/2021"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":661,"Cost":616,"Date":"9/3/2021"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":679,"Cost":583,"Date":"9/5/2021"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":518,"Cost":393,"Date":"10/6/2021"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":488,"Cost":306,"Date":"10/19/2021"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":901,"Cost":776,"Date":"11/15/2021"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":749,"Cost":684,"Date":"12/8/2021"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":933,"Cost":879,"Date":"1/8/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":416,"Cost":274,"Date":"1/14/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":234,"Cost":138,"Date":"1/19/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":158,"Cost":113,"Date":"1/28/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":478,"Cost":295,"Date":"1/31/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":83,"Cost":67,"Date":"3/27/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":675,"Cost":541,"Date":"4/20/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":157,"Cost":93,"Date":"4/24/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":745,"Cost":546,"Date":"4/28/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":45,"Cost":33,"Date":"5/15/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":883,"Cost":799,"Date":"5/16/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":270,"Cost":148,"Date":"5/18/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":500,"Cost":293,"Date":"6/2/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":839,"Cost":677,"Date":"6/3/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":822,"Cost":535,"Date":"6/5/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":224,"Cost":134,"Date":"6/7/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":634,"Cost":319,"Date":"6/14/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":443,"Cost":357,"Date":"6/20/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":827,"Cost":785,"Date":"6/24/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":964,"Cost":718,"Date":"7/4/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":846,"Cost":437,"Date":"7/9/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":474,"Cost":253,"Date":"7/12/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":775,"Cost":437,"Date":"8/14/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":624,"Cost":380,"Date":"8/16/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":389,"Cost":320,"Date":"8/23/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":238,"Cost":218,"Date":"9/2/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":994,"Cost":545,"Date":"9/3/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":163,"Cost":136,"Date":"9/16/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":779,"Cost":695,"Date":"10/4/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":491,"Cost":421,"Date":"11/1/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":591,"Cost":440,"Date":"11/2/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":512,"Cost":329,"Date":"12/17/2022"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":774,"Cost":428,"Date":"2/10/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":866,"Cost":478,"Date":"2/28/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":188,"Cost":100,"Date":"3/4/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":80,"Cost":51,"Date":"3/9/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":924,"Cost":812,"Date":"3/9/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":547,"Cost":461,"Date":"3/11/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":299,"Cost":233,"Date":"3/17/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":405,"Cost":253,"Date":"3/17/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":432,"Cost":323,"Date":"3/23/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":571,"Cost":287,"Date":"4/1/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":517,"Cost":394,"Date":"5/7/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":698,"Cost":439,"Date":"5/10/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":494,"Cost":457,"Date":"5/20/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":166,"Cost":101,"Date":"6/2/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":485,"Cost":404,"Date":"6/11/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":879,"Cost":750,"Date":"6/16/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":101,"Cost":80,"Date":"6/16/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":605,"Cost":466,"Date":"7/10/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":744,"Cost":522,"Date":"7/11/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":652,"Cost":415,"Date":"8/28/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":168,"Cost":97,"Date":"8/29/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":818,"Cost":704,"Date":"8/31/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":118,"Cost":87,"Date":"9/8/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":283,"Cost":261,"Date":"9/13/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":772,"Cost":565,"Date":"9/14/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":48,"Cost":32,"Date":"9/19/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":968,"Cost":799,"Date":"9/25/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":228,"Cost":136,"Date":"10/4/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":933,"Cost":717,"Date":"10/10/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":723,"Cost":535,"Date":"10/17/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":624,"Cost":358,"Date":"10/28/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":379,"Cost":223,"Date":"10/30/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":943,"Cost":796,"Date":"11/1/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":264,"Cost":202,"Date":"11/15/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":428,"Cost":219,"Date":"11/25/2023"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":927,"Cost":868,"Date":"1/10/2024"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":207,"Cost":130,"Date":"1/14/2024"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":30,"Cost":24,"Date":"1/20/2024"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":386,"Cost":326,"Date":"2/8/2024"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":811,"Cost":590,"Date":"2/25/2024"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":523,"Cost":341,"Date":"3/7/2024"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":325,"Cost":305,"Date":"3/14/2024"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":831,"Cost":533,"Date":"3/27/2024"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":155,"Cost":99,"Date":"4/5/2024"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":313,"Cost":163,"Date":"4/14/2024"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":9,"Cost":4,"Date":"5/3/2024"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":201,"Cost":129,"Date":"5/9/2024"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":644,"Cost":328,"Date":"5/15/2024"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":22,"Cost":20,"Date":"5/25/2024"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":634,"Cost":467,"Date":"5/26/2024"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":339,"Cost":261,"Date":"5/31/2024"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":249,"Cost":211,"Date":"7/27/2024"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":211,"Cost":147,"Date":"9/17/2024"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":601,"Cost":310,"Date":"10/6/2024"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":997,"Cost":826,"Date":"10/8/2024"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":393,"Cost":349,"Date":"10/26/2024"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":866,"Cost":789,"Date":"11/16/2024"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":300,"Cost":207,"Date":"11/18/2024"},{"Store":"Kortrijk Shopping","Brand":"Jeans","Country":"Belgium","Sale":438,"Cost":314,"Date":"12/1/2024"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":314,"Cost":247,"Date":"2/9/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":701,"Cost":519,"Date":"2/11/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":294,"Cost":216,"Date":"3/10/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":102,"Cost":67,"Date":"3/16/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":617,"Cost":325,"Date":"3/18/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":504,"Cost":381,"Date":"3/20/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":504,"Cost":411,"Date":"3/26/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":172,"Cost":87,"Date":"6/2/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":156,"Cost":113,"Date":"6/10/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":509,"Cost":463,"Date":"6/16/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":755,"Cost":679,"Date":"6/25/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":187,"Cost":118,"Date":"7/19/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":735,"Cost":658,"Date":"7/21/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":666,"Cost":588,"Date":"7/25/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":551,"Cost":489,"Date":"8/4/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":93,"Cost":75,"Date":"9/2/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":291,"Cost":276,"Date":"9/4/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":71,"Cost":62,"Date":"9/19/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":423,"Cost":282,"Date":"9/29/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":59,"Cost":50,"Date":"10/2/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":761,"Cost":502,"Date":"10/15/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":131,"Cost":97,"Date":"10/30/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":183,"Cost":110,"Date":"11/9/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":16,"Cost":14,"Date":"11/23/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":996,"Cost":662,"Date":"11/30/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":994,"Cost":649,"Date":"12/8/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":593,"Cost":356,"Date":"12/11/2018"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":468,"Cost":294,"Date":"1/15/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":82,"Cost":74,"Date":"1/24/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":774,"Cost":475,"Date":"2/3/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":405,"Cost":329,"Date":"2/4/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":137,"Cost":112,"Date":"3/9/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":7,"Cost":5,"Date":"3/12/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":211,"Cost":113,"Date":"4/19/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":262,"Cost":237,"Date":"5/3/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":885,"Cost":629,"Date":"5/4/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":174,"Cost":98,"Date":"6/8/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":798,"Cost":567,"Date":"6/26/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":331,"Cost":191,"Date":"7/4/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":947,"Cost":719,"Date":"7/13/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":659,"Cost":439,"Date":"8/8/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":497,"Cost":291,"Date":"8/26/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":3,"Cost":1,"Date":"9/2/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":678,"Cost":343,"Date":"9/29/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":219,"Cost":153,"Date":"10/12/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":493,"Cost":381,"Date":"11/2/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":25,"Cost":16,"Date":"11/4/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":523,"Cost":288,"Date":"11/7/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":811,"Cost":541,"Date":"12/1/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":370,"Cost":196,"Date":"12/4/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":499,"Cost":437,"Date":"12/7/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":207,"Cost":114,"Date":"12/18/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":555,"Cost":385,"Date":"12/20/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":746,"Cost":536,"Date":"12/20/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":897,"Cost":805,"Date":"12/21/2019"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":28,"Cost":15,"Date":"1/9/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":880,"Cost":831,"Date":"2/5/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":200,"Cost":171,"Date":"2/16/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":699,"Cost":372,"Date":"2/16/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":542,"Cost":302,"Date":"2/18/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":300,"Cost":274,"Date":"2/22/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":210,"Cost":139,"Date":"2/25/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":915,"Cost":851,"Date":"3/8/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":18,"Cost":16,"Date":"4/2/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":681,"Cost":366,"Date":"4/3/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":385,"Cost":293,"Date":"4/9/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":138,"Cost":90,"Date":"4/10/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":499,"Cost":377,"Date":"4/19/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":284,"Cost":179,"Date":"5/17/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":169,"Cost":112,"Date":"5/22/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":570,"Cost":454,"Date":"6/20/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":299,"Cost":254,"Date":"7/1/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":53,"Cost":46,"Date":"7/4/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":424,"Cost":397,"Date":"7/8/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":211,"Cost":134,"Date":"7/9/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":201,"Cost":105,"Date":"7/14/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":357,"Cost":314,"Date":"7/19/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":541,"Cost":441,"Date":"8/1/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":825,"Cost":437,"Date":"8/6/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":942,"Cost":639,"Date":"8/7/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":596,"Cost":522,"Date":"8/22/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":20,"Cost":17,"Date":"8/31/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":456,"Cost":378,"Date":"9/1/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":541,"Cost":496,"Date":"9/1/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":980,"Cost":764,"Date":"9/17/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":630,"Cost":323,"Date":"9/29/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":934,"Cost":888,"Date":"11/7/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":103,"Cost":97,"Date":"11/26/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":913,"Cost":650,"Date":"11/27/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":266,"Cost":141,"Date":"12/5/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":669,"Cost":397,"Date":"12/26/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":958,"Cost":712,"Date":"12/31/2020"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":849,"Cost":605,"Date":"1/20/2021"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":780,"Cost":571,"Date":"2/2/2021"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":42,"Cost":23,"Date":"2/8/2021"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":632,"Cost":321,"Date":"2/27/2021"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":347,"Cost":261,"Date":"3/1/2021"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":290,"Cost":204,"Date":"3/1/2021"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":57,"Cost":50,"Date":"3/19/2021"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":609,"Cost":408,"Date":"3/28/2021"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":859,"Cost":809,"Date":"5/21/2021"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":727,"Cost":394,"Date":"7/21/2021"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":866,"Cost":498,"Date":"8/5/2021"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":423,"Cost":283,"Date":"8/12/2021"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":151,"Cost":102,"Date":"8/21/2021"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":288,"Cost":213,"Date":"8/23/2021"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":568,"Cost":442,"Date":"9/3/2021"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":51,"Cost":41,"Date":"9/5/2021"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":765,"Cost":556,"Date":"10/6/2021"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":508,"Cost":464,"Date":"10/19/2021"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":276,"Cost":205,"Date":"11/15/2021"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":906,"Cost":486,"Date":"12/8/2021"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":196,"Cost":149,"Date":"1/8/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":80,"Cost":43,"Date":"1/14/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":438,"Cost":342,"Date":"1/19/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":926,"Cost":489,"Date":"1/28/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":532,"Cost":475,"Date":"1/31/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":962,"Cost":554,"Date":"3/27/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":355,"Cost":246,"Date":"4/20/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":564,"Cost":286,"Date":"4/24/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":745,"Cost":433,"Date":"4/28/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":872,"Cost":600,"Date":"5/15/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":918,"Cost":556,"Date":"5/16/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":402,"Cost":226,"Date":"5/18/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":720,"Cost":581,"Date":"6/2/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":673,"Cost":481,"Date":"6/3/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":233,"Cost":210,"Date":"6/5/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":17,"Cost":8,"Date":"6/7/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":307,"Cost":214,"Date":"6/14/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":537,"Cost":405,"Date":"6/20/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":341,"Cost":304,"Date":"6/24/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":556,"Cost":506,"Date":"7/4/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":525,"Cost":471,"Date":"7/9/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":628,"Cost":512,"Date":"7/12/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":517,"Cost":300,"Date":"8/14/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":347,"Cost":184,"Date":"8/16/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":459,"Cost":354,"Date":"8/23/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":597,"Cost":302,"Date":"9/2/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":96,"Cost":50,"Date":"9/3/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":338,"Cost":274,"Date":"9/16/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":721,"Cost":606,"Date":"10/4/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":708,"Cost":525,"Date":"11/1/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":721,"Cost":488,"Date":"11/2/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":555,"Cost":434,"Date":"12/17/2022"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":402,"Cost":229,"Date":"2/10/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":884,"Cost":785,"Date":"2/28/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":758,"Cost":720,"Date":"3/4/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":467,"Cost":353,"Date":"3/9/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":577,"Cost":336,"Date":"3/9/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":187,"Cost":157,"Date":"3/11/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":744,"Cost":541,"Date":"3/17/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":911,"Cost":808,"Date":"3/17/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":532,"Cost":394,"Date":"3/23/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":477,"Cost":335,"Date":"4/1/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":228,"Cost":169,"Date":"5/7/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":939,"Cost":604,"Date":"5/10/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":806,"Cost":479,"Date":"5/20/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":357,"Cost":233,"Date":"6/2/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":462,"Cost":303,"Date":"6/11/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":83,"Cost":61,"Date":"6/16/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":335,"Cost":250,"Date":"6/16/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":112,"Cost":67,"Date":"7/10/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":119,"Cost":64,"Date":"7/11/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":350,"Cost":283,"Date":"8/28/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":125,"Cost":114,"Date":"8/29/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":984,"Cost":731,"Date":"8/31/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":670,"Cost":485,"Date":"9/8/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":817,"Cost":695,"Date":"9/13/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":243,"Cost":182,"Date":"9/14/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":410,"Cost":357,"Date":"9/19/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":962,"Cost":695,"Date":"9/25/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":878,"Cost":586,"Date":"10/4/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":990,"Cost":748,"Date":"10/10/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":289,"Cost":227,"Date":"10/17/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":895,"Cost":636,"Date":"10/28/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":58,"Cost":38,"Date":"10/30/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":333,"Cost":305,"Date":"11/1/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":880,"Cost":774,"Date":"11/15/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":211,"Cost":161,"Date":"11/25/2023"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":827,"Cost":624,"Date":"1/10/2024"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":992,"Cost":861,"Date":"1/14/2024"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":320,"Cost":164,"Date":"1/20/2024"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":440,"Cost":386,"Date":"2/8/2024"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":369,"Cost":240,"Date":"2/25/2024"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":728,"Cost":637,"Date":"3/7/2024"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":102,"Cost":87,"Date":"3/14/2024"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":245,"Cost":133,"Date":"3/27/2024"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":602,"Cost":518,"Date":"4/5/2024"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":649,"Cost":472,"Date":"4/14/2024"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":336,"Cost":176,"Date":"5/3/2024"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":855,"Cost":567,"Date":"5/9/2024"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":309,"Cost":162,"Date":"5/15/2024"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":314,"Cost":227,"Date":"5/25/2024"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":610,"Cost":358,"Date":"5/26/2024"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":100,"Cost":50,"Date":"5/31/2024"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":270,"Cost":217,"Date":"7/27/2024"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":416,"Cost":366,"Date":"9/17/2024"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":482,"Cost":249,"Date":"10/6/2024"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":583,"Cost":328,"Date":"10/8/2024"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":294,"Cost":182,"Date":"10/26/2024"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":159,"Cost":119,"Date":"11/16/2024"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":377,"Cost":198,"Date":"11/18/2024"},{"Store":"Kortrijk Shopping","Brand":"HM","Country":"Belgium","Sale":883,"Cost":825,"Date":"12/1/2024"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":767,"Cost":637,"Date":"2/9/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":512,"Cost":457,"Date":"2/11/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":690,"Cost":621,"Date":"3/10/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":890,"Cost":643,"Date":"3/16/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":696,"Cost":551,"Date":"3/18/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":976,"Cost":822,"Date":"3/20/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":10,"Cost":9,"Date":"3/26/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":557,"Cost":320,"Date":"6/2/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":600,"Cost":440,"Date":"6/10/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":673,"Cost":525,"Date":"6/16/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":117,"Cost":62,"Date":"6/25/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":425,"Cost":288,"Date":"7/19/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":975,"Cost":646,"Date":"7/21/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":867,"Cost":816,"Date":"7/25/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":266,"Cost":156,"Date":"8/4/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":844,"Cost":789,"Date":"9/2/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":519,"Cost":274,"Date":"9/4/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":783,"Cost":681,"Date":"9/19/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":774,"Cost":439,"Date":"9/29/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":137,"Cost":91,"Date":"10/2/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":205,"Cost":150,"Date":"10/15/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":437,"Cost":311,"Date":"10/30/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":901,"Cost":707,"Date":"11/9/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":228,"Cost":172,"Date":"11/23/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":531,"Cost":418,"Date":"11/30/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":396,"Cost":307,"Date":"12/8/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":1000,"Cost":690,"Date":"12/11/2018"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":328,"Cost":208,"Date":"1/15/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":190,"Cost":144,"Date":"1/24/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":97,"Cost":50,"Date":"2/3/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":767,"Cost":645,"Date":"2/4/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":897,"Cost":835,"Date":"3/9/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":917,"Cost":843,"Date":"3/12/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":346,"Cost":188,"Date":"4/19/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":565,"Cost":388,"Date":"5/3/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":632,"Cost":539,"Date":"5/4/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":737,"Cost":554,"Date":"6/8/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":958,"Cost":709,"Date":"6/26/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":689,"Cost":358,"Date":"7/4/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":487,"Cost":423,"Date":"7/13/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":592,"Cost":404,"Date":"8/8/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":133,"Cost":117,"Date":"8/26/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":762,"Cost":553,"Date":"9/2/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":583,"Cost":413,"Date":"9/29/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":158,"Cost":87,"Date":"10/12/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":344,"Cost":287,"Date":"11/2/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":376,"Cost":304,"Date":"11/4/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":233,"Cost":182,"Date":"11/7/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":414,"Cost":339,"Date":"12/1/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":407,"Cost":252,"Date":"12/4/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":315,"Cost":258,"Date":"12/7/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":152,"Cost":132,"Date":"12/18/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":219,"Cost":128,"Date":"12/20/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":448,"Cost":397,"Date":"12/20/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":672,"Cost":552,"Date":"12/21/2019"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":741,"Cost":644,"Date":"1/9/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":961,"Cost":770,"Date":"2/5/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":275,"Cost":234,"Date":"2/16/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":194,"Cost":183,"Date":"2/16/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":280,"Cost":224,"Date":"2/18/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":29,"Cost":28,"Date":"2/22/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":316,"Cost":266,"Date":"2/25/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":71,"Cost":54,"Date":"3/8/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":706,"Cost":629,"Date":"4/2/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":371,"Cost":276,"Date":"4/3/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":93,"Cost":66,"Date":"4/9/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":835,"Cost":431,"Date":"4/10/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":384,"Cost":348,"Date":"4/19/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":761,"Cost":464,"Date":"5/17/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":487,"Cost":255,"Date":"5/22/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":362,"Cost":227,"Date":"6/20/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":43,"Cost":27,"Date":"7/1/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":620,"Cost":381,"Date":"7/4/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":339,"Cost":289,"Date":"7/8/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":727,"Cost":595,"Date":"7/9/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":738,"Cost":519,"Date":"7/14/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":606,"Cost":359,"Date":"7/19/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":824,"Cost":601,"Date":"8/1/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":312,"Cost":259,"Date":"8/6/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":832,"Cost":458,"Date":"8/7/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":832,"Cost":717,"Date":"8/22/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":880,"Cost":642,"Date":"8/31/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":332,"Cost":183,"Date":"9/1/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":540,"Cost":493,"Date":"9/1/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":1000,"Cost":771,"Date":"9/17/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":366,"Cost":221,"Date":"9/29/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":987,"Cost":622,"Date":"11/7/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":837,"Cost":479,"Date":"11/26/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":368,"Cost":289,"Date":"11/27/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":947,"Cost":884,"Date":"12/5/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":576,"Cost":312,"Date":"12/26/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":890,"Cost":580,"Date":"12/31/2020"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":292,"Cost":275,"Date":"1/20/2021"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":609,"Cost":484,"Date":"2/2/2021"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":928,"Cost":827,"Date":"2/8/2021"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":601,"Cost":467,"Date":"2/27/2021"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":44,"Cost":34,"Date":"3/1/2021"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":869,"Cost":628,"Date":"3/1/2021"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":124,"Cost":85,"Date":"3/19/2021"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":7,"Cost":7,"Date":"3/28/2021"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":186,"Cost":124,"Date":"5/21/2021"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":112,"Cost":100,"Date":"7/21/2021"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":917,"Cost":572,"Date":"8/5/2021"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":929,"Cost":662,"Date":"8/12/2021"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":790,"Cost":435,"Date":"8/21/2021"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":989,"Cost":762,"Date":"8/23/2021"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":134,"Cost":111,"Date":"9/3/2021"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":47,"Cost":39,"Date":"9/5/2021"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":555,"Cost":446,"Date":"10/6/2021"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":93,"Cost":88,"Date":"10/19/2021"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":383,"Cost":280,"Date":"11/15/2021"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":607,"Cost":310,"Date":"12/8/2021"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":471,"Cost":364,"Date":"1/8/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":898,"Cost":565,"Date":"1/14/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":402,"Cost":258,"Date":"1/19/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":481,"Cost":346,"Date":"1/28/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":407,"Cost":280,"Date":"1/31/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":197,"Cost":166,"Date":"3/27/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":235,"Cost":221,"Date":"4/20/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":794,"Cost":535,"Date":"4/24/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":625,"Cost":498,"Date":"4/28/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":363,"Cost":281,"Date":"5/15/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":384,"Cost":341,"Date":"5/16/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":368,"Cost":277,"Date":"5/18/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":839,"Cost":446,"Date":"6/2/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":920,"Cost":815,"Date":"6/3/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":890,"Cost":635,"Date":"6/5/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":323,"Cost":302,"Date":"6/7/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":52,"Cost":44,"Date":"6/14/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":560,"Cost":343,"Date":"6/20/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":551,"Cost":484,"Date":"6/24/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":882,"Cost":445,"Date":"7/4/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":480,"Cost":340,"Date":"7/9/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":225,"Cost":183,"Date":"7/12/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":104,"Cost":88,"Date":"8/14/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":707,"Cost":386,"Date":"8/16/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":972,"Cost":595,"Date":"8/23/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":619,"Cost":495,"Date":"9/2/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":626,"Cost":583,"Date":"9/3/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":565,"Cost":528,"Date":"9/16/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":872,"Cost":584,"Date":"10/4/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":44,"Cost":39,"Date":"11/1/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":96,"Cost":52,"Date":"11/2/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":610,"Cost":471,"Date":"12/17/2022"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":79,"Cost":65,"Date":"2/10/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":308,"Cost":236,"Date":"2/28/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":206,"Cost":144,"Date":"3/4/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":783,"Cost":588,"Date":"3/9/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":979,"Cost":725,"Date":"3/9/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":134,"Cost":105,"Date":"3/11/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":690,"Cost":423,"Date":"3/17/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":721,"Cost":382,"Date":"3/17/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":608,"Cost":479,"Date":"3/23/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":23,"Cost":18,"Date":"4/1/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":518,"Cost":367,"Date":"5/7/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":431,"Cost":253,"Date":"5/10/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":18,"Cost":15,"Date":"5/20/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":282,"Cost":165,"Date":"6/2/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":364,"Cost":257,"Date":"6/11/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":725,"Cost":480,"Date":"6/16/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":520,"Cost":438,"Date":"6/16/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":757,"Cost":645,"Date":"7/10/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":121,"Cost":95,"Date":"7/11/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":438,"Cost":378,"Date":"8/28/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":903,"Cost":484,"Date":"8/29/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":633,"Cost":356,"Date":"8/31/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":854,"Cost":471,"Date":"9/8/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":289,"Cost":171,"Date":"9/13/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":158,"Cost":98,"Date":"9/14/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":57,"Cost":28,"Date":"9/19/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":648,"Cost":388,"Date":"9/25/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":590,"Cost":356,"Date":"10/4/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":103,"Cost":70,"Date":"10/10/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":607,"Cost":391,"Date":"10/17/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":905,"Cost":495,"Date":"10/28/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":618,"Cost":315,"Date":"10/30/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":142,"Cost":134,"Date":"11/1/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":202,"Cost":136,"Date":"11/15/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":749,"Cost":475,"Date":"11/25/2023"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":302,"Cost":285,"Date":"1/10/2024"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":25,"Cost":14,"Date":"1/14/2024"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":704,"Cost":655,"Date":"1/20/2024"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":711,"Cost":657,"Date":"2/8/2024"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":985,"Cost":679,"Date":"2/25/2024"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":547,"Cost":399,"Date":"3/7/2024"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":506,"Cost":263,"Date":"3/14/2024"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":507,"Cost":326,"Date":"3/27/2024"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":302,"Cost":276,"Date":"4/5/2024"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":158,"Cost":94,"Date":"4/14/2024"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":956,"Cost":571,"Date":"5/3/2024"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":682,"Cost":487,"Date":"5/9/2024"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":998,"Cost":868,"Date":"5/15/2024"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":4,"Cost":2,"Date":"5/25/2024"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":637,"Cost":558,"Date":"5/26/2024"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":239,"Cost":131,"Date":"5/31/2024"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":854,"Cost":707,"Date":"7/27/2024"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":582,"Cost":329,"Date":"9/17/2024"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":834,"Cost":533,"Date":"10/6/2024"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":77,"Cost":72,"Date":"10/8/2024"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":162,"Cost":91,"Date":"10/26/2024"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":971,"Cost":583,"Date":"11/16/2024"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":993,"Cost":716,"Date":"11/18/2024"},{"Store":"Kortrijk Shopping","Brand":"HM Home","Country":"Belgium","Sale":58,"Cost":35,"Date":"12/1/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":906,"Cost":778,"Date":"2/9/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":631,"Cost":517,"Date":"2/11/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":312,"Cost":289,"Date":"3/10/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":848,"Cost":645,"Date":"3/16/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":66,"Cost":59,"Date":"3/18/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":9,"Cost":5,"Date":"3/20/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":814,"Cost":600,"Date":"3/26/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":162,"Cost":127,"Date":"6/2/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":59,"Cost":43,"Date":"6/10/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":187,"Cost":170,"Date":"6/16/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":358,"Cost":235,"Date":"6/25/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":529,"Cost":301,"Date":"7/19/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":916,"Cost":540,"Date":"7/21/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":552,"Cost":385,"Date":"7/25/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":764,"Cost":491,"Date":"8/4/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":22,"Cost":12,"Date":"9/2/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":327,"Cost":281,"Date":"9/4/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":965,"Cost":606,"Date":"9/19/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":654,"Cost":577,"Date":"9/29/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":689,"Cost":372,"Date":"10/2/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":423,"Cost":325,"Date":"10/15/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":391,"Cost":334,"Date":"10/30/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":928,"Cost":560,"Date":"11/9/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":117,"Cost":84,"Date":"11/23/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":996,"Cost":807,"Date":"11/30/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":375,"Cost":273,"Date":"12/8/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":706,"Cost":550,"Date":"12/11/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":80,"Cost":69,"Date":"1/15/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":621,"Cost":487,"Date":"1/24/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":142,"Cost":82,"Date":"2/3/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":573,"Cost":352,"Date":"2/4/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":56,"Cost":32,"Date":"3/9/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":259,"Cost":230,"Date":"3/12/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":484,"Cost":384,"Date":"4/19/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":547,"Cost":444,"Date":"5/3/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":791,"Cost":628,"Date":"5/4/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":151,"Cost":85,"Date":"6/8/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":319,"Cost":238,"Date":"6/26/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":154,"Cost":142,"Date":"7/4/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":205,"Cost":168,"Date":"7/13/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":833,"Cost":467,"Date":"8/8/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":145,"Cost":125,"Date":"8/26/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":154,"Cost":128,"Date":"9/2/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":461,"Cost":276,"Date":"9/29/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":408,"Cost":255,"Date":"10/12/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":159,"Cost":119,"Date":"11/2/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":993,"Cost":943,"Date":"11/4/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":918,"Cost":670,"Date":"11/7/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":780,"Cost":547,"Date":"12/1/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":175,"Cost":127,"Date":"12/4/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":335,"Cost":303,"Date":"12/7/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":931,"Cost":881,"Date":"12/18/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":759,"Cost":649,"Date":"12/20/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":548,"Cost":320,"Date":"12/20/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":923,"Cost":576,"Date":"12/21/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":142,"Cost":85,"Date":"1/9/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":60,"Cost":46,"Date":"2/5/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":241,"Cost":196,"Date":"2/16/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":149,"Cost":97,"Date":"2/16/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":735,"Cost":410,"Date":"2/18/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":515,"Cost":425,"Date":"2/22/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":921,"Cost":841,"Date":"2/25/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":749,"Cost":665,"Date":"3/8/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":634,"Cost":326,"Date":"4/2/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":427,"Cost":294,"Date":"4/3/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":364,"Cost":186,"Date":"4/9/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":880,"Cost":677,"Date":"4/10/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":334,"Cost":272,"Date":"4/19/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":593,"Cost":361,"Date":"5/17/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":923,"Cost":638,"Date":"5/22/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":730,"Cost":578,"Date":"6/20/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":632,"Cost":554,"Date":"7/1/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":421,"Cost":301,"Date":"7/4/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":396,"Cost":301,"Date":"7/8/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":528,"Cost":374,"Date":"7/9/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":164,"Cost":100,"Date":"7/14/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":863,"Cost":541,"Date":"7/19/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":792,"Cost":594,"Date":"8/1/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":31,"Cost":22,"Date":"8/6/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":468,"Cost":266,"Date":"8/7/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":581,"Cost":327,"Date":"8/22/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":829,"Cost":641,"Date":"8/31/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":209,"Cost":149,"Date":"9/1/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":574,"Cost":394,"Date":"9/1/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":392,"Cost":302,"Date":"9/17/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":596,"Cost":378,"Date":"9/29/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":512,"Cost":279,"Date":"11/7/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":348,"Cost":190,"Date":"11/26/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":106,"Cost":97,"Date":"11/27/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":701,"Cost":426,"Date":"12/5/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":165,"Cost":88,"Date":"12/26/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":42,"Cost":35,"Date":"12/31/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":597,"Cost":505,"Date":"1/20/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":472,"Cost":342,"Date":"2/2/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":797,"Cost":616,"Date":"2/8/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":158,"Cost":127,"Date":"2/27/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":407,"Cost":275,"Date":"3/1/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":103,"Cost":75,"Date":"3/1/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":943,"Cost":485,"Date":"3/19/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":880,"Cost":659,"Date":"3/28/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":707,"Cost":541,"Date":"5/21/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":433,"Cost":313,"Date":"7/21/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":339,"Cost":234,"Date":"8/5/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":916,"Cost":830,"Date":"8/12/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":338,"Cost":258,"Date":"8/21/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":693,"Cost":439,"Date":"8/23/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":940,"Cost":789,"Date":"9/3/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":502,"Cost":270,"Date":"9/5/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":291,"Cost":264,"Date":"10/6/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":589,"Cost":543,"Date":"10/19/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":429,"Cost":284,"Date":"11/15/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":17,"Cost":14,"Date":"12/8/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":21,"Cost":12,"Date":"1/8/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":864,"Cost":497,"Date":"1/14/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":943,"Cost":726,"Date":"1/19/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":755,"Cost":592,"Date":"1/28/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":327,"Cost":223,"Date":"1/31/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":693,"Cost":491,"Date":"3/27/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":25,"Cost":13,"Date":"4/20/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":342,"Cost":311,"Date":"4/24/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":98,"Cost":90,"Date":"4/28/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":212,"Cost":186,"Date":"5/15/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":731,"Cost":377,"Date":"5/16/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":185,"Cost":142,"Date":"5/18/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":398,"Cost":200,"Date":"6/2/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":919,"Cost":714,"Date":"6/3/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":90,"Cost":67,"Date":"6/5/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":303,"Cost":261,"Date":"6/7/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":565,"Cost":360,"Date":"6/14/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":513,"Cost":420,"Date":"6/20/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":413,"Cost":278,"Date":"6/24/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":443,"Cost":323,"Date":"7/4/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":628,"Cost":438,"Date":"7/9/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":2,"Cost":1,"Date":"7/12/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":256,"Cost":167,"Date":"8/14/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":183,"Cost":137,"Date":"8/16/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":871,"Cost":818,"Date":"8/23/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":205,"Cost":162,"Date":"9/2/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":540,"Cost":312,"Date":"9/3/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":768,"Cost":483,"Date":"9/16/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":85,"Cost":52,"Date":"10/4/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":194,"Cost":126,"Date":"11/1/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":377,"Cost":304,"Date":"11/2/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":474,"Cost":381,"Date":"12/17/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":620,"Cost":422,"Date":"2/10/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":146,"Cost":135,"Date":"2/28/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":990,"Cost":692,"Date":"3/4/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":346,"Cost":191,"Date":"3/9/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":83,"Cost":50,"Date":"3/9/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":711,"Cost":528,"Date":"3/11/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":150,"Cost":96,"Date":"3/17/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":166,"Cost":153,"Date":"3/17/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":789,"Cost":442,"Date":"3/23/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":315,"Cost":159,"Date":"4/1/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":479,"Cost":309,"Date":"5/7/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":334,"Cost":182,"Date":"5/10/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":420,"Cost":273,"Date":"5/20/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":516,"Cost":432,"Date":"6/2/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":881,"Cost":834,"Date":"6/11/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":754,"Cost":520,"Date":"6/16/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":616,"Cost":347,"Date":"6/16/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":417,"Cost":303,"Date":"7/10/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":369,"Cost":215,"Date":"7/11/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":974,"Cost":524,"Date":"8/28/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":157,"Cost":103,"Date":"8/29/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":18,"Cost":14,"Date":"8/31/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":961,"Cost":824,"Date":"9/8/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":489,"Cost":462,"Date":"9/13/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":239,"Cost":170,"Date":"9/14/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":9,"Cost":7,"Date":"9/19/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":574,"Cost":299,"Date":"9/25/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":2,"Cost":1,"Date":"10/4/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":897,"Cost":511,"Date":"10/10/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":271,"Cost":178,"Date":"10/17/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":26,"Cost":16,"Date":"10/28/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":641,"Cost":497,"Date":"10/30/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":404,"Cost":343,"Date":"11/1/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":798,"Cost":654,"Date":"11/15/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":668,"Cost":615,"Date":"11/25/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":548,"Cost":426,"Date":"1/10/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":274,"Cost":184,"Date":"1/14/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":859,"Cost":575,"Date":"1/20/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":458,"Cost":378,"Date":"2/8/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":717,"Cost":681,"Date":"2/25/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":964,"Cost":897,"Date":"3/7/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":130,"Cost":118,"Date":"3/14/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":377,"Cost":203,"Date":"3/27/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":101,"Cost":79,"Date":"4/5/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":612,"Cost":391,"Date":"4/14/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":373,"Cost":249,"Date":"5/3/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":827,"Cost":584,"Date":"5/9/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":323,"Cost":233,"Date":"5/15/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":305,"Cost":155,"Date":"5/25/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":962,"Cost":819,"Date":"5/26/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":120,"Cost":100,"Date":"5/31/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":746,"Cost":601,"Date":"7/27/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":281,"Cost":240,"Date":"9/17/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":809,"Cost":698,"Date":"10/6/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":90,"Cost":47,"Date":"10/8/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":275,"Cost":194,"Date":"10/26/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":849,"Cost":752,"Date":"11/16/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":381,"Cost":193,"Date":"11/18/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"HM","Country":"USA","Sale":135,"Cost":72,"Date":"12/1/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":394,"Cost":329,"Date":"2/9/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":13,"Cost":11,"Date":"2/11/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":78,"Cost":41,"Date":"3/10/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":548,"Cost":360,"Date":"3/16/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":4,"Cost":3,"Date":"3/18/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":215,"Cost":108,"Date":"3/20/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":880,"Cost":553,"Date":"3/26/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":254,"Cost":150,"Date":"6/2/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":553,"Cost":329,"Date":"6/10/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":239,"Cost":134,"Date":"6/16/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":145,"Cost":116,"Date":"6/25/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":566,"Cost":385,"Date":"7/19/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":970,"Cost":624,"Date":"7/21/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":833,"Cost":633,"Date":"7/25/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":61,"Cost":30,"Date":"8/4/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":403,"Cost":273,"Date":"9/2/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":193,"Cost":117,"Date":"9/4/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":734,"Cost":424,"Date":"9/19/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":993,"Cost":816,"Date":"9/29/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":34,"Cost":20,"Date":"10/2/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":916,"Cost":467,"Date":"10/15/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":731,"Cost":684,"Date":"10/30/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":307,"Cost":166,"Date":"11/9/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":520,"Cost":493,"Date":"11/23/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":231,"Cost":220,"Date":"11/30/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":683,"Cost":396,"Date":"12/8/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":994,"Cost":601,"Date":"12/11/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":643,"Cost":592,"Date":"1/15/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":641,"Cost":500,"Date":"1/24/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":11,"Cost":10,"Date":"2/3/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":826,"Cost":471,"Date":"2/4/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":579,"Cost":309,"Date":"3/9/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":844,"Cost":492,"Date":"3/12/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":991,"Cost":671,"Date":"4/19/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":86,"Cost":65,"Date":"5/3/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":914,"Cost":773,"Date":"5/4/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":448,"Cost":346,"Date":"6/8/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":272,"Cost":175,"Date":"6/26/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":439,"Cost":281,"Date":"7/4/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":260,"Cost":171,"Date":"7/13/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":884,"Cost":487,"Date":"8/8/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":43,"Cost":33,"Date":"8/26/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":379,"Cost":246,"Date":"9/2/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":482,"Cost":364,"Date":"9/29/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":522,"Cost":475,"Date":"10/12/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":228,"Cost":191,"Date":"11/2/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":645,"Cost":327,"Date":"11/4/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":98,"Cost":69,"Date":"11/7/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":829,"Cost":680,"Date":"12/1/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":155,"Cost":132,"Date":"12/4/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":525,"Cost":319,"Date":"12/7/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":864,"Cost":609,"Date":"12/18/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":603,"Cost":352,"Date":"12/20/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":618,"Cost":341,"Date":"12/20/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":5,"Cost":4,"Date":"12/21/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":496,"Cost":372,"Date":"1/9/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":349,"Cost":296,"Date":"2/5/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":208,"Cost":151,"Date":"2/16/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":27,"Cost":20,"Date":"2/16/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":391,"Cost":220,"Date":"2/18/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":834,"Cost":440,"Date":"2/22/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":869,"Cost":621,"Date":"2/25/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":228,"Cost":150,"Date":"3/8/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":563,"Cost":477,"Date":"4/2/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":219,"Cost":198,"Date":"4/3/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":569,"Cost":535,"Date":"4/9/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":700,"Cost":579,"Date":"4/10/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":900,"Cost":811,"Date":"4/19/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":884,"Cost":726,"Date":"5/17/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":619,"Cost":387,"Date":"5/22/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":667,"Cost":574,"Date":"6/20/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":573,"Cost":360,"Date":"7/1/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":273,"Cost":152,"Date":"7/4/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":615,"Cost":448,"Date":"7/8/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":482,"Cost":307,"Date":"7/9/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":138,"Cost":128,"Date":"7/14/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":562,"Cost":453,"Date":"7/19/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":489,"Cost":333,"Date":"8/1/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":8,"Cost":4,"Date":"8/6/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":329,"Cost":235,"Date":"8/7/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":499,"Cost":292,"Date":"8/22/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":639,"Cost":510,"Date":"8/31/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":912,"Cost":549,"Date":"9/1/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":308,"Cost":161,"Date":"9/1/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":957,"Cost":612,"Date":"9/17/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":249,"Cost":149,"Date":"9/29/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":319,"Cost":194,"Date":"11/7/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":663,"Cost":559,"Date":"11/26/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":942,"Cost":705,"Date":"11/27/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":526,"Cost":425,"Date":"12/5/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":796,"Cost":502,"Date":"12/26/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":997,"Cost":899,"Date":"12/31/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":871,"Cost":546,"Date":"1/20/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":638,"Cost":589,"Date":"2/2/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":446,"Cost":354,"Date":"2/8/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":961,"Cost":745,"Date":"2/27/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":377,"Cost":196,"Date":"3/1/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":1000,"Cost":809,"Date":"3/1/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":338,"Cost":230,"Date":"3/19/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":478,"Cost":290,"Date":"3/28/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":782,"Cost":658,"Date":"5/21/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":990,"Cost":923,"Date":"7/21/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":459,"Cost":282,"Date":"8/5/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":312,"Cost":215,"Date":"8/12/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":526,"Cost":424,"Date":"8/21/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":506,"Cost":423,"Date":"8/23/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":678,"Cost":383,"Date":"9/3/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":38,"Cost":24,"Date":"9/5/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":438,"Cost":298,"Date":"10/6/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":617,"Cost":318,"Date":"10/19/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":680,"Cost":402,"Date":"11/15/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":48,"Cost":29,"Date":"12/8/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":153,"Cost":84,"Date":"1/8/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":735,"Cost":458,"Date":"1/14/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":339,"Cost":247,"Date":"1/19/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":356,"Cost":229,"Date":"1/28/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":720,"Cost":549,"Date":"1/31/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":866,"Cost":607,"Date":"3/27/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":258,"Cost":136,"Date":"4/20/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":274,"Cost":206,"Date":"4/24/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":276,"Cost":209,"Date":"4/28/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":835,"Cost":552,"Date":"5/15/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":678,"Cost":631,"Date":"5/16/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":475,"Cost":265,"Date":"5/18/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":729,"Cost":612,"Date":"6/2/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":192,"Cost":114,"Date":"6/3/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":344,"Cost":292,"Date":"6/5/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":40,"Cost":36,"Date":"6/7/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":190,"Cost":150,"Date":"6/14/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":907,"Cost":706,"Date":"6/20/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":604,"Cost":322,"Date":"6/24/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":460,"Cost":258,"Date":"7/4/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":492,"Cost":444,"Date":"7/9/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":445,"Cost":379,"Date":"7/12/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":674,"Cost":626,"Date":"8/14/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":230,"Cost":192,"Date":"8/16/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":394,"Cost":216,"Date":"8/23/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":509,"Cost":403,"Date":"9/2/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":306,"Cost":280,"Date":"9/3/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":960,"Cost":616,"Date":"9/16/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":315,"Cost":166,"Date":"10/4/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":736,"Cost":652,"Date":"11/1/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":376,"Cost":340,"Date":"11/2/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":293,"Cost":244,"Date":"12/17/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":838,"Cost":661,"Date":"2/10/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":654,"Cost":401,"Date":"2/28/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":386,"Cost":303,"Date":"3/4/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":610,"Cost":515,"Date":"3/9/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":546,"Cost":356,"Date":"3/9/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":287,"Cost":263,"Date":"3/11/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":914,"Cost":505,"Date":"3/17/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":836,"Cost":436,"Date":"3/17/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":524,"Cost":317,"Date":"3/23/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":242,"Cost":179,"Date":"4/1/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":370,"Cost":325,"Date":"5/7/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":951,"Cost":627,"Date":"5/10/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":983,"Cost":697,"Date":"5/20/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":320,"Cost":267,"Date":"6/2/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":420,"Cost":322,"Date":"6/11/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":708,"Cost":410,"Date":"6/16/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":386,"Cost":267,"Date":"6/16/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":769,"Cost":602,"Date":"7/10/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":312,"Cost":190,"Date":"7/11/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":269,"Cost":162,"Date":"8/28/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":404,"Cost":332,"Date":"8/29/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":31,"Cost":19,"Date":"8/31/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":739,"Cost":581,"Date":"9/8/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":933,"Cost":619,"Date":"9/13/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":37,"Cost":19,"Date":"9/14/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":974,"Cost":491,"Date":"9/19/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":841,"Cost":455,"Date":"9/25/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":673,"Cost":470,"Date":"10/4/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":677,"Cost":517,"Date":"10/10/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":835,"Cost":563,"Date":"10/17/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":429,"Cost":309,"Date":"10/28/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":652,"Cost":585,"Date":"10/30/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":824,"Cost":473,"Date":"11/1/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":753,"Cost":398,"Date":"11/15/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":3,"Cost":2,"Date":"11/25/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":2,"Cost":1,"Date":"1/10/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":671,"Cost":625,"Date":"1/14/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":706,"Cost":395,"Date":"1/20/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":776,"Cost":465,"Date":"2/8/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":70,"Cost":50,"Date":"2/25/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":135,"Cost":112,"Date":"3/7/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":512,"Cost":459,"Date":"3/14/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":466,"Cost":251,"Date":"3/27/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":602,"Cost":482,"Date":"4/5/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":695,"Cost":474,"Date":"4/14/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":43,"Cost":32,"Date":"5/3/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":318,"Cost":225,"Date":"5/9/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":826,"Cost":550,"Date":"5/15/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":241,"Cost":143,"Date":"5/25/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":228,"Cost":216,"Date":"5/26/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":352,"Cost":290,"Date":"5/31/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":858,"Cost":552,"Date":"7/27/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":970,"Cost":850,"Date":"9/17/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":556,"Cost":327,"Date":"10/6/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":141,"Cost":110,"Date":"10/8/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":646,"Cost":473,"Date":"10/26/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":946,"Cost":776,"Date":"11/16/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":168,"Cost":148,"Date":"11/18/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"ARKET","Country":"USA","Sale":441,"Cost":311,"Date":"12/1/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":759,"Cost":601,"Date":"2/9/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":698,"Cost":528,"Date":"2/11/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":181,"Cost":121,"Date":"3/10/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":796,"Cost":712,"Date":"3/16/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":278,"Cost":235,"Date":"3/18/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":969,"Cost":914,"Date":"3/20/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":92,"Cost":64,"Date":"3/26/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":621,"Cost":539,"Date":"6/2/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":989,"Cost":545,"Date":"6/10/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":462,"Cost":425,"Date":"6/16/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":122,"Cost":97,"Date":"6/25/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":980,"Cost":615,"Date":"7/19/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":70,"Cost":55,"Date":"7/21/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":628,"Cost":498,"Date":"7/25/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":461,"Cost":423,"Date":"8/4/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":247,"Cost":136,"Date":"9/2/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":243,"Cost":172,"Date":"9/4/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":713,"Cost":450,"Date":"9/19/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":274,"Cost":140,"Date":"9/29/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":658,"Cost":529,"Date":"10/2/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":417,"Cost":308,"Date":"10/15/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":807,"Cost":688,"Date":"10/30/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":658,"Cost":499,"Date":"11/9/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":817,"Cost":424,"Date":"11/23/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":522,"Cost":487,"Date":"11/30/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":843,"Cost":640,"Date":"12/8/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":8,"Cost":6,"Date":"12/11/2018"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":504,"Cost":474,"Date":"1/15/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":339,"Cost":236,"Date":"1/24/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":211,"Cost":172,"Date":"2/3/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":876,"Cost":681,"Date":"2/4/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":420,"Cost":372,"Date":"3/9/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":930,"Cost":577,"Date":"3/12/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":396,"Cost":365,"Date":"4/19/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":691,"Cost":603,"Date":"5/3/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":756,"Cost":550,"Date":"5/4/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":297,"Cost":149,"Date":"6/8/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":767,"Cost":500,"Date":"6/26/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":426,"Cost":371,"Date":"7/4/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":754,"Cost":529,"Date":"7/13/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":945,"Cost":594,"Date":"8/8/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":348,"Cost":307,"Date":"8/26/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":645,"Cost":523,"Date":"9/2/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":564,"Cost":478,"Date":"9/29/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":432,"Cost":242,"Date":"10/12/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":861,"Cost":679,"Date":"11/2/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":291,"Cost":151,"Date":"11/4/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":613,"Cost":568,"Date":"11/7/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":717,"Cost":533,"Date":"12/1/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":818,"Cost":757,"Date":"12/4/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":411,"Cost":357,"Date":"12/7/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":998,"Cost":557,"Date":"12/18/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":229,"Cost":185,"Date":"12/20/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":353,"Cost":228,"Date":"12/20/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":975,"Cost":506,"Date":"12/21/2019"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":462,"Cost":366,"Date":"1/9/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":178,"Cost":130,"Date":"2/5/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":524,"Cost":399,"Date":"2/16/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":653,"Cost":575,"Date":"2/16/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":781,"Cost":708,"Date":"2/18/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":92,"Cost":85,"Date":"2/22/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":64,"Cost":51,"Date":"2/25/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":347,"Cost":304,"Date":"3/8/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":998,"Cost":808,"Date":"4/2/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":509,"Cost":328,"Date":"4/3/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":503,"Cost":465,"Date":"4/9/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":413,"Cost":368,"Date":"4/10/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":171,"Cost":150,"Date":"4/19/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":205,"Cost":159,"Date":"5/17/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":172,"Cost":107,"Date":"5/22/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":124,"Cost":100,"Date":"6/20/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":393,"Cost":248,"Date":"7/1/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":134,"Cost":81,"Date":"7/4/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":474,"Cost":416,"Date":"7/8/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":944,"Cost":765,"Date":"7/9/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":543,"Cost":320,"Date":"7/14/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":150,"Cost":96,"Date":"7/19/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":404,"Cost":350,"Date":"8/1/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":410,"Cost":390,"Date":"8/6/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":996,"Cost":667,"Date":"8/7/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":416,"Cost":218,"Date":"8/22/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":896,"Cost":558,"Date":"8/31/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":48,"Cost":32,"Date":"9/1/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":456,"Cost":332,"Date":"9/1/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":64,"Cost":53,"Date":"9/17/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":802,"Cost":428,"Date":"9/29/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":232,"Cost":162,"Date":"11/7/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":330,"Cost":208,"Date":"11/26/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":111,"Cost":85,"Date":"11/27/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":356,"Cost":234,"Date":"12/5/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":310,"Cost":183,"Date":"12/26/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":450,"Cost":303,"Date":"12/31/2020"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":171,"Cost":127,"Date":"1/20/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":784,"Cost":680,"Date":"2/2/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":616,"Cost":405,"Date":"2/8/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":787,"Cost":538,"Date":"2/27/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":473,"Cost":420,"Date":"3/1/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":87,"Cost":78,"Date":"3/1/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":435,"Cost":403,"Date":"3/19/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":565,"Cost":300,"Date":"3/28/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":590,"Cost":552,"Date":"5/21/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":694,"Cost":496,"Date":"7/21/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":859,"Cost":794,"Date":"8/5/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":803,"Cost":458,"Date":"8/12/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":425,"Cost":312,"Date":"8/21/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":954,"Cost":580,"Date":"8/23/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":15,"Cost":10,"Date":"9/3/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":987,"Cost":724,"Date":"9/5/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":319,"Cost":279,"Date":"10/6/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":337,"Cost":261,"Date":"10/19/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":145,"Cost":94,"Date":"11/15/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":631,"Cost":589,"Date":"12/8/2021"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":262,"Cost":171,"Date":"1/8/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":401,"Cost":360,"Date":"1/14/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":5,"Cost":3,"Date":"1/19/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":391,"Cost":344,"Date":"1/28/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":509,"Cost":480,"Date":"1/31/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":88,"Cost":73,"Date":"3/27/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":15,"Cost":8,"Date":"4/20/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":200,"Cost":132,"Date":"4/24/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":358,"Cost":206,"Date":"4/28/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":947,"Cost":590,"Date":"5/15/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":416,"Cost":372,"Date":"5/16/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":806,"Cost":728,"Date":"5/18/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":746,"Cost":665,"Date":"6/2/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":858,"Cost":814,"Date":"6/3/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":949,"Cost":848,"Date":"6/5/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":686,"Cost":579,"Date":"6/7/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":98,"Cost":73,"Date":"6/14/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":631,"Cost":383,"Date":"6/20/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":655,"Cost":578,"Date":"6/24/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":104,"Cost":90,"Date":"7/4/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":884,"Cost":651,"Date":"7/9/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":505,"Cost":418,"Date":"7/12/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":425,"Cost":259,"Date":"8/14/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":333,"Cost":308,"Date":"8/16/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":775,"Cost":494,"Date":"8/23/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":772,"Cost":671,"Date":"9/2/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":439,"Cost":330,"Date":"9/3/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":644,"Cost":608,"Date":"9/16/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":499,"Cost":334,"Date":"10/4/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":64,"Cost":36,"Date":"11/1/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":355,"Cost":334,"Date":"11/2/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":432,"Cost":306,"Date":"12/17/2022"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":531,"Cost":404,"Date":"2/10/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":490,"Cost":462,"Date":"2/28/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":3,"Cost":2,"Date":"3/4/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":571,"Cost":433,"Date":"3/9/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":244,"Cost":185,"Date":"3/9/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":774,"Cost":464,"Date":"3/11/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":569,"Cost":440,"Date":"3/17/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":487,"Cost":329,"Date":"3/17/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":719,"Cost":426,"Date":"3/23/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":440,"Cost":332,"Date":"4/1/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":456,"Cost":319,"Date":"5/7/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":564,"Cost":510,"Date":"5/10/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":653,"Cost":403,"Date":"5/20/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":992,"Cost":636,"Date":"6/2/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":953,"Cost":819,"Date":"6/11/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":608,"Cost":349,"Date":"6/16/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":259,"Cost":223,"Date":"6/16/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":463,"Cost":254,"Date":"7/10/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":340,"Cost":295,"Date":"7/11/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":262,"Cost":248,"Date":"8/28/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":571,"Cost":428,"Date":"8/29/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":354,"Cost":334,"Date":"8/31/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":736,"Cost":550,"Date":"9/8/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":599,"Cost":501,"Date":"9/13/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":654,"Cost":530,"Date":"9/14/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":816,"Cost":612,"Date":"9/19/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":557,"Cost":352,"Date":"9/25/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":417,"Cost":339,"Date":"10/4/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":135,"Cost":119,"Date":"10/10/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":691,"Cost":543,"Date":"10/17/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":34,"Cost":27,"Date":"10/28/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":268,"Cost":251,"Date":"10/30/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":213,"Cost":174,"Date":"11/1/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":20,"Cost":11,"Date":"11/15/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":632,"Cost":469,"Date":"11/25/2023"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":270,"Cost":201,"Date":"1/10/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":172,"Cost":153,"Date":"1/14/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":256,"Cost":163,"Date":"1/20/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":799,"Cost":655,"Date":"2/8/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":58,"Cost":39,"Date":"2/25/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":995,"Cost":507,"Date":"3/7/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":878,"Cost":680,"Date":"3/14/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":200,"Cost":115,"Date":"3/27/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":719,"Cost":373,"Date":"4/5/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":563,"Cost":469,"Date":"4/14/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":632,"Cost":569,"Date":"5/3/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":538,"Cost":409,"Date":"5/9/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":504,"Cost":327,"Date":"5/15/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":450,"Cost":351,"Date":"5/25/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":542,"Cost":394,"Date":"5/26/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":803,"Cost":640,"Date":"5/31/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":934,"Cost":534,"Date":"7/27/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":687,"Cost":475,"Date":"9/17/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":452,"Cost":357,"Date":"10/6/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":404,"Cost":241,"Date":"10/8/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":135,"Cost":83,"Date":"10/26/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":757,"Cost":511,"Date":"11/16/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":818,"Cost":724,"Date":"11/18/2024"},{"Store":"Mall of America, Bloomington, MN","Brand":"Nova","Country":"USA","Sale":242,"Cost":176,"Date":"12/1/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":195,"Cost":163,"Date":"2/9/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":86,"Cost":44,"Date":"2/11/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":568,"Cost":342,"Date":"3/10/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":188,"Cost":168,"Date":"3/16/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":57,"Cost":34,"Date":"3/18/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":376,"Cost":227,"Date":"3/20/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":15,"Cost":8,"Date":"3/26/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":245,"Cost":211,"Date":"6/2/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":81,"Cost":46,"Date":"6/10/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":239,"Cost":211,"Date":"6/16/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":190,"Cost":108,"Date":"6/25/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":840,"Cost":558,"Date":"7/19/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":576,"Cost":402,"Date":"7/21/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":334,"Cost":303,"Date":"7/25/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":35,"Cost":28,"Date":"8/4/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":39,"Cost":37,"Date":"9/2/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":369,"Cost":349,"Date":"9/4/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":1,"Cost":1,"Date":"9/19/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":427,"Cost":287,"Date":"9/29/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":426,"Cost":214,"Date":"10/2/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":581,"Cost":383,"Date":"10/15/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":527,"Cost":325,"Date":"10/30/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":132,"Cost":92,"Date":"11/9/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":813,"Cost":550,"Date":"11/23/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":624,"Cost":400,"Date":"11/30/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":34,"Cost":27,"Date":"12/8/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":380,"Cost":269,"Date":"12/11/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":673,"Cost":635,"Date":"1/15/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":641,"Cost":405,"Date":"1/24/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":220,"Cost":139,"Date":"2/3/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":777,"Cost":564,"Date":"2/4/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":893,"Cost":587,"Date":"3/9/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":504,"Cost":420,"Date":"3/12/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":241,"Cost":122,"Date":"4/19/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":924,"Cost":791,"Date":"5/3/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":769,"Cost":402,"Date":"5/4/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":140,"Cost":118,"Date":"6/8/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":106,"Cost":94,"Date":"6/26/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":468,"Cost":372,"Date":"7/4/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":812,"Cost":743,"Date":"7/13/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":941,"Cost":623,"Date":"8/8/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":889,"Cost":604,"Date":"8/26/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":662,"Cost":592,"Date":"9/2/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":533,"Cost":291,"Date":"9/29/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":560,"Cost":506,"Date":"10/12/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":701,"Cost":473,"Date":"11/2/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":136,"Cost":107,"Date":"11/4/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":710,"Cost":638,"Date":"11/7/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":467,"Cost":342,"Date":"12/1/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":808,"Cost":529,"Date":"12/4/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":641,"Cost":372,"Date":"12/7/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":656,"Cost":484,"Date":"12/18/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":177,"Cost":107,"Date":"12/20/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":737,"Cost":467,"Date":"12/20/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":832,"Cost":613,"Date":"12/21/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":751,"Cost":461,"Date":"1/9/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":408,"Cost":310,"Date":"2/5/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":155,"Cost":97,"Date":"2/16/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":104,"Cost":70,"Date":"2/16/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":775,"Cost":671,"Date":"2/18/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":424,"Cost":280,"Date":"2/22/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":379,"Cost":256,"Date":"2/25/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":458,"Cost":256,"Date":"3/8/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":311,"Cost":293,"Date":"4/2/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":210,"Cost":144,"Date":"4/3/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":697,"Cost":640,"Date":"4/9/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":363,"Cost":287,"Date":"4/10/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":883,"Cost":647,"Date":"4/19/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":3,"Cost":1,"Date":"5/17/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":921,"Cost":846,"Date":"5/22/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":459,"Cost":301,"Date":"6/20/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":881,"Cost":457,"Date":"7/1/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":909,"Cost":638,"Date":"7/4/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":696,"Cost":428,"Date":"7/8/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":374,"Cost":339,"Date":"7/9/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":397,"Cost":321,"Date":"7/14/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":791,"Cost":603,"Date":"7/19/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":87,"Cost":62,"Date":"8/1/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":289,"Cost":184,"Date":"8/6/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":871,"Cost":500,"Date":"8/7/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":584,"Cost":508,"Date":"8/22/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":223,"Cost":180,"Date":"8/31/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":800,"Cost":420,"Date":"9/1/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":836,"Cost":456,"Date":"9/1/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":607,"Cost":392,"Date":"9/17/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":62,"Cost":50,"Date":"9/29/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":63,"Cost":35,"Date":"11/7/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":496,"Cost":432,"Date":"11/26/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":106,"Cost":77,"Date":"11/27/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":101,"Cost":91,"Date":"12/5/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":567,"Cost":313,"Date":"12/26/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":615,"Cost":379,"Date":"12/31/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":101,"Cost":96,"Date":"1/20/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":434,"Cost":379,"Date":"2/2/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":62,"Cost":38,"Date":"2/8/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":816,"Cost":730,"Date":"2/27/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":879,"Cost":547,"Date":"3/1/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":4,"Cost":4,"Date":"3/1/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":633,"Cost":403,"Date":"3/19/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":409,"Cost":383,"Date":"3/28/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":294,"Cost":227,"Date":"5/21/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":332,"Cost":286,"Date":"7/21/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":509,"Cost":286,"Date":"8/5/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":774,"Cost":433,"Date":"8/12/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":905,"Cost":561,"Date":"8/21/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":688,"Cost":581,"Date":"8/23/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":644,"Cost":526,"Date":"9/3/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":309,"Cost":260,"Date":"9/5/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":626,"Cost":590,"Date":"10/6/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":204,"Cost":185,"Date":"10/19/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":391,"Cost":359,"Date":"11/15/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":76,"Cost":71,"Date":"12/8/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":271,"Cost":220,"Date":"1/8/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":52,"Cost":33,"Date":"1/14/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":38,"Cost":34,"Date":"1/19/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":423,"Cost":294,"Date":"1/28/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":2,"Cost":2,"Date":"1/31/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":692,"Cost":550,"Date":"3/27/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":619,"Cost":584,"Date":"4/20/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":613,"Cost":506,"Date":"4/24/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":233,"Cost":205,"Date":"4/28/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":958,"Cost":870,"Date":"5/15/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":853,"Cost":752,"Date":"5/16/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":988,"Cost":496,"Date":"5/18/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":623,"Cost":576,"Date":"6/2/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":637,"Cost":350,"Date":"6/3/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":59,"Cost":32,"Date":"6/5/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":870,"Cost":594,"Date":"6/7/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":131,"Cost":110,"Date":"6/14/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":420,"Cost":270,"Date":"6/20/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":777,"Cost":486,"Date":"6/24/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":52,"Cost":46,"Date":"7/4/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":660,"Cost":541,"Date":"7/9/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":186,"Cost":163,"Date":"7/12/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":506,"Cost":303,"Date":"8/14/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":536,"Cost":334,"Date":"8/16/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":320,"Cost":204,"Date":"8/23/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":602,"Cost":339,"Date":"9/2/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":800,"Cost":467,"Date":"9/3/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":167,"Cost":96,"Date":"9/16/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":630,"Cost":521,"Date":"10/4/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":437,"Cost":253,"Date":"11/1/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":231,"Cost":178,"Date":"11/2/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":906,"Cost":737,"Date":"12/17/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":988,"Cost":561,"Date":"2/10/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":298,"Cost":159,"Date":"2/28/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":757,"Cost":441,"Date":"3/4/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":780,"Cost":444,"Date":"3/9/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":91,"Cost":51,"Date":"3/9/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":500,"Cost":347,"Date":"3/11/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":982,"Cost":560,"Date":"3/17/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":451,"Cost":277,"Date":"3/17/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":755,"Cost":661,"Date":"3/23/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":928,"Cost":472,"Date":"4/1/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":913,"Cost":818,"Date":"5/7/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":565,"Cost":402,"Date":"5/10/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":599,"Cost":312,"Date":"5/20/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":446,"Cost":367,"Date":"6/2/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":745,"Cost":464,"Date":"6/11/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":3,"Cost":2,"Date":"6/16/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":97,"Cost":86,"Date":"6/16/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":267,"Cost":168,"Date":"7/10/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":468,"Cost":323,"Date":"7/11/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":597,"Cost":529,"Date":"8/28/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":440,"Cost":370,"Date":"8/29/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":170,"Cost":137,"Date":"8/31/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":996,"Cost":651,"Date":"9/8/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":242,"Cost":131,"Date":"9/13/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":400,"Cost":325,"Date":"9/14/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":135,"Cost":72,"Date":"9/19/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":617,"Cost":371,"Date":"9/25/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":413,"Cost":272,"Date":"10/4/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":138,"Cost":93,"Date":"10/10/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":749,"Cost":555,"Date":"10/17/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":982,"Cost":877,"Date":"10/28/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":572,"Cost":536,"Date":"10/30/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":806,"Cost":712,"Date":"11/1/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":815,"Cost":691,"Date":"11/15/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":140,"Cost":101,"Date":"11/25/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":159,"Cost":104,"Date":"1/10/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":305,"Cost":281,"Date":"1/14/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":255,"Cost":130,"Date":"1/20/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":295,"Cost":265,"Date":"2/8/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":210,"Cost":153,"Date":"2/25/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":628,"Cost":387,"Date":"3/7/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":360,"Cost":269,"Date":"3/14/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":116,"Cost":80,"Date":"3/27/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":616,"Cost":558,"Date":"4/5/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":413,"Cost":391,"Date":"4/14/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":139,"Cost":91,"Date":"5/3/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":704,"Cost":491,"Date":"5/9/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":5,"Cost":3,"Date":"5/15/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":158,"Cost":102,"Date":"5/25/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":530,"Cost":477,"Date":"5/26/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":44,"Cost":39,"Date":"5/31/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":844,"Cost":450,"Date":"7/27/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":489,"Cost":426,"Date":"9/17/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":380,"Cost":267,"Date":"10/6/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":408,"Cost":205,"Date":"10/8/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":204,"Cost":156,"Date":"10/26/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":766,"Cost":429,"Date":"11/16/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":885,"Cost":798,"Date":"11/18/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"HM","Country":"USA","Sale":625,"Cost":512,"Date":"12/1/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":520,"Cost":323,"Date":"2/9/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":128,"Cost":91,"Date":"2/11/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":488,"Cost":360,"Date":"3/10/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":758,"Cost":443,"Date":"3/16/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":70,"Cost":45,"Date":"3/18/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":369,"Cost":221,"Date":"3/20/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":284,"Cost":208,"Date":"3/26/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":815,"Cost":485,"Date":"6/2/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":903,"Cost":711,"Date":"6/10/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":266,"Cost":145,"Date":"6/16/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":456,"Cost":235,"Date":"6/25/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":820,"Cost":437,"Date":"7/19/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":416,"Cost":314,"Date":"7/21/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":70,"Cost":61,"Date":"7/25/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":286,"Cost":146,"Date":"8/4/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":385,"Cost":253,"Date":"9/2/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":1000,"Cost":690,"Date":"9/4/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":972,"Cost":534,"Date":"9/19/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":23,"Cost":13,"Date":"9/29/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":598,"Cost":462,"Date":"10/2/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":213,"Cost":183,"Date":"10/15/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":14,"Cost":10,"Date":"10/30/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":933,"Cost":777,"Date":"11/9/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":983,"Cost":510,"Date":"11/23/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":11,"Cost":9,"Date":"11/30/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":38,"Cost":20,"Date":"12/8/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":453,"Cost":269,"Date":"12/11/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":841,"Cost":489,"Date":"1/15/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":80,"Cost":44,"Date":"1/24/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":189,"Cost":101,"Date":"2/3/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":394,"Cost":320,"Date":"2/4/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":599,"Cost":564,"Date":"3/9/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":367,"Cost":232,"Date":"3/12/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":996,"Cost":781,"Date":"4/19/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":339,"Cost":199,"Date":"5/3/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":788,"Cost":518,"Date":"5/4/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":548,"Cost":505,"Date":"6/8/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":603,"Cost":373,"Date":"6/26/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":770,"Cost":456,"Date":"7/4/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":512,"Cost":284,"Date":"7/13/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":195,"Cost":165,"Date":"8/8/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":825,"Cost":417,"Date":"8/26/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":78,"Cost":40,"Date":"9/2/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":435,"Cost":328,"Date":"9/29/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":48,"Cost":32,"Date":"10/12/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":285,"Cost":227,"Date":"11/2/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":826,"Cost":776,"Date":"11/4/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":548,"Cost":438,"Date":"11/7/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":569,"Cost":528,"Date":"12/1/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":962,"Cost":724,"Date":"12/4/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":38,"Cost":19,"Date":"12/7/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":570,"Cost":377,"Date":"12/18/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":677,"Cost":542,"Date":"12/20/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":267,"Cost":196,"Date":"12/20/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":990,"Cost":899,"Date":"12/21/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":656,"Cost":332,"Date":"1/9/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":859,"Cost":682,"Date":"2/5/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":825,"Cost":545,"Date":"2/16/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":224,"Cost":165,"Date":"2/16/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":748,"Cost":648,"Date":"2/18/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":512,"Cost":412,"Date":"2/22/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":27,"Cost":14,"Date":"2/25/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":810,"Cost":686,"Date":"3/8/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":85,"Cost":56,"Date":"4/2/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":426,"Cost":335,"Date":"4/3/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":354,"Cost":203,"Date":"4/9/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":301,"Cost":249,"Date":"4/10/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":749,"Cost":683,"Date":"4/19/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":493,"Cost":319,"Date":"5/17/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":14,"Cost":13,"Date":"5/22/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":641,"Cost":581,"Date":"6/20/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":617,"Cost":526,"Date":"7/1/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":513,"Cost":436,"Date":"7/4/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":87,"Cost":71,"Date":"7/8/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":664,"Cost":510,"Date":"7/9/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":643,"Cost":394,"Date":"7/14/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":244,"Cost":136,"Date":"7/19/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":46,"Cost":28,"Date":"8/1/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":797,"Cost":524,"Date":"8/6/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":369,"Cost":316,"Date":"8/7/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":956,"Cost":530,"Date":"8/22/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":135,"Cost":73,"Date":"8/31/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":484,"Cost":415,"Date":"9/1/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":935,"Cost":471,"Date":"9/1/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":201,"Cost":155,"Date":"9/17/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":524,"Cost":492,"Date":"9/29/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":561,"Cost":280,"Date":"11/7/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":830,"Cost":436,"Date":"11/26/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":372,"Cost":207,"Date":"11/27/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":980,"Cost":762,"Date":"12/5/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":877,"Cost":769,"Date":"12/26/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":462,"Cost":242,"Date":"12/31/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":568,"Cost":331,"Date":"1/20/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":588,"Cost":424,"Date":"2/2/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":874,"Cost":700,"Date":"2/8/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":943,"Cost":780,"Date":"2/27/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":786,"Cost":486,"Date":"3/1/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":376,"Cost":336,"Date":"3/1/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":618,"Cost":384,"Date":"3/19/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":205,"Cost":146,"Date":"3/28/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":705,"Cost":373,"Date":"5/21/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":901,"Cost":765,"Date":"7/21/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":70,"Cost":49,"Date":"8/5/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":479,"Cost":300,"Date":"8/12/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":406,"Cost":303,"Date":"8/21/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":773,"Cost":635,"Date":"8/23/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":610,"Cost":475,"Date":"9/3/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":71,"Cost":54,"Date":"9/5/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":733,"Cost":689,"Date":"10/6/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":375,"Cost":326,"Date":"10/19/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":796,"Cost":406,"Date":"11/15/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":429,"Cost":294,"Date":"12/8/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":465,"Cost":255,"Date":"1/8/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":13,"Cost":12,"Date":"1/14/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":74,"Cost":58,"Date":"1/19/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":312,"Cost":191,"Date":"1/28/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":971,"Cost":897,"Date":"1/31/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":194,"Cost":141,"Date":"3/27/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":335,"Cost":280,"Date":"4/20/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":689,"Cost":476,"Date":"4/24/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":210,"Cost":174,"Date":"4/28/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":262,"Cost":194,"Date":"5/15/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":90,"Cost":78,"Date":"5/16/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":841,"Cost":470,"Date":"5/18/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":369,"Cost":215,"Date":"6/2/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":986,"Cost":833,"Date":"6/3/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":156,"Cost":104,"Date":"6/5/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":648,"Cost":473,"Date":"6/7/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":731,"Cost":585,"Date":"6/14/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":768,"Cost":532,"Date":"6/20/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":182,"Cost":167,"Date":"6/24/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":503,"Cost":415,"Date":"7/4/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":70,"Cost":61,"Date":"7/9/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":152,"Cost":122,"Date":"7/12/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":50,"Cost":38,"Date":"8/14/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":911,"Cost":742,"Date":"8/16/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":747,"Cost":515,"Date":"8/23/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":14,"Cost":10,"Date":"9/2/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":801,"Cost":468,"Date":"9/3/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":932,"Cost":688,"Date":"9/16/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":479,"Cost":409,"Date":"10/4/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":113,"Cost":80,"Date":"11/1/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":291,"Cost":240,"Date":"11/2/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":162,"Cost":124,"Date":"12/17/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":961,"Cost":873,"Date":"2/10/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":244,"Cost":172,"Date":"2/28/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":212,"Cost":169,"Date":"3/4/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":836,"Cost":555,"Date":"3/9/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":767,"Cost":551,"Date":"3/9/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":627,"Cost":559,"Date":"3/11/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":388,"Cost":320,"Date":"3/17/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":492,"Cost":431,"Date":"3/17/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":348,"Cost":197,"Date":"3/23/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":580,"Cost":461,"Date":"4/1/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":397,"Cost":281,"Date":"5/7/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":847,"Cost":633,"Date":"5/10/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":104,"Cost":96,"Date":"5/20/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":273,"Cost":189,"Date":"6/2/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":48,"Cost":46,"Date":"6/11/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":101,"Cost":85,"Date":"6/16/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":294,"Cost":253,"Date":"6/16/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":919,"Cost":539,"Date":"7/10/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":622,"Cost":441,"Date":"7/11/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":4,"Cost":3,"Date":"8/28/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":652,"Cost":469,"Date":"8/29/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":811,"Cost":575,"Date":"8/31/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":258,"Cost":233,"Date":"9/8/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":46,"Cost":40,"Date":"9/13/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":855,"Cost":654,"Date":"9/14/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":663,"Cost":623,"Date":"9/19/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":608,"Cost":437,"Date":"9/25/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":980,"Cost":737,"Date":"10/4/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":639,"Cost":354,"Date":"10/10/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":933,"Cost":669,"Date":"10/17/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":713,"Cost":506,"Date":"10/28/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":639,"Cost":385,"Date":"10/30/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":370,"Cost":247,"Date":"11/1/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":743,"Cost":625,"Date":"11/15/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":931,"Cost":796,"Date":"11/25/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":227,"Cost":169,"Date":"1/10/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":526,"Cost":450,"Date":"1/14/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":502,"Cost":277,"Date":"1/20/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":175,"Cost":88,"Date":"2/8/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":769,"Cost":509,"Date":"2/25/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":957,"Cost":876,"Date":"3/7/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":922,"Cost":765,"Date":"3/14/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":533,"Cost":454,"Date":"3/27/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":815,"Cost":552,"Date":"4/5/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":897,"Cost":568,"Date":"4/14/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":342,"Cost":230,"Date":"5/3/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":975,"Cost":667,"Date":"5/9/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":765,"Cost":631,"Date":"5/15/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":58,"Cost":42,"Date":"5/25/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":766,"Cost":450,"Date":"5/26/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":31,"Cost":17,"Date":"5/31/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":177,"Cost":90,"Date":"7/27/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":609,"Cost":566,"Date":"9/17/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":382,"Cost":268,"Date":"10/6/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":426,"Cost":375,"Date":"10/8/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":795,"Cost":627,"Date":"10/26/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":389,"Cost":289,"Date":"11/16/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":820,"Cost":467,"Date":"11/18/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":306,"Cost":236,"Date":"12/1/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":83,"Cost":47,"Date":"2/9/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":33,"Cost":18,"Date":"2/11/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":211,"Cost":135,"Date":"3/10/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":219,"Cost":192,"Date":"3/16/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":940,"Cost":869,"Date":"3/18/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":211,"Cost":183,"Date":"3/20/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":180,"Cost":148,"Date":"3/26/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":879,"Cost":718,"Date":"6/2/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":454,"Cost":297,"Date":"6/10/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":732,"Cost":495,"Date":"6/16/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":594,"Cost":369,"Date":"6/25/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":167,"Cost":85,"Date":"7/19/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":843,"Cost":624,"Date":"7/21/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":971,"Cost":907,"Date":"7/25/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":836,"Cost":647,"Date":"8/4/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":204,"Cost":173,"Date":"9/2/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":714,"Cost":662,"Date":"9/4/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":594,"Cost":380,"Date":"9/19/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":831,"Cost":707,"Date":"9/29/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":317,"Cost":224,"Date":"10/2/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":513,"Cost":354,"Date":"10/15/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":984,"Cost":713,"Date":"10/30/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":569,"Cost":420,"Date":"11/9/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":517,"Cost":411,"Date":"11/23/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":537,"Cost":363,"Date":"11/30/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":343,"Cost":184,"Date":"12/8/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":60,"Cost":53,"Date":"12/11/2018"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":249,"Cost":129,"Date":"1/15/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":21,"Cost":20,"Date":"1/24/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":117,"Cost":86,"Date":"2/3/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":486,"Cost":442,"Date":"2/4/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":165,"Cost":157,"Date":"3/9/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":614,"Cost":333,"Date":"3/12/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":387,"Cost":273,"Date":"4/19/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":492,"Cost":392,"Date":"5/3/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":399,"Cost":333,"Date":"5/4/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":913,"Cost":595,"Date":"6/8/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":957,"Cost":816,"Date":"6/26/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":993,"Cost":541,"Date":"7/4/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":951,"Cost":687,"Date":"7/13/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":458,"Cost":251,"Date":"8/8/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":673,"Cost":603,"Date":"8/26/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":955,"Cost":820,"Date":"9/2/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":114,"Cost":99,"Date":"9/29/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":446,"Cost":279,"Date":"10/12/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":819,"Cost":472,"Date":"11/2/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":967,"Cost":610,"Date":"11/4/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":166,"Cost":129,"Date":"11/7/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":507,"Cost":342,"Date":"12/1/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":456,"Cost":426,"Date":"12/4/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":266,"Cost":204,"Date":"12/7/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":480,"Cost":447,"Date":"12/18/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":382,"Cost":214,"Date":"12/20/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":140,"Cost":123,"Date":"12/20/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":957,"Cost":563,"Date":"12/21/2019"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":789,"Cost":629,"Date":"1/9/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":964,"Cost":803,"Date":"2/5/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":637,"Cost":324,"Date":"2/16/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":684,"Cost":405,"Date":"2/16/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":790,"Cost":672,"Date":"2/18/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":173,"Cost":118,"Date":"2/22/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":248,"Cost":211,"Date":"2/25/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":337,"Cost":243,"Date":"3/8/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":465,"Cost":399,"Date":"4/2/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":13,"Cost":6,"Date":"4/3/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":483,"Cost":441,"Date":"4/9/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":765,"Cost":626,"Date":"4/10/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":746,"Cost":377,"Date":"4/19/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":55,"Cost":53,"Date":"5/17/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":535,"Cost":276,"Date":"5/22/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":293,"Cost":248,"Date":"6/20/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":898,"Cost":567,"Date":"7/1/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":14,"Cost":10,"Date":"7/4/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":601,"Cost":418,"Date":"7/8/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":164,"Cost":140,"Date":"7/9/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":674,"Cost":540,"Date":"7/14/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":818,"Cost":661,"Date":"7/19/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":236,"Cost":164,"Date":"8/1/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":361,"Cost":328,"Date":"8/6/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":329,"Cost":287,"Date":"8/7/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":283,"Cost":217,"Date":"8/22/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":75,"Cost":63,"Date":"8/31/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":557,"Cost":520,"Date":"9/1/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":605,"Cost":555,"Date":"9/1/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":915,"Cost":565,"Date":"9/17/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":490,"Cost":399,"Date":"9/29/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":952,"Cost":498,"Date":"11/7/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":726,"Cost":555,"Date":"11/26/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":194,"Cost":138,"Date":"11/27/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":53,"Cost":31,"Date":"12/5/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":759,"Cost":623,"Date":"12/26/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":963,"Cost":842,"Date":"12/31/2020"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":939,"Cost":873,"Date":"1/20/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":503,"Cost":263,"Date":"2/2/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":858,"Cost":758,"Date":"2/8/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":926,"Cost":501,"Date":"2/27/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":120,"Cost":63,"Date":"3/1/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":724,"Cost":682,"Date":"3/1/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":344,"Cost":241,"Date":"3/19/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":516,"Cost":352,"Date":"3/28/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":623,"Cost":436,"Date":"5/21/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":515,"Cost":419,"Date":"7/21/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":687,"Cost":618,"Date":"8/5/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":9,"Cost":9,"Date":"8/12/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":8,"Cost":7,"Date":"8/21/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":758,"Cost":387,"Date":"8/23/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":118,"Cost":69,"Date":"9/3/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":650,"Cost":337,"Date":"9/5/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":402,"Cost":376,"Date":"10/6/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":660,"Cost":492,"Date":"10/19/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":260,"Cost":163,"Date":"11/15/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":988,"Cost":601,"Date":"12/8/2021"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":760,"Cost":495,"Date":"1/8/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":721,"Cost":680,"Date":"1/14/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":63,"Cost":60,"Date":"1/19/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":710,"Cost":645,"Date":"1/28/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":716,"Cost":601,"Date":"1/31/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":669,"Cost":539,"Date":"3/27/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":439,"Cost":259,"Date":"4/20/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":109,"Cost":69,"Date":"4/24/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":161,"Cost":127,"Date":"4/28/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":58,"Cost":43,"Date":"5/15/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":515,"Cost":424,"Date":"5/16/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":881,"Cost":825,"Date":"5/18/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":891,"Cost":700,"Date":"6/2/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":632,"Cost":518,"Date":"6/3/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":191,"Cost":160,"Date":"6/5/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":199,"Cost":164,"Date":"6/7/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":711,"Cost":622,"Date":"6/14/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":825,"Cost":686,"Date":"6/20/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":129,"Cost":73,"Date":"6/24/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":225,"Cost":135,"Date":"7/4/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":328,"Cost":306,"Date":"7/9/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":393,"Cost":290,"Date":"7/12/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":896,"Cost":752,"Date":"8/14/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":20,"Cost":11,"Date":"8/16/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":470,"Cost":365,"Date":"8/23/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":359,"Cost":226,"Date":"9/2/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":391,"Cost":236,"Date":"9/3/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":341,"Cost":235,"Date":"9/16/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":778,"Cost":556,"Date":"10/4/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":653,"Cost":362,"Date":"11/1/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":700,"Cost":560,"Date":"11/2/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":184,"Cost":135,"Date":"12/17/2022"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":275,"Cost":256,"Date":"2/10/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":662,"Cost":488,"Date":"2/28/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":9,"Cost":5,"Date":"3/4/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":683,"Cost":586,"Date":"3/9/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":930,"Cost":518,"Date":"3/9/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":828,"Cost":614,"Date":"3/11/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":688,"Cost":423,"Date":"3/17/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":316,"Cost":229,"Date":"3/17/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":562,"Cost":313,"Date":"3/23/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":278,"Cost":214,"Date":"4/1/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":867,"Cost":711,"Date":"5/7/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":122,"Cost":97,"Date":"5/10/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":804,"Cost":548,"Date":"5/20/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":269,"Cost":136,"Date":"6/2/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":130,"Cost":95,"Date":"6/11/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":69,"Cost":38,"Date":"6/16/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":904,"Cost":659,"Date":"6/16/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":329,"Cost":310,"Date":"7/10/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":488,"Cost":450,"Date":"7/11/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":646,"Cost":476,"Date":"8/28/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":202,"Cost":171,"Date":"8/29/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":114,"Cost":70,"Date":"8/31/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":458,"Cost":420,"Date":"9/8/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":563,"Cost":354,"Date":"9/13/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":530,"Cost":365,"Date":"9/14/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":828,"Cost":514,"Date":"9/19/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":61,"Cost":37,"Date":"9/25/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":995,"Cost":838,"Date":"10/4/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":282,"Cost":144,"Date":"10/10/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":112,"Cost":60,"Date":"10/17/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":300,"Cost":271,"Date":"10/28/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":695,"Cost":447,"Date":"10/30/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":652,"Cost":422,"Date":"11/1/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":806,"Cost":598,"Date":"11/15/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":251,"Cost":161,"Date":"11/25/2023"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":95,"Cost":79,"Date":"1/10/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":37,"Cost":22,"Date":"1/14/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":44,"Cost":30,"Date":"1/20/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":251,"Cost":237,"Date":"2/8/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":754,"Cost":540,"Date":"2/25/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":884,"Cost":608,"Date":"3/7/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":310,"Cost":295,"Date":"3/14/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":583,"Cost":301,"Date":"3/27/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":830,"Cost":578,"Date":"4/5/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":854,"Cost":584,"Date":"4/14/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":546,"Cost":455,"Date":"5/3/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":832,"Cost":744,"Date":"5/9/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":582,"Cost":541,"Date":"5/15/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":941,"Cost":863,"Date":"5/25/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":50,"Cost":31,"Date":"5/26/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":500,"Cost":443,"Date":"5/31/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":434,"Cost":254,"Date":"7/27/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":742,"Cost":685,"Date":"9/17/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":139,"Cost":119,"Date":"10/6/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":861,"Cost":529,"Date":"10/8/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":614,"Cost":457,"Date":"10/26/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":110,"Cost":80,"Date":"11/16/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":156,"Cost":108,"Date":"11/18/2024"},{"Store":"King of Prussia Mall, King of Prussia, PA","Brand":"Nova","Country":"USA","Sale":147,"Cost":124,"Date":"12/1/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":197,"Cost":175,"Date":"2/9/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":208,"Cost":118,"Date":"2/11/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":512,"Cost":262,"Date":"3/10/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":24,"Cost":15,"Date":"3/16/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":531,"Cost":396,"Date":"3/18/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":85,"Cost":46,"Date":"3/20/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":83,"Cost":67,"Date":"3/26/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":212,"Cost":182,"Date":"6/2/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":798,"Cost":628,"Date":"6/10/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":77,"Cost":49,"Date":"6/16/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":316,"Cost":292,"Date":"6/25/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":962,"Cost":568,"Date":"7/19/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":667,"Cost":420,"Date":"7/21/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":81,"Cost":50,"Date":"7/25/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":117,"Cost":73,"Date":"8/4/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":949,"Cost":698,"Date":"9/2/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":344,"Cost":232,"Date":"9/4/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":771,"Cost":650,"Date":"9/19/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":282,"Cost":165,"Date":"9/29/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":607,"Cost":553,"Date":"10/2/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":865,"Cost":596,"Date":"10/15/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":299,"Cost":279,"Date":"10/30/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":29,"Cost":16,"Date":"11/9/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":821,"Cost":724,"Date":"11/23/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":934,"Cost":489,"Date":"11/30/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":704,"Cost":553,"Date":"12/8/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":53,"Cost":44,"Date":"12/11/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":806,"Cost":508,"Date":"1/15/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":851,"Cost":684,"Date":"1/24/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":27,"Cost":25,"Date":"2/3/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":122,"Cost":79,"Date":"2/4/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":963,"Cost":631,"Date":"3/9/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":308,"Cost":254,"Date":"3/12/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":899,"Cost":587,"Date":"4/19/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":222,"Cost":148,"Date":"5/3/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":625,"Cost":576,"Date":"5/4/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":649,"Cost":338,"Date":"6/8/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":5,"Cost":2,"Date":"6/26/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":619,"Cost":383,"Date":"7/4/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":203,"Cost":168,"Date":"7/13/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":394,"Cost":361,"Date":"8/8/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":93,"Cost":82,"Date":"8/26/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":624,"Cost":391,"Date":"9/2/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":526,"Cost":294,"Date":"9/29/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":826,"Cost":502,"Date":"10/12/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":780,"Cost":615,"Date":"11/2/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":186,"Cost":166,"Date":"11/4/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":278,"Cost":166,"Date":"11/7/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":917,"Cost":588,"Date":"12/1/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":279,"Cost":201,"Date":"12/4/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":632,"Cost":353,"Date":"12/7/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":585,"Cost":539,"Date":"12/18/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":137,"Cost":75,"Date":"12/20/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":915,"Cost":773,"Date":"12/20/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":78,"Cost":50,"Date":"12/21/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":275,"Cost":234,"Date":"1/9/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":765,"Cost":469,"Date":"2/5/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":966,"Cost":697,"Date":"2/16/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":688,"Cost":600,"Date":"2/16/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":552,"Cost":349,"Date":"2/18/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":971,"Cost":735,"Date":"2/22/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":66,"Cost":38,"Date":"2/25/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":823,"Cost":712,"Date":"3/8/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":466,"Cost":374,"Date":"4/2/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":76,"Cost":59,"Date":"4/3/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":557,"Cost":515,"Date":"4/9/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":871,"Cost":480,"Date":"4/10/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":915,"Cost":641,"Date":"4/19/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":822,"Cost":514,"Date":"5/17/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":860,"Cost":471,"Date":"5/22/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":824,"Cost":446,"Date":"6/20/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":548,"Cost":414,"Date":"7/1/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":712,"Cost":483,"Date":"7/4/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":860,"Cost":524,"Date":"7/8/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":399,"Cost":376,"Date":"7/9/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":768,"Cost":498,"Date":"7/14/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":810,"Cost":520,"Date":"7/19/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":13,"Cost":8,"Date":"8/1/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":287,"Cost":148,"Date":"8/6/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":165,"Cost":115,"Date":"8/7/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":650,"Cost":386,"Date":"8/22/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":766,"Cost":630,"Date":"8/31/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":654,"Cost":589,"Date":"9/1/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":832,"Cost":539,"Date":"9/1/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":621,"Cost":353,"Date":"9/17/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":921,"Cost":613,"Date":"9/29/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":491,"Cost":345,"Date":"11/7/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":42,"Cost":27,"Date":"11/26/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":349,"Cost":288,"Date":"11/27/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":679,"Cost":474,"Date":"12/5/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":903,"Cost":795,"Date":"12/26/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":572,"Cost":442,"Date":"12/31/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":157,"Cost":128,"Date":"1/20/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":261,"Cost":242,"Date":"2/2/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":857,"Cost":537,"Date":"2/8/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":815,"Cost":464,"Date":"2/27/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":356,"Cost":260,"Date":"3/1/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":483,"Cost":349,"Date":"3/1/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":106,"Cost":74,"Date":"3/19/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":514,"Cost":348,"Date":"3/28/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":335,"Cost":306,"Date":"5/21/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":730,"Cost":550,"Date":"7/21/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":290,"Cost":271,"Date":"8/5/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":974,"Cost":570,"Date":"8/12/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":495,"Cost":419,"Date":"8/21/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":5,"Cost":4,"Date":"8/23/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":788,"Cost":561,"Date":"9/3/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":301,"Cost":263,"Date":"9/5/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":48,"Cost":37,"Date":"10/6/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":616,"Cost":330,"Date":"10/19/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":634,"Cost":534,"Date":"11/15/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":645,"Cost":403,"Date":"12/8/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":481,"Cost":427,"Date":"1/8/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":497,"Cost":394,"Date":"1/14/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":953,"Cost":667,"Date":"1/19/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":201,"Cost":145,"Date":"1/28/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":99,"Cost":73,"Date":"1/31/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":645,"Cost":410,"Date":"3/27/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":514,"Cost":325,"Date":"4/20/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":75,"Cost":44,"Date":"4/24/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":958,"Cost":551,"Date":"4/28/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":133,"Cost":83,"Date":"5/15/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":742,"Cost":444,"Date":"5/16/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":914,"Cost":832,"Date":"5/18/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":423,"Cost":278,"Date":"6/2/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":241,"Cost":197,"Date":"6/3/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":212,"Cost":108,"Date":"6/5/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":391,"Cost":336,"Date":"6/7/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":207,"Cost":165,"Date":"6/14/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":197,"Cost":129,"Date":"6/20/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":361,"Cost":260,"Date":"6/24/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":70,"Cost":46,"Date":"7/4/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":533,"Cost":315,"Date":"7/9/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":851,"Cost":506,"Date":"7/12/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":211,"Cost":115,"Date":"8/14/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":955,"Cost":552,"Date":"8/16/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":379,"Cost":276,"Date":"8/23/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":297,"Cost":224,"Date":"9/2/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":102,"Cost":62,"Date":"9/3/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":106,"Cost":79,"Date":"9/16/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":347,"Cost":195,"Date":"10/4/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":598,"Cost":554,"Date":"11/1/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":610,"Cost":318,"Date":"11/2/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":208,"Cost":142,"Date":"12/17/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":742,"Cost":572,"Date":"2/10/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":165,"Cost":144,"Date":"2/28/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":974,"Cost":649,"Date":"3/4/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":168,"Cost":85,"Date":"3/9/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":228,"Cost":195,"Date":"3/9/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":86,"Cost":59,"Date":"3/11/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":698,"Cost":597,"Date":"3/17/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":519,"Cost":412,"Date":"3/17/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":36,"Cost":27,"Date":"3/23/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":782,"Cost":597,"Date":"4/1/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":134,"Cost":113,"Date":"5/7/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":211,"Cost":125,"Date":"5/10/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":699,"Cost":392,"Date":"5/20/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":652,"Cost":443,"Date":"6/2/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":3,"Cost":3,"Date":"6/11/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":308,"Cost":212,"Date":"6/16/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":657,"Cost":423,"Date":"6/16/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":854,"Cost":777,"Date":"7/10/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":317,"Cost":264,"Date":"7/11/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":407,"Cost":269,"Date":"8/28/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":5,"Cost":3,"Date":"8/29/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":440,"Cost":223,"Date":"8/31/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":340,"Cost":321,"Date":"9/8/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":808,"Cost":518,"Date":"9/13/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":191,"Cost":139,"Date":"9/14/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":186,"Cost":140,"Date":"9/19/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":537,"Cost":470,"Date":"9/25/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":393,"Cost":207,"Date":"10/4/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":302,"Cost":166,"Date":"10/10/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":880,"Cost":469,"Date":"10/17/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":861,"Cost":790,"Date":"10/28/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":735,"Cost":414,"Date":"10/30/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":643,"Cost":469,"Date":"11/1/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":756,"Cost":633,"Date":"11/15/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":545,"Cost":330,"Date":"11/25/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":927,"Cost":864,"Date":"1/10/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":887,"Cost":493,"Date":"1/14/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":174,"Cost":131,"Date":"1/20/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":345,"Cost":260,"Date":"2/8/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":752,"Cost":688,"Date":"2/25/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":948,"Cost":676,"Date":"3/7/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":587,"Cost":321,"Date":"3/14/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":109,"Cost":89,"Date":"3/27/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":524,"Cost":271,"Date":"4/5/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":704,"Cost":667,"Date":"4/14/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":867,"Cost":805,"Date":"5/3/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":122,"Cost":96,"Date":"5/9/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":998,"Cost":529,"Date":"5/15/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":71,"Cost":60,"Date":"5/25/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":590,"Cost":342,"Date":"5/26/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":336,"Cost":233,"Date":"5/31/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":671,"Cost":577,"Date":"7/27/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":399,"Cost":277,"Date":"9/17/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":399,"Cost":237,"Date":"10/6/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":146,"Cost":98,"Date":"10/8/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":820,"Cost":685,"Date":"10/26/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":665,"Cost":619,"Date":"11/16/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":121,"Cost":71,"Date":"11/18/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"HM Home","Country":"USA","Sale":835,"Cost":425,"Date":"12/1/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":30,"Cost":19,"Date":"2/9/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":191,"Cost":158,"Date":"2/11/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":554,"Cost":288,"Date":"3/10/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":96,"Cost":88,"Date":"3/16/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":682,"Cost":584,"Date":"3/18/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":560,"Cost":437,"Date":"3/20/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":179,"Cost":93,"Date":"3/26/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":742,"Cost":403,"Date":"6/2/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":10,"Cost":5,"Date":"6/10/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":355,"Cost":236,"Date":"6/16/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":159,"Cost":139,"Date":"6/25/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":636,"Cost":529,"Date":"7/19/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":752,"Cost":635,"Date":"7/21/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":413,"Cost":329,"Date":"7/25/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":194,"Cost":167,"Date":"8/4/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":717,"Cost":419,"Date":"9/2/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":218,"Cost":142,"Date":"9/4/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":941,"Cost":513,"Date":"9/19/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":442,"Cost":273,"Date":"9/29/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":601,"Cost":409,"Date":"10/2/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":521,"Cost":339,"Date":"10/15/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":808,"Cost":687,"Date":"10/30/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":277,"Cost":222,"Date":"11/9/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":977,"Cost":512,"Date":"11/23/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":959,"Cost":494,"Date":"11/30/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":143,"Cost":123,"Date":"12/8/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":847,"Cost":581,"Date":"12/11/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":928,"Cost":566,"Date":"1/15/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":501,"Cost":390,"Date":"1/24/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":218,"Cost":134,"Date":"2/3/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":473,"Cost":341,"Date":"2/4/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":19,"Cost":11,"Date":"3/9/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":343,"Cost":288,"Date":"3/12/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":360,"Cost":219,"Date":"4/19/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":976,"Cost":635,"Date":"5/3/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":322,"Cost":216,"Date":"5/4/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":611,"Cost":551,"Date":"6/8/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":517,"Cost":438,"Date":"6/26/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":665,"Cost":351,"Date":"7/4/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":44,"Cost":23,"Date":"7/13/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":153,"Cost":117,"Date":"8/8/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":544,"Cost":458,"Date":"8/26/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":82,"Cost":50,"Date":"9/2/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":36,"Cost":32,"Date":"9/29/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":107,"Cost":85,"Date":"10/12/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":335,"Cost":298,"Date":"11/2/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":108,"Cost":73,"Date":"11/4/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":719,"Cost":377,"Date":"11/7/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":356,"Cost":235,"Date":"12/1/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":192,"Cost":120,"Date":"12/4/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":431,"Cost":381,"Date":"12/7/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":605,"Cost":550,"Date":"12/18/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":33,"Cost":30,"Date":"12/20/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":371,"Cost":283,"Date":"12/20/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":477,"Cost":365,"Date":"12/21/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":727,"Cost":406,"Date":"1/9/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":591,"Cost":383,"Date":"2/5/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":881,"Cost":658,"Date":"2/16/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":406,"Cost":226,"Date":"2/16/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":366,"Cost":277,"Date":"2/18/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":698,"Cost":453,"Date":"2/22/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":16,"Cost":13,"Date":"2/25/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":974,"Cost":675,"Date":"3/8/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":15,"Cost":12,"Date":"4/2/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":571,"Cost":304,"Date":"4/3/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":23,"Cost":18,"Date":"4/9/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":890,"Cost":817,"Date":"4/10/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":358,"Cost":212,"Date":"4/19/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":890,"Cost":487,"Date":"5/17/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":96,"Cost":74,"Date":"5/22/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":176,"Cost":94,"Date":"6/20/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":261,"Cost":142,"Date":"7/1/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":705,"Cost":648,"Date":"7/4/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":381,"Cost":342,"Date":"7/8/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":37,"Cost":26,"Date":"7/9/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":566,"Cost":448,"Date":"7/14/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":36,"Cost":30,"Date":"7/19/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":976,"Cost":762,"Date":"8/1/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":911,"Cost":498,"Date":"8/6/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":208,"Cost":183,"Date":"8/7/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":344,"Cost":294,"Date":"8/22/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":802,"Cost":546,"Date":"8/31/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":980,"Cost":827,"Date":"9/1/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":989,"Cost":553,"Date":"9/1/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":902,"Cost":526,"Date":"9/17/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":118,"Cost":112,"Date":"9/29/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":654,"Cost":437,"Date":"11/7/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":247,"Cost":206,"Date":"11/26/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":383,"Cost":361,"Date":"11/27/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":683,"Cost":361,"Date":"12/5/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":269,"Cost":250,"Date":"12/26/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":469,"Cost":396,"Date":"12/31/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":232,"Cost":143,"Date":"1/20/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":523,"Cost":326,"Date":"2/2/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":289,"Cost":209,"Date":"2/8/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":808,"Cost":594,"Date":"2/27/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":21,"Cost":12,"Date":"3/1/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":239,"Cost":167,"Date":"3/1/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":93,"Cost":53,"Date":"3/19/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":159,"Cost":133,"Date":"3/28/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":125,"Cost":80,"Date":"5/21/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":642,"Cost":447,"Date":"7/21/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":713,"Cost":437,"Date":"8/5/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":996,"Cost":532,"Date":"8/12/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":79,"Cost":62,"Date":"8/21/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":743,"Cost":469,"Date":"8/23/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":258,"Cost":218,"Date":"9/3/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":432,"Cost":263,"Date":"9/5/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":386,"Cost":348,"Date":"10/6/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":828,"Cost":532,"Date":"10/19/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":810,"Cost":569,"Date":"11/15/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":116,"Cost":95,"Date":"12/8/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":280,"Cost":220,"Date":"1/8/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":25,"Cost":22,"Date":"1/14/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":84,"Cost":55,"Date":"1/19/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":203,"Cost":131,"Date":"1/28/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":835,"Cost":576,"Date":"1/31/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":243,"Cost":215,"Date":"3/27/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":259,"Cost":197,"Date":"4/20/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":628,"Cost":380,"Date":"4/24/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":974,"Cost":853,"Date":"4/28/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":340,"Cost":208,"Date":"5/15/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":560,"Cost":330,"Date":"5/16/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":866,"Cost":810,"Date":"5/18/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":407,"Cost":270,"Date":"6/2/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":149,"Cost":87,"Date":"6/3/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":663,"Cost":546,"Date":"6/5/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":804,"Cost":638,"Date":"6/7/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":732,"Cost":452,"Date":"6/14/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":958,"Cost":710,"Date":"6/20/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":731,"Cost":559,"Date":"6/24/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":211,"Cost":155,"Date":"7/4/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":814,"Cost":669,"Date":"7/9/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":638,"Cost":545,"Date":"7/12/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":752,"Cost":416,"Date":"8/14/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":354,"Cost":249,"Date":"8/16/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":50,"Cost":42,"Date":"8/23/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":736,"Cost":615,"Date":"9/2/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":465,"Cost":432,"Date":"9/3/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":534,"Cost":371,"Date":"9/16/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":763,"Cost":628,"Date":"10/4/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":124,"Cost":73,"Date":"11/1/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":584,"Cost":389,"Date":"11/2/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":919,"Cost":723,"Date":"12/17/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":753,"Cost":581,"Date":"2/10/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":681,"Cost":645,"Date":"2/28/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":902,"Cost":653,"Date":"3/4/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":137,"Cost":107,"Date":"3/9/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":32,"Cost":26,"Date":"3/9/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":815,"Cost":660,"Date":"3/11/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":257,"Cost":153,"Date":"3/17/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":418,"Cost":231,"Date":"3/17/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":198,"Cost":155,"Date":"3/23/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":686,"Cost":359,"Date":"4/1/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":838,"Cost":601,"Date":"5/7/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":54,"Cost":50,"Date":"5/10/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":668,"Cost":493,"Date":"5/20/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":561,"Cost":428,"Date":"6/2/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":636,"Cost":370,"Date":"6/11/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":620,"Cost":443,"Date":"6/16/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":277,"Cost":186,"Date":"6/16/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":477,"Cost":414,"Date":"7/10/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":991,"Cost":564,"Date":"7/11/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":252,"Cost":146,"Date":"8/28/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":628,"Cost":373,"Date":"8/29/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":417,"Cost":213,"Date":"8/31/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":93,"Cost":60,"Date":"9/8/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":589,"Cost":316,"Date":"9/13/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":709,"Cost":662,"Date":"9/14/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":699,"Cost":519,"Date":"9/19/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":555,"Cost":454,"Date":"9/25/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":116,"Cost":107,"Date":"10/4/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":617,"Cost":494,"Date":"10/10/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":779,"Cost":525,"Date":"10/17/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":974,"Cost":676,"Date":"10/28/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":237,"Cost":197,"Date":"10/30/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":64,"Cost":40,"Date":"11/1/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":301,"Cost":221,"Date":"11/15/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":801,"Cost":682,"Date":"11/25/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":567,"Cost":533,"Date":"1/10/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":696,"Cost":362,"Date":"1/14/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":833,"Cost":529,"Date":"1/20/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":952,"Cost":562,"Date":"2/8/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":595,"Cost":486,"Date":"2/25/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":886,"Cost":546,"Date":"3/7/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":464,"Cost":428,"Date":"3/14/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":105,"Cost":62,"Date":"3/27/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":832,"Cost":492,"Date":"4/5/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":891,"Cost":681,"Date":"4/14/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":597,"Cost":505,"Date":"5/3/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":866,"Cost":642,"Date":"5/9/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":972,"Cost":823,"Date":"5/15/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":949,"Cost":500,"Date":"5/25/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":914,"Cost":600,"Date":"5/26/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":760,"Cost":722,"Date":"5/31/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":520,"Cost":275,"Date":"7/27/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":5,"Cost":2,"Date":"9/17/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":143,"Cost":96,"Date":"10/6/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":835,"Cost":785,"Date":"10/8/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":56,"Cost":43,"Date":"10/26/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":140,"Cost":128,"Date":"11/16/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":605,"Cost":350,"Date":"11/18/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"ARKET","Country":"USA","Sale":488,"Cost":414,"Date":"12/1/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":543,"Cost":274,"Date":"2/9/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":442,"Cost":343,"Date":"2/11/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":684,"Cost":645,"Date":"3/10/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":633,"Cost":592,"Date":"3/16/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":514,"Cost":277,"Date":"3/18/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":208,"Cost":137,"Date":"3/20/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":84,"Cost":45,"Date":"3/26/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":397,"Cost":332,"Date":"6/2/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":233,"Cost":119,"Date":"6/10/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":851,"Cost":703,"Date":"6/16/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":172,"Cost":101,"Date":"6/25/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":447,"Cost":228,"Date":"7/19/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":233,"Cost":207,"Date":"7/21/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":619,"Cost":426,"Date":"7/25/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":123,"Cost":90,"Date":"8/4/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":564,"Cost":287,"Date":"9/2/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":352,"Cost":264,"Date":"9/4/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":863,"Cost":611,"Date":"9/19/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":402,"Cost":255,"Date":"9/29/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":644,"Cost":359,"Date":"10/2/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":946,"Cost":513,"Date":"10/15/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":945,"Cost":491,"Date":"10/30/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":50,"Cost":38,"Date":"11/9/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":190,"Cost":140,"Date":"11/23/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":485,"Cost":244,"Date":"11/30/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":669,"Cost":578,"Date":"12/8/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":860,"Cost":479,"Date":"12/11/2018"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":857,"Cost":805,"Date":"1/15/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":612,"Cost":498,"Date":"1/24/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":247,"Cost":186,"Date":"2/3/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":548,"Cost":479,"Date":"2/4/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":971,"Cost":631,"Date":"3/9/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":86,"Cost":65,"Date":"3/12/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":795,"Cost":537,"Date":"4/19/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":994,"Cost":635,"Date":"5/3/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":894,"Cost":819,"Date":"5/4/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":493,"Cost":293,"Date":"6/8/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":783,"Cost":681,"Date":"6/26/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":616,"Cost":316,"Date":"7/4/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":968,"Cost":492,"Date":"7/13/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":539,"Cost":284,"Date":"8/8/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":238,"Cost":180,"Date":"8/26/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":807,"Cost":534,"Date":"9/2/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":758,"Cost":589,"Date":"9/29/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":811,"Cost":504,"Date":"10/12/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":623,"Cost":591,"Date":"11/2/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":766,"Cost":663,"Date":"11/4/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":198,"Cost":169,"Date":"11/7/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":559,"Cost":343,"Date":"12/1/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":744,"Cost":605,"Date":"12/4/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":540,"Cost":365,"Date":"12/7/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":919,"Cost":630,"Date":"12/18/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":123,"Cost":105,"Date":"12/20/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":114,"Cost":93,"Date":"12/20/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":514,"Cost":257,"Date":"12/21/2019"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":25,"Cost":24,"Date":"1/9/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":858,"Cost":561,"Date":"2/5/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":117,"Cost":75,"Date":"2/16/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":811,"Cost":408,"Date":"2/16/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":478,"Cost":293,"Date":"2/18/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":920,"Cost":469,"Date":"2/22/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":434,"Cost":375,"Date":"2/25/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":547,"Cost":395,"Date":"3/8/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":569,"Cost":364,"Date":"4/2/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":701,"Cost":625,"Date":"4/3/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":872,"Cost":682,"Date":"4/9/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":130,"Cost":71,"Date":"4/10/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":325,"Cost":214,"Date":"4/19/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":143,"Cost":128,"Date":"5/17/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":689,"Cost":420,"Date":"5/22/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":353,"Cost":249,"Date":"6/20/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":683,"Cost":517,"Date":"7/1/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":325,"Cost":290,"Date":"7/4/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":144,"Cost":104,"Date":"7/8/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":987,"Cost":559,"Date":"7/9/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":297,"Cost":150,"Date":"7/14/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":9,"Cost":6,"Date":"7/19/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":658,"Cost":553,"Date":"8/1/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":620,"Cost":317,"Date":"8/6/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":220,"Cost":138,"Date":"8/7/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":622,"Cost":372,"Date":"8/22/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":247,"Cost":141,"Date":"8/31/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":983,"Cost":702,"Date":"9/1/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":493,"Cost":348,"Date":"9/1/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":259,"Cost":156,"Date":"9/17/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":16,"Cost":11,"Date":"9/29/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":586,"Cost":493,"Date":"11/7/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":483,"Cost":424,"Date":"11/26/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":12,"Cost":6,"Date":"11/27/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":414,"Cost":292,"Date":"12/5/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":547,"Cost":332,"Date":"12/26/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":210,"Cost":172,"Date":"12/31/2020"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":537,"Cost":295,"Date":"1/20/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":828,"Cost":627,"Date":"2/2/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":760,"Cost":428,"Date":"2/8/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":515,"Cost":474,"Date":"2/27/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":972,"Cost":921,"Date":"3/1/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":635,"Cost":525,"Date":"3/1/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":464,"Cost":273,"Date":"3/19/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":575,"Cost":292,"Date":"3/28/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":238,"Cost":151,"Date":"5/21/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":787,"Cost":727,"Date":"7/21/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":800,"Cost":563,"Date":"8/5/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":852,"Cost":645,"Date":"8/12/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":943,"Cost":527,"Date":"8/21/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":659,"Cost":332,"Date":"8/23/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":150,"Cost":94,"Date":"9/3/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":168,"Cost":159,"Date":"9/5/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":756,"Cost":528,"Date":"10/6/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":993,"Cost":549,"Date":"10/19/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":898,"Cost":677,"Date":"11/15/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":469,"Cost":365,"Date":"12/8/2021"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":192,"Cost":144,"Date":"1/8/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":967,"Cost":668,"Date":"1/14/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":793,"Cost":405,"Date":"1/19/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":512,"Cost":277,"Date":"1/28/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":855,"Cost":673,"Date":"1/31/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":890,"Cost":643,"Date":"3/27/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":398,"Cost":266,"Date":"4/20/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":452,"Cost":280,"Date":"4/24/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":876,"Cost":602,"Date":"4/28/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":919,"Cost":821,"Date":"5/15/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":613,"Cost":579,"Date":"5/16/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":1000,"Cost":812,"Date":"5/18/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":535,"Cost":445,"Date":"6/2/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":622,"Cost":533,"Date":"6/3/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":166,"Cost":157,"Date":"6/5/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":382,"Cost":219,"Date":"6/7/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":439,"Cost":347,"Date":"6/14/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":441,"Cost":267,"Date":"6/20/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":315,"Cost":212,"Date":"6/24/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":450,"Cost":283,"Date":"7/4/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":117,"Cost":89,"Date":"7/9/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":900,"Cost":471,"Date":"7/12/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":522,"Cost":385,"Date":"8/14/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":566,"Cost":317,"Date":"8/16/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":96,"Cost":80,"Date":"8/23/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":194,"Cost":107,"Date":"9/2/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":988,"Cost":772,"Date":"9/3/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":384,"Cost":228,"Date":"9/16/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":104,"Cost":54,"Date":"10/4/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":481,"Cost":383,"Date":"11/1/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":906,"Cost":497,"Date":"11/2/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":365,"Cost":277,"Date":"12/17/2022"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":511,"Cost":327,"Date":"2/10/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":194,"Cost":156,"Date":"2/28/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":611,"Cost":339,"Date":"3/4/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":715,"Cost":504,"Date":"3/9/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":139,"Cost":74,"Date":"3/9/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":499,"Cost":447,"Date":"3/11/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":398,"Cost":343,"Date":"3/17/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":103,"Cost":53,"Date":"3/17/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":260,"Cost":153,"Date":"3/23/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":187,"Cost":160,"Date":"4/1/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":273,"Cost":167,"Date":"5/7/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":771,"Cost":389,"Date":"5/10/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":356,"Cost":229,"Date":"5/20/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":860,"Cost":675,"Date":"6/2/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":629,"Cost":363,"Date":"6/11/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":748,"Cost":425,"Date":"6/16/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":836,"Cost":590,"Date":"6/16/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":868,"Cost":737,"Date":"7/10/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":301,"Cost":284,"Date":"7/11/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":442,"Cost":381,"Date":"8/28/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":841,"Cost":566,"Date":"8/29/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":271,"Cost":230,"Date":"8/31/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":230,"Cost":163,"Date":"9/8/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":586,"Cost":455,"Date":"9/13/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":338,"Cost":194,"Date":"9/14/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":72,"Cost":51,"Date":"9/19/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":3,"Cost":1,"Date":"9/25/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":875,"Cost":719,"Date":"10/4/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":3,"Cost":2,"Date":"10/10/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":498,"Cost":275,"Date":"10/17/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":699,"Cost":386,"Date":"10/28/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":147,"Cost":76,"Date":"10/30/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":990,"Cost":552,"Date":"11/1/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":76,"Cost":62,"Date":"11/15/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":312,"Cost":285,"Date":"11/25/2023"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":392,"Cost":288,"Date":"1/10/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":483,"Cost":299,"Date":"1/14/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":875,"Cost":510,"Date":"1/20/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":878,"Cost":614,"Date":"2/8/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":787,"Cost":708,"Date":"2/25/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":792,"Cost":654,"Date":"3/7/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":157,"Cost":102,"Date":"3/14/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":115,"Cost":70,"Date":"3/27/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":262,"Cost":139,"Date":"4/5/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":243,"Cost":132,"Date":"4/14/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":619,"Cost":422,"Date":"5/3/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":268,"Cost":156,"Date":"5/9/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":539,"Cost":280,"Date":"5/15/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":787,"Cost":638,"Date":"5/25/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":625,"Cost":430,"Date":"5/26/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":838,"Cost":745,"Date":"5/31/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":478,"Cost":348,"Date":"7/27/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":601,"Cost":454,"Date":"9/17/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":879,"Cost":742,"Date":"10/6/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":400,"Cost":298,"Date":"10/8/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":41,"Cost":20,"Date":"10/26/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":459,"Cost":424,"Date":"11/16/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":820,"Cost":443,"Date":"11/18/2024"},{"Store":"Ala Moana Center, Honolulu, HI","Brand":"Nova","Country":"USA","Sale":795,"Cost":524,"Date":"12/1/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":627,"Cost":549,"Date":"2/9/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":586,"Cost":412,"Date":"2/11/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":303,"Cost":274,"Date":"3/10/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":550,"Cost":418,"Date":"3/16/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":806,"Cost":696,"Date":"3/18/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":487,"Cost":420,"Date":"3/20/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":803,"Cost":580,"Date":"3/26/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":815,"Cost":467,"Date":"6/2/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":785,"Cost":495,"Date":"6/10/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":778,"Cost":519,"Date":"6/16/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":920,"Cost":579,"Date":"6/25/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":351,"Cost":260,"Date":"7/19/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":221,"Cost":134,"Date":"7/21/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":291,"Cost":182,"Date":"7/25/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":826,"Cost":460,"Date":"8/4/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":877,"Cost":492,"Date":"9/2/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":28,"Cost":23,"Date":"9/4/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":999,"Cost":546,"Date":"9/19/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":818,"Cost":492,"Date":"9/29/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":810,"Cost":610,"Date":"10/2/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":434,"Cost":256,"Date":"10/15/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":983,"Cost":532,"Date":"10/30/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":689,"Cost":498,"Date":"11/9/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":308,"Cost":209,"Date":"11/23/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":420,"Cost":316,"Date":"11/30/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":971,"Cost":878,"Date":"12/8/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":631,"Cost":415,"Date":"12/11/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":302,"Cost":270,"Date":"1/15/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":548,"Cost":498,"Date":"1/24/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":236,"Cost":156,"Date":"2/3/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":61,"Cost":37,"Date":"2/4/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":89,"Cost":49,"Date":"3/9/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":430,"Cost":263,"Date":"3/12/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":934,"Cost":828,"Date":"4/19/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":270,"Cost":247,"Date":"5/3/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":546,"Cost":459,"Date":"5/4/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":573,"Cost":531,"Date":"6/8/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":865,"Cost":501,"Date":"6/26/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":302,"Cost":162,"Date":"7/4/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":762,"Cost":649,"Date":"7/13/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":224,"Cost":171,"Date":"8/8/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":43,"Cost":31,"Date":"8/26/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":268,"Cost":200,"Date":"9/2/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":308,"Cost":199,"Date":"9/29/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":498,"Cost":345,"Date":"10/12/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":113,"Cost":92,"Date":"11/2/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":357,"Cost":207,"Date":"11/4/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":244,"Cost":203,"Date":"11/7/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":852,"Cost":788,"Date":"12/1/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":951,"Cost":585,"Date":"12/4/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":22,"Cost":11,"Date":"12/7/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":641,"Cost":411,"Date":"12/18/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":256,"Cost":139,"Date":"12/20/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":452,"Cost":397,"Date":"12/20/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":715,"Cost":395,"Date":"12/21/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":592,"Cost":320,"Date":"1/9/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":897,"Cost":631,"Date":"2/5/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":194,"Cost":152,"Date":"2/16/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":861,"Cost":631,"Date":"2/16/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":45,"Cost":34,"Date":"2/18/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":457,"Cost":336,"Date":"2/22/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":143,"Cost":115,"Date":"2/25/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":94,"Cost":70,"Date":"3/8/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":722,"Cost":503,"Date":"4/2/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":171,"Cost":156,"Date":"4/3/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":593,"Cost":445,"Date":"4/9/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":180,"Cost":121,"Date":"4/10/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":311,"Cost":285,"Date":"4/19/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":71,"Cost":65,"Date":"5/17/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":639,"Cost":443,"Date":"5/22/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":632,"Cost":465,"Date":"6/20/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":571,"Cost":489,"Date":"7/1/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":985,"Cost":588,"Date":"7/4/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":898,"Cost":696,"Date":"7/8/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":735,"Cost":374,"Date":"7/9/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":313,"Cost":256,"Date":"7/14/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":70,"Cost":57,"Date":"7/19/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":693,"Cost":639,"Date":"8/1/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":224,"Cost":154,"Date":"8/6/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":108,"Cost":90,"Date":"8/7/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":133,"Cost":69,"Date":"8/22/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":764,"Cost":641,"Date":"8/31/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":725,"Cost":495,"Date":"9/1/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":861,"Cost":649,"Date":"9/1/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":979,"Cost":508,"Date":"9/17/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":594,"Cost":313,"Date":"9/29/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":589,"Cost":525,"Date":"11/7/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":427,"Cost":245,"Date":"11/26/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":805,"Cost":548,"Date":"11/27/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":697,"Cost":544,"Date":"12/5/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":711,"Cost":615,"Date":"12/26/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":722,"Cost":376,"Date":"12/31/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":372,"Cost":196,"Date":"1/20/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":961,"Cost":501,"Date":"2/2/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":493,"Cost":355,"Date":"2/8/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":64,"Cost":46,"Date":"2/27/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":81,"Cost":67,"Date":"3/1/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":656,"Cost":354,"Date":"3/1/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":821,"Cost":750,"Date":"3/19/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":774,"Cost":454,"Date":"3/28/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":868,"Cost":743,"Date":"5/21/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":494,"Cost":376,"Date":"7/21/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":109,"Cost":88,"Date":"8/5/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":861,"Cost":775,"Date":"8/12/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":195,"Cost":140,"Date":"8/21/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":872,"Cost":624,"Date":"8/23/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":520,"Cost":451,"Date":"9/3/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":637,"Cost":601,"Date":"9/5/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":421,"Cost":268,"Date":"10/6/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":404,"Cost":275,"Date":"10/19/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":576,"Cost":491,"Date":"11/15/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":670,"Cost":616,"Date":"12/8/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":566,"Cost":517,"Date":"1/8/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":837,"Cost":700,"Date":"1/14/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":28,"Cost":22,"Date":"1/19/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":224,"Cost":132,"Date":"1/28/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":956,"Cost":584,"Date":"1/31/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":801,"Cost":649,"Date":"3/27/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":458,"Cost":278,"Date":"4/20/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":490,"Cost":438,"Date":"4/24/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":395,"Cost":368,"Date":"4/28/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":284,"Cost":223,"Date":"5/15/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":539,"Cost":410,"Date":"5/16/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":988,"Cost":619,"Date":"5/18/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":596,"Cost":354,"Date":"6/2/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":364,"Cost":199,"Date":"6/3/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":155,"Cost":140,"Date":"6/5/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":919,"Cost":812,"Date":"6/7/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":37,"Cost":34,"Date":"6/14/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":113,"Cost":93,"Date":"6/20/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":992,"Cost":929,"Date":"6/24/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":953,"Cost":861,"Date":"7/4/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":13,"Cost":11,"Date":"7/9/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":665,"Cost":401,"Date":"7/12/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":807,"Cost":488,"Date":"8/14/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":109,"Cost":64,"Date":"8/16/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":272,"Cost":138,"Date":"8/23/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":332,"Cost":220,"Date":"9/2/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":985,"Cost":831,"Date":"9/3/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":723,"Cost":490,"Date":"9/16/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":540,"Cost":415,"Date":"10/4/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":6,"Cost":4,"Date":"11/1/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":181,"Cost":131,"Date":"11/2/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":694,"Cost":444,"Date":"12/17/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":388,"Cost":272,"Date":"2/10/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":905,"Cost":747,"Date":"2/28/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":985,"Cost":765,"Date":"3/4/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":238,"Cost":171,"Date":"3/9/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":524,"Cost":482,"Date":"3/9/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":404,"Cost":216,"Date":"3/11/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":844,"Cost":437,"Date":"3/17/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":414,"Cost":237,"Date":"3/17/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":354,"Cost":209,"Date":"3/23/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":439,"Cost":249,"Date":"4/1/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":581,"Cost":426,"Date":"5/7/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":788,"Cost":447,"Date":"5/10/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":550,"Cost":468,"Date":"5/20/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":565,"Cost":382,"Date":"6/2/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":592,"Cost":494,"Date":"6/11/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":208,"Cost":120,"Date":"6/16/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":446,"Cost":302,"Date":"6/16/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":799,"Cost":436,"Date":"7/10/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":430,"Cost":236,"Date":"7/11/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":740,"Cost":575,"Date":"8/28/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":657,"Cost":592,"Date":"8/29/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":542,"Cost":444,"Date":"8/31/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":518,"Cost":370,"Date":"9/8/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":815,"Cost":658,"Date":"9/13/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":250,"Cost":231,"Date":"9/14/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":9,"Cost":7,"Date":"9/19/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":814,"Cost":414,"Date":"9/25/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":895,"Cost":449,"Date":"10/4/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":979,"Cost":682,"Date":"10/10/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":734,"Cost":641,"Date":"10/17/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":116,"Cost":85,"Date":"10/28/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":49,"Cost":34,"Date":"10/30/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":5,"Cost":4,"Date":"11/1/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":628,"Cost":530,"Date":"11/15/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":130,"Cost":97,"Date":"11/25/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":687,"Cost":374,"Date":"1/10/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":426,"Cost":240,"Date":"1/14/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":784,"Cost":704,"Date":"1/20/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":481,"Cost":387,"Date":"2/8/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":435,"Cost":303,"Date":"2/25/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":142,"Cost":132,"Date":"3/7/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":234,"Cost":177,"Date":"3/14/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":329,"Cost":241,"Date":"3/27/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":120,"Cost":63,"Date":"4/5/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":596,"Cost":393,"Date":"4/14/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":688,"Cost":404,"Date":"5/3/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":416,"Cost":311,"Date":"5/9/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":23,"Cost":12,"Date":"5/15/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":558,"Cost":482,"Date":"5/25/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":424,"Cost":356,"Date":"5/26/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":627,"Cost":569,"Date":"5/31/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":216,"Cost":193,"Date":"7/27/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":859,"Cost":543,"Date":"9/17/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":331,"Cost":288,"Date":"10/6/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":731,"Cost":498,"Date":"10/8/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":336,"Cost":186,"Date":"10/26/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":297,"Cost":217,"Date":"11/16/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":56,"Cost":41,"Date":"11/18/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Sellpy","Country":"USA","Sale":249,"Cost":221,"Date":"12/1/2024"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":892,"Cost":655,"Date":"2/9/2018"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":57,"Cost":32,"Date":"2/11/2018"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":530,"Cost":436,"Date":"3/10/2018"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":722,"Cost":474,"Date":"3/16/2018"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":676,"Cost":586,"Date":"3/18/2018"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":296,"Cost":246,"Date":"3/20/2018"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":138,"Cost":108,"Date":"3/26/2018"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":242,"Cost":151,"Date":"6/2/2018"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":584,"Cost":403,"Date":"6/10/2018"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":647,"Cost":449,"Date":"6/16/2018"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":90,"Cost":74,"Date":"6/25/2018"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":860,"Cost":469,"Date":"7/19/2018"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":631,"Cost":401,"Date":"7/21/2018"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":667,"Cost":478,"Date":"7/25/2018"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":568,"Cost":342,"Date":"8/4/2018"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":547,"Cost":481,"Date":"9/2/2018"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":446,"Cost":248,"Date":"9/4/2018"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":111,"Cost":81,"Date":"9/19/2018"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":776,"Cost":730,"Date":"9/29/2018"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":76,"Cost":53,"Date":"10/2/2018"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":963,"Cost":819,"Date":"10/15/2018"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":156,"Cost":116,"Date":"10/30/2018"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":27,"Cost":25,"Date":"11/9/2018"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":398,"Cost":291,"Date":"11/23/2018"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":64,"Cost":51,"Date":"11/30/2018"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":909,"Cost":504,"Date":"12/8/2018"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":797,"Cost":667,"Date":"12/11/2018"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":948,"Cost":567,"Date":"1/15/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":709,"Cost":520,"Date":"1/24/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":562,"Cost":462,"Date":"2/3/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":107,"Cost":95,"Date":"2/4/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":854,"Cost":451,"Date":"3/9/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":926,"Cost":534,"Date":"3/12/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":406,"Cost":261,"Date":"4/19/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":816,"Cost":600,"Date":"5/3/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":797,"Cost":485,"Date":"5/4/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":627,"Cost":555,"Date":"6/8/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":491,"Cost":425,"Date":"6/26/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":371,"Cost":196,"Date":"7/4/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":184,"Cost":128,"Date":"7/13/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":702,"Cost":630,"Date":"8/8/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":193,"Cost":158,"Date":"8/26/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":718,"Cost":524,"Date":"9/2/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":396,"Cost":199,"Date":"9/29/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":291,"Cost":146,"Date":"10/12/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":553,"Cost":338,"Date":"11/2/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":380,"Cost":268,"Date":"11/4/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":677,"Cost":438,"Date":"11/7/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":409,"Cost":236,"Date":"12/1/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":107,"Cost":74,"Date":"12/4/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":388,"Cost":328,"Date":"12/7/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":214,"Cost":162,"Date":"12/18/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":963,"Cost":657,"Date":"12/20/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":57,"Cost":36,"Date":"12/20/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":593,"Cost":474,"Date":"12/21/2019"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":773,"Cost":650,"Date":"1/9/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":937,"Cost":790,"Date":"2/5/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":645,"Cost":530,"Date":"2/16/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":463,"Cost":422,"Date":"2/16/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":434,"Cost":287,"Date":"2/18/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":949,"Cost":902,"Date":"2/22/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":791,"Cost":697,"Date":"2/25/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":480,"Cost":432,"Date":"3/8/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":597,"Cost":419,"Date":"4/2/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":908,"Cost":742,"Date":"4/3/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":250,"Cost":227,"Date":"4/9/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":877,"Cost":470,"Date":"4/10/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":600,"Cost":332,"Date":"4/19/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":255,"Cost":229,"Date":"5/17/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":759,"Cost":427,"Date":"5/22/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":336,"Cost":316,"Date":"6/20/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":128,"Cost":117,"Date":"7/1/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":862,"Cost":755,"Date":"7/4/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":264,"Cost":137,"Date":"7/8/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":947,"Cost":675,"Date":"7/9/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":202,"Cost":171,"Date":"7/14/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":613,"Cost":526,"Date":"7/19/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":747,"Cost":626,"Date":"8/1/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":266,"Cost":242,"Date":"8/6/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":995,"Cost":503,"Date":"8/7/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":253,"Cost":187,"Date":"8/22/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":99,"Cost":93,"Date":"8/31/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":339,"Cost":180,"Date":"9/1/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":412,"Cost":286,"Date":"9/1/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":806,"Cost":664,"Date":"9/17/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":80,"Cost":61,"Date":"9/29/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":633,"Cost":362,"Date":"11/7/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":912,"Cost":530,"Date":"11/26/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":44,"Cost":34,"Date":"11/27/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":395,"Cost":343,"Date":"12/5/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":747,"Cost":561,"Date":"12/26/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":25,"Cost":23,"Date":"12/31/2020"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":245,"Cost":228,"Date":"1/20/2021"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":548,"Cost":511,"Date":"2/2/2021"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":596,"Cost":472,"Date":"2/8/2021"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":296,"Cost":267,"Date":"2/27/2021"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":697,"Cost":356,"Date":"3/1/2021"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":520,"Cost":386,"Date":"3/1/2021"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":20,"Cost":14,"Date":"3/19/2021"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":718,"Cost":557,"Date":"3/28/2021"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":425,"Cost":321,"Date":"5/21/2021"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":367,"Cost":320,"Date":"7/21/2021"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":793,"Cost":524,"Date":"8/5/2021"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":16,"Cost":12,"Date":"8/12/2021"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":191,"Cost":121,"Date":"8/21/2021"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":322,"Cost":270,"Date":"8/23/2021"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":920,"Cost":798,"Date":"9/3/2021"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":977,"Cost":767,"Date":"9/5/2021"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":259,"Cost":147,"Date":"10/6/2021"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":846,"Cost":795,"Date":"10/19/2021"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":898,"Cost":477,"Date":"11/15/2021"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":587,"Cost":462,"Date":"12/8/2021"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":906,"Cost":763,"Date":"1/8/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":339,"Cost":281,"Date":"1/14/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":486,"Cost":412,"Date":"1/19/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":580,"Cost":416,"Date":"1/28/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":905,"Cost":592,"Date":"1/31/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":939,"Cost":846,"Date":"3/27/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":326,"Cost":255,"Date":"4/20/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":384,"Cost":273,"Date":"4/24/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":398,"Cost":296,"Date":"4/28/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":890,"Cost":829,"Date":"5/15/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":313,"Cost":243,"Date":"5/16/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":682,"Cost":523,"Date":"5/18/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":774,"Cost":583,"Date":"6/2/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":280,"Cost":150,"Date":"6/3/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":382,"Cost":318,"Date":"6/5/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":788,"Cost":490,"Date":"6/7/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":386,"Cost":335,"Date":"6/14/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":47,"Cost":28,"Date":"6/20/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":625,"Cost":479,"Date":"6/24/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":681,"Cost":366,"Date":"7/4/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":502,"Cost":270,"Date":"7/9/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":227,"Cost":203,"Date":"7/12/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":131,"Cost":110,"Date":"8/14/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":424,"Cost":315,"Date":"8/16/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":650,"Cost":531,"Date":"8/23/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":341,"Cost":283,"Date":"9/2/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":993,"Cost":935,"Date":"9/3/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":88,"Cost":66,"Date":"9/16/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":984,"Cost":739,"Date":"10/4/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":931,"Cost":638,"Date":"11/1/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":18,"Cost":13,"Date":"11/2/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":264,"Cost":184,"Date":"12/17/2022"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":740,"Cost":380,"Date":"2/10/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":703,"Cost":424,"Date":"2/28/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":590,"Cost":458,"Date":"3/4/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":865,"Cost":480,"Date":"3/9/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":156,"Cost":82,"Date":"3/9/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":218,"Cost":140,"Date":"3/11/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":635,"Cost":338,"Date":"3/17/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":915,"Cost":860,"Date":"3/17/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":267,"Cost":135,"Date":"3/23/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":362,"Cost":339,"Date":"4/1/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":471,"Cost":374,"Date":"5/7/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":75,"Cost":42,"Date":"5/10/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":966,"Cost":558,"Date":"5/20/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":601,"Cost":483,"Date":"6/2/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":165,"Cost":134,"Date":"6/11/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":72,"Cost":54,"Date":"6/16/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":138,"Cost":75,"Date":"6/16/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":14,"Cost":10,"Date":"7/10/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":790,"Cost":742,"Date":"7/11/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":360,"Cost":313,"Date":"8/28/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":375,"Cost":215,"Date":"8/29/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":446,"Cost":225,"Date":"8/31/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":447,"Cost":279,"Date":"9/8/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":782,"Cost":425,"Date":"9/13/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":986,"Cost":822,"Date":"9/14/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":715,"Cost":434,"Date":"9/19/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":19,"Cost":15,"Date":"9/25/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":219,"Cost":170,"Date":"10/4/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":842,"Cost":592,"Date":"10/10/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":207,"Cost":164,"Date":"10/17/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":86,"Cost":79,"Date":"10/28/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":459,"Cost":431,"Date":"10/30/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":201,"Cost":186,"Date":"11/1/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":140,"Cost":89,"Date":"11/15/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":763,"Cost":532,"Date":"11/25/2023"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":624,"Cost":375,"Date":"1/10/2024"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":74,"Cost":68,"Date":"1/14/2024"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":272,"Cost":242,"Date":"1/20/2024"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":917,"Cost":797,"Date":"2/8/2024"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":248,"Cost":146,"Date":"2/25/2024"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":847,"Cost":536,"Date":"3/7/2024"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":222,"Cost":172,"Date":"3/14/2024"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":475,"Cost":287,"Date":"3/27/2024"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":751,"Cost":424,"Date":"4/5/2024"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":50,"Cost":48,"Date":"4/14/2024"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":728,"Cost":634,"Date":"5/3/2024"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":114,"Cost":61,"Date":"5/9/2024"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":60,"Cost":51,"Date":"5/15/2024"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":620,"Cost":311,"Date":"5/25/2024"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":45,"Cost":33,"Date":"5/26/2024"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":651,"Cost":562,"Date":"5/31/2024"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":920,"Cost":721,"Date":"7/27/2024"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":905,"Cost":608,"Date":"9/17/2024"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":719,"Cost":675,"Date":"10/6/2024"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":864,"Cost":757,"Date":"10/8/2024"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":788,"Cost":490,"Date":"10/26/2024"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":487,"Cost":387,"Date":"11/16/2024"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":345,"Cost":182,"Date":"11/18/2024"},{"Store":"The Galleria, Houston, TX","Brand":"COS","Country":"USA","Sale":567,"Cost":309,"Date":"12/1/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":924,"Cost":600,"Date":"2/9/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":999,"Cost":881,"Date":"2/11/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":257,"Cost":160,"Date":"3/10/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":1000,"Cost":912,"Date":"3/16/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":837,"Cost":638,"Date":"3/18/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":137,"Cost":101,"Date":"3/20/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":972,"Cost":864,"Date":"3/26/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":782,"Cost":608,"Date":"6/2/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":676,"Cost":487,"Date":"6/10/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":955,"Cost":820,"Date":"6/16/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":144,"Cost":132,"Date":"6/25/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":130,"Cost":80,"Date":"7/19/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":438,"Cost":370,"Date":"7/21/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":154,"Cost":128,"Date":"7/25/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":690,"Cost":614,"Date":"8/4/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":230,"Cost":144,"Date":"9/2/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":260,"Cost":211,"Date":"9/4/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":400,"Cost":274,"Date":"9/19/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":319,"Cost":267,"Date":"9/29/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":272,"Cost":144,"Date":"10/2/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":954,"Cost":684,"Date":"10/15/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":166,"Cost":123,"Date":"10/30/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":571,"Cost":365,"Date":"11/9/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":804,"Cost":661,"Date":"11/23/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":748,"Cost":677,"Date":"11/30/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":276,"Cost":208,"Date":"12/8/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":30,"Cost":15,"Date":"12/11/2018"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":141,"Cost":113,"Date":"1/15/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":792,"Cost":470,"Date":"1/24/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":165,"Cost":113,"Date":"2/3/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":213,"Cost":175,"Date":"2/4/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":90,"Cost":72,"Date":"3/9/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":506,"Cost":318,"Date":"3/12/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":246,"Cost":207,"Date":"4/19/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":92,"Cost":60,"Date":"5/3/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":951,"Cost":759,"Date":"5/4/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":952,"Cost":852,"Date":"6/8/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":923,"Cost":803,"Date":"6/26/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":953,"Cost":688,"Date":"7/4/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":501,"Cost":324,"Date":"7/13/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":603,"Cost":331,"Date":"8/8/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":541,"Cost":459,"Date":"8/26/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":732,"Cost":549,"Date":"9/2/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":473,"Cost":333,"Date":"9/29/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":566,"Cost":407,"Date":"10/12/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":479,"Cost":314,"Date":"11/2/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":749,"Cost":640,"Date":"11/4/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":877,"Cost":738,"Date":"11/7/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":91,"Cost":55,"Date":"12/1/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":176,"Cost":141,"Date":"12/4/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":204,"Cost":118,"Date":"12/7/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":16,"Cost":12,"Date":"12/18/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":925,"Cost":642,"Date":"12/20/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":913,"Cost":846,"Date":"12/20/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":948,"Cost":805,"Date":"12/21/2019"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":404,"Cost":242,"Date":"1/9/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":429,"Cost":216,"Date":"2/5/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":770,"Cost":711,"Date":"2/16/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":709,"Cost":475,"Date":"2/16/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":686,"Cost":569,"Date":"2/18/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":879,"Cost":731,"Date":"2/22/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":949,"Cost":892,"Date":"2/25/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":104,"Cost":98,"Date":"3/8/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":536,"Cost":453,"Date":"4/2/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":152,"Cost":98,"Date":"4/3/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":353,"Cost":274,"Date":"4/9/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":578,"Cost":457,"Date":"4/10/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":253,"Cost":140,"Date":"4/19/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":684,"Cost":362,"Date":"5/17/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":813,"Cost":465,"Date":"5/22/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":253,"Cost":198,"Date":"6/20/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":11,"Cost":9,"Date":"7/1/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":478,"Cost":284,"Date":"7/4/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":515,"Cost":467,"Date":"7/8/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":755,"Cost":595,"Date":"7/9/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":184,"Cost":110,"Date":"7/14/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":622,"Cost":405,"Date":"7/19/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":357,"Cost":227,"Date":"8/1/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":119,"Cost":102,"Date":"8/6/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":300,"Cost":197,"Date":"8/7/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":935,"Cost":543,"Date":"8/22/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":662,"Cost":460,"Date":"8/31/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":120,"Cost":106,"Date":"9/1/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":60,"Cost":38,"Date":"9/1/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":201,"Cost":137,"Date":"9/17/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":823,"Cost":543,"Date":"9/29/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":371,"Cost":218,"Date":"11/7/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":719,"Cost":611,"Date":"11/26/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":760,"Cost":510,"Date":"11/27/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":98,"Cost":93,"Date":"12/5/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":592,"Cost":554,"Date":"12/26/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":749,"Cost":611,"Date":"12/31/2020"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":187,"Cost":167,"Date":"1/20/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":779,"Cost":675,"Date":"2/2/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":671,"Cost":468,"Date":"2/8/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":262,"Cost":188,"Date":"2/27/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":117,"Cost":61,"Date":"3/1/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":19,"Cost":16,"Date":"3/1/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":981,"Cost":752,"Date":"3/19/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":347,"Cost":303,"Date":"3/28/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":931,"Cost":702,"Date":"5/21/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":577,"Cost":312,"Date":"7/21/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":444,"Cost":232,"Date":"8/5/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":261,"Cost":225,"Date":"8/12/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":526,"Cost":319,"Date":"8/21/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":421,"Cost":380,"Date":"8/23/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":73,"Cost":41,"Date":"9/3/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":502,"Cost":290,"Date":"9/5/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":386,"Cost":303,"Date":"10/6/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":726,"Cost":682,"Date":"10/19/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":280,"Cost":169,"Date":"11/15/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":718,"Cost":497,"Date":"12/8/2021"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":509,"Cost":388,"Date":"1/8/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":101,"Cost":88,"Date":"1/14/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":767,"Cost":457,"Date":"1/19/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":484,"Cost":342,"Date":"1/28/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":681,"Cost":444,"Date":"1/31/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":68,"Cost":49,"Date":"3/27/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":594,"Cost":394,"Date":"4/20/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":183,"Cost":101,"Date":"4/24/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":941,"Cost":551,"Date":"4/28/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":563,"Cost":464,"Date":"5/15/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":141,"Cost":98,"Date":"5/16/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":479,"Cost":381,"Date":"5/18/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":365,"Cost":200,"Date":"6/2/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":844,"Cost":667,"Date":"6/3/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":754,"Cost":433,"Date":"6/5/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":230,"Cost":196,"Date":"6/7/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":497,"Cost":290,"Date":"6/14/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":897,"Cost":698,"Date":"6/20/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":704,"Cost":409,"Date":"6/24/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":338,"Cost":208,"Date":"7/4/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":28,"Cost":16,"Date":"7/9/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":503,"Cost":466,"Date":"7/12/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":410,"Cost":325,"Date":"8/14/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":667,"Cost":592,"Date":"8/16/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":244,"Cost":193,"Date":"8/23/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":873,"Cost":679,"Date":"9/2/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":624,"Cost":549,"Date":"9/3/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":422,"Cost":397,"Date":"9/16/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":660,"Cost":589,"Date":"10/4/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":982,"Cost":904,"Date":"11/1/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":812,"Cost":412,"Date":"11/2/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":319,"Cost":259,"Date":"12/17/2022"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":145,"Cost":133,"Date":"2/10/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":892,"Cost":703,"Date":"2/28/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":90,"Cost":75,"Date":"3/4/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":570,"Cost":351,"Date":"3/9/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":706,"Cost":536,"Date":"3/9/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":867,"Cost":499,"Date":"3/11/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":601,"Cost":488,"Date":"3/17/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":65,"Cost":43,"Date":"3/17/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":894,"Cost":740,"Date":"3/23/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":213,"Cost":123,"Date":"4/1/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":120,"Cost":94,"Date":"5/7/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":580,"Cost":409,"Date":"5/10/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":909,"Cost":496,"Date":"5/20/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":40,"Cost":29,"Date":"6/2/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":342,"Cost":200,"Date":"6/11/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":750,"Cost":385,"Date":"6/16/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":542,"Cost":412,"Date":"6/16/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":990,"Cost":627,"Date":"7/10/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":714,"Cost":664,"Date":"7/11/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":816,"Cost":447,"Date":"8/28/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":121,"Cost":60,"Date":"8/29/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":256,"Cost":169,"Date":"8/31/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":807,"Cost":454,"Date":"9/8/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":265,"Cost":157,"Date":"9/13/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":666,"Cost":441,"Date":"9/14/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":813,"Cost":406,"Date":"9/19/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":820,"Cost":435,"Date":"9/25/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":167,"Cost":89,"Date":"10/4/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":403,"Cost":321,"Date":"10/10/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":433,"Cost":270,"Date":"10/17/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":905,"Cost":604,"Date":"10/28/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":880,"Cost":498,"Date":"10/30/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":980,"Cost":778,"Date":"11/1/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":21,"Cost":11,"Date":"11/15/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":202,"Cost":139,"Date":"11/25/2023"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":559,"Cost":398,"Date":"1/10/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":160,"Cost":133,"Date":"1/14/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":713,"Cost":666,"Date":"1/20/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":423,"Cost":244,"Date":"2/8/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":392,"Cost":271,"Date":"2/25/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":362,"Cost":219,"Date":"3/7/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":844,"Cost":575,"Date":"3/14/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":356,"Cost":324,"Date":"3/27/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":267,"Cost":171,"Date":"4/5/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":247,"Cost":214,"Date":"4/14/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":48,"Cost":35,"Date":"5/3/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":625,"Cost":435,"Date":"5/9/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":414,"Cost":254,"Date":"5/15/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":839,"Cost":726,"Date":"5/25/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":325,"Cost":283,"Date":"5/26/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":937,"Cost":644,"Date":"5/31/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":648,"Cost":419,"Date":"7/27/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":569,"Cost":474,"Date":"9/17/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":403,"Cost":208,"Date":"10/6/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":230,"Cost":172,"Date":"10/8/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":300,"Cost":234,"Date":"10/26/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":766,"Cost":542,"Date":"11/16/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":206,"Cost":124,"Date":"11/18/2024"},{"Store":"The Galleria, Houston, TX","Brand":"Jeans","Country":"USA","Sale":217,"Cost":152,"Date":"12/1/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":938,"Cost":669,"Date":"2/9/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":943,"Cost":870,"Date":"2/11/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":713,"Cost":433,"Date":"3/10/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":393,"Cost":293,"Date":"3/16/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":38,"Cost":32,"Date":"3/18/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":98,"Cost":89,"Date":"3/20/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":86,"Cost":60,"Date":"3/26/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":132,"Cost":99,"Date":"6/2/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":139,"Cost":110,"Date":"6/10/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":900,"Cost":815,"Date":"6/16/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":493,"Cost":254,"Date":"6/25/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":798,"Cost":731,"Date":"7/19/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":578,"Cost":352,"Date":"7/21/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":826,"Cost":679,"Date":"7/25/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":359,"Cost":299,"Date":"8/4/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":164,"Cost":115,"Date":"9/2/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":987,"Cost":867,"Date":"9/4/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":989,"Cost":534,"Date":"9/19/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":881,"Cost":764,"Date":"9/29/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":320,"Cost":258,"Date":"10/2/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":104,"Cost":77,"Date":"10/15/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":674,"Cost":608,"Date":"10/30/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":685,"Cost":494,"Date":"11/9/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":902,"Cost":701,"Date":"11/23/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":257,"Cost":197,"Date":"11/30/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":577,"Cost":312,"Date":"12/8/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":60,"Cost":45,"Date":"12/11/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":981,"Cost":662,"Date":"1/15/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":410,"Cost":294,"Date":"1/24/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":51,"Cost":37,"Date":"2/3/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":312,"Cost":200,"Date":"2/4/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":266,"Cost":201,"Date":"3/9/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":201,"Cost":102,"Date":"3/12/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":129,"Cost":72,"Date":"4/19/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":527,"Cost":472,"Date":"5/3/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":433,"Cost":314,"Date":"5/4/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":963,"Cost":507,"Date":"6/8/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":322,"Cost":278,"Date":"6/26/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":583,"Cost":295,"Date":"7/4/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":325,"Cost":214,"Date":"7/13/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":150,"Cost":95,"Date":"8/8/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":675,"Cost":423,"Date":"8/26/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":285,"Cost":235,"Date":"9/2/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":927,"Cost":739,"Date":"9/29/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":234,"Cost":220,"Date":"10/12/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":91,"Cost":52,"Date":"11/2/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":4,"Cost":2,"Date":"11/4/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":362,"Cost":246,"Date":"11/7/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":368,"Cost":298,"Date":"12/1/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":37,"Cost":20,"Date":"12/4/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":613,"Cost":370,"Date":"12/7/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":204,"Cost":175,"Date":"12/18/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":168,"Cost":152,"Date":"12/20/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":466,"Cost":313,"Date":"12/20/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":168,"Cost":151,"Date":"12/21/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":707,"Cost":448,"Date":"1/9/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":842,"Cost":469,"Date":"2/5/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":632,"Cost":547,"Date":"2/16/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":805,"Cost":545,"Date":"2/16/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":632,"Cost":496,"Date":"2/18/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":539,"Cost":424,"Date":"2/22/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":539,"Cost":362,"Date":"2/25/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":618,"Cost":396,"Date":"3/8/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":604,"Cost":371,"Date":"4/2/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":772,"Cost":413,"Date":"4/3/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":236,"Cost":214,"Date":"4/9/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":228,"Cost":147,"Date":"4/10/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":834,"Cost":601,"Date":"4/19/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":180,"Cost":160,"Date":"5/17/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":307,"Cost":174,"Date":"5/22/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":918,"Cost":566,"Date":"6/20/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":487,"Cost":307,"Date":"7/1/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":90,"Cost":66,"Date":"7/4/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":939,"Cost":647,"Date":"7/8/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":419,"Cost":353,"Date":"7/9/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":634,"Cost":320,"Date":"7/14/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":280,"Cost":157,"Date":"7/19/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":77,"Cost":55,"Date":"8/1/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":236,"Cost":129,"Date":"8/6/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":382,"Cost":206,"Date":"8/7/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":968,"Cost":769,"Date":"8/22/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":716,"Cost":394,"Date":"8/31/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":948,"Cost":510,"Date":"9/1/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":27,"Cost":19,"Date":"9/1/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":791,"Cost":540,"Date":"9/17/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":650,"Cost":503,"Date":"9/29/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":906,"Cost":779,"Date":"11/7/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":830,"Cost":465,"Date":"11/26/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":559,"Cost":357,"Date":"11/27/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":625,"Cost":363,"Date":"12/5/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":186,"Cost":162,"Date":"12/26/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":949,"Cost":758,"Date":"12/31/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":524,"Cost":309,"Date":"1/20/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":845,"Cost":432,"Date":"2/2/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":129,"Cost":92,"Date":"2/8/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":897,"Cost":835,"Date":"2/27/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":598,"Cost":468,"Date":"3/1/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":466,"Cost":273,"Date":"3/1/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":725,"Cost":634,"Date":"3/19/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":186,"Cost":102,"Date":"3/28/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":22,"Cost":19,"Date":"5/21/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":579,"Cost":479,"Date":"7/21/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":199,"Cost":110,"Date":"8/5/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":860,"Cost":736,"Date":"8/12/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":606,"Cost":407,"Date":"8/21/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":885,"Cost":824,"Date":"8/23/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":363,"Cost":219,"Date":"9/3/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":244,"Cost":193,"Date":"9/5/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":964,"Cost":880,"Date":"10/6/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":884,"Cost":583,"Date":"10/19/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":670,"Cost":529,"Date":"11/15/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":685,"Cost":626,"Date":"12/8/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":886,"Cost":693,"Date":"1/8/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":34,"Cost":20,"Date":"1/14/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":743,"Cost":651,"Date":"1/19/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":641,"Cost":426,"Date":"1/28/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":819,"Cost":513,"Date":"1/31/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":49,"Cost":25,"Date":"3/27/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":935,"Cost":592,"Date":"4/20/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":163,"Cost":120,"Date":"4/24/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":672,"Cost":350,"Date":"4/28/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":333,"Cost":278,"Date":"5/15/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":11,"Cost":10,"Date":"5/16/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":177,"Cost":145,"Date":"5/18/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":177,"Cost":164,"Date":"6/2/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":120,"Cost":81,"Date":"6/3/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":509,"Cost":393,"Date":"6/5/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":242,"Cost":199,"Date":"6/7/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":163,"Cost":116,"Date":"6/14/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":801,"Cost":612,"Date":"6/20/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":837,"Cost":455,"Date":"6/24/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":245,"Cost":160,"Date":"7/4/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":509,"Cost":372,"Date":"7/9/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":142,"Cost":115,"Date":"7/12/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":10,"Cost":9,"Date":"8/14/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":169,"Cost":136,"Date":"8/16/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":280,"Cost":169,"Date":"8/23/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":388,"Cost":280,"Date":"9/2/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":799,"Cost":458,"Date":"9/3/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":666,"Cost":354,"Date":"9/16/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":857,"Cost":814,"Date":"10/4/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":396,"Cost":229,"Date":"11/1/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":911,"Cost":704,"Date":"11/2/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":56,"Cost":53,"Date":"12/17/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":298,"Cost":224,"Date":"2/10/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":790,"Cost":635,"Date":"2/28/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":403,"Cost":323,"Date":"3/4/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":178,"Cost":133,"Date":"3/9/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":2,"Cost":1,"Date":"3/9/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":181,"Cost":142,"Date":"3/11/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":780,"Cost":608,"Date":"3/17/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":499,"Cost":320,"Date":"3/17/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":262,"Cost":186,"Date":"3/23/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":29,"Cost":27,"Date":"4/1/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":618,"Cost":383,"Date":"5/7/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":584,"Cost":506,"Date":"5/10/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":922,"Cost":679,"Date":"5/20/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":988,"Cost":814,"Date":"6/2/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":797,"Cost":535,"Date":"6/11/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":665,"Cost":580,"Date":"6/16/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":798,"Cost":560,"Date":"6/16/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":589,"Cost":307,"Date":"7/10/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":166,"Cost":102,"Date":"7/11/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":839,"Cost":508,"Date":"8/28/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":433,"Cost":410,"Date":"8/29/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":228,"Cost":169,"Date":"8/31/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":408,"Cost":307,"Date":"9/8/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":625,"Cost":390,"Date":"9/13/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":329,"Cost":275,"Date":"9/14/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":267,"Cost":209,"Date":"9/19/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":530,"Cost":323,"Date":"9/25/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":739,"Cost":599,"Date":"10/4/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":450,"Cost":332,"Date":"10/10/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":643,"Cost":454,"Date":"10/17/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":507,"Cost":319,"Date":"10/28/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":676,"Cost":408,"Date":"10/30/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":339,"Cost":266,"Date":"11/1/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":794,"Cost":408,"Date":"11/15/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":261,"Cost":156,"Date":"11/25/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":239,"Cost":204,"Date":"1/10/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":900,"Cost":669,"Date":"1/14/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":599,"Cost":377,"Date":"1/20/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":139,"Cost":130,"Date":"2/8/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":98,"Cost":79,"Date":"2/25/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":167,"Cost":105,"Date":"3/7/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":808,"Cost":482,"Date":"3/14/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":127,"Cost":100,"Date":"3/27/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":860,"Cost":597,"Date":"4/5/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":697,"Cost":520,"Date":"4/14/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":606,"Cost":526,"Date":"5/3/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":989,"Cost":519,"Date":"5/9/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":690,"Cost":402,"Date":"5/15/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":484,"Cost":318,"Date":"5/25/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":817,"Cost":443,"Date":"5/26/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":947,"Cost":519,"Date":"5/31/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":395,"Cost":214,"Date":"7/27/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":470,"Cost":366,"Date":"9/17/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":206,"Cost":156,"Date":"10/6/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":80,"Cost":54,"Date":"10/8/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":504,"Cost":475,"Date":"10/26/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":24,"Cost":14,"Date":"11/16/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":646,"Cost":324,"Date":"11/18/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"ARKET","Country":"USA","Sale":774,"Cost":545,"Date":"12/1/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":465,"Cost":431,"Date":"2/9/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":697,"Cost":417,"Date":"2/11/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":695,"Cost":435,"Date":"3/10/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":798,"Cost":424,"Date":"3/16/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":495,"Cost":415,"Date":"3/18/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":796,"Cost":399,"Date":"3/20/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":972,"Cost":890,"Date":"3/26/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":390,"Cost":278,"Date":"6/2/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":658,"Cost":481,"Date":"6/10/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":584,"Cost":437,"Date":"6/16/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":755,"Cost":407,"Date":"6/25/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":330,"Cost":254,"Date":"7/19/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":179,"Cost":140,"Date":"7/21/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":572,"Cost":337,"Date":"7/25/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":822,"Cost":706,"Date":"8/4/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":337,"Cost":212,"Date":"9/2/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":525,"Cost":487,"Date":"9/4/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":406,"Cost":311,"Date":"9/19/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":220,"Cost":134,"Date":"9/29/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":632,"Cost":477,"Date":"10/2/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":303,"Cost":156,"Date":"10/15/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":949,"Cost":568,"Date":"10/30/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":151,"Cost":86,"Date":"11/9/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":475,"Cost":354,"Date":"11/23/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":893,"Cost":695,"Date":"11/30/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":741,"Cost":599,"Date":"12/8/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":49,"Cost":27,"Date":"12/11/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":243,"Cost":198,"Date":"1/15/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":294,"Cost":156,"Date":"1/24/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":899,"Cost":793,"Date":"2/3/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":478,"Cost":446,"Date":"2/4/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":907,"Cost":641,"Date":"3/9/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":922,"Cost":635,"Date":"3/12/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":87,"Cost":78,"Date":"4/19/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":438,"Cost":273,"Date":"5/3/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":881,"Cost":629,"Date":"5/4/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":765,"Cost":436,"Date":"6/8/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":228,"Cost":114,"Date":"6/26/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":204,"Cost":161,"Date":"7/4/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":172,"Cost":108,"Date":"7/13/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":814,"Cost":713,"Date":"8/8/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":911,"Cost":643,"Date":"8/26/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":972,"Cost":537,"Date":"9/2/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":26,"Cost":15,"Date":"9/29/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":467,"Cost":327,"Date":"10/12/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":536,"Cost":391,"Date":"11/2/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":858,"Cost":800,"Date":"11/4/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":79,"Cost":63,"Date":"11/7/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":614,"Cost":457,"Date":"12/1/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":136,"Cost":93,"Date":"12/4/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":819,"Cost":482,"Date":"12/7/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":818,"Cost":739,"Date":"12/18/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":448,"Cost":351,"Date":"12/20/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":925,"Cost":628,"Date":"12/20/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":922,"Cost":479,"Date":"12/21/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":26,"Cost":22,"Date":"1/9/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":333,"Cost":317,"Date":"2/5/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":766,"Cost":500,"Date":"2/16/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":552,"Cost":428,"Date":"2/16/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":943,"Cost":482,"Date":"2/18/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":94,"Cost":53,"Date":"2/22/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":187,"Cost":158,"Date":"2/25/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":577,"Cost":324,"Date":"3/8/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":402,"Cost":331,"Date":"4/2/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":467,"Cost":261,"Date":"4/3/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":26,"Cost":13,"Date":"4/9/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":983,"Cost":932,"Date":"4/10/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":386,"Cost":202,"Date":"4/19/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":195,"Cost":169,"Date":"5/17/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":408,"Cost":215,"Date":"5/22/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":338,"Cost":305,"Date":"6/20/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":938,"Cost":832,"Date":"7/1/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":830,"Cost":557,"Date":"7/4/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":440,"Cost":299,"Date":"7/8/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":753,"Cost":495,"Date":"7/9/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":732,"Cost":556,"Date":"7/14/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":13,"Cost":7,"Date":"7/19/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":99,"Cost":50,"Date":"8/1/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":825,"Cost":466,"Date":"8/6/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":537,"Cost":398,"Date":"8/7/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":204,"Cost":130,"Date":"8/22/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":805,"Cost":712,"Date":"8/31/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":382,"Cost":347,"Date":"9/1/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":497,"Cost":421,"Date":"9/1/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":892,"Cost":504,"Date":"9/17/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":243,"Cost":229,"Date":"9/29/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":531,"Cost":278,"Date":"11/7/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":846,"Cost":487,"Date":"11/26/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":139,"Cost":71,"Date":"11/27/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":2,"Cost":1,"Date":"12/5/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":323,"Cost":165,"Date":"12/26/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":685,"Cost":521,"Date":"12/31/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":213,"Cost":141,"Date":"1/20/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":942,"Cost":784,"Date":"2/2/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":711,"Cost":578,"Date":"2/8/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":539,"Cost":489,"Date":"2/27/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":308,"Cost":163,"Date":"3/1/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":621,"Cost":542,"Date":"3/1/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":904,"Cost":712,"Date":"3/19/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":350,"Cost":227,"Date":"3/28/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":114,"Cost":104,"Date":"5/21/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":230,"Cost":196,"Date":"7/21/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":395,"Cost":314,"Date":"8/5/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":996,"Cost":773,"Date":"8/12/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":344,"Cost":303,"Date":"8/21/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":111,"Cost":88,"Date":"8/23/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":552,"Cost":387,"Date":"9/3/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":982,"Cost":530,"Date":"9/5/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":749,"Cost":476,"Date":"10/6/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":553,"Cost":442,"Date":"10/19/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":453,"Cost":260,"Date":"11/15/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":344,"Cost":224,"Date":"12/8/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":815,"Cost":517,"Date":"1/8/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":290,"Cost":255,"Date":"1/14/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":37,"Cost":20,"Date":"1/19/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":935,"Cost":881,"Date":"1/28/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":109,"Cost":67,"Date":"1/31/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":567,"Cost":288,"Date":"3/27/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":50,"Cost":30,"Date":"4/20/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":944,"Cost":598,"Date":"4/24/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":891,"Cost":732,"Date":"4/28/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":964,"Cost":529,"Date":"5/15/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":844,"Cost":616,"Date":"5/16/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":538,"Cost":321,"Date":"5/18/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":552,"Cost":475,"Date":"6/2/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":505,"Cost":405,"Date":"6/3/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":360,"Cost":289,"Date":"6/5/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":342,"Cost":194,"Date":"6/7/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":34,"Cost":30,"Date":"6/14/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":532,"Cost":302,"Date":"6/20/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":753,"Cost":430,"Date":"6/24/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":492,"Cost":459,"Date":"7/4/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":252,"Cost":203,"Date":"7/9/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":445,"Cost":283,"Date":"7/12/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":203,"Cost":171,"Date":"8/14/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":580,"Cost":455,"Date":"8/16/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":222,"Cost":156,"Date":"8/23/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":109,"Cost":98,"Date":"9/2/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":180,"Cost":105,"Date":"9/3/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":726,"Cost":662,"Date":"9/16/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":423,"Cost":310,"Date":"10/4/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":596,"Cost":493,"Date":"11/1/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":702,"Cost":356,"Date":"11/2/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":866,"Cost":756,"Date":"12/17/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":789,"Cost":621,"Date":"2/10/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":334,"Cost":241,"Date":"2/28/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":598,"Cost":508,"Date":"3/4/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":797,"Cost":538,"Date":"3/9/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":559,"Cost":500,"Date":"3/9/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":746,"Cost":472,"Date":"3/11/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":221,"Cost":148,"Date":"3/17/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":289,"Cost":177,"Date":"3/17/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":863,"Cost":437,"Date":"3/23/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":232,"Cost":142,"Date":"4/1/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":430,"Cost":276,"Date":"5/7/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":873,"Cost":746,"Date":"5/10/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":932,"Cost":568,"Date":"5/20/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":867,"Cost":809,"Date":"6/2/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":789,"Cost":516,"Date":"6/11/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":988,"Cost":802,"Date":"6/16/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":635,"Cost":434,"Date":"6/16/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":101,"Cost":87,"Date":"7/10/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":324,"Cost":185,"Date":"7/11/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":859,"Cost":606,"Date":"8/28/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":600,"Cost":441,"Date":"8/29/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":35,"Cost":23,"Date":"8/31/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":119,"Cost":108,"Date":"9/8/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":728,"Cost":523,"Date":"9/13/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":670,"Cost":410,"Date":"9/14/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":143,"Cost":125,"Date":"9/19/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":583,"Cost":554,"Date":"9/25/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":919,"Cost":630,"Date":"10/4/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":354,"Cost":260,"Date":"10/10/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":418,"Cost":272,"Date":"10/17/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":656,"Cost":370,"Date":"10/28/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":312,"Cost":205,"Date":"10/30/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":882,"Cost":655,"Date":"11/1/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":7,"Cost":5,"Date":"11/15/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":32,"Cost":18,"Date":"11/25/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":610,"Cost":460,"Date":"1/10/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":938,"Cost":886,"Date":"1/14/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":800,"Cost":553,"Date":"1/20/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":555,"Cost":376,"Date":"2/8/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":746,"Cost":428,"Date":"2/25/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":838,"Cost":428,"Date":"3/7/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":206,"Cost":173,"Date":"3/14/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":283,"Cost":167,"Date":"3/27/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":882,"Cost":502,"Date":"4/5/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":857,"Cost":543,"Date":"4/14/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":948,"Cost":774,"Date":"5/3/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":553,"Cost":396,"Date":"5/9/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":916,"Cost":583,"Date":"5/15/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":736,"Cost":607,"Date":"5/25/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":753,"Cost":450,"Date":"5/26/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":397,"Cost":208,"Date":"5/31/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":591,"Cost":488,"Date":"7/27/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":640,"Cost":450,"Date":"9/17/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":33,"Cost":31,"Date":"10/6/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":289,"Cost":239,"Date":"10/8/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":62,"Cost":35,"Date":"10/26/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":109,"Cost":99,"Date":"11/16/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":999,"Cost":834,"Date":"11/18/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"HM","Country":"USA","Sale":899,"Cost":563,"Date":"12/1/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":649,"Cost":351,"Date":"2/9/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":352,"Cost":211,"Date":"2/11/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":838,"Cost":750,"Date":"3/10/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":896,"Cost":644,"Date":"3/16/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":423,"Cost":251,"Date":"3/18/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":479,"Cost":366,"Date":"3/20/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":120,"Cost":63,"Date":"3/26/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":374,"Cost":315,"Date":"6/2/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":463,"Cost":255,"Date":"6/10/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":691,"Cost":557,"Date":"6/16/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":502,"Cost":378,"Date":"6/25/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":505,"Cost":349,"Date":"7/19/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":784,"Cost":512,"Date":"7/21/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":911,"Cost":552,"Date":"7/25/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":398,"Cost":252,"Date":"8/4/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":477,"Cost":303,"Date":"9/2/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":920,"Cost":776,"Date":"9/4/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":346,"Cost":325,"Date":"9/19/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":666,"Cost":352,"Date":"9/29/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":771,"Cost":463,"Date":"10/2/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":308,"Cost":166,"Date":"10/15/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":326,"Cost":228,"Date":"10/30/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":773,"Cost":532,"Date":"11/9/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":738,"Cost":429,"Date":"11/23/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":228,"Cost":137,"Date":"11/30/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":234,"Cost":217,"Date":"12/8/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":95,"Cost":87,"Date":"12/11/2018"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":297,"Cost":246,"Date":"1/15/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":365,"Cost":284,"Date":"1/24/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":761,"Cost":530,"Date":"2/3/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":640,"Cost":582,"Date":"2/4/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":673,"Cost":453,"Date":"3/9/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":122,"Cost":115,"Date":"3/12/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":963,"Cost":626,"Date":"4/19/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":144,"Cost":87,"Date":"5/3/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":728,"Cost":672,"Date":"5/4/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":674,"Cost":423,"Date":"6/8/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":704,"Cost":382,"Date":"6/26/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":3,"Cost":3,"Date":"7/4/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":377,"Cost":301,"Date":"7/13/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":815,"Cost":411,"Date":"8/8/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":204,"Cost":159,"Date":"8/26/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":390,"Cost":317,"Date":"9/2/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":642,"Cost":488,"Date":"9/29/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":494,"Cost":288,"Date":"10/12/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":529,"Cost":439,"Date":"11/2/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":561,"Cost":468,"Date":"11/4/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":311,"Cost":198,"Date":"11/7/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":286,"Cost":244,"Date":"12/1/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":617,"Cost":328,"Date":"12/4/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":546,"Cost":518,"Date":"12/7/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":869,"Cost":505,"Date":"12/18/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":498,"Cost":426,"Date":"12/20/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":932,"Cost":669,"Date":"12/20/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":795,"Cost":418,"Date":"12/21/2019"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":900,"Cost":827,"Date":"1/9/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":56,"Cost":37,"Date":"2/5/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":596,"Cost":381,"Date":"2/16/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":239,"Cost":125,"Date":"2/16/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":89,"Cost":72,"Date":"2/18/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":122,"Cost":76,"Date":"2/22/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":128,"Cost":112,"Date":"2/25/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":149,"Cost":120,"Date":"3/8/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":646,"Cost":611,"Date":"4/2/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":556,"Cost":311,"Date":"4/3/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":429,"Cost":361,"Date":"4/9/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":259,"Cost":149,"Date":"4/10/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":855,"Cost":718,"Date":"4/19/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":976,"Cost":577,"Date":"5/17/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":96,"Cost":78,"Date":"5/22/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":531,"Cost":416,"Date":"6/20/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":841,"Cost":433,"Date":"7/1/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":326,"Cost":257,"Date":"7/4/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":179,"Cost":106,"Date":"7/8/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":469,"Cost":341,"Date":"7/9/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":191,"Cost":107,"Date":"7/14/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":837,"Cost":778,"Date":"7/19/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":910,"Cost":859,"Date":"8/1/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":126,"Cost":101,"Date":"8/6/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":151,"Cost":124,"Date":"8/7/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":477,"Cost":270,"Date":"8/22/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":926,"Cost":673,"Date":"8/31/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":79,"Cost":40,"Date":"9/1/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":616,"Cost":376,"Date":"9/1/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":159,"Cost":102,"Date":"9/17/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":473,"Cost":403,"Date":"9/29/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":650,"Cost":449,"Date":"11/7/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":59,"Cost":47,"Date":"11/26/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":888,"Cost":822,"Date":"11/27/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":449,"Cost":415,"Date":"12/5/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":474,"Cost":441,"Date":"12/26/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":184,"Cost":158,"Date":"12/31/2020"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":869,"Cost":564,"Date":"1/20/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":813,"Cost":559,"Date":"2/2/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":396,"Cost":225,"Date":"2/8/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":784,"Cost":701,"Date":"2/27/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":810,"Cost":527,"Date":"3/1/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":416,"Cost":394,"Date":"3/1/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":173,"Cost":148,"Date":"3/19/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":456,"Cost":269,"Date":"3/28/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":753,"Cost":528,"Date":"5/21/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":160,"Cost":99,"Date":"7/21/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":221,"Cost":114,"Date":"8/5/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":782,"Cost":551,"Date":"8/12/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":644,"Cost":460,"Date":"8/21/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":964,"Cost":659,"Date":"8/23/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":426,"Cost":393,"Date":"9/3/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":892,"Cost":646,"Date":"9/5/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":611,"Cost":384,"Date":"10/6/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":202,"Cost":115,"Date":"10/19/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":474,"Cost":305,"Date":"11/15/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":214,"Cost":172,"Date":"12/8/2021"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":345,"Cost":200,"Date":"1/8/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":975,"Cost":501,"Date":"1/14/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":259,"Cost":243,"Date":"1/19/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":931,"Cost":589,"Date":"1/28/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":541,"Cost":430,"Date":"1/31/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":633,"Cost":409,"Date":"3/27/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":458,"Cost":359,"Date":"4/20/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":1,"Cost":1,"Date":"4/24/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":493,"Cost":278,"Date":"4/28/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":270,"Cost":176,"Date":"5/15/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":99,"Cost":94,"Date":"5/16/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":357,"Cost":181,"Date":"5/18/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":338,"Cost":202,"Date":"6/2/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":502,"Cost":337,"Date":"6/3/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":321,"Cost":248,"Date":"6/5/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":656,"Cost":448,"Date":"6/7/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":317,"Cost":165,"Date":"6/14/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":321,"Cost":221,"Date":"6/20/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":939,"Cost":524,"Date":"6/24/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":1000,"Cost":804,"Date":"7/4/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":830,"Cost":711,"Date":"7/9/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":212,"Cost":193,"Date":"7/12/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":646,"Cost":569,"Date":"8/14/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":147,"Cost":103,"Date":"8/16/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":628,"Cost":565,"Date":"8/23/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":560,"Cost":323,"Date":"9/2/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":7,"Cost":7,"Date":"9/3/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":3,"Cost":2,"Date":"9/16/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":191,"Cost":135,"Date":"10/4/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":763,"Cost":598,"Date":"11/1/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":672,"Cost":448,"Date":"11/2/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":842,"Cost":528,"Date":"12/17/2022"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":60,"Cost":40,"Date":"2/10/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":102,"Cost":65,"Date":"2/28/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":838,"Cost":700,"Date":"3/4/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":332,"Cost":254,"Date":"3/9/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":655,"Cost":507,"Date":"3/9/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":681,"Cost":387,"Date":"3/11/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":289,"Cost":220,"Date":"3/17/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":252,"Cost":201,"Date":"3/17/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":122,"Cost":107,"Date":"3/23/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":906,"Cost":478,"Date":"4/1/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":377,"Cost":339,"Date":"5/7/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":273,"Cost":164,"Date":"5/10/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":616,"Cost":473,"Date":"5/20/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":73,"Cost":53,"Date":"6/2/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":479,"Cost":453,"Date":"6/11/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":619,"Cost":435,"Date":"6/16/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":448,"Cost":350,"Date":"6/16/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":499,"Cost":422,"Date":"7/10/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":417,"Cost":355,"Date":"7/11/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":857,"Cost":644,"Date":"8/28/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":314,"Cost":251,"Date":"8/29/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":77,"Cost":59,"Date":"8/31/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":496,"Cost":305,"Date":"9/8/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":626,"Cost":336,"Date":"9/13/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":360,"Cost":261,"Date":"9/14/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":293,"Cost":178,"Date":"9/19/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":83,"Cost":70,"Date":"9/25/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":108,"Cost":85,"Date":"10/4/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":856,"Cost":712,"Date":"10/10/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":752,"Cost":430,"Date":"10/17/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":378,"Cost":196,"Date":"10/28/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":34,"Cost":20,"Date":"10/30/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":440,"Cost":222,"Date":"11/1/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":920,"Cost":513,"Date":"11/15/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":995,"Cost":570,"Date":"11/25/2023"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":974,"Cost":729,"Date":"1/10/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":151,"Cost":125,"Date":"1/14/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":22,"Cost":15,"Date":"1/20/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":527,"Cost":294,"Date":"2/8/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":77,"Cost":73,"Date":"2/25/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":961,"Cost":574,"Date":"3/7/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":556,"Cost":288,"Date":"3/14/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":615,"Cost":403,"Date":"3/27/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":743,"Cost":647,"Date":"4/5/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":625,"Cost":333,"Date":"4/14/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":635,"Cost":482,"Date":"5/3/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":874,"Cost":806,"Date":"5/9/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":906,"Cost":852,"Date":"5/15/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":922,"Cost":823,"Date":"5/25/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":676,"Cost":426,"Date":"5/26/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":379,"Cost":317,"Date":"5/31/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":741,"Cost":371,"Date":"7/27/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":375,"Cost":339,"Date":"9/17/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":492,"Cost":460,"Date":"10/6/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":237,"Cost":130,"Date":"10/8/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":542,"Cost":388,"Date":"10/26/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":848,"Cost":467,"Date":"11/16/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":91,"Cost":74,"Date":"11/18/2024"},{"Store":"South Coast Plaza, Costa Mesa, CA","Brand":"Jeans","Country":"USA","Sale":105,"Cost":67,"Date":"12/1/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":562,"Cost":298,"Date":"2/9/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":405,"Cost":320,"Date":"2/11/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":166,"Cost":136,"Date":"3/10/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":906,"Cost":592,"Date":"3/16/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":269,"Cost":224,"Date":"3/18/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":69,"Cost":41,"Date":"3/20/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":316,"Cost":271,"Date":"3/26/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":15,"Cost":9,"Date":"6/2/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":131,"Cost":109,"Date":"6/10/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":153,"Cost":143,"Date":"6/16/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":624,"Cost":375,"Date":"6/25/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":61,"Cost":32,"Date":"7/19/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":388,"Cost":236,"Date":"7/21/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":903,"Cost":595,"Date":"7/25/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":109,"Cost":102,"Date":"8/4/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":649,"Cost":373,"Date":"9/2/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":821,"Cost":657,"Date":"9/4/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":257,"Cost":169,"Date":"9/19/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":728,"Cost":465,"Date":"9/29/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":491,"Cost":269,"Date":"10/2/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":159,"Cost":89,"Date":"10/15/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":155,"Cost":122,"Date":"10/30/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":116,"Cost":61,"Date":"11/9/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":867,"Cost":716,"Date":"11/23/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":391,"Cost":356,"Date":"11/30/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":98,"Cost":54,"Date":"12/8/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":988,"Cost":822,"Date":"12/11/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":379,"Cost":262,"Date":"1/15/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":467,"Cost":406,"Date":"1/24/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":747,"Cost":556,"Date":"2/3/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":910,"Cost":497,"Date":"2/4/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":230,"Cost":136,"Date":"3/9/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":485,"Cost":312,"Date":"3/12/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":221,"Cost":115,"Date":"4/19/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":174,"Cost":95,"Date":"5/3/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":530,"Cost":445,"Date":"5/4/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":105,"Cost":98,"Date":"6/8/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":333,"Cost":283,"Date":"6/26/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":733,"Cost":641,"Date":"7/4/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":28,"Cost":19,"Date":"7/13/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":816,"Cost":507,"Date":"8/8/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":158,"Cost":142,"Date":"8/26/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":649,"Cost":434,"Date":"9/2/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":454,"Cost":373,"Date":"9/29/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":485,"Cost":359,"Date":"10/12/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":458,"Cost":322,"Date":"11/2/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":927,"Cost":824,"Date":"11/4/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":376,"Cost":213,"Date":"11/7/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":165,"Cost":143,"Date":"12/1/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":101,"Cost":63,"Date":"12/4/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":16,"Cost":14,"Date":"12/7/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":908,"Cost":660,"Date":"12/18/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":245,"Cost":126,"Date":"12/20/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":272,"Cost":164,"Date":"12/20/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":881,"Cost":823,"Date":"12/21/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":368,"Cost":310,"Date":"1/9/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":632,"Cost":323,"Date":"2/5/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":600,"Cost":328,"Date":"2/16/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":146,"Cost":87,"Date":"2/16/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":757,"Cost":649,"Date":"2/18/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":226,"Cost":119,"Date":"2/22/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":151,"Cost":79,"Date":"2/25/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":809,"Cost":537,"Date":"3/8/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":129,"Cost":117,"Date":"4/2/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":157,"Cost":133,"Date":"4/3/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":422,"Cost":273,"Date":"4/9/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":58,"Cost":34,"Date":"4/10/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":352,"Cost":320,"Date":"4/19/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":771,"Cost":416,"Date":"5/17/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":615,"Cost":349,"Date":"5/22/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":471,"Cost":284,"Date":"6/20/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":546,"Cost":344,"Date":"7/1/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":402,"Cost":364,"Date":"7/4/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":938,"Cost":709,"Date":"7/8/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":261,"Cost":236,"Date":"7/9/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":635,"Cost":543,"Date":"7/14/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":35,"Cost":28,"Date":"7/19/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":6,"Cost":6,"Date":"8/1/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":84,"Cost":44,"Date":"8/6/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":206,"Cost":111,"Date":"8/7/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":487,"Cost":441,"Date":"8/22/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":617,"Cost":558,"Date":"8/31/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":791,"Cost":424,"Date":"9/1/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":481,"Cost":431,"Date":"9/1/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":748,"Cost":592,"Date":"9/17/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":707,"Cost":495,"Date":"9/29/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":986,"Cost":623,"Date":"11/7/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":793,"Cost":689,"Date":"11/26/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":515,"Cost":421,"Date":"11/27/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":687,"Cost":576,"Date":"12/5/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":593,"Cost":342,"Date":"12/26/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":779,"Cost":400,"Date":"12/31/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":712,"Cost":538,"Date":"1/20/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":575,"Cost":451,"Date":"2/2/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":466,"Cost":420,"Date":"2/8/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":83,"Cost":73,"Date":"2/27/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":248,"Cost":188,"Date":"3/1/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":680,"Cost":530,"Date":"3/1/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":315,"Cost":228,"Date":"3/19/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":68,"Cost":55,"Date":"3/28/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":808,"Cost":705,"Date":"5/21/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":563,"Cost":478,"Date":"7/21/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":850,"Cost":701,"Date":"8/5/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":455,"Cost":229,"Date":"8/12/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":321,"Cost":212,"Date":"8/21/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":895,"Cost":808,"Date":"8/23/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":590,"Cost":546,"Date":"9/3/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":208,"Cost":145,"Date":"9/5/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":163,"Cost":139,"Date":"10/6/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":35,"Cost":27,"Date":"10/19/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":483,"Cost":457,"Date":"11/15/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":212,"Cost":196,"Date":"12/8/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":659,"Cost":338,"Date":"1/8/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":90,"Cost":47,"Date":"1/14/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":335,"Cost":311,"Date":"1/19/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":672,"Cost":567,"Date":"1/28/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":491,"Cost":366,"Date":"1/31/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":793,"Cost":596,"Date":"3/27/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":88,"Cost":52,"Date":"4/20/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":413,"Cost":380,"Date":"4/24/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":294,"Cost":256,"Date":"4/28/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":447,"Cost":301,"Date":"5/15/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":360,"Cost":259,"Date":"5/16/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":748,"Cost":593,"Date":"5/18/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":642,"Cost":353,"Date":"6/2/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":268,"Cost":158,"Date":"6/3/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":198,"Cost":109,"Date":"6/5/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":144,"Cost":76,"Date":"6/7/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":163,"Cost":115,"Date":"6/14/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":834,"Cost":682,"Date":"6/20/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":250,"Cost":134,"Date":"6/24/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":385,"Cost":304,"Date":"7/4/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":477,"Cost":369,"Date":"7/9/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":943,"Cost":777,"Date":"7/12/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":372,"Cost":193,"Date":"8/14/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":59,"Cost":44,"Date":"8/16/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":32,"Cost":24,"Date":"8/23/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":388,"Cost":350,"Date":"9/2/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":437,"Cost":356,"Date":"9/3/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":834,"Cost":440,"Date":"9/16/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":821,"Cost":691,"Date":"10/4/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":135,"Cost":92,"Date":"11/1/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":7,"Cost":5,"Date":"11/2/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":44,"Cost":22,"Date":"12/17/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":776,"Cost":504,"Date":"2/10/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":614,"Cost":317,"Date":"2/28/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":864,"Cost":815,"Date":"3/4/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":291,"Cost":257,"Date":"3/9/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":60,"Cost":57,"Date":"3/9/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":538,"Cost":362,"Date":"3/11/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":397,"Cost":259,"Date":"3/17/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":436,"Cost":324,"Date":"3/17/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":254,"Cost":227,"Date":"3/23/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":969,"Cost":629,"Date":"4/1/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":811,"Cost":447,"Date":"5/7/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":888,"Cost":625,"Date":"5/10/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":640,"Cost":481,"Date":"5/20/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":466,"Cost":247,"Date":"6/2/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":205,"Cost":115,"Date":"6/11/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":586,"Cost":484,"Date":"6/16/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":119,"Cost":77,"Date":"6/16/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":977,"Cost":575,"Date":"7/10/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":751,"Cost":587,"Date":"7/11/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":184,"Cost":138,"Date":"8/28/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":455,"Cost":264,"Date":"8/29/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":722,"Cost":362,"Date":"8/31/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":539,"Cost":511,"Date":"9/8/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":328,"Cost":233,"Date":"9/13/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":861,"Cost":570,"Date":"9/14/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":892,"Cost":599,"Date":"9/19/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":22,"Cost":11,"Date":"9/25/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":303,"Cost":250,"Date":"10/4/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":576,"Cost":335,"Date":"10/10/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":738,"Cost":388,"Date":"10/17/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":541,"Cost":508,"Date":"10/28/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":131,"Cost":79,"Date":"10/30/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":4,"Cost":2,"Date":"11/1/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":182,"Cost":91,"Date":"11/15/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":367,"Cost":289,"Date":"11/25/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":686,"Cost":608,"Date":"1/10/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":615,"Cost":347,"Date":"1/14/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":114,"Cost":100,"Date":"1/20/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":771,"Cost":697,"Date":"2/8/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":883,"Cost":506,"Date":"2/25/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":136,"Cost":96,"Date":"3/7/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":648,"Cost":484,"Date":"3/14/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":94,"Cost":72,"Date":"3/27/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":227,"Cost":179,"Date":"4/5/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":354,"Cost":242,"Date":"4/14/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":277,"Cost":183,"Date":"5/3/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":726,"Cost":461,"Date":"5/9/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":338,"Cost":314,"Date":"5/15/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":569,"Cost":486,"Date":"5/25/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":914,"Cost":631,"Date":"5/26/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":266,"Cost":213,"Date":"5/31/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":796,"Cost":495,"Date":"7/27/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":609,"Cost":494,"Date":"9/17/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":450,"Cost":286,"Date":"10/6/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":162,"Cost":83,"Date":"10/8/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":481,"Cost":350,"Date":"10/26/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":742,"Cost":616,"Date":"11/16/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":109,"Cost":85,"Date":"11/18/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"Sellpy","Country":"USA","Sale":120,"Cost":98,"Date":"12/1/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":8,"Cost":7,"Date":"2/9/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":967,"Cost":652,"Date":"2/11/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":249,"Cost":154,"Date":"3/10/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":281,"Cost":249,"Date":"3/16/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":107,"Cost":73,"Date":"3/18/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":273,"Cost":136,"Date":"3/20/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":756,"Cost":424,"Date":"3/26/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":218,"Cost":184,"Date":"6/2/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":205,"Cost":115,"Date":"6/10/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":522,"Cost":377,"Date":"6/16/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":621,"Cost":350,"Date":"6/25/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":609,"Cost":427,"Date":"7/19/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":306,"Cost":162,"Date":"7/21/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":338,"Cost":189,"Date":"7/25/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":938,"Cost":649,"Date":"8/4/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":97,"Cost":54,"Date":"9/2/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":298,"Cost":262,"Date":"9/4/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":390,"Cost":319,"Date":"9/19/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":511,"Cost":309,"Date":"9/29/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":651,"Cost":349,"Date":"10/2/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":657,"Cost":505,"Date":"10/15/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":899,"Cost":527,"Date":"10/30/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":769,"Cost":423,"Date":"11/9/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":863,"Cost":637,"Date":"11/23/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":66,"Cost":39,"Date":"11/30/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":879,"Cost":495,"Date":"12/8/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":796,"Cost":588,"Date":"12/11/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":824,"Cost":485,"Date":"1/15/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":791,"Cost":711,"Date":"1/24/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":200,"Cost":156,"Date":"2/3/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":910,"Cost":488,"Date":"2/4/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":195,"Cost":140,"Date":"3/9/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":322,"Cost":221,"Date":"3/12/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":324,"Cost":305,"Date":"4/19/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":48,"Cost":27,"Date":"5/3/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":454,"Cost":335,"Date":"5/4/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":188,"Cost":95,"Date":"6/8/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":529,"Cost":308,"Date":"6/26/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":142,"Cost":124,"Date":"7/4/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":697,"Cost":443,"Date":"7/13/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":390,"Cost":333,"Date":"8/8/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":863,"Cost":768,"Date":"8/26/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":285,"Cost":210,"Date":"9/2/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":370,"Cost":286,"Date":"9/29/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":912,"Cost":773,"Date":"10/12/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":333,"Cost":270,"Date":"11/2/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":730,"Cost":410,"Date":"11/4/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":819,"Cost":654,"Date":"11/7/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":560,"Cost":341,"Date":"12/1/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":652,"Cost":456,"Date":"12/4/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":886,"Cost":725,"Date":"12/7/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":79,"Cost":71,"Date":"12/18/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":188,"Cost":110,"Date":"12/20/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":114,"Cost":100,"Date":"12/20/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":401,"Cost":267,"Date":"12/21/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":905,"Cost":536,"Date":"1/9/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":366,"Cost":336,"Date":"2/5/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":235,"Cost":195,"Date":"2/16/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":312,"Cost":178,"Date":"2/16/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":412,"Cost":345,"Date":"2/18/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":43,"Cost":39,"Date":"2/22/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":747,"Cost":697,"Date":"2/25/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":696,"Cost":360,"Date":"3/8/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":832,"Cost":703,"Date":"4/2/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":996,"Cost":651,"Date":"4/3/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":944,"Cost":833,"Date":"4/9/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":500,"Cost":370,"Date":"4/10/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":914,"Cost":480,"Date":"4/19/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":881,"Cost":479,"Date":"5/17/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":811,"Cost":520,"Date":"5/22/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":794,"Cost":744,"Date":"6/20/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":529,"Cost":490,"Date":"7/1/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":223,"Cost":152,"Date":"7/4/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":876,"Cost":618,"Date":"7/8/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":694,"Cost":483,"Date":"7/9/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":999,"Cost":570,"Date":"7/14/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":954,"Cost":696,"Date":"7/19/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":945,"Cost":677,"Date":"8/1/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":645,"Cost":385,"Date":"8/6/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":50,"Cost":43,"Date":"8/7/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":550,"Cost":338,"Date":"8/22/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":953,"Cost":887,"Date":"8/31/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":197,"Cost":101,"Date":"9/1/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":841,"Cost":704,"Date":"9/1/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":411,"Cost":229,"Date":"9/17/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":971,"Cost":777,"Date":"9/29/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":702,"Cost":438,"Date":"11/7/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":866,"Cost":692,"Date":"11/26/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":883,"Cost":563,"Date":"11/27/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":935,"Cost":549,"Date":"12/5/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":796,"Cost":703,"Date":"12/26/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":75,"Cost":52,"Date":"12/31/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":59,"Cost":45,"Date":"1/20/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":876,"Cost":817,"Date":"2/2/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":256,"Cost":143,"Date":"2/8/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":361,"Cost":288,"Date":"2/27/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":436,"Cost":266,"Date":"3/1/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":802,"Cost":727,"Date":"3/1/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":155,"Cost":100,"Date":"3/19/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":255,"Cost":175,"Date":"3/28/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":659,"Cost":414,"Date":"5/21/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":992,"Cost":656,"Date":"7/21/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":834,"Cost":742,"Date":"8/5/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":462,"Cost":276,"Date":"8/12/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":690,"Cost":594,"Date":"8/21/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":341,"Cost":243,"Date":"8/23/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":392,"Cost":228,"Date":"9/3/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":289,"Cost":214,"Date":"9/5/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":572,"Cost":318,"Date":"10/6/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":267,"Cost":139,"Date":"10/19/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":446,"Cost":292,"Date":"11/15/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":791,"Cost":625,"Date":"12/8/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":55,"Cost":43,"Date":"1/8/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":491,"Cost":445,"Date":"1/14/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":777,"Cost":499,"Date":"1/19/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":923,"Cost":624,"Date":"1/28/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":325,"Cost":169,"Date":"1/31/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":84,"Cost":69,"Date":"3/27/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":31,"Cost":26,"Date":"4/20/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":883,"Cost":823,"Date":"4/24/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":657,"Cost":581,"Date":"4/28/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":644,"Cost":501,"Date":"5/15/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":208,"Cost":133,"Date":"5/16/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":5,"Cost":3,"Date":"5/18/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":788,"Cost":609,"Date":"6/2/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":35,"Cost":23,"Date":"6/3/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":65,"Cost":48,"Date":"6/5/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":89,"Cost":64,"Date":"6/7/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":796,"Cost":486,"Date":"6/14/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":403,"Cost":301,"Date":"6/20/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":530,"Cost":323,"Date":"6/24/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":161,"Cost":101,"Date":"7/4/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":215,"Cost":177,"Date":"7/9/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":102,"Cost":97,"Date":"7/12/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":128,"Cost":84,"Date":"8/14/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":924,"Cost":632,"Date":"8/16/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":779,"Cost":472,"Date":"8/23/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":507,"Cost":461,"Date":"9/2/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":522,"Cost":277,"Date":"9/3/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":792,"Cost":644,"Date":"9/16/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":487,"Cost":277,"Date":"10/4/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":266,"Cost":195,"Date":"11/1/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":397,"Cost":256,"Date":"11/2/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":888,"Cost":594,"Date":"12/17/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":892,"Cost":545,"Date":"2/10/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":939,"Cost":811,"Date":"2/28/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":945,"Cost":520,"Date":"3/4/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":547,"Cost":485,"Date":"3/9/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":16,"Cost":14,"Date":"3/9/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":657,"Cost":491,"Date":"3/11/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":418,"Cost":210,"Date":"3/17/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":204,"Cost":134,"Date":"3/17/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":67,"Cost":44,"Date":"3/23/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":638,"Cost":360,"Date":"4/1/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":252,"Cost":205,"Date":"5/7/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":147,"Cost":89,"Date":"5/10/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":229,"Cost":162,"Date":"5/20/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":96,"Cost":75,"Date":"6/2/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":27,"Cost":18,"Date":"6/11/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":210,"Cost":195,"Date":"6/16/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":395,"Cost":211,"Date":"6/16/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":155,"Cost":98,"Date":"7/10/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":723,"Cost":628,"Date":"7/11/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":722,"Cost":371,"Date":"8/28/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":946,"Cost":583,"Date":"8/29/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":910,"Cost":482,"Date":"8/31/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":842,"Cost":643,"Date":"9/8/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":344,"Cost":233,"Date":"9/13/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":676,"Cost":464,"Date":"9/14/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":929,"Cost":691,"Date":"9/19/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":56,"Cost":42,"Date":"9/25/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":643,"Cost":417,"Date":"10/4/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":6,"Cost":6,"Date":"10/10/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":5,"Cost":2,"Date":"10/17/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":430,"Cost":321,"Date":"10/28/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":805,"Cost":738,"Date":"10/30/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":768,"Cost":687,"Date":"11/1/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":164,"Cost":124,"Date":"11/15/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":400,"Cost":375,"Date":"11/25/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":797,"Cost":422,"Date":"1/10/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":339,"Cost":283,"Date":"1/14/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":515,"Cost":338,"Date":"1/20/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":944,"Cost":525,"Date":"2/8/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":520,"Cost":302,"Date":"2/25/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":363,"Cost":242,"Date":"3/7/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":956,"Cost":797,"Date":"3/14/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":627,"Cost":434,"Date":"3/27/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":843,"Cost":563,"Date":"4/5/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":63,"Cost":60,"Date":"4/14/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":148,"Cost":78,"Date":"5/3/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":186,"Cost":137,"Date":"5/9/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":419,"Cost":325,"Date":"5/15/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":482,"Cost":300,"Date":"5/25/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":310,"Cost":286,"Date":"5/26/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":692,"Cost":352,"Date":"5/31/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":950,"Cost":481,"Date":"7/27/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":158,"Cost":132,"Date":"9/17/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":568,"Cost":381,"Date":"10/6/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":379,"Cost":207,"Date":"10/8/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":732,"Cost":617,"Date":"10/26/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":118,"Cost":79,"Date":"11/16/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":854,"Cost":630,"Date":"11/18/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"HM","Country":"USA","Sale":774,"Cost":695,"Date":"12/1/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":122,"Cost":76,"Date":"2/9/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":429,"Cost":376,"Date":"2/11/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":859,"Cost":581,"Date":"3/10/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":786,"Cost":540,"Date":"3/16/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":998,"Cost":554,"Date":"3/18/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":471,"Cost":378,"Date":"3/20/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":788,"Cost":507,"Date":"3/26/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":961,"Cost":843,"Date":"6/2/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":700,"Cost":442,"Date":"6/10/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":15,"Cost":13,"Date":"6/16/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":23,"Cost":13,"Date":"6/25/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":338,"Cost":276,"Date":"7/19/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":45,"Cost":34,"Date":"7/21/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":136,"Cost":128,"Date":"7/25/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":56,"Cost":40,"Date":"8/4/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":193,"Cost":154,"Date":"9/2/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":777,"Cost":580,"Date":"9/4/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":289,"Cost":233,"Date":"9/19/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":397,"Cost":277,"Date":"9/29/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":437,"Cost":328,"Date":"10/2/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":356,"Cost":252,"Date":"10/15/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":690,"Cost":566,"Date":"10/30/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":883,"Cost":799,"Date":"11/9/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":9,"Cost":5,"Date":"11/23/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":994,"Cost":658,"Date":"11/30/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":103,"Cost":66,"Date":"12/8/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":735,"Cost":601,"Date":"12/11/2018"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":803,"Cost":466,"Date":"1/15/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":507,"Cost":344,"Date":"1/24/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":454,"Cost":403,"Date":"2/3/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":646,"Cost":600,"Date":"2/4/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":728,"Cost":479,"Date":"3/9/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":983,"Cost":820,"Date":"3/12/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":820,"Cost":596,"Date":"4/19/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":874,"Cost":782,"Date":"5/3/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":777,"Cost":478,"Date":"5/4/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":840,"Cost":748,"Date":"6/8/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":314,"Cost":288,"Date":"6/26/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":918,"Cost":667,"Date":"7/4/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":390,"Cost":235,"Date":"7/13/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":277,"Cost":197,"Date":"8/8/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":269,"Cost":158,"Date":"8/26/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":290,"Cost":227,"Date":"9/2/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":79,"Cost":59,"Date":"9/29/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":695,"Cost":508,"Date":"10/12/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":758,"Cost":716,"Date":"11/2/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":915,"Cost":664,"Date":"11/4/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":875,"Cost":826,"Date":"11/7/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":909,"Cost":475,"Date":"12/1/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":354,"Cost":257,"Date":"12/4/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":440,"Cost":352,"Date":"12/7/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":533,"Cost":469,"Date":"12/18/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":820,"Cost":647,"Date":"12/20/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":816,"Cost":565,"Date":"12/20/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":633,"Cost":537,"Date":"12/21/2019"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":101,"Cost":69,"Date":"1/9/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":788,"Cost":686,"Date":"2/5/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":843,"Cost":701,"Date":"2/16/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":438,"Cost":416,"Date":"2/16/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":776,"Cost":641,"Date":"2/18/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":528,"Cost":335,"Date":"2/22/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":797,"Cost":490,"Date":"2/25/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":764,"Cost":523,"Date":"3/8/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":177,"Cost":141,"Date":"4/2/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":663,"Cost":346,"Date":"4/3/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":250,"Cost":215,"Date":"4/9/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":825,"Cost":539,"Date":"4/10/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":993,"Cost":943,"Date":"4/19/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":316,"Cost":181,"Date":"5/17/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":14,"Cost":11,"Date":"5/22/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":715,"Cost":376,"Date":"6/20/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":992,"Cost":773,"Date":"7/1/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":371,"Cost":228,"Date":"7/4/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":372,"Cost":268,"Date":"7/8/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":977,"Cost":874,"Date":"7/9/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":482,"Cost":428,"Date":"7/14/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":538,"Cost":350,"Date":"7/19/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":70,"Cost":66,"Date":"8/1/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":982,"Cost":864,"Date":"8/6/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":963,"Cost":703,"Date":"8/7/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":441,"Cost":300,"Date":"8/22/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":889,"Cost":818,"Date":"8/31/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":573,"Cost":357,"Date":"9/1/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":48,"Cost":29,"Date":"9/1/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":23,"Cost":14,"Date":"9/17/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":574,"Cost":401,"Date":"9/29/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":503,"Cost":255,"Date":"11/7/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":511,"Cost":377,"Date":"11/26/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":973,"Cost":720,"Date":"11/27/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":166,"Cost":98,"Date":"12/5/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":941,"Cost":724,"Date":"12/26/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":785,"Cost":593,"Date":"12/31/2020"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":386,"Cost":320,"Date":"1/20/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":503,"Cost":417,"Date":"2/2/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":83,"Cost":56,"Date":"2/8/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":521,"Cost":338,"Date":"2/27/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":904,"Cost":708,"Date":"3/1/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":72,"Cost":37,"Date":"3/1/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":416,"Cost":280,"Date":"3/19/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":795,"Cost":476,"Date":"3/28/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":139,"Cost":111,"Date":"5/21/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":452,"Cost":284,"Date":"7/21/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":1,"Cost":1,"Date":"8/5/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":345,"Cost":183,"Date":"8/12/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":560,"Cost":390,"Date":"8/21/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":87,"Cost":80,"Date":"8/23/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":15,"Cost":13,"Date":"9/3/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":144,"Cost":102,"Date":"9/5/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":299,"Cost":164,"Date":"10/6/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":423,"Cost":361,"Date":"10/19/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":337,"Cost":223,"Date":"11/15/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":401,"Cost":354,"Date":"12/8/2021"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":255,"Cost":161,"Date":"1/8/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":191,"Cost":135,"Date":"1/14/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":556,"Cost":516,"Date":"1/19/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":506,"Cost":323,"Date":"1/28/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":750,"Cost":600,"Date":"1/31/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":603,"Cost":305,"Date":"3/27/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":725,"Cost":605,"Date":"4/20/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":755,"Cost":433,"Date":"4/24/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":660,"Cost":554,"Date":"4/28/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":380,"Cost":248,"Date":"5/15/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":976,"Cost":554,"Date":"5/16/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":979,"Cost":859,"Date":"5/18/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":555,"Cost":297,"Date":"6/2/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":331,"Cost":310,"Date":"6/3/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":470,"Cost":418,"Date":"6/5/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":181,"Cost":169,"Date":"6/7/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":423,"Cost":290,"Date":"6/14/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":267,"Cost":192,"Date":"6/20/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":785,"Cost":642,"Date":"6/24/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":209,"Cost":156,"Date":"7/4/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":412,"Cost":364,"Date":"7/9/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":570,"Cost":373,"Date":"7/12/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":130,"Cost":67,"Date":"8/14/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":851,"Cost":554,"Date":"8/16/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":43,"Cost":30,"Date":"8/23/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":207,"Cost":134,"Date":"9/2/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":126,"Cost":85,"Date":"9/3/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":524,"Cost":377,"Date":"9/16/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":351,"Cost":176,"Date":"10/4/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":855,"Cost":684,"Date":"11/1/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":385,"Cost":226,"Date":"11/2/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":181,"Cost":171,"Date":"12/17/2022"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":306,"Cost":218,"Date":"2/10/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":480,"Cost":331,"Date":"2/28/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":627,"Cost":331,"Date":"3/4/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":943,"Cost":656,"Date":"3/9/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":247,"Cost":230,"Date":"3/9/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":843,"Cost":793,"Date":"3/11/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":609,"Cost":394,"Date":"3/17/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":383,"Cost":275,"Date":"3/17/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":206,"Cost":187,"Date":"3/23/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":645,"Cost":420,"Date":"4/1/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":136,"Cost":99,"Date":"5/7/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":96,"Cost":77,"Date":"5/10/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":690,"Cost":520,"Date":"5/20/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":168,"Cost":140,"Date":"6/2/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":350,"Cost":273,"Date":"6/11/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":738,"Cost":630,"Date":"6/16/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":576,"Cost":290,"Date":"6/16/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":879,"Cost":768,"Date":"7/10/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":122,"Cost":91,"Date":"7/11/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":232,"Cost":161,"Date":"8/28/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":203,"Cost":111,"Date":"8/29/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":124,"Cost":74,"Date":"8/31/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":319,"Cost":229,"Date":"9/8/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":910,"Cost":654,"Date":"9/13/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":718,"Cost":590,"Date":"9/14/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":119,"Cost":96,"Date":"9/19/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":840,"Cost":439,"Date":"9/25/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":247,"Cost":188,"Date":"10/4/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":72,"Cost":39,"Date":"10/10/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":557,"Cost":419,"Date":"10/17/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":825,"Cost":534,"Date":"10/28/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":393,"Cost":299,"Date":"10/30/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":245,"Cost":123,"Date":"11/1/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":290,"Cost":217,"Date":"11/15/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":129,"Cost":84,"Date":"11/25/2023"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":818,"Cost":742,"Date":"1/10/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":697,"Cost":483,"Date":"1/14/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":243,"Cost":147,"Date":"1/20/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":118,"Cost":95,"Date":"2/8/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":648,"Cost":557,"Date":"2/25/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":257,"Cost":181,"Date":"3/7/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":56,"Cost":33,"Date":"3/14/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":720,"Cost":592,"Date":"3/27/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":522,"Cost":384,"Date":"4/5/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":413,"Cost":330,"Date":"4/14/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":244,"Cost":127,"Date":"5/3/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":955,"Cost":582,"Date":"5/9/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":6,"Cost":3,"Date":"5/15/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":936,"Cost":857,"Date":"5/25/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":698,"Cost":376,"Date":"5/26/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":529,"Cost":441,"Date":"5/31/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":35,"Cost":21,"Date":"7/27/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":314,"Cost":215,"Date":"9/17/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":893,"Cost":499,"Date":"10/6/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":624,"Cost":335,"Date":"10/8/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":986,"Cost":843,"Date":"10/26/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":208,"Cost":196,"Date":"11/16/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":82,"Cost":70,"Date":"11/18/2024"},{"Store":"Woodfield Mall, Schaumburg, IL","Brand":"COS","Country":"USA","Sale":701,"Cost":608,"Date":"12/1/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":889,"Cost":502,"Date":"2/9/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":320,"Cost":299,"Date":"2/11/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":142,"Cost":113,"Date":"3/10/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":132,"Cost":122,"Date":"3/16/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":157,"Cost":137,"Date":"3/18/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":473,"Cost":334,"Date":"3/20/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":947,"Cost":737,"Date":"3/26/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":752,"Cost":610,"Date":"6/2/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":638,"Cost":492,"Date":"6/10/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":896,"Cost":534,"Date":"6/16/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":470,"Cost":249,"Date":"6/25/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":347,"Cost":205,"Date":"7/19/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":745,"Cost":650,"Date":"7/21/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":906,"Cost":858,"Date":"7/25/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":252,"Cost":141,"Date":"8/4/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":169,"Cost":91,"Date":"9/2/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":723,"Cost":622,"Date":"9/4/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":126,"Cost":105,"Date":"9/19/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":272,"Cost":170,"Date":"9/29/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":924,"Cost":490,"Date":"10/2/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":77,"Cost":40,"Date":"10/15/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":42,"Cost":30,"Date":"10/30/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":386,"Cost":355,"Date":"11/9/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":785,"Cost":559,"Date":"11/23/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":17,"Cost":10,"Date":"11/30/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":478,"Cost":345,"Date":"12/8/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":813,"Cost":567,"Date":"12/11/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":21,"Cost":16,"Date":"1/15/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":801,"Cost":460,"Date":"1/24/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":756,"Cost":412,"Date":"2/3/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":973,"Cost":836,"Date":"2/4/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":710,"Cost":576,"Date":"3/9/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":166,"Cost":133,"Date":"3/12/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":406,"Cost":255,"Date":"4/19/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":529,"Cost":401,"Date":"5/3/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":179,"Cost":108,"Date":"5/4/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":155,"Cost":125,"Date":"6/8/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":794,"Cost":572,"Date":"6/26/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":943,"Cost":572,"Date":"7/4/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":333,"Cost":253,"Date":"7/13/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":957,"Cost":549,"Date":"8/8/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":353,"Cost":316,"Date":"8/26/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":978,"Cost":539,"Date":"9/2/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":905,"Cost":748,"Date":"9/29/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":697,"Cost":423,"Date":"10/12/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":577,"Cost":349,"Date":"11/2/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":369,"Cost":278,"Date":"11/4/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":331,"Cost":289,"Date":"11/7/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":142,"Cost":133,"Date":"12/1/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":330,"Cost":271,"Date":"12/4/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":122,"Cost":106,"Date":"12/7/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":714,"Cost":641,"Date":"12/18/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":180,"Cost":168,"Date":"12/20/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":859,"Cost":430,"Date":"12/20/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":476,"Cost":448,"Date":"12/21/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":199,"Cost":105,"Date":"1/9/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":785,"Cost":515,"Date":"2/5/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":253,"Cost":225,"Date":"2/16/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":651,"Cost":397,"Date":"2/16/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":576,"Cost":543,"Date":"2/18/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":675,"Cost":550,"Date":"2/22/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":749,"Cost":391,"Date":"2/25/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":158,"Cost":85,"Date":"3/8/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":324,"Cost":206,"Date":"4/2/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":574,"Cost":523,"Date":"4/3/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":269,"Cost":139,"Date":"4/9/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":510,"Cost":421,"Date":"4/10/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":53,"Cost":32,"Date":"4/19/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":810,"Cost":643,"Date":"5/17/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":6,"Cost":4,"Date":"5/22/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":594,"Cost":394,"Date":"6/20/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":828,"Cost":595,"Date":"7/1/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":8,"Cost":8,"Date":"7/4/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":307,"Cost":184,"Date":"7/8/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":902,"Cost":719,"Date":"7/9/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":807,"Cost":707,"Date":"7/14/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":727,"Cost":448,"Date":"7/19/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":96,"Cost":53,"Date":"8/1/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":480,"Cost":364,"Date":"8/6/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":219,"Cost":201,"Date":"8/7/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":197,"Cost":122,"Date":"8/22/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":915,"Cost":672,"Date":"8/31/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":47,"Cost":31,"Date":"9/1/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":867,"Cost":599,"Date":"9/1/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":658,"Cost":405,"Date":"9/17/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":59,"Cost":55,"Date":"9/29/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":915,"Cost":775,"Date":"11/7/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":21,"Cost":18,"Date":"11/26/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":419,"Cost":359,"Date":"11/27/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":691,"Cost":353,"Date":"12/5/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":181,"Cost":125,"Date":"12/26/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":218,"Cost":118,"Date":"12/31/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":405,"Cost":314,"Date":"1/20/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":326,"Cost":199,"Date":"2/2/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":325,"Cost":248,"Date":"2/8/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":585,"Cost":326,"Date":"2/27/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":260,"Cost":245,"Date":"3/1/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":821,"Cost":708,"Date":"3/1/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":886,"Cost":586,"Date":"3/19/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":889,"Cost":637,"Date":"3/28/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":860,"Cost":473,"Date":"5/21/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":672,"Cost":410,"Date":"7/21/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":870,"Cost":801,"Date":"8/5/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":701,"Cost":628,"Date":"8/12/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":172,"Cost":137,"Date":"8/21/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":693,"Cost":462,"Date":"8/23/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":938,"Cost":580,"Date":"9/3/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":615,"Cost":538,"Date":"9/5/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":876,"Cost":563,"Date":"10/6/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":578,"Cost":447,"Date":"10/19/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":174,"Cost":121,"Date":"11/15/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":700,"Cost":389,"Date":"12/8/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":824,"Cost":542,"Date":"1/8/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":242,"Cost":207,"Date":"1/14/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":471,"Cost":409,"Date":"1/19/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":108,"Cost":73,"Date":"1/28/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":937,"Cost":746,"Date":"1/31/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":74,"Cost":57,"Date":"3/27/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":275,"Cost":140,"Date":"4/20/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":260,"Cost":191,"Date":"4/24/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":951,"Cost":795,"Date":"4/28/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":529,"Cost":397,"Date":"5/15/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":604,"Cost":528,"Date":"5/16/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":670,"Cost":505,"Date":"5/18/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":912,"Cost":629,"Date":"6/2/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":360,"Cost":313,"Date":"6/3/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":687,"Cost":397,"Date":"6/5/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":684,"Cost":645,"Date":"6/7/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":675,"Cost":487,"Date":"6/14/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":994,"Cost":897,"Date":"6/20/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":806,"Cost":525,"Date":"6/24/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":362,"Cost":206,"Date":"7/4/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":219,"Cost":181,"Date":"7/9/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":839,"Cost":755,"Date":"7/12/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":217,"Cost":194,"Date":"8/14/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":491,"Cost":442,"Date":"8/16/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":826,"Cost":562,"Date":"8/23/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":883,"Cost":587,"Date":"9/2/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":932,"Cost":568,"Date":"9/3/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":522,"Cost":390,"Date":"9/16/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":48,"Cost":28,"Date":"10/4/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":924,"Cost":645,"Date":"11/1/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":553,"Cost":388,"Date":"11/2/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":237,"Cost":188,"Date":"12/17/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":364,"Cost":289,"Date":"2/10/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":634,"Cost":505,"Date":"2/28/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":358,"Cost":271,"Date":"3/4/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":322,"Cost":267,"Date":"3/9/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":274,"Cost":153,"Date":"3/9/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":215,"Cost":181,"Date":"3/11/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":379,"Cost":292,"Date":"3/17/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":777,"Cost":450,"Date":"3/17/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":67,"Cost":51,"Date":"3/23/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":917,"Cost":827,"Date":"4/1/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":598,"Cost":567,"Date":"5/7/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":862,"Cost":560,"Date":"5/10/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":354,"Cost":328,"Date":"5/20/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":83,"Cost":58,"Date":"6/2/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":196,"Cost":183,"Date":"6/11/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":918,"Cost":801,"Date":"6/16/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":481,"Cost":341,"Date":"6/16/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":643,"Cost":493,"Date":"7/10/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":990,"Cost":870,"Date":"7/11/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":55,"Cost":52,"Date":"8/28/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":707,"Cost":661,"Date":"8/29/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":652,"Cost":421,"Date":"8/31/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":798,"Cost":580,"Date":"9/8/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":962,"Cost":833,"Date":"9/13/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":688,"Cost":617,"Date":"9/14/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":864,"Cost":513,"Date":"9/19/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":584,"Cost":316,"Date":"9/25/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":249,"Cost":176,"Date":"10/4/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":5,"Cost":5,"Date":"10/10/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":17,"Cost":8,"Date":"10/17/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":891,"Cost":588,"Date":"10/28/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":635,"Cost":355,"Date":"10/30/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":71,"Cost":47,"Date":"11/1/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":465,"Cost":291,"Date":"11/15/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":92,"Cost":77,"Date":"11/25/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":883,"Cost":618,"Date":"1/10/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":555,"Cost":502,"Date":"1/14/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":784,"Cost":707,"Date":"1/20/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":789,"Cost":580,"Date":"2/8/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":767,"Cost":684,"Date":"2/25/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":244,"Cost":159,"Date":"3/7/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":27,"Cost":24,"Date":"3/14/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":521,"Cost":301,"Date":"3/27/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":9,"Cost":6,"Date":"4/5/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":42,"Cost":40,"Date":"4/14/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":471,"Cost":387,"Date":"5/3/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":746,"Cost":672,"Date":"5/9/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":514,"Cost":343,"Date":"5/15/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":206,"Cost":189,"Date":"5/25/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":676,"Cost":605,"Date":"5/26/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":188,"Cost":111,"Date":"5/31/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":703,"Cost":598,"Date":"7/27/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":134,"Cost":91,"Date":"9/17/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":382,"Cost":257,"Date":"10/6/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":701,"Cost":596,"Date":"10/8/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":466,"Cost":312,"Date":"10/26/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":825,"Cost":600,"Date":"11/16/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":579,"Cost":302,"Date":"11/18/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"COS","Country":"USA","Sale":471,"Cost":411,"Date":"12/1/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":828,"Cost":719,"Date":"2/9/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":506,"Cost":471,"Date":"2/11/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":876,"Cost":545,"Date":"3/10/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":262,"Cost":180,"Date":"3/16/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":704,"Cost":466,"Date":"3/18/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":489,"Cost":283,"Date":"3/20/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":593,"Cost":452,"Date":"3/26/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":33,"Cost":18,"Date":"6/2/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":854,"Cost":564,"Date":"6/10/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":377,"Cost":331,"Date":"6/16/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":531,"Cost":399,"Date":"6/25/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":165,"Cost":132,"Date":"7/19/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":584,"Cost":502,"Date":"7/21/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":293,"Cost":148,"Date":"7/25/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":512,"Cost":342,"Date":"8/4/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":702,"Cost":444,"Date":"9/2/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":402,"Cost":382,"Date":"9/4/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":528,"Cost":320,"Date":"9/19/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":646,"Cost":575,"Date":"9/29/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":522,"Cost":309,"Date":"10/2/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":445,"Cost":267,"Date":"10/15/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":616,"Cost":523,"Date":"10/30/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":835,"Cost":761,"Date":"11/9/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":399,"Cost":230,"Date":"11/23/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":366,"Cost":319,"Date":"11/30/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":606,"Cost":415,"Date":"12/8/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":153,"Cost":109,"Date":"12/11/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":728,"Cost":427,"Date":"1/15/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":318,"Cost":273,"Date":"1/24/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":352,"Cost":275,"Date":"2/3/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":965,"Cost":774,"Date":"2/4/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":336,"Cost":232,"Date":"3/9/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":606,"Cost":386,"Date":"3/12/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":794,"Cost":470,"Date":"4/19/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":52,"Cost":33,"Date":"5/3/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":696,"Cost":562,"Date":"5/4/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":572,"Cost":492,"Date":"6/8/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":875,"Cost":811,"Date":"6/26/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":236,"Cost":142,"Date":"7/4/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":472,"Cost":350,"Date":"7/13/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":590,"Cost":423,"Date":"8/8/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":655,"Cost":527,"Date":"8/26/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":744,"Cost":394,"Date":"9/2/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":510,"Cost":445,"Date":"9/29/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":399,"Cost":202,"Date":"10/12/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":224,"Cost":173,"Date":"11/2/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":927,"Cost":627,"Date":"11/4/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":894,"Cost":838,"Date":"11/7/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":414,"Cost":225,"Date":"12/1/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":853,"Cost":501,"Date":"12/4/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":863,"Cost":643,"Date":"12/7/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":585,"Cost":343,"Date":"12/18/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":346,"Cost":301,"Date":"12/20/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":343,"Cost":316,"Date":"12/20/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":127,"Cost":90,"Date":"12/21/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":681,"Cost":516,"Date":"1/9/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":378,"Cost":341,"Date":"2/5/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":662,"Cost":542,"Date":"2/16/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":660,"Cost":439,"Date":"2/16/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":519,"Cost":448,"Date":"2/18/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":562,"Cost":514,"Date":"2/22/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":895,"Cost":656,"Date":"2/25/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":567,"Cost":516,"Date":"3/8/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":905,"Cost":657,"Date":"4/2/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":763,"Cost":490,"Date":"4/3/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":282,"Cost":173,"Date":"4/9/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":711,"Cost":381,"Date":"4/10/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":406,"Cost":306,"Date":"4/19/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":447,"Cost":342,"Date":"5/17/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":208,"Cost":119,"Date":"5/22/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":461,"Cost":235,"Date":"6/20/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":945,"Cost":744,"Date":"7/1/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":729,"Cost":643,"Date":"7/4/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":400,"Cost":255,"Date":"7/8/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":879,"Cost":805,"Date":"7/9/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":793,"Cost":404,"Date":"7/14/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":98,"Cost":91,"Date":"7/19/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":522,"Cost":388,"Date":"8/1/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":888,"Cost":732,"Date":"8/6/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":464,"Cost":436,"Date":"8/7/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":512,"Cost":264,"Date":"8/22/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":487,"Cost":373,"Date":"8/31/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":658,"Cost":598,"Date":"9/1/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":488,"Cost":366,"Date":"9/1/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":698,"Cost":545,"Date":"9/17/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":579,"Cost":290,"Date":"9/29/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":975,"Cost":606,"Date":"11/7/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":325,"Cost":249,"Date":"11/26/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":307,"Cost":194,"Date":"11/27/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":537,"Cost":321,"Date":"12/5/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":598,"Cost":440,"Date":"12/26/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":679,"Cost":455,"Date":"12/31/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":241,"Cost":130,"Date":"1/20/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":2,"Cost":2,"Date":"2/2/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":938,"Cost":877,"Date":"2/8/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":32,"Cost":23,"Date":"2/27/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":14,"Cost":11,"Date":"3/1/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":253,"Cost":144,"Date":"3/1/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":536,"Cost":447,"Date":"3/19/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":509,"Cost":394,"Date":"3/28/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":921,"Cost":841,"Date":"5/21/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":727,"Cost":590,"Date":"7/21/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":876,"Cost":647,"Date":"8/5/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":357,"Cost":258,"Date":"8/12/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":390,"Cost":209,"Date":"8/21/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":778,"Cost":435,"Date":"8/23/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":668,"Cost":622,"Date":"9/3/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":653,"Cost":604,"Date":"9/5/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":425,"Cost":297,"Date":"10/6/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":304,"Cost":166,"Date":"10/19/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":703,"Cost":538,"Date":"11/15/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":407,"Cost":375,"Date":"12/8/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":390,"Cost":301,"Date":"1/8/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":900,"Cost":493,"Date":"1/14/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":239,"Cost":157,"Date":"1/19/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":161,"Cost":82,"Date":"1/28/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":269,"Cost":187,"Date":"1/31/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":321,"Cost":175,"Date":"3/27/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":58,"Cost":52,"Date":"4/20/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":949,"Cost":695,"Date":"4/24/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":111,"Cost":74,"Date":"4/28/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":882,"Cost":517,"Date":"5/15/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":866,"Cost":694,"Date":"5/16/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":358,"Cost":230,"Date":"5/18/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":11,"Cost":5,"Date":"6/2/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":12,"Cost":10,"Date":"6/3/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":86,"Cost":69,"Date":"6/5/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":618,"Cost":468,"Date":"6/7/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":244,"Cost":139,"Date":"6/14/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":32,"Cost":22,"Date":"6/20/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":330,"Cost":271,"Date":"6/24/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":81,"Cost":52,"Date":"7/4/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":244,"Cost":138,"Date":"7/9/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":940,"Cost":502,"Date":"7/12/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":306,"Cost":253,"Date":"8/14/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":623,"Cost":351,"Date":"8/16/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":524,"Cost":325,"Date":"8/23/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":533,"Cost":506,"Date":"9/2/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":608,"Cost":375,"Date":"9/3/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":688,"Cost":365,"Date":"9/16/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":192,"Cost":158,"Date":"10/4/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":962,"Cost":489,"Date":"11/1/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":372,"Cost":328,"Date":"11/2/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":783,"Cost":647,"Date":"12/17/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":95,"Cost":88,"Date":"2/10/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":312,"Cost":156,"Date":"2/28/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":242,"Cost":138,"Date":"3/4/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":968,"Cost":524,"Date":"3/9/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":108,"Cost":88,"Date":"3/9/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":70,"Cost":35,"Date":"3/11/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":552,"Cost":376,"Date":"3/17/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":65,"Cost":55,"Date":"3/17/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":774,"Cost":588,"Date":"3/23/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":648,"Cost":411,"Date":"4/1/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":862,"Cost":585,"Date":"5/7/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":932,"Cost":878,"Date":"5/10/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":148,"Cost":136,"Date":"5/20/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":526,"Cost":295,"Date":"6/2/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":928,"Cost":817,"Date":"6/11/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":856,"Cost":629,"Date":"6/16/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":735,"Cost":401,"Date":"6/16/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":188,"Cost":133,"Date":"7/10/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":816,"Cost":629,"Date":"7/11/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":714,"Cost":374,"Date":"8/28/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":71,"Cost":36,"Date":"8/29/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":941,"Cost":648,"Date":"8/31/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":568,"Cost":435,"Date":"9/8/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":188,"Cost":107,"Date":"9/13/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":571,"Cost":405,"Date":"9/14/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":685,"Cost":581,"Date":"9/19/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":940,"Cost":758,"Date":"9/25/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":977,"Cost":712,"Date":"10/4/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":72,"Cost":50,"Date":"10/10/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":760,"Cost":473,"Date":"10/17/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":849,"Cost":784,"Date":"10/28/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":435,"Cost":344,"Date":"10/30/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":49,"Cost":27,"Date":"11/1/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":85,"Cost":43,"Date":"11/15/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":386,"Cost":222,"Date":"11/25/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":629,"Cost":386,"Date":"1/10/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":989,"Cost":550,"Date":"1/14/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":400,"Cost":319,"Date":"1/20/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":75,"Cost":45,"Date":"2/8/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":716,"Cost":576,"Date":"2/25/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":945,"Cost":502,"Date":"3/7/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":225,"Cost":185,"Date":"3/14/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":767,"Cost":559,"Date":"3/27/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":934,"Cost":754,"Date":"4/5/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":123,"Cost":63,"Date":"4/14/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":479,"Cost":276,"Date":"5/3/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":485,"Cost":353,"Date":"5/9/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":106,"Cost":76,"Date":"5/15/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":883,"Cost":643,"Date":"5/25/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":554,"Cost":404,"Date":"5/26/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":38,"Cost":35,"Date":"5/31/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":578,"Cost":413,"Date":"7/27/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":265,"Cost":141,"Date":"9/17/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":454,"Cost":420,"Date":"10/6/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":65,"Cost":59,"Date":"10/8/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":596,"Cost":456,"Date":"10/26/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":829,"Cost":650,"Date":"11/16/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":329,"Cost":289,"Date":"11/18/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"Sellpy","Country":"USA","Sale":874,"Cost":460,"Date":"12/1/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":709,"Cost":460,"Date":"2/9/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":790,"Cost":475,"Date":"2/11/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":308,"Cost":246,"Date":"3/10/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":599,"Cost":531,"Date":"3/16/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":136,"Cost":68,"Date":"3/18/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":914,"Cost":493,"Date":"3/20/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":993,"Cost":737,"Date":"3/26/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":43,"Cost":35,"Date":"6/2/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":31,"Cost":16,"Date":"6/10/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":957,"Cost":527,"Date":"6/16/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":394,"Cost":311,"Date":"6/25/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":951,"Cost":708,"Date":"7/19/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":249,"Cost":219,"Date":"7/21/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":802,"Cost":666,"Date":"7/25/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":667,"Cost":524,"Date":"8/4/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":404,"Cost":262,"Date":"9/2/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":644,"Cost":469,"Date":"9/4/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":264,"Cost":226,"Date":"9/19/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":752,"Cost":642,"Date":"9/29/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":299,"Cost":181,"Date":"10/2/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":570,"Cost":356,"Date":"10/15/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":499,"Cost":277,"Date":"10/30/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":9,"Cost":7,"Date":"11/9/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":605,"Cost":330,"Date":"11/23/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":414,"Cost":381,"Date":"11/30/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":518,"Cost":368,"Date":"12/8/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":302,"Cost":251,"Date":"12/11/2018"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":617,"Cost":428,"Date":"1/15/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":305,"Cost":236,"Date":"1/24/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":47,"Cost":26,"Date":"2/3/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":988,"Cost":803,"Date":"2/4/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":878,"Cost":637,"Date":"3/9/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":994,"Cost":756,"Date":"3/12/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":426,"Cost":398,"Date":"4/19/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":521,"Cost":263,"Date":"5/3/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":668,"Cost":379,"Date":"5/4/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":194,"Cost":162,"Date":"6/8/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":841,"Cost":691,"Date":"6/26/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":515,"Cost":288,"Date":"7/4/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":999,"Cost":583,"Date":"7/13/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":824,"Cost":683,"Date":"8/8/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":768,"Cost":572,"Date":"8/26/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":731,"Cost":630,"Date":"9/2/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":987,"Cost":499,"Date":"9/29/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":466,"Cost":308,"Date":"10/12/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":803,"Cost":565,"Date":"11/2/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":830,"Cost":775,"Date":"11/4/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":939,"Cost":644,"Date":"11/7/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":90,"Cost":70,"Date":"12/1/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":728,"Cost":563,"Date":"12/4/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":22,"Cost":19,"Date":"12/7/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":909,"Cost":773,"Date":"12/18/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":985,"Cost":580,"Date":"12/20/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":500,"Cost":327,"Date":"12/20/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":510,"Cost":295,"Date":"12/21/2019"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":296,"Cost":239,"Date":"1/9/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":381,"Cost":192,"Date":"2/5/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":546,"Cost":413,"Date":"2/16/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":978,"Cost":492,"Date":"2/16/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":549,"Cost":512,"Date":"2/18/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":291,"Cost":241,"Date":"2/22/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":380,"Cost":339,"Date":"2/25/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":882,"Cost":745,"Date":"3/8/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":883,"Cost":818,"Date":"4/2/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":624,"Cost":449,"Date":"4/3/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":748,"Cost":456,"Date":"4/9/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":202,"Cost":156,"Date":"4/10/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":633,"Cost":507,"Date":"4/19/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":534,"Cost":330,"Date":"5/17/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":380,"Cost":216,"Date":"5/22/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":609,"Cost":420,"Date":"6/20/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":393,"Cost":271,"Date":"7/1/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":625,"Cost":372,"Date":"7/4/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":285,"Cost":259,"Date":"7/8/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":878,"Cost":783,"Date":"7/9/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":418,"Cost":261,"Date":"7/14/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":741,"Cost":650,"Date":"7/19/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":829,"Cost":575,"Date":"8/1/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":461,"Cost":417,"Date":"8/6/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":57,"Cost":47,"Date":"8/7/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":403,"Cost":252,"Date":"8/22/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":400,"Cost":299,"Date":"8/31/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":529,"Cost":355,"Date":"9/1/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":911,"Cost":490,"Date":"9/1/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":339,"Cost":265,"Date":"9/17/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":767,"Cost":457,"Date":"9/29/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":784,"Cost":669,"Date":"11/7/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":497,"Cost":255,"Date":"11/26/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":756,"Cost":689,"Date":"11/27/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":954,"Cost":481,"Date":"12/5/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":11,"Cost":10,"Date":"12/26/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":203,"Cost":101,"Date":"12/31/2020"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":708,"Cost":556,"Date":"1/20/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":653,"Cost":507,"Date":"2/2/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":38,"Cost":24,"Date":"2/8/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":559,"Cost":384,"Date":"2/27/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":363,"Cost":244,"Date":"3/1/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":455,"Cost":420,"Date":"3/1/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":789,"Cost":618,"Date":"3/19/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":463,"Cost":398,"Date":"3/28/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":557,"Cost":318,"Date":"5/21/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":998,"Cost":618,"Date":"7/21/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":188,"Cost":157,"Date":"8/5/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":464,"Cost":384,"Date":"8/12/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":258,"Cost":189,"Date":"8/21/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":351,"Cost":255,"Date":"8/23/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":452,"Cost":308,"Date":"9/3/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":819,"Cost":742,"Date":"9/5/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":958,"Cost":505,"Date":"10/6/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":651,"Cost":527,"Date":"10/19/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":467,"Cost":442,"Date":"11/15/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":506,"Cost":466,"Date":"12/8/2021"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":88,"Cost":75,"Date":"1/8/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":325,"Cost":271,"Date":"1/14/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":718,"Cost":566,"Date":"1/19/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":408,"Cost":358,"Date":"1/28/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":242,"Cost":164,"Date":"1/31/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":477,"Cost":282,"Date":"3/27/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":964,"Cost":785,"Date":"4/20/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":266,"Cost":212,"Date":"4/24/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":297,"Cost":185,"Date":"4/28/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":505,"Cost":445,"Date":"5/15/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":824,"Cost":528,"Date":"5/16/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":558,"Cost":416,"Date":"5/18/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":248,"Cost":233,"Date":"6/2/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":827,"Cost":486,"Date":"6/3/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":486,"Cost":387,"Date":"6/5/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":221,"Cost":134,"Date":"6/7/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":919,"Cost":631,"Date":"6/14/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":153,"Cost":89,"Date":"6/20/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":832,"Cost":539,"Date":"6/24/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":818,"Cost":593,"Date":"7/4/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":12,"Cost":9,"Date":"7/9/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":572,"Cost":454,"Date":"7/12/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":18,"Cost":16,"Date":"8/14/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":806,"Cost":528,"Date":"8/16/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":20,"Cost":17,"Date":"8/23/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":21,"Cost":10,"Date":"9/2/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":508,"Cost":425,"Date":"9/3/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":170,"Cost":153,"Date":"9/16/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":9,"Cost":7,"Date":"10/4/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":209,"Cost":107,"Date":"11/1/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":404,"Cost":205,"Date":"11/2/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":617,"Cost":516,"Date":"12/17/2022"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":386,"Cost":352,"Date":"2/10/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":576,"Cost":303,"Date":"2/28/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":997,"Cost":893,"Date":"3/4/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":730,"Cost":670,"Date":"3/9/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":7,"Cost":5,"Date":"3/9/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":425,"Cost":397,"Date":"3/11/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":875,"Cost":793,"Date":"3/17/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":427,"Cost":386,"Date":"3/17/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":205,"Cost":103,"Date":"3/23/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":597,"Cost":533,"Date":"4/1/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":627,"Cost":431,"Date":"5/7/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":258,"Cost":162,"Date":"5/10/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":852,"Cost":712,"Date":"5/20/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":941,"Cost":727,"Date":"6/2/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":32,"Cost":24,"Date":"6/11/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":5,"Cost":3,"Date":"6/16/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":290,"Cost":214,"Date":"6/16/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":550,"Cost":496,"Date":"7/10/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":205,"Cost":169,"Date":"7/11/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":648,"Cost":432,"Date":"8/28/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":60,"Cost":37,"Date":"8/29/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":45,"Cost":27,"Date":"8/31/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":161,"Cost":95,"Date":"9/8/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":837,"Cost":682,"Date":"9/13/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":167,"Cost":139,"Date":"9/14/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":668,"Cost":356,"Date":"9/19/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":564,"Cost":530,"Date":"9/25/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":697,"Cost":400,"Date":"10/4/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":335,"Cost":289,"Date":"10/10/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":58,"Cost":43,"Date":"10/17/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":629,"Cost":461,"Date":"10/28/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":507,"Cost":453,"Date":"10/30/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":942,"Cost":502,"Date":"11/1/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":242,"Cost":210,"Date":"11/15/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":673,"Cost":400,"Date":"11/25/2023"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":901,"Cost":581,"Date":"1/10/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":252,"Cost":126,"Date":"1/14/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":225,"Cost":174,"Date":"1/20/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":827,"Cost":531,"Date":"2/8/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":979,"Cost":647,"Date":"2/25/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":14,"Cost":11,"Date":"3/7/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":714,"Cost":631,"Date":"3/14/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":634,"Cost":440,"Date":"3/27/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":331,"Cost":245,"Date":"4/5/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":812,"Cost":566,"Date":"4/14/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":27,"Cost":17,"Date":"5/3/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":179,"Cost":142,"Date":"5/9/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":276,"Cost":222,"Date":"5/15/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":261,"Cost":236,"Date":"5/25/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":31,"Cost":24,"Date":"5/26/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":199,"Cost":138,"Date":"5/31/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":787,"Cost":616,"Date":"7/27/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":421,"Cost":350,"Date":"9/17/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":8,"Cost":4,"Date":"10/6/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":273,"Cost":205,"Date":"10/8/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":529,"Cost":449,"Date":"10/26/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":203,"Cost":156,"Date":"11/16/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":427,"Cost":400,"Date":"11/18/2024"},{"Store":"Fashion Show Mall, Las Vegas, NV","Brand":"HM","Country":"USA","Sale":527,"Cost":396,"Date":"12/1/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":385,"Cost":337,"Date":"2/9/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":985,"Cost":766,"Date":"2/11/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":248,"Cost":182,"Date":"3/10/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":519,"Cost":403,"Date":"3/16/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":430,"Cost":400,"Date":"3/18/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":301,"Cost":213,"Date":"3/20/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":196,"Cost":185,"Date":"3/26/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":919,"Cost":640,"Date":"6/2/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":409,"Cost":324,"Date":"6/10/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":341,"Cost":209,"Date":"6/16/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":440,"Cost":314,"Date":"6/25/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":774,"Cost":518,"Date":"7/19/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":259,"Cost":149,"Date":"7/21/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":452,"Cost":355,"Date":"7/25/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":274,"Cost":196,"Date":"8/4/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":507,"Cost":455,"Date":"9/2/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":50,"Cost":28,"Date":"9/4/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":366,"Cost":323,"Date":"9/19/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":541,"Cost":419,"Date":"9/29/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":410,"Cost":237,"Date":"10/2/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":458,"Cost":324,"Date":"10/15/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":481,"Cost":253,"Date":"10/30/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":263,"Cost":131,"Date":"11/9/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":479,"Cost":446,"Date":"11/23/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":150,"Cost":90,"Date":"11/30/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":163,"Cost":103,"Date":"12/8/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":135,"Cost":95,"Date":"12/11/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":146,"Cost":92,"Date":"1/15/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":89,"Cost":45,"Date":"1/24/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":563,"Cost":312,"Date":"2/3/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":405,"Cost":248,"Date":"2/4/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":858,"Cost":485,"Date":"3/9/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":1,"Cost":1,"Date":"3/12/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":598,"Cost":550,"Date":"4/19/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":440,"Cost":355,"Date":"5/3/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":56,"Cost":32,"Date":"5/4/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":15,"Cost":9,"Date":"6/8/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":960,"Cost":829,"Date":"6/26/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":505,"Cost":381,"Date":"7/4/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":213,"Cost":117,"Date":"7/13/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":516,"Cost":358,"Date":"8/8/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":268,"Cost":235,"Date":"8/26/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":721,"Cost":455,"Date":"9/2/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":400,"Cost":306,"Date":"9/29/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":911,"Cost":717,"Date":"10/12/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":475,"Cost":274,"Date":"11/2/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":728,"Cost":557,"Date":"11/4/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":601,"Cost":548,"Date":"11/7/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":110,"Cost":96,"Date":"12/1/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":206,"Cost":178,"Date":"12/4/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":713,"Cost":553,"Date":"12/7/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":454,"Cost":231,"Date":"12/18/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":573,"Cost":491,"Date":"12/20/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":917,"Cost":831,"Date":"12/20/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":462,"Cost":401,"Date":"12/21/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":631,"Cost":487,"Date":"1/9/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":818,"Cost":692,"Date":"2/5/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":160,"Cost":92,"Date":"2/16/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":981,"Cost":770,"Date":"2/16/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":642,"Cost":393,"Date":"2/18/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":38,"Cost":24,"Date":"2/22/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":414,"Cost":283,"Date":"2/25/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":583,"Cost":462,"Date":"3/8/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":197,"Cost":173,"Date":"4/2/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":414,"Cost":385,"Date":"4/3/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":893,"Cost":541,"Date":"4/9/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":742,"Cost":699,"Date":"4/10/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":548,"Cost":304,"Date":"4/19/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":648,"Cost":591,"Date":"5/17/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":919,"Cost":685,"Date":"5/22/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":962,"Cost":660,"Date":"6/20/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":111,"Cost":71,"Date":"7/1/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":923,"Cost":776,"Date":"7/4/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":681,"Cost":549,"Date":"7/8/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":343,"Cost":313,"Date":"7/9/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":289,"Cost":220,"Date":"7/14/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":399,"Cost":333,"Date":"7/19/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":733,"Cost":503,"Date":"8/1/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":899,"Cost":808,"Date":"8/6/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":520,"Cost":423,"Date":"8/7/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":854,"Cost":770,"Date":"8/22/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":972,"Cost":890,"Date":"8/31/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":53,"Cost":42,"Date":"9/1/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":750,"Cost":448,"Date":"9/1/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":938,"Cost":662,"Date":"9/17/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":13,"Cost":8,"Date":"9/29/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":232,"Cost":147,"Date":"11/7/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":411,"Cost":228,"Date":"11/26/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":499,"Cost":330,"Date":"11/27/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":925,"Cost":656,"Date":"12/5/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":38,"Cost":27,"Date":"12/26/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":554,"Cost":319,"Date":"12/31/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":855,"Cost":734,"Date":"1/20/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":935,"Cost":634,"Date":"2/2/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":155,"Cost":111,"Date":"2/8/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":302,"Cost":257,"Date":"2/27/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":711,"Cost":386,"Date":"3/1/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":827,"Cost":627,"Date":"3/1/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":771,"Cost":641,"Date":"3/19/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":528,"Cost":339,"Date":"3/28/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":93,"Cost":63,"Date":"5/21/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":348,"Cost":209,"Date":"7/21/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":167,"Cost":84,"Date":"8/5/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":895,"Cost":452,"Date":"8/12/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":905,"Cost":474,"Date":"8/21/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":520,"Cost":306,"Date":"8/23/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":259,"Cost":189,"Date":"9/3/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":995,"Cost":714,"Date":"9/5/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":766,"Cost":384,"Date":"10/6/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":721,"Cost":569,"Date":"10/19/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":842,"Cost":632,"Date":"11/15/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":604,"Cost":349,"Date":"12/8/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":399,"Cost":258,"Date":"1/8/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":326,"Cost":178,"Date":"1/14/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":329,"Cost":174,"Date":"1/19/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":713,"Cost":421,"Date":"1/28/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":843,"Cost":624,"Date":"1/31/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":451,"Cost":324,"Date":"3/27/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":869,"Cost":792,"Date":"4/20/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":203,"Cost":166,"Date":"4/24/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":493,"Cost":461,"Date":"4/28/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":245,"Cost":195,"Date":"5/15/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":608,"Cost":429,"Date":"5/16/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":935,"Cost":474,"Date":"5/18/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":280,"Cost":199,"Date":"6/2/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":952,"Cost":899,"Date":"6/3/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":833,"Cost":733,"Date":"6/5/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":634,"Cost":602,"Date":"6/7/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":517,"Cost":307,"Date":"6/14/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":87,"Cost":55,"Date":"6/20/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":282,"Cost":160,"Date":"6/24/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":922,"Cost":483,"Date":"7/4/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":164,"Cost":113,"Date":"7/9/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":786,"Cost":653,"Date":"7/12/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":337,"Cost":172,"Date":"8/14/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":691,"Cost":569,"Date":"8/16/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":957,"Cost":792,"Date":"8/23/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":736,"Cost":372,"Date":"9/2/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":520,"Cost":359,"Date":"9/3/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":393,"Cost":286,"Date":"9/16/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":347,"Cost":255,"Date":"10/4/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":60,"Cost":52,"Date":"11/1/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":48,"Cost":27,"Date":"11/2/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":715,"Cost":498,"Date":"12/17/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":195,"Cost":106,"Date":"2/10/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":952,"Cost":762,"Date":"2/28/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":395,"Cost":269,"Date":"3/4/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":68,"Cost":41,"Date":"3/9/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":982,"Cost":492,"Date":"3/9/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":73,"Cost":59,"Date":"3/11/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":618,"Cost":571,"Date":"3/17/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":744,"Cost":636,"Date":"3/17/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":13,"Cost":6,"Date":"3/23/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":58,"Cost":41,"Date":"4/1/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":487,"Cost":244,"Date":"5/7/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":680,"Cost":512,"Date":"5/10/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":961,"Cost":680,"Date":"5/20/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":820,"Cost":516,"Date":"6/2/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":630,"Cost":502,"Date":"6/11/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":839,"Cost":517,"Date":"6/16/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":74,"Cost":67,"Date":"6/16/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":569,"Cost":501,"Date":"7/10/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":217,"Cost":169,"Date":"7/11/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":292,"Cost":154,"Date":"8/28/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":298,"Cost":233,"Date":"8/29/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":2,"Cost":1,"Date":"8/31/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":751,"Cost":646,"Date":"9/8/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":841,"Cost":560,"Date":"9/13/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":854,"Cost":587,"Date":"9/14/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":60,"Cost":52,"Date":"9/19/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":219,"Cost":152,"Date":"9/25/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":396,"Cost":286,"Date":"10/4/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":115,"Cost":64,"Date":"10/10/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":758,"Cost":627,"Date":"10/17/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":252,"Cost":213,"Date":"10/28/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":459,"Cost":409,"Date":"10/30/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":774,"Cost":552,"Date":"11/1/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":24,"Cost":12,"Date":"11/15/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":677,"Cost":588,"Date":"11/25/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":127,"Cost":119,"Date":"1/10/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":103,"Cost":87,"Date":"1/14/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":658,"Cost":577,"Date":"1/20/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":582,"Cost":479,"Date":"2/8/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":223,"Cost":149,"Date":"2/25/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":788,"Cost":475,"Date":"3/7/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":182,"Cost":129,"Date":"3/14/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":943,"Cost":564,"Date":"3/27/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":226,"Cost":161,"Date":"4/5/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":132,"Cost":114,"Date":"4/14/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":130,"Cost":118,"Date":"5/3/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":555,"Cost":418,"Date":"5/9/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":134,"Cost":86,"Date":"5/15/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":47,"Cost":31,"Date":"5/25/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":994,"Cost":758,"Date":"5/26/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":912,"Cost":509,"Date":"5/31/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":628,"Cost":449,"Date":"7/27/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":174,"Cost":141,"Date":"9/17/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":868,"Cost":773,"Date":"10/6/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":297,"Cost":229,"Date":"10/8/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":768,"Cost":604,"Date":"10/26/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":749,"Cost":405,"Date":"11/16/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":319,"Cost":296,"Date":"11/18/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":28,"Cost":22,"Date":"12/1/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":770,"Cost":519,"Date":"2/9/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":841,"Cost":692,"Date":"2/11/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":286,"Cost":169,"Date":"3/10/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":441,"Cost":331,"Date":"3/16/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":739,"Cost":578,"Date":"3/18/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":785,"Cost":649,"Date":"3/20/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":210,"Cost":125,"Date":"3/26/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":333,"Cost":209,"Date":"6/2/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":252,"Cost":166,"Date":"6/10/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":185,"Cost":163,"Date":"6/16/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":807,"Cost":432,"Date":"6/25/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":132,"Cost":103,"Date":"7/19/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":473,"Cost":388,"Date":"7/21/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":926,"Cost":575,"Date":"7/25/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":194,"Cost":115,"Date":"8/4/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":575,"Cost":319,"Date":"9/2/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":479,"Cost":419,"Date":"9/4/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":384,"Cost":354,"Date":"9/19/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":772,"Cost":607,"Date":"9/29/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":560,"Cost":495,"Date":"10/2/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":932,"Cost":533,"Date":"10/15/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":543,"Cost":443,"Date":"10/30/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":722,"Cost":646,"Date":"11/9/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":605,"Cost":341,"Date":"11/23/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":292,"Cost":177,"Date":"11/30/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":20,"Cost":12,"Date":"12/8/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":62,"Cost":40,"Date":"12/11/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":150,"Cost":80,"Date":"1/15/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":348,"Cost":259,"Date":"1/24/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":553,"Cost":393,"Date":"2/3/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":484,"Cost":391,"Date":"2/4/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":904,"Cost":790,"Date":"3/9/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":477,"Cost":363,"Date":"3/12/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":939,"Cost":597,"Date":"4/19/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":385,"Cost":273,"Date":"5/3/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":517,"Cost":283,"Date":"5/4/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":820,"Cost":755,"Date":"6/8/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":373,"Cost":326,"Date":"6/26/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":749,"Cost":600,"Date":"7/4/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":188,"Cost":114,"Date":"7/13/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":709,"Cost":547,"Date":"8/8/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":352,"Cost":227,"Date":"8/26/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":669,"Cost":499,"Date":"9/2/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":619,"Cost":441,"Date":"9/29/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":366,"Cost":191,"Date":"10/12/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":578,"Cost":326,"Date":"11/2/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":78,"Cost":45,"Date":"11/4/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":454,"Cost":379,"Date":"11/7/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":408,"Cost":246,"Date":"12/1/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":918,"Cost":823,"Date":"12/4/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":509,"Cost":382,"Date":"12/7/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":427,"Cost":345,"Date":"12/18/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":670,"Cost":619,"Date":"12/20/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":653,"Cost":502,"Date":"12/20/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":599,"Cost":349,"Date":"12/21/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":131,"Cost":120,"Date":"1/9/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":775,"Cost":627,"Date":"2/5/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":775,"Cost":506,"Date":"2/16/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":995,"Cost":787,"Date":"2/16/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":563,"Cost":325,"Date":"2/18/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":258,"Cost":228,"Date":"2/22/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":2,"Cost":2,"Date":"2/25/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":810,"Cost":584,"Date":"3/8/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":992,"Cost":914,"Date":"4/2/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":419,"Cost":295,"Date":"4/3/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":250,"Cost":205,"Date":"4/9/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":295,"Cost":202,"Date":"4/10/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":845,"Cost":738,"Date":"4/19/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":408,"Cost":388,"Date":"5/17/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":759,"Cost":529,"Date":"5/22/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":919,"Cost":699,"Date":"6/20/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":806,"Cost":523,"Date":"7/1/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":725,"Cost":378,"Date":"7/4/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":439,"Cost":352,"Date":"7/8/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":760,"Cost":519,"Date":"7/9/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":22,"Cost":11,"Date":"7/14/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":665,"Cost":422,"Date":"7/19/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":426,"Cost":368,"Date":"8/1/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":832,"Cost":673,"Date":"8/6/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":255,"Cost":166,"Date":"8/7/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":942,"Cost":840,"Date":"8/22/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":6,"Cost":5,"Date":"8/31/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":148,"Cost":90,"Date":"9/1/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":125,"Cost":103,"Date":"9/1/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":35,"Cost":24,"Date":"9/17/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":175,"Cost":134,"Date":"9/29/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":51,"Cost":30,"Date":"11/7/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":706,"Cost":466,"Date":"11/26/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":399,"Cost":333,"Date":"11/27/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":850,"Cost":669,"Date":"12/5/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":663,"Cost":465,"Date":"12/26/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":852,"Cost":749,"Date":"12/31/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":274,"Cost":245,"Date":"1/20/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":978,"Cost":785,"Date":"2/2/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":637,"Cost":557,"Date":"2/8/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":816,"Cost":437,"Date":"2/27/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":506,"Cost":287,"Date":"3/1/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":290,"Cost":149,"Date":"3/1/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":229,"Cost":120,"Date":"3/19/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":213,"Cost":172,"Date":"3/28/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":668,"Cost":486,"Date":"5/21/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":244,"Cost":137,"Date":"7/21/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":649,"Cost":413,"Date":"8/5/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":833,"Cost":770,"Date":"8/12/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":20,"Cost":14,"Date":"8/21/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":534,"Cost":315,"Date":"8/23/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":883,"Cost":463,"Date":"9/3/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":448,"Cost":324,"Date":"9/5/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":563,"Cost":318,"Date":"10/6/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":976,"Cost":685,"Date":"10/19/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":365,"Cost":240,"Date":"11/15/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":875,"Cost":787,"Date":"12/8/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":253,"Cost":217,"Date":"1/8/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":836,"Cost":720,"Date":"1/14/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":388,"Cost":210,"Date":"1/19/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":589,"Cost":417,"Date":"1/28/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":895,"Cost":664,"Date":"1/31/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":963,"Cost":913,"Date":"3/27/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":879,"Cost":501,"Date":"4/20/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":201,"Cost":136,"Date":"4/24/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":596,"Cost":543,"Date":"4/28/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":503,"Cost":265,"Date":"5/15/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":404,"Cost":264,"Date":"5/16/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":194,"Cost":135,"Date":"5/18/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":635,"Cost":491,"Date":"6/2/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":126,"Cost":98,"Date":"6/3/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":540,"Cost":281,"Date":"6/5/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":673,"Cost":340,"Date":"6/7/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":929,"Cost":754,"Date":"6/14/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":388,"Cost":277,"Date":"6/20/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":394,"Cost":362,"Date":"6/24/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":174,"Cost":93,"Date":"7/4/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":973,"Cost":527,"Date":"7/9/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":792,"Cost":713,"Date":"7/12/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":492,"Cost":407,"Date":"8/14/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":210,"Cost":112,"Date":"8/16/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":137,"Cost":113,"Date":"8/23/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":813,"Cost":455,"Date":"9/2/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":847,"Cost":731,"Date":"9/3/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":784,"Cost":683,"Date":"9/16/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":367,"Cost":281,"Date":"10/4/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":165,"Cost":143,"Date":"11/1/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":586,"Cost":506,"Date":"11/2/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":754,"Cost":632,"Date":"12/17/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":147,"Cost":92,"Date":"2/10/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":792,"Cost":632,"Date":"2/28/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":646,"Cost":531,"Date":"3/4/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":63,"Cost":36,"Date":"3/9/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":898,"Cost":664,"Date":"3/9/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":101,"Cost":57,"Date":"3/11/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":557,"Cost":476,"Date":"3/17/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":480,"Cost":359,"Date":"3/17/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":196,"Cost":107,"Date":"3/23/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":172,"Cost":92,"Date":"4/1/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":405,"Cost":247,"Date":"5/7/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":563,"Cost":518,"Date":"5/10/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":55,"Cost":43,"Date":"5/20/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":430,"Cost":224,"Date":"6/2/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":704,"Cost":392,"Date":"6/11/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":188,"Cost":150,"Date":"6/16/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":799,"Cost":576,"Date":"6/16/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":790,"Cost":614,"Date":"7/10/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":651,"Cost":458,"Date":"7/11/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":400,"Cost":332,"Date":"8/28/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":418,"Cost":255,"Date":"8/29/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":478,"Cost":252,"Date":"8/31/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":744,"Cost":438,"Date":"9/8/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":348,"Cost":252,"Date":"9/13/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":600,"Cost":468,"Date":"9/14/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":416,"Cost":213,"Date":"9/19/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":699,"Cost":664,"Date":"9/25/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":683,"Cost":417,"Date":"10/4/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":659,"Cost":343,"Date":"10/10/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":478,"Cost":352,"Date":"10/17/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":385,"Cost":192,"Date":"10/28/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":117,"Cost":77,"Date":"10/30/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":725,"Cost":523,"Date":"11/1/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":225,"Cost":163,"Date":"11/15/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":853,"Cost":472,"Date":"11/25/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":47,"Cost":23,"Date":"1/10/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":918,"Cost":679,"Date":"1/14/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":781,"Cost":436,"Date":"1/20/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":434,"Cost":227,"Date":"2/8/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":110,"Cost":66,"Date":"2/25/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":457,"Cost":246,"Date":"3/7/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":659,"Cost":579,"Date":"3/14/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":571,"Cost":364,"Date":"3/27/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":764,"Cost":673,"Date":"4/5/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":170,"Cost":107,"Date":"4/14/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":908,"Cost":655,"Date":"5/3/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":337,"Cost":234,"Date":"5/9/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":47,"Cost":34,"Date":"5/15/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":54,"Cost":42,"Date":"5/25/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":997,"Cost":940,"Date":"5/26/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":243,"Cost":162,"Date":"5/31/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":755,"Cost":658,"Date":"7/27/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":732,"Cost":566,"Date":"9/17/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":936,"Cost":700,"Date":"10/6/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":890,"Cost":587,"Date":"10/8/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":658,"Cost":343,"Date":"10/26/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":186,"Cost":110,"Date":"11/16/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":948,"Cost":661,"Date":"11/18/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"ARKET","Country":"USA","Sale":580,"Cost":332,"Date":"12/1/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":50,"Cost":27,"Date":"2/9/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":396,"Cost":288,"Date":"2/11/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":43,"Cost":28,"Date":"3/10/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":513,"Cost":398,"Date":"3/16/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":943,"Cost":491,"Date":"3/18/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":748,"Cost":601,"Date":"3/20/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":413,"Cost":332,"Date":"3/26/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":182,"Cost":110,"Date":"6/2/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":280,"Cost":223,"Date":"6/10/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":411,"Cost":267,"Date":"6/16/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":306,"Cost":232,"Date":"6/25/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":437,"Cost":313,"Date":"7/19/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":526,"Cost":461,"Date":"7/21/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":315,"Cost":282,"Date":"7/25/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":991,"Cost":851,"Date":"8/4/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":952,"Cost":821,"Date":"9/2/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":433,"Cost":246,"Date":"9/4/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":642,"Cost":411,"Date":"9/19/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":903,"Cost":555,"Date":"9/29/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":732,"Cost":371,"Date":"10/2/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":527,"Cost":274,"Date":"10/15/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":956,"Cost":717,"Date":"10/30/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":392,"Cost":298,"Date":"11/9/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":375,"Cost":236,"Date":"11/23/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":858,"Cost":701,"Date":"11/30/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":596,"Cost":365,"Date":"12/8/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":535,"Cost":481,"Date":"12/11/2018"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":925,"Cost":639,"Date":"1/15/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":227,"Cost":214,"Date":"1/24/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":152,"Cost":136,"Date":"2/3/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":296,"Cost":154,"Date":"2/4/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":398,"Cost":298,"Date":"3/9/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":426,"Cost":348,"Date":"3/12/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":223,"Cost":197,"Date":"4/19/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":209,"Cost":151,"Date":"5/3/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":233,"Cost":125,"Date":"5/4/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":832,"Cost":456,"Date":"6/8/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":358,"Cost":250,"Date":"6/26/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":341,"Cost":241,"Date":"7/4/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":653,"Cost":541,"Date":"7/13/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":354,"Cost":307,"Date":"8/8/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":300,"Cost":185,"Date":"8/26/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":974,"Cost":582,"Date":"9/2/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":115,"Cost":80,"Date":"9/29/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":266,"Cost":242,"Date":"10/12/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":869,"Cost":461,"Date":"11/2/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":205,"Cost":138,"Date":"11/4/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":477,"Cost":314,"Date":"11/7/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":699,"Cost":481,"Date":"12/1/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":712,"Cost":649,"Date":"12/4/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":105,"Cost":79,"Date":"12/7/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":989,"Cost":648,"Date":"12/18/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":194,"Cost":174,"Date":"12/20/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":557,"Cost":341,"Date":"12/20/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":22,"Cost":15,"Date":"12/21/2019"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":714,"Cost":594,"Date":"1/9/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":525,"Cost":447,"Date":"2/5/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":438,"Cost":415,"Date":"2/16/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":116,"Cost":101,"Date":"2/16/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":270,"Cost":211,"Date":"2/18/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":186,"Cost":145,"Date":"2/22/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":987,"Cost":776,"Date":"2/25/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":904,"Cost":704,"Date":"3/8/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":277,"Cost":202,"Date":"4/2/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":281,"Cost":225,"Date":"4/3/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":828,"Cost":766,"Date":"4/9/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":330,"Cost":259,"Date":"4/10/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":686,"Cost":628,"Date":"4/19/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":830,"Cost":600,"Date":"5/17/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":865,"Cost":579,"Date":"5/22/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":332,"Cost":245,"Date":"6/20/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":736,"Cost":661,"Date":"7/1/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":301,"Cost":205,"Date":"7/4/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":79,"Cost":71,"Date":"7/8/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":172,"Cost":94,"Date":"7/9/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":724,"Cost":557,"Date":"7/14/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":746,"Cost":415,"Date":"7/19/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":466,"Cost":358,"Date":"8/1/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":934,"Cost":716,"Date":"8/6/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":142,"Cost":80,"Date":"8/7/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":857,"Cost":524,"Date":"8/22/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":684,"Cost":592,"Date":"8/31/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":124,"Cost":93,"Date":"9/1/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":365,"Cost":330,"Date":"9/1/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":792,"Cost":446,"Date":"9/17/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":265,"Cost":179,"Date":"9/29/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":136,"Cost":111,"Date":"11/7/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":257,"Cost":138,"Date":"11/26/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":399,"Cost":254,"Date":"11/27/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":418,"Cost":379,"Date":"12/5/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":377,"Cost":287,"Date":"12/26/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":289,"Cost":174,"Date":"12/31/2020"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":14,"Cost":7,"Date":"1/20/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":582,"Cost":363,"Date":"2/2/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":873,"Cost":818,"Date":"2/8/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":915,"Cost":633,"Date":"2/27/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":47,"Cost":40,"Date":"3/1/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":659,"Cost":499,"Date":"3/1/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":585,"Cost":520,"Date":"3/19/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":423,"Cost":267,"Date":"3/28/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":850,"Cost":456,"Date":"5/21/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":961,"Cost":902,"Date":"7/21/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":214,"Cost":201,"Date":"8/5/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":748,"Cost":411,"Date":"8/12/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":707,"Cost":358,"Date":"8/21/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":289,"Cost":190,"Date":"8/23/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":629,"Cost":472,"Date":"9/3/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":190,"Cost":123,"Date":"9/5/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":402,"Cost":254,"Date":"10/6/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":118,"Cost":102,"Date":"10/19/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":727,"Cost":467,"Date":"11/15/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":657,"Cost":545,"Date":"12/8/2021"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":537,"Cost":412,"Date":"1/8/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":137,"Cost":80,"Date":"1/14/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":46,"Cost":23,"Date":"1/19/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":881,"Cost":644,"Date":"1/28/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":108,"Cost":89,"Date":"1/31/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":153,"Cost":124,"Date":"3/27/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":311,"Cost":288,"Date":"4/20/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":669,"Cost":440,"Date":"4/24/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":539,"Cost":464,"Date":"4/28/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":937,"Cost":605,"Date":"5/15/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":625,"Cost":521,"Date":"5/16/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":570,"Cost":351,"Date":"5/18/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":112,"Cost":84,"Date":"6/2/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":258,"Cost":182,"Date":"6/3/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":184,"Cost":105,"Date":"6/5/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":522,"Cost":364,"Date":"6/7/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":871,"Cost":616,"Date":"6/14/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":171,"Cost":106,"Date":"6/20/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":698,"Cost":376,"Date":"6/24/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":496,"Cost":369,"Date":"7/4/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":470,"Cost":239,"Date":"7/9/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":775,"Cost":493,"Date":"7/12/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":474,"Cost":306,"Date":"8/14/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":832,"Cost":557,"Date":"8/16/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":972,"Cost":537,"Date":"8/23/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":343,"Cost":215,"Date":"9/2/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":211,"Cost":172,"Date":"9/3/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":786,"Cost":599,"Date":"9/16/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":7,"Cost":6,"Date":"10/4/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":537,"Cost":309,"Date":"11/1/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":254,"Cost":172,"Date":"11/2/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":676,"Cost":641,"Date":"12/17/2022"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":283,"Cost":267,"Date":"2/10/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":909,"Cost":524,"Date":"2/28/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":647,"Cost":473,"Date":"3/4/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":239,"Cost":138,"Date":"3/9/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":385,"Cost":319,"Date":"3/9/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":677,"Cost":495,"Date":"3/11/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":33,"Cost":31,"Date":"3/17/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":901,"Cost":610,"Date":"3/17/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":751,"Cost":549,"Date":"3/23/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":664,"Cost":454,"Date":"4/1/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":549,"Cost":429,"Date":"5/7/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":237,"Cost":217,"Date":"5/10/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":373,"Cost":277,"Date":"5/20/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":171,"Cost":147,"Date":"6/2/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":54,"Cost":49,"Date":"6/11/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":982,"Cost":841,"Date":"6/16/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":943,"Cost":562,"Date":"6/16/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":89,"Cost":55,"Date":"7/10/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":437,"Cost":275,"Date":"7/11/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":139,"Cost":111,"Date":"8/28/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":952,"Cost":661,"Date":"8/29/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":965,"Cost":599,"Date":"8/31/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":671,"Cost":414,"Date":"9/8/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":917,"Cost":696,"Date":"9/13/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":760,"Cost":460,"Date":"9/14/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":286,"Cost":155,"Date":"9/19/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":833,"Cost":476,"Date":"9/25/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":914,"Cost":822,"Date":"10/4/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":354,"Cost":194,"Date":"10/10/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":226,"Cost":151,"Date":"10/17/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":685,"Cost":522,"Date":"10/28/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":780,"Cost":695,"Date":"10/30/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":847,"Cost":756,"Date":"11/1/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":397,"Cost":220,"Date":"11/15/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":295,"Cost":269,"Date":"11/25/2023"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":144,"Cost":123,"Date":"1/10/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":679,"Cost":554,"Date":"1/14/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":759,"Cost":405,"Date":"1/20/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":917,"Cost":589,"Date":"2/8/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":309,"Cost":260,"Date":"2/25/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":217,"Cost":196,"Date":"3/7/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":120,"Cost":85,"Date":"3/14/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":616,"Cost":417,"Date":"3/27/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":186,"Cost":95,"Date":"4/5/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":256,"Cost":219,"Date":"4/14/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":861,"Cost":683,"Date":"5/3/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":283,"Cost":167,"Date":"5/9/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":522,"Cost":386,"Date":"5/15/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":881,"Cost":536,"Date":"5/25/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":933,"Cost":710,"Date":"5/26/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":630,"Cost":432,"Date":"5/31/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":282,"Cost":229,"Date":"7/27/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":921,"Cost":742,"Date":"9/17/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":983,"Cost":728,"Date":"10/6/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":414,"Cost":297,"Date":"10/8/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":982,"Cost":542,"Date":"10/26/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":694,"Cost":385,"Date":"11/16/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":46,"Cost":37,"Date":"11/18/2024"},{"Store":"Westfield Valley Fair, Santa Clara, CA","Brand":"COS","Country":"USA","Sale":784,"Cost":742,"Date":"12/1/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":785,"Cost":448,"Date":"2/9/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":193,"Cost":106,"Date":"2/11/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":259,"Cost":154,"Date":"3/10/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":201,"Cost":105,"Date":"3/16/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":19,"Cost":17,"Date":"3/18/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":470,"Cost":266,"Date":"3/20/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":426,"Cost":379,"Date":"3/26/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":614,"Cost":408,"Date":"6/2/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":937,"Cost":655,"Date":"6/10/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":494,"Cost":269,"Date":"6/16/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":55,"Cost":50,"Date":"6/25/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":802,"Cost":543,"Date":"7/19/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":470,"Cost":358,"Date":"7/21/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":180,"Cost":160,"Date":"7/25/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":5,"Cost":3,"Date":"8/4/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":311,"Cost":255,"Date":"9/2/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":798,"Cost":471,"Date":"9/4/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":205,"Cost":149,"Date":"9/19/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":732,"Cost":380,"Date":"9/29/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":757,"Cost":689,"Date":"10/2/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":896,"Cost":459,"Date":"10/15/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":167,"Cost":123,"Date":"10/30/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":267,"Cost":187,"Date":"11/9/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":969,"Cost":735,"Date":"11/23/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":901,"Cost":780,"Date":"11/30/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":981,"Cost":853,"Date":"12/8/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":901,"Cost":518,"Date":"12/11/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":49,"Cost":40,"Date":"1/15/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":547,"Cost":367,"Date":"1/24/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":332,"Cost":242,"Date":"2/3/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":364,"Cost":216,"Date":"2/4/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":274,"Cost":227,"Date":"3/9/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":148,"Cost":127,"Date":"3/12/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":542,"Cost":292,"Date":"4/19/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":858,"Cost":646,"Date":"5/3/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":887,"Cost":542,"Date":"5/4/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":878,"Cost":704,"Date":"6/8/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":790,"Cost":749,"Date":"6/26/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":295,"Cost":215,"Date":"7/4/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":40,"Cost":34,"Date":"7/13/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":648,"Cost":334,"Date":"8/8/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":430,"Cost":354,"Date":"8/26/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":802,"Cost":611,"Date":"9/2/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":155,"Cost":102,"Date":"9/29/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":402,"Cost":377,"Date":"10/12/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":206,"Cost":104,"Date":"11/2/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":52,"Cost":39,"Date":"11/4/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":836,"Cost":743,"Date":"11/7/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":838,"Cost":676,"Date":"12/1/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":7,"Cost":5,"Date":"12/4/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":330,"Cost":234,"Date":"12/7/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":868,"Cost":665,"Date":"12/18/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":931,"Cost":792,"Date":"12/20/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":154,"Cost":87,"Date":"12/20/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":230,"Cost":179,"Date":"12/21/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":857,"Cost":760,"Date":"1/9/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":931,"Cost":710,"Date":"2/5/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":349,"Cost":251,"Date":"2/16/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":27,"Cost":18,"Date":"2/16/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":151,"Cost":122,"Date":"2/18/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":790,"Cost":636,"Date":"2/22/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":345,"Cost":317,"Date":"2/25/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":519,"Cost":411,"Date":"3/8/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":9,"Cost":6,"Date":"4/2/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":448,"Cost":260,"Date":"4/3/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":593,"Cost":480,"Date":"4/9/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":151,"Cost":144,"Date":"4/10/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":452,"Cost":380,"Date":"4/19/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":653,"Cost":611,"Date":"5/17/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":488,"Cost":372,"Date":"5/22/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":807,"Cost":594,"Date":"6/20/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":501,"Cost":349,"Date":"7/1/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":852,"Cost":568,"Date":"7/4/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":671,"Cost":450,"Date":"7/8/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":967,"Cost":726,"Date":"7/9/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":932,"Cost":565,"Date":"7/14/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":196,"Cost":164,"Date":"7/19/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":347,"Cost":240,"Date":"8/1/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":829,"Cost":598,"Date":"8/6/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":968,"Cost":648,"Date":"8/7/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":259,"Cost":181,"Date":"8/22/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":186,"Cost":139,"Date":"8/31/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":696,"Cost":468,"Date":"9/1/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":821,"Cost":424,"Date":"9/1/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":770,"Cost":588,"Date":"9/17/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":780,"Cost":465,"Date":"9/29/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":603,"Cost":572,"Date":"11/7/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":71,"Cost":54,"Date":"11/26/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":367,"Cost":344,"Date":"11/27/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":203,"Cost":189,"Date":"12/5/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":318,"Cost":162,"Date":"12/26/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":626,"Cost":398,"Date":"12/31/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":702,"Cost":458,"Date":"1/20/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":948,"Cost":675,"Date":"2/2/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":397,"Cost":285,"Date":"2/8/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":824,"Cost":603,"Date":"2/27/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":459,"Cost":249,"Date":"3/1/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":565,"Cost":506,"Date":"3/1/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":978,"Cost":611,"Date":"3/19/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":730,"Cost":367,"Date":"3/28/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":914,"Cost":464,"Date":"5/21/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":99,"Cost":74,"Date":"7/21/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":762,"Cost":445,"Date":"8/5/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":729,"Cost":632,"Date":"8/12/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":191,"Cost":137,"Date":"8/21/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":205,"Cost":193,"Date":"8/23/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":849,"Cost":716,"Date":"9/3/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":51,"Cost":35,"Date":"9/5/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":585,"Cost":391,"Date":"10/6/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":206,"Cost":148,"Date":"10/19/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":146,"Cost":133,"Date":"11/15/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":562,"Cost":351,"Date":"12/8/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":530,"Cost":285,"Date":"1/8/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":172,"Cost":134,"Date":"1/14/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":584,"Cost":307,"Date":"1/19/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":680,"Cost":596,"Date":"1/28/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":896,"Cost":461,"Date":"1/31/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":664,"Cost":455,"Date":"3/27/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":630,"Cost":434,"Date":"4/20/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":890,"Cost":782,"Date":"4/24/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":742,"Cost":388,"Date":"4/28/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":453,"Cost":422,"Date":"5/15/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":466,"Cost":337,"Date":"5/16/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":815,"Cost":749,"Date":"5/18/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":904,"Cost":578,"Date":"6/2/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":230,"Cost":214,"Date":"6/3/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":515,"Cost":266,"Date":"6/5/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":984,"Cost":671,"Date":"6/7/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":70,"Cost":49,"Date":"6/14/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":96,"Cost":68,"Date":"6/20/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":143,"Cost":130,"Date":"6/24/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":340,"Cost":198,"Date":"7/4/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":763,"Cost":708,"Date":"7/9/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":268,"Cost":208,"Date":"7/12/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":867,"Cost":519,"Date":"8/14/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":822,"Cost":724,"Date":"8/16/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":827,"Cost":730,"Date":"8/23/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":626,"Cost":534,"Date":"9/2/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":243,"Cost":167,"Date":"9/3/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":74,"Cost":59,"Date":"9/16/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":454,"Cost":375,"Date":"10/4/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":357,"Cost":301,"Date":"11/1/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":384,"Cost":210,"Date":"11/2/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":820,"Cost":708,"Date":"12/17/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":486,"Cost":413,"Date":"2/10/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":483,"Cost":269,"Date":"2/28/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":504,"Cost":255,"Date":"3/4/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":236,"Cost":212,"Date":"3/9/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":917,"Cost":756,"Date":"3/9/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":591,"Cost":414,"Date":"3/11/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":31,"Cost":17,"Date":"3/17/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":381,"Cost":248,"Date":"3/17/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":988,"Cost":632,"Date":"3/23/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":346,"Cost":175,"Date":"4/1/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":277,"Cost":260,"Date":"5/7/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":838,"Cost":516,"Date":"5/10/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":758,"Cost":658,"Date":"5/20/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":341,"Cost":183,"Date":"6/2/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":760,"Cost":675,"Date":"6/11/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":851,"Cost":541,"Date":"6/16/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":311,"Cost":277,"Date":"6/16/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":786,"Cost":643,"Date":"7/10/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":262,"Cost":232,"Date":"7/11/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":906,"Cost":569,"Date":"8/28/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":3,"Cost":2,"Date":"8/29/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":841,"Cost":693,"Date":"8/31/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":57,"Cost":32,"Date":"9/8/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":34,"Cost":28,"Date":"9/13/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":320,"Cost":215,"Date":"9/14/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":234,"Cost":142,"Date":"9/19/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":890,"Cost":846,"Date":"9/25/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":591,"Cost":427,"Date":"10/4/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":477,"Cost":322,"Date":"10/10/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":977,"Cost":622,"Date":"10/17/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":563,"Cost":479,"Date":"10/28/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":142,"Cost":130,"Date":"10/30/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":658,"Cost":590,"Date":"11/1/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":657,"Cost":428,"Date":"11/15/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":355,"Cost":230,"Date":"11/25/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":80,"Cost":42,"Date":"1/10/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":328,"Cost":179,"Date":"1/14/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":423,"Cost":299,"Date":"1/20/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":608,"Cost":333,"Date":"2/8/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":569,"Cost":448,"Date":"2/25/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":152,"Cost":102,"Date":"3/7/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":69,"Cost":50,"Date":"3/14/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":949,"Cost":855,"Date":"3/27/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":148,"Cost":81,"Date":"4/5/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":601,"Cost":331,"Date":"4/14/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":907,"Cost":811,"Date":"5/3/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":814,"Cost":774,"Date":"5/9/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":247,"Cost":195,"Date":"5/15/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":397,"Cost":231,"Date":"5/25/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":625,"Cost":376,"Date":"5/26/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":178,"Cost":93,"Date":"5/31/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":5,"Cost":5,"Date":"7/27/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":333,"Cost":224,"Date":"9/17/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":827,"Cost":695,"Date":"10/6/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":607,"Cost":513,"Date":"10/8/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":38,"Cost":29,"Date":"10/26/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":521,"Cost":286,"Date":"11/16/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":654,"Cost":581,"Date":"11/18/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":492,"Cost":384,"Date":"12/1/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":494,"Cost":265,"Date":"2/9/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":675,"Cost":433,"Date":"2/11/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":913,"Cost":471,"Date":"3/10/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":314,"Cost":295,"Date":"3/16/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":240,"Cost":180,"Date":"3/18/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":464,"Cost":245,"Date":"3/20/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":5,"Cost":5,"Date":"3/26/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":701,"Cost":510,"Date":"6/2/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":235,"Cost":222,"Date":"6/10/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":248,"Cost":218,"Date":"6/16/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":651,"Cost":474,"Date":"6/25/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":106,"Cost":85,"Date":"7/19/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":87,"Cost":47,"Date":"7/21/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":16,"Cost":11,"Date":"7/25/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":75,"Cost":44,"Date":"8/4/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":895,"Cost":456,"Date":"9/2/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":246,"Cost":225,"Date":"9/4/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":665,"Cost":607,"Date":"9/19/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":206,"Cost":191,"Date":"9/29/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":430,"Cost":262,"Date":"10/2/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":949,"Cost":694,"Date":"10/15/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":293,"Cost":223,"Date":"10/30/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":315,"Cost":197,"Date":"11/9/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":395,"Cost":373,"Date":"11/23/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":78,"Cost":43,"Date":"11/30/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":19,"Cost":9,"Date":"12/8/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":811,"Cost":570,"Date":"12/11/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":401,"Cost":283,"Date":"1/15/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":940,"Cost":540,"Date":"1/24/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":660,"Cost":388,"Date":"2/3/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":536,"Cost":296,"Date":"2/4/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":89,"Cost":84,"Date":"3/9/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":39,"Cost":35,"Date":"3/12/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":424,"Cost":220,"Date":"4/19/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":857,"Cost":508,"Date":"5/3/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":324,"Cost":251,"Date":"5/4/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":553,"Cost":339,"Date":"6/8/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":738,"Cost":451,"Date":"6/26/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":78,"Cost":52,"Date":"7/4/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":22,"Cost":12,"Date":"7/13/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":835,"Cost":613,"Date":"8/8/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":571,"Cost":348,"Date":"8/26/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":471,"Cost":402,"Date":"9/2/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":312,"Cost":215,"Date":"9/29/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":25,"Cost":18,"Date":"10/12/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":903,"Cost":641,"Date":"11/2/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":52,"Cost":31,"Date":"11/4/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":6,"Cost":4,"Date":"11/7/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":614,"Cost":522,"Date":"12/1/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":634,"Cost":547,"Date":"12/4/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":967,"Cost":563,"Date":"12/7/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":19,"Cost":18,"Date":"12/18/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":310,"Cost":204,"Date":"12/20/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":248,"Cost":149,"Date":"12/20/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":297,"Cost":250,"Date":"12/21/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":208,"Cost":138,"Date":"1/9/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":222,"Cost":175,"Date":"2/5/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":43,"Cost":34,"Date":"2/16/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":306,"Cost":215,"Date":"2/16/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":78,"Cost":55,"Date":"2/18/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":908,"Cost":585,"Date":"2/22/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":352,"Cost":301,"Date":"2/25/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":567,"Cost":354,"Date":"3/8/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":145,"Cost":113,"Date":"4/2/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":846,"Cost":781,"Date":"4/3/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":703,"Cost":471,"Date":"4/9/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":653,"Cost":522,"Date":"4/10/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":448,"Cost":312,"Date":"4/19/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":82,"Cost":72,"Date":"5/17/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":505,"Cost":406,"Date":"5/22/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":416,"Cost":305,"Date":"6/20/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":338,"Cost":299,"Date":"7/1/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":150,"Cost":114,"Date":"7/4/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":523,"Cost":418,"Date":"7/8/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":471,"Cost":380,"Date":"7/9/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":203,"Cost":135,"Date":"7/14/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":383,"Cost":291,"Date":"7/19/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":367,"Cost":260,"Date":"8/1/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":600,"Cost":393,"Date":"8/6/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":118,"Cost":73,"Date":"8/7/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":499,"Cost":371,"Date":"8/22/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":423,"Cost":232,"Date":"8/31/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":138,"Cost":88,"Date":"9/1/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":718,"Cost":546,"Date":"9/1/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":439,"Cost":384,"Date":"9/17/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":986,"Cost":910,"Date":"9/29/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":801,"Cost":409,"Date":"11/7/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":771,"Cost":533,"Date":"11/26/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":400,"Cost":290,"Date":"11/27/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":917,"Cost":641,"Date":"12/5/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":421,"Cost":216,"Date":"12/26/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":621,"Cost":478,"Date":"12/31/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":610,"Cost":467,"Date":"1/20/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":379,"Cost":213,"Date":"2/2/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":844,"Cost":581,"Date":"2/8/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":938,"Cost":784,"Date":"2/27/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":780,"Cost":522,"Date":"3/1/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":140,"Cost":83,"Date":"3/1/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":118,"Cost":82,"Date":"3/19/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":492,"Cost":431,"Date":"3/28/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":502,"Cost":435,"Date":"5/21/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":992,"Cost":746,"Date":"7/21/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":241,"Cost":129,"Date":"8/5/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":484,"Cost":318,"Date":"8/12/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":151,"Cost":80,"Date":"8/21/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":601,"Cost":348,"Date":"8/23/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":954,"Cost":758,"Date":"9/3/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":913,"Cost":617,"Date":"9/5/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":444,"Cost":224,"Date":"10/6/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":231,"Cost":152,"Date":"10/19/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":882,"Cost":677,"Date":"11/15/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":889,"Cost":532,"Date":"12/8/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":459,"Cost":349,"Date":"1/8/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":282,"Cost":268,"Date":"1/14/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":718,"Cost":477,"Date":"1/19/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":903,"Cost":817,"Date":"1/28/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":41,"Cost":30,"Date":"1/31/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":900,"Cost":466,"Date":"3/27/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":667,"Cost":619,"Date":"4/20/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":447,"Cost":262,"Date":"4/24/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":881,"Cost":694,"Date":"4/28/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":236,"Cost":134,"Date":"5/15/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":844,"Cost":684,"Date":"5/16/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":497,"Cost":249,"Date":"5/18/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":779,"Cost":492,"Date":"6/2/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":643,"Cost":481,"Date":"6/3/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":301,"Cost":231,"Date":"6/5/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":356,"Cost":237,"Date":"6/7/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":387,"Cost":301,"Date":"6/14/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":659,"Cost":491,"Date":"6/20/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":610,"Cost":521,"Date":"6/24/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":326,"Cost":269,"Date":"7/4/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":693,"Cost":485,"Date":"7/9/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":247,"Cost":223,"Date":"7/12/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":139,"Cost":96,"Date":"8/14/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":778,"Cost":644,"Date":"8/16/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":260,"Cost":239,"Date":"8/23/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":923,"Cost":619,"Date":"9/2/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":896,"Cost":515,"Date":"9/3/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":505,"Cost":293,"Date":"9/16/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":249,"Cost":181,"Date":"10/4/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":580,"Cost":537,"Date":"11/1/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":269,"Cost":163,"Date":"11/2/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":393,"Cost":329,"Date":"12/17/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":613,"Cost":467,"Date":"2/10/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":566,"Cost":503,"Date":"2/28/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":701,"Cost":639,"Date":"3/4/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":363,"Cost":215,"Date":"3/9/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":146,"Cost":76,"Date":"3/9/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":105,"Cost":68,"Date":"3/11/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":181,"Cost":136,"Date":"3/17/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":266,"Cost":168,"Date":"3/17/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":339,"Cost":319,"Date":"3/23/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":189,"Cost":133,"Date":"4/1/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":345,"Cost":230,"Date":"5/7/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":665,"Cost":583,"Date":"5/10/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":374,"Cost":293,"Date":"5/20/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":671,"Cost":564,"Date":"6/2/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":176,"Cost":127,"Date":"6/11/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":128,"Cost":67,"Date":"6/16/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":373,"Cost":340,"Date":"6/16/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":328,"Cost":228,"Date":"7/10/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":682,"Cost":383,"Date":"7/11/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":500,"Cost":301,"Date":"8/28/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":221,"Cost":147,"Date":"8/29/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":713,"Cost":399,"Date":"8/31/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":190,"Cost":156,"Date":"9/8/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":458,"Cost":412,"Date":"9/13/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":999,"Cost":521,"Date":"9/14/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":251,"Cost":144,"Date":"9/19/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":860,"Cost":738,"Date":"9/25/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":398,"Cost":329,"Date":"10/4/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":835,"Cost":507,"Date":"10/10/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":469,"Cost":440,"Date":"10/17/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":677,"Cost":531,"Date":"10/28/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":989,"Cost":894,"Date":"10/30/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":559,"Cost":371,"Date":"11/1/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":460,"Cost":392,"Date":"11/15/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":620,"Cost":537,"Date":"11/25/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":62,"Cost":56,"Date":"1/10/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":339,"Cost":304,"Date":"1/14/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":637,"Cost":455,"Date":"1/20/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":794,"Cost":556,"Date":"2/8/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":847,"Cost":616,"Date":"2/25/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":759,"Cost":489,"Date":"3/7/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":653,"Cost":587,"Date":"3/14/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":326,"Cost":211,"Date":"3/27/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":628,"Cost":432,"Date":"4/5/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":376,"Cost":240,"Date":"4/14/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":261,"Cost":153,"Date":"5/3/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":931,"Cost":606,"Date":"5/9/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":333,"Cost":305,"Date":"5/15/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":678,"Cost":425,"Date":"5/25/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":229,"Cost":142,"Date":"5/26/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":446,"Cost":316,"Date":"5/31/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":209,"Cost":183,"Date":"7/27/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":655,"Cost":527,"Date":"9/17/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":392,"Cost":239,"Date":"10/6/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":108,"Cost":100,"Date":"10/8/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":483,"Cost":453,"Date":"10/26/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":481,"Cost":299,"Date":"11/16/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":342,"Cost":309,"Date":"11/18/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"Sellpy","Country":"USA","Sale":386,"Cost":248,"Date":"12/1/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":691,"Cost":373,"Date":"2/9/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":860,"Cost":743,"Date":"2/11/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":860,"Cost":643,"Date":"3/10/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":283,"Cost":180,"Date":"3/16/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":171,"Cost":102,"Date":"3/18/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":60,"Cost":57,"Date":"3/20/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":699,"Cost":454,"Date":"3/26/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":757,"Cost":636,"Date":"6/2/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":616,"Cost":491,"Date":"6/10/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":626,"Cost":481,"Date":"6/16/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":978,"Cost":647,"Date":"6/25/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":280,"Cost":190,"Date":"7/19/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":265,"Cost":159,"Date":"7/21/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":612,"Cost":392,"Date":"7/25/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":879,"Cost":822,"Date":"8/4/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":335,"Cost":311,"Date":"9/2/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":448,"Cost":255,"Date":"9/4/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":309,"Cost":197,"Date":"9/19/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":319,"Cost":283,"Date":"9/29/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":386,"Cost":240,"Date":"10/2/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":279,"Cost":261,"Date":"10/15/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":158,"Cost":150,"Date":"10/30/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":723,"Cost":531,"Date":"11/9/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":441,"Cost":226,"Date":"11/23/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":415,"Cost":277,"Date":"11/30/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":503,"Cost":274,"Date":"12/8/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":682,"Cost":453,"Date":"12/11/2018"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":439,"Cost":338,"Date":"1/15/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":692,"Cost":396,"Date":"1/24/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":76,"Cost":64,"Date":"2/3/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":1000,"Cost":756,"Date":"2/4/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":568,"Cost":528,"Date":"3/9/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":345,"Cost":275,"Date":"3/12/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":677,"Cost":353,"Date":"4/19/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":146,"Cost":109,"Date":"5/3/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":403,"Cost":206,"Date":"5/4/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":71,"Cost":55,"Date":"6/8/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":21,"Cost":11,"Date":"6/26/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":533,"Cost":306,"Date":"7/4/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":686,"Cost":427,"Date":"7/13/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":402,"Cost":201,"Date":"8/8/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":520,"Cost":452,"Date":"8/26/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":602,"Cost":371,"Date":"9/2/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":57,"Cost":44,"Date":"9/29/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":5,"Cost":4,"Date":"10/12/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":779,"Cost":454,"Date":"11/2/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":703,"Cost":515,"Date":"11/4/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":113,"Cost":61,"Date":"11/7/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":848,"Cost":652,"Date":"12/1/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":445,"Cost":390,"Date":"12/4/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":190,"Cost":121,"Date":"12/7/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":238,"Cost":135,"Date":"12/18/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":714,"Cost":477,"Date":"12/20/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":288,"Cost":168,"Date":"12/20/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":875,"Cost":536,"Date":"12/21/2019"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":503,"Cost":262,"Date":"1/9/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":557,"Cost":434,"Date":"2/5/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":688,"Cost":486,"Date":"2/16/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":159,"Cost":95,"Date":"2/16/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":205,"Cost":143,"Date":"2/18/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":393,"Cost":245,"Date":"2/22/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":941,"Cost":868,"Date":"2/25/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":623,"Cost":482,"Date":"3/8/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":668,"Cost":353,"Date":"4/2/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":987,"Cost":902,"Date":"4/3/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":217,"Cost":152,"Date":"4/9/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":125,"Cost":73,"Date":"4/10/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":385,"Cost":229,"Date":"4/19/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":118,"Cost":104,"Date":"5/17/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":751,"Cost":618,"Date":"5/22/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":456,"Cost":423,"Date":"6/20/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":965,"Cost":824,"Date":"7/1/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":229,"Cost":216,"Date":"7/4/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":489,"Cost":336,"Date":"7/8/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":907,"Cost":488,"Date":"7/9/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":839,"Cost":532,"Date":"7/14/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":332,"Cost":310,"Date":"7/19/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":753,"Cost":639,"Date":"8/1/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":439,"Cost":344,"Date":"8/6/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":225,"Cost":141,"Date":"8/7/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":962,"Cost":838,"Date":"8/22/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":274,"Cost":255,"Date":"8/31/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":986,"Cost":585,"Date":"9/1/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":184,"Cost":157,"Date":"9/1/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":561,"Cost":332,"Date":"9/17/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":661,"Cost":472,"Date":"9/29/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":507,"Cost":474,"Date":"11/7/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":426,"Cost":393,"Date":"11/26/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":309,"Cost":182,"Date":"11/27/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":663,"Cost":387,"Date":"12/5/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":326,"Cost":290,"Date":"12/26/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":116,"Cost":79,"Date":"12/31/2020"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":618,"Cost":337,"Date":"1/20/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":340,"Cost":293,"Date":"2/2/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":838,"Cost":491,"Date":"2/8/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":789,"Cost":531,"Date":"2/27/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":182,"Cost":139,"Date":"3/1/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":382,"Cost":214,"Date":"3/1/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":416,"Cost":307,"Date":"3/19/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":357,"Cost":323,"Date":"3/28/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":681,"Cost":350,"Date":"5/21/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":478,"Cost":454,"Date":"7/21/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":871,"Cost":561,"Date":"8/5/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":533,"Cost":432,"Date":"8/12/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":615,"Cost":501,"Date":"8/21/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":144,"Cost":125,"Date":"8/23/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":270,"Cost":172,"Date":"9/3/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":206,"Cost":151,"Date":"9/5/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":776,"Cost":560,"Date":"10/6/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":910,"Cost":725,"Date":"10/19/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":366,"Cost":309,"Date":"11/15/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":76,"Cost":45,"Date":"12/8/2021"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":381,"Cost":360,"Date":"1/8/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":843,"Cost":500,"Date":"1/14/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":316,"Cost":298,"Date":"1/19/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":478,"Cost":374,"Date":"1/28/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":108,"Cost":59,"Date":"1/31/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":459,"Cost":352,"Date":"3/27/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":895,"Cost":636,"Date":"4/20/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":961,"Cost":713,"Date":"4/24/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":253,"Cost":129,"Date":"4/28/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":993,"Cost":548,"Date":"5/15/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":445,"Cost":227,"Date":"5/16/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":364,"Cost":340,"Date":"5/18/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":714,"Cost":545,"Date":"6/2/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":900,"Cost":535,"Date":"6/3/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":530,"Cost":461,"Date":"6/5/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":601,"Cost":377,"Date":"6/7/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":822,"Cost":780,"Date":"6/14/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":70,"Cost":49,"Date":"6/20/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":13,"Cost":8,"Date":"6/24/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":442,"Cost":252,"Date":"7/4/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":418,"Cost":254,"Date":"7/9/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":364,"Cost":233,"Date":"7/12/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":342,"Cost":198,"Date":"8/14/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":347,"Cost":320,"Date":"8/16/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":158,"Cost":117,"Date":"8/23/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":772,"Cost":563,"Date":"9/2/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":186,"Cost":93,"Date":"9/3/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":786,"Cost":563,"Date":"9/16/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":810,"Cost":522,"Date":"10/4/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":173,"Cost":164,"Date":"11/1/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":387,"Cost":355,"Date":"11/2/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":4,"Cost":4,"Date":"12/17/2022"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":532,"Cost":290,"Date":"2/10/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":167,"Cost":127,"Date":"2/28/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":699,"Cost":403,"Date":"3/4/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":761,"Cost":487,"Date":"3/9/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":929,"Cost":647,"Date":"3/9/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":128,"Cost":82,"Date":"3/11/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":917,"Cost":716,"Date":"3/17/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":764,"Cost":603,"Date":"3/17/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":204,"Cost":173,"Date":"3/23/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":303,"Cost":213,"Date":"4/1/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":859,"Cost":525,"Date":"5/7/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":770,"Cost":691,"Date":"5/10/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":695,"Cost":574,"Date":"5/20/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":247,"Cost":138,"Date":"6/2/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":49,"Cost":43,"Date":"6/11/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":403,"Cost":290,"Date":"6/16/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":860,"Cost":527,"Date":"6/16/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":176,"Cost":114,"Date":"7/10/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":263,"Cost":238,"Date":"7/11/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":368,"Cost":203,"Date":"8/28/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":182,"Cost":132,"Date":"8/29/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":838,"Cost":668,"Date":"8/31/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":515,"Cost":356,"Date":"9/8/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":276,"Cost":230,"Date":"9/13/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":592,"Cost":522,"Date":"9/14/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":23,"Cost":14,"Date":"9/19/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":301,"Cost":262,"Date":"9/25/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":951,"Cost":625,"Date":"10/4/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":78,"Cost":43,"Date":"10/10/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":248,"Cost":142,"Date":"10/17/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":225,"Cost":142,"Date":"10/28/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":749,"Cost":665,"Date":"10/30/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":793,"Cost":547,"Date":"11/1/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":228,"Cost":212,"Date":"11/15/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":356,"Cost":283,"Date":"11/25/2023"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":885,"Cost":503,"Date":"1/10/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":326,"Cost":210,"Date":"1/14/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":91,"Cost":46,"Date":"1/20/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":870,"Cost":787,"Date":"2/8/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":841,"Cost":758,"Date":"2/25/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":651,"Cost":568,"Date":"3/7/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":603,"Cost":407,"Date":"3/14/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":693,"Cost":367,"Date":"3/27/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":750,"Cost":424,"Date":"4/5/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":49,"Cost":29,"Date":"4/14/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":491,"Cost":394,"Date":"5/3/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":20,"Cost":11,"Date":"5/9/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":894,"Cost":612,"Date":"5/15/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":515,"Cost":448,"Date":"5/25/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":481,"Cost":250,"Date":"5/26/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":946,"Cost":652,"Date":"5/31/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":946,"Cost":876,"Date":"7/27/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":932,"Cost":532,"Date":"9/17/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":601,"Cost":349,"Date":"10/6/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":286,"Cost":168,"Date":"10/8/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":264,"Cost":158,"Date":"10/26/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":975,"Cost":826,"Date":"11/16/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":845,"Cost":748,"Date":"11/18/2024"},{"Store":"Tysons Corner Center, McLean, VA","Brand":"HM","Country":"USA","Sale":834,"Cost":527,"Date":"12/1/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":824,"Cost":673,"Date":"2/9/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":301,"Cost":280,"Date":"2/11/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":657,"Cost":357,"Date":"3/10/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":359,"Cost":332,"Date":"3/16/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":470,"Cost":343,"Date":"3/18/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":32,"Cost":30,"Date":"3/20/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":545,"Cost":380,"Date":"3/26/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":586,"Cost":423,"Date":"6/2/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":115,"Cost":97,"Date":"6/10/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":904,"Cost":605,"Date":"6/16/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":352,"Cost":288,"Date":"6/25/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":438,"Cost":289,"Date":"7/19/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":781,"Cost":481,"Date":"7/21/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":631,"Cost":322,"Date":"7/25/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":369,"Cost":329,"Date":"8/4/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":2,"Cost":2,"Date":"9/2/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":310,"Cost":241,"Date":"9/4/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":309,"Cost":287,"Date":"9/19/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":672,"Cost":546,"Date":"9/29/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":264,"Cost":187,"Date":"10/2/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":885,"Cost":596,"Date":"10/15/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":758,"Cost":709,"Date":"10/30/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":772,"Cost":637,"Date":"11/9/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":445,"Cost":391,"Date":"11/23/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":254,"Cost":240,"Date":"11/30/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":399,"Cost":203,"Date":"12/8/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":582,"Cost":352,"Date":"12/11/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":551,"Cost":277,"Date":"1/15/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":203,"Cost":164,"Date":"1/24/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":624,"Cost":408,"Date":"2/3/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":37,"Cost":29,"Date":"2/4/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":632,"Cost":546,"Date":"3/9/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":480,"Cost":317,"Date":"3/12/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":997,"Cost":720,"Date":"4/19/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":640,"Cost":365,"Date":"5/3/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":602,"Cost":485,"Date":"5/4/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":717,"Cost":436,"Date":"6/8/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":729,"Cost":541,"Date":"6/26/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":623,"Cost":485,"Date":"7/4/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":649,"Cost":380,"Date":"7/13/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":258,"Cost":156,"Date":"8/8/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":57,"Cost":32,"Date":"8/26/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":564,"Cost":387,"Date":"9/2/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":430,"Cost":403,"Date":"9/29/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":407,"Cost":282,"Date":"10/12/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":723,"Cost":432,"Date":"11/2/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":406,"Cost":305,"Date":"11/4/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":702,"Cost":394,"Date":"11/7/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":991,"Cost":708,"Date":"12/1/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":753,"Cost":486,"Date":"12/4/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":338,"Cost":188,"Date":"12/7/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":376,"Cost":253,"Date":"12/18/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":442,"Cost":271,"Date":"12/20/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":503,"Cost":304,"Date":"12/20/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":17,"Cost":12,"Date":"12/21/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":488,"Cost":358,"Date":"1/9/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":605,"Cost":438,"Date":"2/5/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":754,"Cost":695,"Date":"2/16/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":563,"Cost":366,"Date":"2/16/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":634,"Cost":344,"Date":"2/18/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":990,"Cost":599,"Date":"2/22/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":432,"Cost":258,"Date":"2/25/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":920,"Cost":755,"Date":"3/8/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":251,"Cost":128,"Date":"4/2/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":288,"Cost":224,"Date":"4/3/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":184,"Cost":161,"Date":"4/9/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":483,"Cost":410,"Date":"4/10/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":568,"Cost":347,"Date":"4/19/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":844,"Cost":443,"Date":"5/17/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":773,"Cost":539,"Date":"5/22/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":873,"Cost":756,"Date":"6/20/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":520,"Cost":435,"Date":"7/1/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":460,"Cost":409,"Date":"7/4/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":430,"Cost":225,"Date":"7/8/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":541,"Cost":410,"Date":"7/9/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":216,"Cost":194,"Date":"7/14/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":450,"Cost":238,"Date":"7/19/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":265,"Cost":213,"Date":"8/1/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":175,"Cost":120,"Date":"8/6/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":51,"Cost":47,"Date":"8/7/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":262,"Cost":201,"Date":"8/22/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":518,"Cost":420,"Date":"8/31/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":810,"Cost":511,"Date":"9/1/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":689,"Cost":462,"Date":"9/1/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":828,"Cost":470,"Date":"9/17/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":269,"Cost":139,"Date":"9/29/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":22,"Cost":11,"Date":"11/7/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":330,"Cost":284,"Date":"11/26/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":514,"Cost":474,"Date":"11/27/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":101,"Cost":86,"Date":"12/5/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":49,"Cost":29,"Date":"12/26/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":56,"Cost":53,"Date":"12/31/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":571,"Cost":492,"Date":"1/20/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":194,"Cost":162,"Date":"2/2/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":738,"Cost":567,"Date":"2/8/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":585,"Cost":429,"Date":"2/27/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":476,"Cost":432,"Date":"3/1/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":987,"Cost":513,"Date":"3/1/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":341,"Cost":248,"Date":"3/19/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":129,"Cost":101,"Date":"3/28/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":468,"Cost":320,"Date":"5/21/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":306,"Cost":236,"Date":"7/21/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":29,"Cost":17,"Date":"8/5/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":540,"Cost":492,"Date":"8/12/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":285,"Cost":172,"Date":"8/21/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":655,"Cost":347,"Date":"8/23/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":168,"Cost":127,"Date":"9/3/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":863,"Cost":637,"Date":"9/5/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":759,"Cost":407,"Date":"10/6/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":172,"Cost":127,"Date":"10/19/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":793,"Cost":542,"Date":"11/15/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":750,"Cost":479,"Date":"12/8/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":73,"Cost":69,"Date":"1/8/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":904,"Cost":846,"Date":"1/14/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":557,"Cost":355,"Date":"1/19/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":886,"Cost":486,"Date":"1/28/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":768,"Cost":449,"Date":"1/31/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":905,"Cost":704,"Date":"3/27/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":18,"Cost":9,"Date":"4/20/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":751,"Cost":387,"Date":"4/24/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":826,"Cost":777,"Date":"4/28/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":365,"Cost":233,"Date":"5/15/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":985,"Cost":569,"Date":"5/16/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":351,"Cost":278,"Date":"5/18/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":585,"Cost":403,"Date":"6/2/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":65,"Cost":37,"Date":"6/3/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":588,"Cost":305,"Date":"6/5/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":818,"Cost":558,"Date":"6/7/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":126,"Cost":67,"Date":"6/14/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":277,"Cost":144,"Date":"6/20/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":109,"Cost":100,"Date":"6/24/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":777,"Cost":484,"Date":"7/4/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":197,"Cost":129,"Date":"7/9/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":939,"Cost":842,"Date":"7/12/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":941,"Cost":703,"Date":"8/14/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":496,"Cost":295,"Date":"8/16/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":287,"Cost":167,"Date":"8/23/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":160,"Cost":142,"Date":"9/2/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":365,"Cost":218,"Date":"9/3/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":660,"Cost":449,"Date":"9/16/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":139,"Cost":131,"Date":"10/4/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":787,"Cost":604,"Date":"11/1/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":71,"Cost":45,"Date":"11/2/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":600,"Cost":333,"Date":"12/17/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":668,"Cost":402,"Date":"2/10/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":686,"Cost":391,"Date":"2/28/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":307,"Cost":215,"Date":"3/4/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":411,"Cost":315,"Date":"3/9/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":72,"Cost":39,"Date":"3/9/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":525,"Cost":494,"Date":"3/11/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":449,"Cost":420,"Date":"3/17/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":915,"Cost":758,"Date":"3/17/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":604,"Cost":417,"Date":"3/23/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":776,"Cost":516,"Date":"4/1/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":440,"Cost":240,"Date":"5/7/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":69,"Cost":64,"Date":"5/10/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":268,"Cost":168,"Date":"5/20/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":130,"Cost":81,"Date":"6/2/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":372,"Cost":291,"Date":"6/11/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":814,"Cost":485,"Date":"6/16/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":200,"Cost":153,"Date":"6/16/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":278,"Cost":187,"Date":"7/10/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":225,"Cost":204,"Date":"7/11/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":451,"Cost":350,"Date":"8/28/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":545,"Cost":328,"Date":"8/29/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":663,"Cost":477,"Date":"8/31/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":384,"Cost":220,"Date":"9/8/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":254,"Cost":179,"Date":"9/13/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":305,"Cost":263,"Date":"9/14/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":378,"Cost":235,"Date":"9/19/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":761,"Cost":618,"Date":"9/25/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":808,"Cost":571,"Date":"10/4/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":940,"Cost":775,"Date":"10/10/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":726,"Cost":523,"Date":"10/17/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":420,"Cost":252,"Date":"10/28/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":246,"Cost":229,"Date":"10/30/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":988,"Cost":779,"Date":"11/1/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":51,"Cost":41,"Date":"11/15/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":519,"Cost":428,"Date":"11/25/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":736,"Cost":592,"Date":"1/10/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":982,"Cost":695,"Date":"1/14/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":12,"Cost":8,"Date":"1/20/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":90,"Cost":78,"Date":"2/8/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":756,"Cost":596,"Date":"2/25/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":7,"Cost":7,"Date":"3/7/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":963,"Cost":579,"Date":"3/14/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":132,"Cost":104,"Date":"3/27/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":496,"Cost":400,"Date":"4/5/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":843,"Cost":783,"Date":"4/14/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":223,"Cost":205,"Date":"5/3/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":823,"Cost":420,"Date":"5/9/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":299,"Cost":252,"Date":"5/15/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":527,"Cost":352,"Date":"5/25/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":620,"Cost":378,"Date":"5/26/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":87,"Cost":44,"Date":"5/31/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":76,"Cost":70,"Date":"7/27/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":569,"Cost":315,"Date":"9/17/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":947,"Cost":873,"Date":"10/6/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":522,"Cost":271,"Date":"10/8/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":395,"Cost":231,"Date":"10/26/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":446,"Cost":414,"Date":"11/16/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":964,"Cost":790,"Date":"11/18/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":203,"Cost":171,"Date":"12/1/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":927,"Cost":592,"Date":"2/9/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":499,"Cost":450,"Date":"2/11/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":845,"Cost":667,"Date":"3/10/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":443,"Cost":257,"Date":"3/16/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":799,"Cost":579,"Date":"3/18/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":844,"Cost":721,"Date":"3/20/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":904,"Cost":676,"Date":"3/26/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":331,"Cost":217,"Date":"6/2/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":380,"Cost":307,"Date":"6/10/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":971,"Cost":729,"Date":"6/16/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":539,"Cost":428,"Date":"6/25/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":60,"Cost":56,"Date":"7/19/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":236,"Cost":118,"Date":"7/21/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":115,"Cost":108,"Date":"7/25/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":873,"Cost":761,"Date":"8/4/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":640,"Cost":456,"Date":"9/2/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":978,"Cost":650,"Date":"9/4/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":944,"Cost":794,"Date":"9/19/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":178,"Cost":95,"Date":"9/29/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":622,"Cost":558,"Date":"10/2/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":218,"Cost":157,"Date":"10/15/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":495,"Cost":452,"Date":"10/30/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":13,"Cost":6,"Date":"11/9/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":14,"Cost":7,"Date":"11/23/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":800,"Cost":529,"Date":"11/30/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":55,"Cost":36,"Date":"12/8/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":122,"Cost":62,"Date":"12/11/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":889,"Cost":627,"Date":"1/15/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":872,"Cost":531,"Date":"1/24/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":229,"Cost":186,"Date":"2/3/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":375,"Cost":282,"Date":"2/4/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":848,"Cost":594,"Date":"3/9/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":278,"Cost":208,"Date":"3/12/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":965,"Cost":539,"Date":"4/19/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":642,"Cost":610,"Date":"5/3/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":897,"Cost":785,"Date":"5/4/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":748,"Cost":691,"Date":"6/8/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":191,"Cost":133,"Date":"6/26/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":116,"Cost":64,"Date":"7/4/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":215,"Cost":141,"Date":"7/13/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":712,"Cost":556,"Date":"8/8/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":801,"Cost":502,"Date":"8/26/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":721,"Cost":498,"Date":"9/2/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":970,"Cost":821,"Date":"9/29/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":578,"Cost":363,"Date":"10/12/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":217,"Cost":198,"Date":"11/2/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":600,"Cost":554,"Date":"11/4/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":85,"Cost":76,"Date":"11/7/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":284,"Cost":260,"Date":"12/1/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":383,"Cost":266,"Date":"12/4/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":907,"Cost":777,"Date":"12/7/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":623,"Cost":577,"Date":"12/18/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":431,"Cost":303,"Date":"12/20/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":64,"Cost":44,"Date":"12/20/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":312,"Cost":244,"Date":"12/21/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":406,"Cost":274,"Date":"1/9/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":743,"Cost":573,"Date":"2/5/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":944,"Cost":518,"Date":"2/16/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":182,"Cost":106,"Date":"2/16/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":674,"Cost":582,"Date":"2/18/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":514,"Cost":288,"Date":"2/22/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":970,"Cost":742,"Date":"2/25/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":454,"Cost":242,"Date":"3/8/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":388,"Cost":247,"Date":"4/2/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":786,"Cost":731,"Date":"4/3/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":560,"Cost":407,"Date":"4/9/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":265,"Cost":238,"Date":"4/10/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":322,"Cost":270,"Date":"4/19/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":326,"Cost":259,"Date":"5/17/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":559,"Cost":283,"Date":"5/22/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":756,"Cost":635,"Date":"6/20/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":335,"Cost":285,"Date":"7/1/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":859,"Cost":779,"Date":"7/4/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":874,"Cost":653,"Date":"7/8/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":590,"Cost":477,"Date":"7/9/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":864,"Cost":797,"Date":"7/14/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":257,"Cost":174,"Date":"7/19/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":285,"Cost":227,"Date":"8/1/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":376,"Cost":209,"Date":"8/6/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":45,"Cost":36,"Date":"8/7/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":930,"Cost":778,"Date":"8/22/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":234,"Cost":216,"Date":"8/31/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":143,"Cost":96,"Date":"9/1/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":982,"Cost":871,"Date":"9/1/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":181,"Cost":132,"Date":"9/17/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":77,"Cost":56,"Date":"9/29/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":551,"Cost":523,"Date":"11/7/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":734,"Cost":608,"Date":"11/26/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":687,"Cost":634,"Date":"11/27/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":685,"Cost":423,"Date":"12/5/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":535,"Cost":491,"Date":"12/26/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":515,"Cost":301,"Date":"12/31/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":369,"Cost":194,"Date":"1/20/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":13,"Cost":11,"Date":"2/2/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":975,"Cost":724,"Date":"2/8/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":682,"Cost":373,"Date":"2/27/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":380,"Cost":199,"Date":"3/1/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":836,"Cost":597,"Date":"3/1/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":83,"Cost":61,"Date":"3/19/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":163,"Cost":119,"Date":"3/28/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":894,"Cost":823,"Date":"5/21/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":868,"Cost":685,"Date":"7/21/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":57,"Cost":40,"Date":"8/5/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":882,"Cost":639,"Date":"8/12/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":419,"Cost":381,"Date":"8/21/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":140,"Cost":84,"Date":"8/23/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":97,"Cost":85,"Date":"9/3/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":943,"Cost":827,"Date":"9/5/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":830,"Cost":496,"Date":"10/6/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":527,"Cost":372,"Date":"10/19/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":927,"Cost":814,"Date":"11/15/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":974,"Cost":811,"Date":"12/8/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":454,"Cost":331,"Date":"1/8/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":933,"Cost":701,"Date":"1/14/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":347,"Cost":271,"Date":"1/19/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":678,"Cost":347,"Date":"1/28/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":757,"Cost":703,"Date":"1/31/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":973,"Cost":726,"Date":"3/27/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":725,"Cost":684,"Date":"4/20/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":472,"Cost":371,"Date":"4/24/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":301,"Cost":270,"Date":"4/28/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":658,"Cost":459,"Date":"5/15/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":347,"Cost":266,"Date":"5/16/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":797,"Cost":728,"Date":"5/18/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":937,"Cost":557,"Date":"6/2/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":182,"Cost":111,"Date":"6/3/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":854,"Cost":701,"Date":"6/5/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":765,"Cost":573,"Date":"6/7/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":878,"Cost":643,"Date":"6/14/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":20,"Cost":13,"Date":"6/20/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":632,"Cost":486,"Date":"6/24/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":947,"Cost":779,"Date":"7/4/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":487,"Cost":256,"Date":"7/9/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":71,"Cost":66,"Date":"7/12/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":978,"Cost":794,"Date":"8/14/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":62,"Cost":32,"Date":"8/16/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":338,"Cost":269,"Date":"8/23/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":112,"Cost":70,"Date":"9/2/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":741,"Cost":462,"Date":"9/3/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":512,"Cost":256,"Date":"9/16/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":270,"Cost":156,"Date":"10/4/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":308,"Cost":247,"Date":"11/1/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":249,"Cost":147,"Date":"11/2/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":164,"Cost":140,"Date":"12/17/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":484,"Cost":387,"Date":"2/10/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":550,"Cost":444,"Date":"2/28/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":415,"Cost":237,"Date":"3/4/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":105,"Cost":60,"Date":"3/9/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":681,"Cost":594,"Date":"3/9/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":243,"Cost":154,"Date":"3/11/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":186,"Cost":121,"Date":"3/17/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":410,"Cost":245,"Date":"3/17/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":188,"Cost":133,"Date":"3/23/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":206,"Cost":108,"Date":"4/1/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":526,"Cost":413,"Date":"5/7/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":641,"Cost":606,"Date":"5/10/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":446,"Cost":305,"Date":"5/20/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":580,"Cost":306,"Date":"6/2/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":137,"Cost":129,"Date":"6/11/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":223,"Cost":191,"Date":"6/16/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":118,"Cost":70,"Date":"6/16/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":401,"Cost":222,"Date":"7/10/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":563,"Cost":506,"Date":"7/11/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":994,"Cost":898,"Date":"8/28/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":189,"Cost":110,"Date":"8/29/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":428,"Cost":372,"Date":"8/31/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":615,"Cost":504,"Date":"9/8/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":336,"Cost":278,"Date":"9/13/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":574,"Cost":476,"Date":"9/14/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":880,"Cost":804,"Date":"9/19/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":117,"Cost":97,"Date":"9/25/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":62,"Cost":58,"Date":"10/4/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":309,"Cost":179,"Date":"10/10/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":100,"Cost":76,"Date":"10/17/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":792,"Cost":411,"Date":"10/28/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":968,"Cost":493,"Date":"10/30/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":144,"Cost":119,"Date":"11/1/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":648,"Cost":370,"Date":"11/15/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":568,"Cost":492,"Date":"11/25/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":583,"Cost":468,"Date":"1/10/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":207,"Cost":149,"Date":"1/14/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":873,"Cost":715,"Date":"1/20/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":500,"Cost":468,"Date":"2/8/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":37,"Cost":26,"Date":"2/25/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":342,"Cost":297,"Date":"3/7/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":38,"Cost":25,"Date":"3/14/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":591,"Cost":380,"Date":"3/27/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":887,"Cost":505,"Date":"4/5/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":543,"Cost":515,"Date":"4/14/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":344,"Cost":243,"Date":"5/3/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":228,"Cost":153,"Date":"5/9/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":756,"Cost":548,"Date":"5/15/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":741,"Cost":388,"Date":"5/25/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":354,"Cost":255,"Date":"5/26/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":509,"Cost":392,"Date":"5/31/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":313,"Cost":159,"Date":"7/27/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":7,"Cost":5,"Date":"9/17/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":213,"Cost":197,"Date":"10/6/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":228,"Cost":126,"Date":"10/8/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":381,"Cost":249,"Date":"10/26/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":508,"Cost":311,"Date":"11/16/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":325,"Cost":270,"Date":"11/18/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"COS","Country":"USA","Sale":546,"Cost":418,"Date":"12/1/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":939,"Cost":676,"Date":"2/9/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":309,"Cost":188,"Date":"2/11/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":534,"Cost":295,"Date":"3/10/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":493,"Cost":275,"Date":"3/16/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":761,"Cost":578,"Date":"3/18/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":302,"Cost":173,"Date":"3/20/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":668,"Cost":482,"Date":"3/26/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":303,"Cost":174,"Date":"6/2/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":760,"Cost":495,"Date":"6/10/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":749,"Cost":439,"Date":"6/16/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":476,"Cost":332,"Date":"6/25/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":108,"Cost":94,"Date":"7/19/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":691,"Cost":502,"Date":"7/21/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":842,"Cost":482,"Date":"7/25/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":107,"Cost":88,"Date":"8/4/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":941,"Cost":544,"Date":"9/2/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":836,"Cost":656,"Date":"9/4/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":350,"Cost":190,"Date":"9/19/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":881,"Cost":463,"Date":"9/29/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":930,"Cost":545,"Date":"10/2/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":828,"Cost":572,"Date":"10/15/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":764,"Cost":475,"Date":"10/30/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":800,"Cost":419,"Date":"11/9/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":729,"Cost":551,"Date":"11/23/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":599,"Cost":314,"Date":"11/30/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":686,"Cost":395,"Date":"12/8/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":627,"Cost":539,"Date":"12/11/2018"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":454,"Cost":429,"Date":"1/15/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":691,"Cost":439,"Date":"1/24/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":305,"Cost":229,"Date":"2/3/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":522,"Cost":366,"Date":"2/4/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":650,"Cost":590,"Date":"3/9/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":607,"Cost":331,"Date":"3/12/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":816,"Cost":744,"Date":"4/19/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":64,"Cost":46,"Date":"5/3/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":625,"Cost":336,"Date":"5/4/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":877,"Cost":510,"Date":"6/8/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":102,"Cost":87,"Date":"6/26/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":482,"Cost":371,"Date":"7/4/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":649,"Cost":608,"Date":"7/13/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":921,"Cost":486,"Date":"8/8/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":433,"Cost":390,"Date":"8/26/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":830,"Cost":739,"Date":"9/2/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":797,"Cost":504,"Date":"9/29/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":956,"Cost":817,"Date":"10/12/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":837,"Cost":754,"Date":"11/2/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":204,"Cost":107,"Date":"11/4/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":396,"Cost":355,"Date":"11/7/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":202,"Cost":130,"Date":"12/1/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":93,"Cost":82,"Date":"12/4/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":430,"Cost":387,"Date":"12/7/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":534,"Cost":367,"Date":"12/18/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":675,"Cost":446,"Date":"12/20/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":339,"Cost":268,"Date":"12/20/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":660,"Cost":446,"Date":"12/21/2019"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":914,"Cost":639,"Date":"1/9/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":452,"Cost":354,"Date":"2/5/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":659,"Cost":532,"Date":"2/16/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":477,"Cost":444,"Date":"2/16/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":611,"Cost":321,"Date":"2/18/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":2,"Cost":1,"Date":"2/22/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":85,"Cost":48,"Date":"2/25/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":762,"Cost":668,"Date":"3/8/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":449,"Cost":313,"Date":"4/2/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":810,"Cost":406,"Date":"4/3/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":429,"Cost":377,"Date":"4/9/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":662,"Cost":414,"Date":"4/10/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":664,"Cost":351,"Date":"4/19/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":675,"Cost":441,"Date":"5/17/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":225,"Cost":144,"Date":"5/22/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":993,"Cost":656,"Date":"6/20/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":193,"Cost":167,"Date":"7/1/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":132,"Cost":109,"Date":"7/4/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":482,"Cost":410,"Date":"7/8/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":780,"Cost":633,"Date":"7/9/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":966,"Cost":777,"Date":"7/14/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":680,"Cost":352,"Date":"7/19/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":253,"Cost":180,"Date":"8/1/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":389,"Cost":196,"Date":"8/6/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":804,"Cost":549,"Date":"8/7/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":77,"Cost":42,"Date":"8/22/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":845,"Cost":634,"Date":"8/31/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":801,"Cost":760,"Date":"9/1/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":974,"Cost":905,"Date":"9/1/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":244,"Cost":147,"Date":"9/17/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":108,"Cost":84,"Date":"9/29/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":231,"Cost":160,"Date":"11/7/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":591,"Cost":402,"Date":"11/26/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":769,"Cost":468,"Date":"11/27/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":963,"Cost":674,"Date":"12/5/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":728,"Cost":462,"Date":"12/26/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":873,"Cost":709,"Date":"12/31/2020"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":73,"Cost":55,"Date":"1/20/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":11,"Cost":11,"Date":"2/2/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":428,"Cost":240,"Date":"2/8/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":760,"Cost":675,"Date":"2/27/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":302,"Cost":215,"Date":"3/1/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":684,"Cost":346,"Date":"3/1/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":856,"Cost":530,"Date":"3/19/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":474,"Cost":430,"Date":"3/28/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":437,"Cost":330,"Date":"5/21/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":514,"Cost":326,"Date":"7/21/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":398,"Cost":319,"Date":"8/5/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":808,"Cost":708,"Date":"8/12/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":488,"Cost":255,"Date":"8/21/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":108,"Cost":65,"Date":"8/23/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":102,"Cost":85,"Date":"9/3/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":34,"Cost":25,"Date":"9/5/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":914,"Cost":751,"Date":"10/6/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":176,"Cost":144,"Date":"10/19/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":642,"Cost":336,"Date":"11/15/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":541,"Cost":369,"Date":"12/8/2021"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":452,"Cost":254,"Date":"1/8/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":133,"Cost":71,"Date":"1/14/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":57,"Cost":41,"Date":"1/19/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":216,"Cost":185,"Date":"1/28/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":375,"Cost":239,"Date":"1/31/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":398,"Cost":263,"Date":"3/27/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":1,"Cost":1,"Date":"4/20/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":593,"Cost":397,"Date":"4/24/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":13,"Cost":8,"Date":"4/28/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":158,"Cost":91,"Date":"5/15/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":361,"Cost":243,"Date":"5/16/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":327,"Cost":184,"Date":"5/18/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":947,"Cost":856,"Date":"6/2/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":416,"Cost":376,"Date":"6/3/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":146,"Cost":95,"Date":"6/5/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":151,"Cost":119,"Date":"6/7/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":97,"Cost":78,"Date":"6/14/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":243,"Cost":221,"Date":"6/20/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":602,"Cost":495,"Date":"6/24/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":835,"Cost":432,"Date":"7/4/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":796,"Cost":526,"Date":"7/9/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":718,"Cost":413,"Date":"7/12/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":285,"Cost":171,"Date":"8/14/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":758,"Cost":399,"Date":"8/16/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":435,"Cost":264,"Date":"8/23/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":795,"Cost":716,"Date":"9/2/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":846,"Cost":722,"Date":"9/3/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":563,"Cost":307,"Date":"9/16/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":950,"Cost":522,"Date":"10/4/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":741,"Cost":599,"Date":"11/1/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":531,"Cost":455,"Date":"11/2/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":904,"Cost":531,"Date":"12/17/2022"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":681,"Cost":537,"Date":"2/10/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":559,"Cost":440,"Date":"2/28/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":767,"Cost":646,"Date":"3/4/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":29,"Cost":25,"Date":"3/9/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":862,"Cost":772,"Date":"3/9/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":724,"Cost":484,"Date":"3/11/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":674,"Cost":578,"Date":"3/17/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":83,"Cost":75,"Date":"3/17/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":464,"Cost":425,"Date":"3/23/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":760,"Cost":594,"Date":"4/1/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":750,"Cost":539,"Date":"5/7/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":475,"Cost":349,"Date":"5/10/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":720,"Cost":437,"Date":"5/20/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":520,"Cost":270,"Date":"6/2/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":642,"Cost":579,"Date":"6/11/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":173,"Cost":136,"Date":"6/16/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":159,"Cost":114,"Date":"6/16/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":108,"Cost":85,"Date":"7/10/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":901,"Cost":660,"Date":"7/11/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":608,"Cost":319,"Date":"8/28/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":973,"Cost":824,"Date":"8/29/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":908,"Cost":470,"Date":"8/31/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":179,"Cost":170,"Date":"9/8/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":762,"Cost":668,"Date":"9/13/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":160,"Cost":100,"Date":"9/14/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":650,"Cost":536,"Date":"9/19/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":268,"Cost":155,"Date":"9/25/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":405,"Cost":273,"Date":"10/4/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":166,"Cost":139,"Date":"10/10/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":814,"Cost":682,"Date":"10/17/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":972,"Cost":892,"Date":"10/28/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":992,"Cost":658,"Date":"10/30/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":806,"Cost":434,"Date":"11/1/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":904,"Cost":718,"Date":"11/15/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":961,"Cost":524,"Date":"11/25/2023"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":373,"Cost":206,"Date":"1/10/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":375,"Cost":241,"Date":"1/14/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":667,"Cost":456,"Date":"1/20/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":357,"Cost":185,"Date":"2/8/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":93,"Cost":76,"Date":"2/25/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":65,"Cost":48,"Date":"3/7/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":520,"Cost":438,"Date":"3/14/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":336,"Cost":270,"Date":"3/27/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":874,"Cost":487,"Date":"4/5/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":323,"Cost":176,"Date":"4/14/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":725,"Cost":508,"Date":"5/3/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":182,"Cost":156,"Date":"5/9/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":673,"Cost":584,"Date":"5/15/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":904,"Cost":859,"Date":"5/25/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":757,"Cost":388,"Date":"5/26/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":490,"Cost":455,"Date":"5/31/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":628,"Cost":477,"Date":"7/27/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":822,"Cost":565,"Date":"9/17/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":532,"Cost":387,"Date":"10/6/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":401,"Cost":240,"Date":"10/8/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":15,"Cost":8,"Date":"10/26/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":164,"Cost":91,"Date":"11/16/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":593,"Cost":469,"Date":"11/18/2024"},{"Store":"NorthPark Center, Dallas, TX","Brand":"HM","Country":"USA","Sale":739,"Cost":387,"Date":"12/1/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":364,"Cost":324,"Date":"2/9/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":188,"Cost":118,"Date":"2/11/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":763,"Cost":442,"Date":"3/10/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":987,"Cost":495,"Date":"3/16/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":550,"Cost":428,"Date":"3/18/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":133,"Cost":110,"Date":"3/20/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":418,"Cost":384,"Date":"3/26/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":961,"Cost":503,"Date":"6/2/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":29,"Cost":24,"Date":"6/10/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":516,"Cost":442,"Date":"6/16/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":705,"Cost":621,"Date":"6/25/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":966,"Cost":572,"Date":"7/19/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":388,"Cost":203,"Date":"7/21/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":768,"Cost":505,"Date":"7/25/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":88,"Cost":48,"Date":"8/4/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":156,"Cost":136,"Date":"9/2/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":69,"Cost":61,"Date":"9/4/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":579,"Cost":370,"Date":"9/19/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":498,"Cost":346,"Date":"9/29/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":429,"Cost":225,"Date":"10/2/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":158,"Cost":89,"Date":"10/15/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":58,"Cost":48,"Date":"10/30/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":173,"Cost":148,"Date":"11/9/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":441,"Cost":257,"Date":"11/23/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":33,"Cost":18,"Date":"11/30/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":61,"Cost":38,"Date":"12/8/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":191,"Cost":168,"Date":"12/11/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":68,"Cost":50,"Date":"1/15/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":189,"Cost":165,"Date":"1/24/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":35,"Cost":30,"Date":"2/3/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":886,"Cost":605,"Date":"2/4/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":396,"Cost":225,"Date":"3/9/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":710,"Cost":559,"Date":"3/12/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":179,"Cost":158,"Date":"4/19/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":120,"Cost":60,"Date":"5/3/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":21,"Cost":16,"Date":"5/4/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":719,"Cost":496,"Date":"6/8/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":114,"Cost":63,"Date":"6/26/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":871,"Cost":718,"Date":"7/4/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":355,"Cost":258,"Date":"7/13/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":588,"Cost":414,"Date":"8/8/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":142,"Cost":126,"Date":"8/26/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":210,"Cost":180,"Date":"9/2/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":271,"Cost":254,"Date":"9/29/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":296,"Cost":149,"Date":"10/12/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":356,"Cost":296,"Date":"11/2/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":178,"Cost":127,"Date":"11/4/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":789,"Cost":735,"Date":"11/7/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":577,"Cost":528,"Date":"12/1/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":398,"Cost":377,"Date":"12/4/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":735,"Cost":547,"Date":"12/7/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":643,"Cost":505,"Date":"12/18/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":779,"Cost":726,"Date":"12/20/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":402,"Cost":201,"Date":"12/20/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":726,"Cost":489,"Date":"12/21/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":533,"Cost":413,"Date":"1/9/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":190,"Cost":143,"Date":"2/5/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":425,"Cost":288,"Date":"2/16/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":374,"Cost":263,"Date":"2/16/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":296,"Cost":191,"Date":"2/18/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":596,"Cost":528,"Date":"2/22/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":990,"Cost":610,"Date":"2/25/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":764,"Cost":454,"Date":"3/8/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":895,"Cost":735,"Date":"4/2/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":639,"Cost":520,"Date":"4/3/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":752,"Cost":667,"Date":"4/9/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":140,"Cost":89,"Date":"4/10/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":868,"Cost":458,"Date":"4/19/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":399,"Cost":243,"Date":"5/17/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":98,"Cost":74,"Date":"5/22/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":85,"Cost":75,"Date":"6/20/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":119,"Cost":82,"Date":"7/1/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":228,"Cost":208,"Date":"7/4/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":291,"Cost":269,"Date":"7/8/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":399,"Cost":221,"Date":"7/9/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":520,"Cost":295,"Date":"7/14/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":287,"Cost":195,"Date":"7/19/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":62,"Cost":54,"Date":"8/1/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":915,"Cost":495,"Date":"8/6/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":535,"Cost":339,"Date":"8/7/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":565,"Cost":354,"Date":"8/22/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":450,"Cost":329,"Date":"8/31/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":274,"Cost":144,"Date":"9/1/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":717,"Cost":427,"Date":"9/1/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":799,"Cost":539,"Date":"9/17/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":916,"Cost":559,"Date":"9/29/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":284,"Cost":211,"Date":"11/7/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":438,"Cost":403,"Date":"11/26/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":617,"Cost":502,"Date":"11/27/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":417,"Cost":289,"Date":"12/5/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":400,"Cost":360,"Date":"12/26/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":249,"Cost":143,"Date":"12/31/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":897,"Cost":759,"Date":"1/20/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":963,"Cost":872,"Date":"2/2/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":311,"Cost":161,"Date":"2/8/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":708,"Cost":547,"Date":"2/27/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":613,"Cost":529,"Date":"3/1/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":660,"Cost":478,"Date":"3/1/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":791,"Cost":444,"Date":"3/19/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":705,"Cost":621,"Date":"3/28/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":694,"Cost":491,"Date":"5/21/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":620,"Cost":356,"Date":"7/21/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":835,"Cost":439,"Date":"8/5/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":266,"Cost":213,"Date":"8/12/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":918,"Cost":744,"Date":"8/21/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":404,"Cost":304,"Date":"8/23/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":555,"Cost":344,"Date":"9/3/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":382,"Cost":349,"Date":"9/5/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":562,"Cost":500,"Date":"10/6/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":552,"Cost":372,"Date":"10/19/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":809,"Cost":721,"Date":"11/15/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":134,"Cost":67,"Date":"12/8/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":98,"Cost":68,"Date":"1/8/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":883,"Cost":711,"Date":"1/14/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":382,"Cost":248,"Date":"1/19/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":285,"Cost":238,"Date":"1/28/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":486,"Cost":332,"Date":"1/31/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":512,"Cost":365,"Date":"3/27/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":341,"Cost":305,"Date":"4/20/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":364,"Cost":197,"Date":"4/24/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":727,"Cost":562,"Date":"4/28/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":114,"Cost":102,"Date":"5/15/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":104,"Cost":52,"Date":"5/16/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":80,"Cost":42,"Date":"5/18/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":46,"Cost":25,"Date":"6/2/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":110,"Cost":58,"Date":"6/3/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":577,"Cost":432,"Date":"6/5/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":204,"Cost":103,"Date":"6/7/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":133,"Cost":67,"Date":"6/14/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":927,"Cost":500,"Date":"6/20/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":100,"Cost":63,"Date":"6/24/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":998,"Cost":727,"Date":"7/4/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":787,"Cost":633,"Date":"7/9/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":426,"Cost":365,"Date":"7/12/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":117,"Cost":94,"Date":"8/14/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":780,"Cost":681,"Date":"8/16/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":306,"Cost":247,"Date":"8/23/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":381,"Cost":345,"Date":"9/2/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":841,"Cost":646,"Date":"9/3/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":14,"Cost":10,"Date":"9/16/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":394,"Cost":231,"Date":"10/4/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":5,"Cost":2,"Date":"11/1/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":78,"Cost":57,"Date":"11/2/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":864,"Cost":755,"Date":"12/17/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":787,"Cost":560,"Date":"2/10/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":441,"Cost":399,"Date":"2/28/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":151,"Cost":78,"Date":"3/4/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":30,"Cost":24,"Date":"3/9/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":888,"Cost":517,"Date":"3/9/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":391,"Cost":254,"Date":"3/11/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":922,"Cost":757,"Date":"3/17/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":427,"Cost":392,"Date":"3/17/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":307,"Cost":154,"Date":"3/23/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":389,"Cost":292,"Date":"4/1/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":329,"Cost":210,"Date":"5/7/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":234,"Cost":161,"Date":"5/10/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":90,"Cost":58,"Date":"5/20/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":463,"Cost":389,"Date":"6/2/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":105,"Cost":72,"Date":"6/11/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":520,"Cost":423,"Date":"6/16/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":63,"Cost":32,"Date":"6/16/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":963,"Cost":748,"Date":"7/10/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":416,"Cost":254,"Date":"7/11/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":966,"Cost":535,"Date":"8/28/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":887,"Cost":448,"Date":"8/29/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":233,"Cost":136,"Date":"8/31/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":42,"Cost":40,"Date":"9/8/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":941,"Cost":562,"Date":"9/13/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":315,"Cost":214,"Date":"9/14/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":320,"Cost":200,"Date":"9/19/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":539,"Cost":324,"Date":"9/25/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":331,"Cost":192,"Date":"10/4/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":506,"Cost":264,"Date":"10/10/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":932,"Cost":530,"Date":"10/17/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":854,"Cost":780,"Date":"10/28/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":100,"Cost":79,"Date":"10/30/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":181,"Cost":142,"Date":"11/1/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":760,"Cost":625,"Date":"11/15/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":985,"Cost":623,"Date":"11/25/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":214,"Cost":123,"Date":"1/10/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":445,"Cost":356,"Date":"1/14/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":281,"Cost":148,"Date":"1/20/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":165,"Cost":100,"Date":"2/8/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":919,"Cost":611,"Date":"2/25/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":500,"Cost":412,"Date":"3/7/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":452,"Cost":330,"Date":"3/14/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":363,"Cost":312,"Date":"3/27/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":333,"Cost":290,"Date":"4/5/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":140,"Cost":94,"Date":"4/14/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":47,"Cost":24,"Date":"5/3/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":895,"Cost":719,"Date":"5/9/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":983,"Cost":511,"Date":"5/15/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":300,"Cost":152,"Date":"5/25/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":239,"Cost":216,"Date":"5/26/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":17,"Cost":14,"Date":"5/31/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":569,"Cost":468,"Date":"7/27/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":701,"Cost":522,"Date":"9/17/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":215,"Cost":128,"Date":"10/6/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":617,"Cost":317,"Date":"10/8/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":726,"Cost":442,"Date":"10/26/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":547,"Cost":322,"Date":"11/16/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":33,"Cost":21,"Date":"11/18/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"HM","Country":"USA","Sale":47,"Cost":42,"Date":"12/1/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":734,"Cost":669,"Date":"2/9/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":15,"Cost":10,"Date":"2/11/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":408,"Cost":352,"Date":"3/10/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":943,"Cost":765,"Date":"3/16/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":249,"Cost":147,"Date":"3/18/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":91,"Cost":78,"Date":"3/20/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":608,"Cost":333,"Date":"3/26/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":647,"Cost":494,"Date":"6/2/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":399,"Cost":261,"Date":"6/10/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":217,"Cost":131,"Date":"6/16/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":216,"Cost":122,"Date":"6/25/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":547,"Cost":440,"Date":"7/19/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":53,"Cost":47,"Date":"7/21/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":293,"Cost":206,"Date":"7/25/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":812,"Cost":630,"Date":"8/4/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":91,"Cost":47,"Date":"9/2/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":209,"Cost":123,"Date":"9/4/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":538,"Cost":435,"Date":"9/19/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":808,"Cost":532,"Date":"9/29/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":28,"Cost":21,"Date":"10/2/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":202,"Cost":175,"Date":"10/15/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":522,"Cost":338,"Date":"10/30/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":546,"Cost":410,"Date":"11/9/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":277,"Cost":237,"Date":"11/23/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":804,"Cost":541,"Date":"11/30/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":853,"Cost":475,"Date":"12/8/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":420,"Cost":394,"Date":"12/11/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":562,"Cost":282,"Date":"1/15/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":592,"Cost":430,"Date":"1/24/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":196,"Cost":127,"Date":"2/3/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":621,"Cost":406,"Date":"2/4/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":525,"Cost":265,"Date":"3/9/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":896,"Cost":449,"Date":"3/12/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":919,"Cost":805,"Date":"4/19/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":728,"Cost":425,"Date":"5/3/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":871,"Cost":798,"Date":"5/4/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":615,"Cost":471,"Date":"6/8/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":187,"Cost":144,"Date":"6/26/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":121,"Cost":98,"Date":"7/4/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":806,"Cost":501,"Date":"7/13/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":653,"Cost":424,"Date":"8/8/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":396,"Cost":220,"Date":"8/26/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":167,"Cost":131,"Date":"9/2/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":20,"Cost":17,"Date":"9/29/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":774,"Cost":560,"Date":"10/12/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":220,"Cost":204,"Date":"11/2/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":829,"Cost":454,"Date":"11/4/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":117,"Cost":104,"Date":"11/7/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":144,"Cost":107,"Date":"12/1/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":187,"Cost":132,"Date":"12/4/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":611,"Cost":377,"Date":"12/7/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":126,"Cost":99,"Date":"12/18/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":417,"Cost":287,"Date":"12/20/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":128,"Cost":75,"Date":"12/20/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":750,"Cost":509,"Date":"12/21/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":76,"Cost":51,"Date":"1/9/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":99,"Cost":93,"Date":"2/5/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":764,"Cost":507,"Date":"2/16/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":265,"Cost":142,"Date":"2/16/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":170,"Cost":104,"Date":"2/18/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":42,"Cost":26,"Date":"2/22/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":293,"Cost":257,"Date":"2/25/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":79,"Cost":40,"Date":"3/8/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":641,"Cost":599,"Date":"4/2/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":288,"Cost":150,"Date":"4/3/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":885,"Cost":613,"Date":"4/9/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":692,"Cost":570,"Date":"4/10/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":196,"Cost":156,"Date":"4/19/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":897,"Cost":689,"Date":"5/17/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":98,"Cost":51,"Date":"5/22/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":730,"Cost":627,"Date":"6/20/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":882,"Cost":559,"Date":"7/1/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":684,"Cost":513,"Date":"7/4/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":954,"Cost":660,"Date":"7/8/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":895,"Cost":460,"Date":"7/9/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":261,"Cost":166,"Date":"7/14/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":579,"Cost":537,"Date":"7/19/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":838,"Cost":700,"Date":"8/1/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":627,"Cost":388,"Date":"8/6/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":156,"Cost":133,"Date":"8/7/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":557,"Cost":515,"Date":"8/22/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":38,"Cost":24,"Date":"8/31/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":572,"Cost":447,"Date":"9/1/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":960,"Cost":798,"Date":"9/1/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":281,"Cost":152,"Date":"9/17/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":595,"Cost":366,"Date":"9/29/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":36,"Cost":28,"Date":"11/7/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":522,"Cost":341,"Date":"11/26/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":623,"Cost":512,"Date":"11/27/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":429,"Cost":384,"Date":"12/5/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":400,"Cost":360,"Date":"12/26/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":428,"Cost":330,"Date":"12/31/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":816,"Cost":503,"Date":"1/20/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":757,"Cost":411,"Date":"2/2/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":626,"Cost":386,"Date":"2/8/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":60,"Cost":49,"Date":"2/27/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":560,"Cost":431,"Date":"3/1/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":816,"Cost":637,"Date":"3/1/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":304,"Cost":252,"Date":"3/19/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":468,"Cost":297,"Date":"3/28/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":157,"Cost":93,"Date":"5/21/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":352,"Cost":189,"Date":"7/21/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":233,"Cost":180,"Date":"8/5/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":22,"Cost":11,"Date":"8/12/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":192,"Cost":146,"Date":"8/21/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":891,"Cost":719,"Date":"8/23/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":856,"Cost":560,"Date":"9/3/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":840,"Cost":446,"Date":"9/5/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":978,"Cost":665,"Date":"10/6/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":605,"Cost":575,"Date":"10/19/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":312,"Cost":238,"Date":"11/15/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":207,"Cost":140,"Date":"12/8/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":711,"Cost":408,"Date":"1/8/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":16,"Cost":8,"Date":"1/14/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":878,"Cost":491,"Date":"1/19/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":588,"Cost":414,"Date":"1/28/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":496,"Cost":310,"Date":"1/31/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":967,"Cost":534,"Date":"3/27/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":977,"Cost":490,"Date":"4/20/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":247,"Cost":178,"Date":"4/24/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":577,"Cost":483,"Date":"4/28/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":714,"Cost":483,"Date":"5/15/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":453,"Cost":343,"Date":"5/16/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":659,"Cost":340,"Date":"5/18/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":553,"Cost":492,"Date":"6/2/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":2,"Cost":1,"Date":"6/3/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":754,"Cost":607,"Date":"6/5/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":551,"Cost":497,"Date":"6/7/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":494,"Cost":287,"Date":"6/14/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":82,"Cost":51,"Date":"6/20/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":700,"Cost":607,"Date":"6/24/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":96,"Cost":77,"Date":"7/4/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":524,"Cost":449,"Date":"7/9/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":955,"Cost":826,"Date":"7/12/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":397,"Cost":286,"Date":"8/14/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":981,"Cost":706,"Date":"8/16/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":44,"Cost":24,"Date":"8/23/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":527,"Cost":360,"Date":"9/2/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":806,"Cost":723,"Date":"9/3/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":975,"Cost":908,"Date":"9/16/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":168,"Cost":124,"Date":"10/4/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":224,"Cost":134,"Date":"11/1/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":497,"Cost":422,"Date":"11/2/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":758,"Cost":434,"Date":"12/17/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":164,"Cost":113,"Date":"2/10/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":435,"Cost":219,"Date":"2/28/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":911,"Cost":465,"Date":"3/4/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":976,"Cost":495,"Date":"3/9/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":345,"Cost":180,"Date":"3/9/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":318,"Cost":178,"Date":"3/11/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":658,"Cost":432,"Date":"3/17/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":731,"Cost":638,"Date":"3/17/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":662,"Cost":519,"Date":"3/23/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":454,"Cost":411,"Date":"4/1/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":647,"Cost":530,"Date":"5/7/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":496,"Cost":322,"Date":"5/10/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":863,"Cost":590,"Date":"5/20/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":547,"Cost":304,"Date":"6/2/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":809,"Cost":599,"Date":"6/11/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":998,"Cost":591,"Date":"6/16/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":358,"Cost":232,"Date":"6/16/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":384,"Cost":361,"Date":"7/10/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":73,"Cost":50,"Date":"7/11/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":18,"Cost":11,"Date":"8/28/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":887,"Cost":730,"Date":"8/29/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":194,"Cost":130,"Date":"8/31/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":688,"Cost":370,"Date":"9/8/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":895,"Cost":712,"Date":"9/13/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":37,"Cost":29,"Date":"9/14/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":3,"Cost":2,"Date":"9/19/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":38,"Cost":26,"Date":"9/25/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":626,"Cost":552,"Date":"10/4/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":848,"Cost":526,"Date":"10/10/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":848,"Cost":529,"Date":"10/17/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":739,"Cost":540,"Date":"10/28/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":308,"Cost":230,"Date":"10/30/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":608,"Cost":542,"Date":"11/1/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":343,"Cost":194,"Date":"11/15/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":397,"Cost":320,"Date":"11/25/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":137,"Cost":75,"Date":"1/10/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":242,"Cost":183,"Date":"1/14/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":183,"Cost":120,"Date":"1/20/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":436,"Cost":323,"Date":"2/8/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":509,"Cost":346,"Date":"2/25/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":398,"Cost":312,"Date":"3/7/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":46,"Cost":36,"Date":"3/14/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":278,"Cost":162,"Date":"3/27/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":950,"Cost":787,"Date":"4/5/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":614,"Cost":508,"Date":"4/14/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":456,"Cost":240,"Date":"5/3/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":232,"Cost":130,"Date":"5/9/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":26,"Cost":19,"Date":"5/15/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":989,"Cost":870,"Date":"5/25/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":986,"Cost":712,"Date":"5/26/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":115,"Cost":95,"Date":"5/31/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":400,"Cost":286,"Date":"7/27/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":992,"Cost":664,"Date":"9/17/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":399,"Cost":355,"Date":"10/6/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":254,"Cost":172,"Date":"10/8/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":352,"Cost":293,"Date":"10/26/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":211,"Cost":196,"Date":"11/16/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":716,"Cost":672,"Date":"11/18/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"COS","Country":"USA","Sale":903,"Cost":656,"Date":"12/1/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":577,"Cost":378,"Date":"2/9/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":370,"Cost":285,"Date":"2/11/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":284,"Cost":260,"Date":"3/10/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":91,"Cost":49,"Date":"3/16/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":727,"Cost":519,"Date":"3/18/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":366,"Cost":287,"Date":"3/20/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":593,"Cost":326,"Date":"3/26/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":453,"Cost":308,"Date":"6/2/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":615,"Cost":389,"Date":"6/10/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":998,"Cost":571,"Date":"6/16/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":514,"Cost":439,"Date":"6/25/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":749,"Cost":599,"Date":"7/19/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":145,"Cost":107,"Date":"7/21/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":349,"Cost":200,"Date":"7/25/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":893,"Cost":463,"Date":"8/4/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":700,"Cost":645,"Date":"9/2/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":980,"Cost":912,"Date":"9/4/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":787,"Cost":720,"Date":"9/19/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":672,"Cost":364,"Date":"9/29/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":845,"Cost":559,"Date":"10/2/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":29,"Cost":21,"Date":"10/15/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":911,"Cost":714,"Date":"10/30/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":595,"Cost":454,"Date":"11/9/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":82,"Cost":67,"Date":"11/23/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":51,"Cost":36,"Date":"11/30/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":42,"Cost":29,"Date":"12/8/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":337,"Cost":291,"Date":"12/11/2018"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":73,"Cost":47,"Date":"1/15/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":258,"Cost":207,"Date":"1/24/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":818,"Cost":748,"Date":"2/3/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":27,"Cost":16,"Date":"2/4/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":609,"Cost":388,"Date":"3/9/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":398,"Cost":306,"Date":"3/12/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":787,"Cost":561,"Date":"4/19/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":900,"Cost":747,"Date":"5/3/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":989,"Cost":615,"Date":"5/4/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":188,"Cost":156,"Date":"6/8/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":93,"Cost":48,"Date":"6/26/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":371,"Cost":337,"Date":"7/4/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":216,"Cost":201,"Date":"7/13/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":602,"Cost":316,"Date":"8/8/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":472,"Cost":406,"Date":"8/26/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":922,"Cost":800,"Date":"9/2/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":432,"Cost":406,"Date":"9/29/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":731,"Cost":416,"Date":"10/12/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":476,"Cost":287,"Date":"11/2/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":488,"Cost":424,"Date":"11/4/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":872,"Cost":731,"Date":"11/7/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":365,"Cost":336,"Date":"12/1/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":794,"Cost":704,"Date":"12/4/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":593,"Cost":564,"Date":"12/7/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":815,"Cost":736,"Date":"12/18/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":200,"Cost":111,"Date":"12/20/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":810,"Cost":566,"Date":"12/20/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":226,"Cost":161,"Date":"12/21/2019"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":194,"Cost":138,"Date":"1/9/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":503,"Cost":354,"Date":"2/5/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":598,"Cost":507,"Date":"2/16/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":407,"Cost":220,"Date":"2/16/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":861,"Cost":693,"Date":"2/18/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":950,"Cost":721,"Date":"2/22/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":695,"Cost":498,"Date":"2/25/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":390,"Cost":235,"Date":"3/8/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":630,"Cost":448,"Date":"4/2/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":890,"Cost":624,"Date":"4/3/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":575,"Cost":347,"Date":"4/9/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":678,"Cost":617,"Date":"4/10/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":504,"Cost":391,"Date":"4/19/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":157,"Cost":85,"Date":"5/17/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":319,"Cost":284,"Date":"5/22/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":898,"Cost":586,"Date":"6/20/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":295,"Cost":189,"Date":"7/1/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":66,"Cost":52,"Date":"7/4/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":295,"Cost":212,"Date":"7/8/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":536,"Cost":354,"Date":"7/9/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":97,"Cost":85,"Date":"7/14/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":387,"Cost":302,"Date":"7/19/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":638,"Cost":431,"Date":"8/1/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":595,"Cost":323,"Date":"8/6/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":763,"Cost":419,"Date":"8/7/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":893,"Cost":733,"Date":"8/22/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":473,"Cost":422,"Date":"8/31/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":309,"Cost":274,"Date":"9/1/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":849,"Cost":757,"Date":"9/1/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":7,"Cost":5,"Date":"9/17/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":823,"Cost":425,"Date":"9/29/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":654,"Cost":537,"Date":"11/7/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":440,"Cost":226,"Date":"11/26/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":529,"Cost":431,"Date":"11/27/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":602,"Cost":478,"Date":"12/5/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":213,"Cost":153,"Date":"12/26/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":104,"Cost":65,"Date":"12/31/2020"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":101,"Cost":73,"Date":"1/20/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":787,"Cost":533,"Date":"2/2/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":894,"Cost":584,"Date":"2/8/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":204,"Cost":139,"Date":"2/27/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":693,"Cost":482,"Date":"3/1/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":56,"Cost":39,"Date":"3/1/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":342,"Cost":322,"Date":"3/19/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":607,"Cost":539,"Date":"3/28/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":4,"Cost":3,"Date":"5/21/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":993,"Cost":865,"Date":"7/21/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":729,"Cost":654,"Date":"8/5/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":830,"Cost":531,"Date":"8/12/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":344,"Cost":292,"Date":"8/21/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":784,"Cost":703,"Date":"8/23/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":48,"Cost":46,"Date":"9/3/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":651,"Cost":390,"Date":"9/5/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":201,"Cost":129,"Date":"10/6/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":302,"Cost":182,"Date":"10/19/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":868,"Cost":696,"Date":"11/15/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":134,"Cost":94,"Date":"12/8/2021"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":160,"Cost":144,"Date":"1/8/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":87,"Cost":73,"Date":"1/14/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":387,"Cost":308,"Date":"1/19/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":700,"Cost":484,"Date":"1/28/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":461,"Cost":242,"Date":"1/31/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":810,"Cost":581,"Date":"3/27/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":909,"Cost":554,"Date":"4/20/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":554,"Cost":370,"Date":"4/24/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":828,"Cost":424,"Date":"4/28/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":629,"Cost":324,"Date":"5/15/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":954,"Cost":525,"Date":"5/16/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":713,"Cost":664,"Date":"5/18/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":722,"Cost":496,"Date":"6/2/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":278,"Cost":171,"Date":"6/3/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":85,"Cost":58,"Date":"6/5/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":78,"Cost":62,"Date":"6/7/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":444,"Cost":226,"Date":"6/14/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":706,"Cost":526,"Date":"6/20/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":909,"Cost":686,"Date":"6/24/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":897,"Cost":712,"Date":"7/4/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":782,"Cost":452,"Date":"7/9/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":524,"Cost":307,"Date":"7/12/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":363,"Cost":270,"Date":"8/14/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":630,"Cost":404,"Date":"8/16/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":833,"Cost":606,"Date":"8/23/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":523,"Cost":491,"Date":"9/2/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":100,"Cost":69,"Date":"9/3/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":634,"Cost":365,"Date":"9/16/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":768,"Cost":552,"Date":"10/4/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":843,"Cost":562,"Date":"11/1/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":89,"Cost":79,"Date":"11/2/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":812,"Cost":508,"Date":"12/17/2022"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":838,"Cost":524,"Date":"2/10/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":290,"Cost":264,"Date":"2/28/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":904,"Cost":677,"Date":"3/4/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":676,"Cost":637,"Date":"3/9/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":281,"Cost":187,"Date":"3/9/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":554,"Cost":509,"Date":"3/11/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":71,"Cost":63,"Date":"3/17/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":140,"Cost":101,"Date":"3/17/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":203,"Cost":175,"Date":"3/23/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":191,"Cost":130,"Date":"4/1/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":54,"Cost":27,"Date":"5/7/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":850,"Cost":765,"Date":"5/10/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":252,"Cost":208,"Date":"5/20/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":109,"Cost":69,"Date":"6/2/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":306,"Cost":221,"Date":"6/11/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":737,"Cost":556,"Date":"6/16/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":538,"Cost":334,"Date":"6/16/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":338,"Cost":304,"Date":"7/10/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":191,"Cost":148,"Date":"7/11/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":302,"Cost":151,"Date":"8/28/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":988,"Cost":732,"Date":"8/29/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":685,"Cost":385,"Date":"8/31/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":39,"Cost":29,"Date":"9/8/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":523,"Cost":407,"Date":"9/13/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":827,"Cost":649,"Date":"9/14/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":695,"Cost":603,"Date":"9/19/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":459,"Cost":306,"Date":"9/25/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":365,"Cost":319,"Date":"10/4/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":300,"Cost":192,"Date":"10/10/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":71,"Cost":35,"Date":"10/17/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":655,"Cost":461,"Date":"10/28/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":120,"Cost":111,"Date":"10/30/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":283,"Cost":251,"Date":"11/1/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":950,"Cost":579,"Date":"11/15/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":442,"Cost":268,"Date":"11/25/2023"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":915,"Cost":608,"Date":"1/10/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":687,"Cost":542,"Date":"1/14/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":519,"Cost":386,"Date":"1/20/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":417,"Cost":396,"Date":"2/8/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":828,"Cost":587,"Date":"2/25/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":633,"Cost":443,"Date":"3/7/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":617,"Cost":410,"Date":"3/14/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":192,"Cost":108,"Date":"3/27/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":711,"Cost":574,"Date":"4/5/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":873,"Cost":785,"Date":"4/14/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":275,"Cost":199,"Date":"5/3/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":848,"Cost":481,"Date":"5/9/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":172,"Cost":110,"Date":"5/15/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":179,"Cost":166,"Date":"5/25/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":32,"Cost":25,"Date":"5/26/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":66,"Cost":57,"Date":"5/31/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":133,"Cost":116,"Date":"7/27/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":7,"Cost":4,"Date":"9/17/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":43,"Cost":36,"Date":"10/6/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":246,"Cost":124,"Date":"10/8/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":396,"Cost":358,"Date":"10/26/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":253,"Cost":139,"Date":"11/16/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":771,"Cost":566,"Date":"11/18/2024"},{"Store":"Phipps Plaza, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":571,"Cost":521,"Date":"12/1/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":371,"Cost":274,"Date":"2/9/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":570,"Cost":450,"Date":"2/11/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":414,"Cost":215,"Date":"3/10/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":289,"Cost":181,"Date":"3/16/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":373,"Cost":282,"Date":"3/18/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":170,"Cost":135,"Date":"3/20/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":594,"Cost":541,"Date":"3/26/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":684,"Cost":528,"Date":"6/2/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":475,"Cost":291,"Date":"6/10/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":238,"Cost":120,"Date":"6/16/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":48,"Cost":43,"Date":"6/25/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":65,"Cost":58,"Date":"7/19/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":600,"Cost":432,"Date":"7/21/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":995,"Cost":888,"Date":"7/25/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":957,"Cost":908,"Date":"8/4/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":722,"Cost":399,"Date":"9/2/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":391,"Cost":318,"Date":"9/4/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":900,"Cost":586,"Date":"9/19/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":963,"Cost":762,"Date":"9/29/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":604,"Cost":461,"Date":"10/2/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":868,"Cost":453,"Date":"10/15/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":896,"Cost":743,"Date":"10/30/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":229,"Cost":140,"Date":"11/9/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":432,"Cost":395,"Date":"11/23/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":355,"Cost":195,"Date":"11/30/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":712,"Cost":546,"Date":"12/8/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":363,"Cost":245,"Date":"12/11/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":92,"Cost":58,"Date":"1/15/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":543,"Cost":302,"Date":"1/24/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":114,"Cost":66,"Date":"2/3/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":13,"Cost":10,"Date":"2/4/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":312,"Cost":229,"Date":"3/9/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":490,"Cost":329,"Date":"3/12/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":327,"Cost":249,"Date":"4/19/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":225,"Cost":142,"Date":"5/3/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":524,"Cost":397,"Date":"5/4/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":363,"Cost":340,"Date":"6/8/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":580,"Cost":369,"Date":"6/26/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":91,"Cost":67,"Date":"7/4/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":10,"Cost":8,"Date":"7/13/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":645,"Cost":324,"Date":"8/8/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":380,"Cost":269,"Date":"8/26/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":81,"Cost":71,"Date":"9/2/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":270,"Cost":198,"Date":"9/29/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":382,"Cost":224,"Date":"10/12/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":378,"Cost":289,"Date":"11/2/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":39,"Cost":28,"Date":"11/4/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":392,"Cost":269,"Date":"11/7/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":583,"Cost":380,"Date":"12/1/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":538,"Cost":487,"Date":"12/4/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":772,"Cost":598,"Date":"12/7/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":105,"Cost":90,"Date":"12/18/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":165,"Cost":141,"Date":"12/20/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":160,"Cost":130,"Date":"12/20/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":283,"Cost":186,"Date":"12/21/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":976,"Cost":778,"Date":"1/9/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":700,"Cost":498,"Date":"2/5/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":994,"Cost":835,"Date":"2/16/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":456,"Cost":376,"Date":"2/16/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":315,"Cost":245,"Date":"2/18/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":994,"Cost":818,"Date":"2/22/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":480,"Cost":286,"Date":"2/25/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":518,"Cost":407,"Date":"3/8/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":640,"Cost":381,"Date":"4/2/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":690,"Cost":552,"Date":"4/3/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":801,"Cost":488,"Date":"4/9/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":388,"Cost":274,"Date":"4/10/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":655,"Cost":473,"Date":"4/19/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":994,"Cost":527,"Date":"5/17/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":822,"Cost":654,"Date":"5/22/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":694,"Cost":470,"Date":"6/20/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":613,"Cost":415,"Date":"7/1/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":763,"Cost":417,"Date":"7/4/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":11,"Cost":7,"Date":"7/8/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":752,"Cost":640,"Date":"7/9/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":91,"Cost":45,"Date":"7/14/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":143,"Cost":128,"Date":"7/19/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":85,"Cost":46,"Date":"8/1/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":970,"Cost":702,"Date":"8/6/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":477,"Cost":324,"Date":"8/7/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":337,"Cost":261,"Date":"8/22/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":376,"Cost":195,"Date":"8/31/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":40,"Cost":34,"Date":"9/1/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":28,"Cost":26,"Date":"9/1/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":90,"Cost":86,"Date":"9/17/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":843,"Cost":519,"Date":"9/29/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":96,"Cost":77,"Date":"11/7/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":58,"Cost":32,"Date":"11/26/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":469,"Cost":423,"Date":"11/27/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":106,"Cost":82,"Date":"12/5/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":334,"Cost":316,"Date":"12/26/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":982,"Cost":848,"Date":"12/31/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":601,"Cost":403,"Date":"1/20/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":799,"Cost":655,"Date":"2/2/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":810,"Cost":562,"Date":"2/8/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":513,"Cost":326,"Date":"2/27/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":993,"Cost":844,"Date":"3/1/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":83,"Cost":48,"Date":"3/1/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":537,"Cost":306,"Date":"3/19/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":407,"Cost":376,"Date":"3/28/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":557,"Cost":468,"Date":"5/21/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":355,"Cost":207,"Date":"7/21/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":474,"Cost":430,"Date":"8/5/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":840,"Cost":677,"Date":"8/12/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":458,"Cost":245,"Date":"8/21/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":180,"Cost":158,"Date":"8/23/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":742,"Cost":468,"Date":"9/3/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":373,"Cost":282,"Date":"9/5/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":279,"Cost":196,"Date":"10/6/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":972,"Cost":619,"Date":"10/19/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":184,"Cost":100,"Date":"11/15/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":579,"Cost":410,"Date":"12/8/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":609,"Cost":523,"Date":"1/8/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":654,"Cost":350,"Date":"1/14/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":83,"Cost":48,"Date":"1/19/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":137,"Cost":110,"Date":"1/28/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":676,"Cost":579,"Date":"1/31/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":977,"Cost":718,"Date":"3/27/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":952,"Cost":541,"Date":"4/20/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":811,"Cost":622,"Date":"4/24/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":304,"Cost":170,"Date":"4/28/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":804,"Cost":492,"Date":"5/15/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":207,"Cost":169,"Date":"5/16/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":50,"Cost":33,"Date":"5/18/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":580,"Cost":387,"Date":"6/2/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":840,"Cost":590,"Date":"6/3/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":971,"Cost":738,"Date":"6/5/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":109,"Cost":75,"Date":"6/7/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":915,"Cost":494,"Date":"6/14/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":392,"Cost":241,"Date":"6/20/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":743,"Cost":645,"Date":"6/24/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":257,"Cost":241,"Date":"7/4/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":582,"Cost":462,"Date":"7/9/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":272,"Cost":173,"Date":"7/12/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":966,"Cost":558,"Date":"8/14/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":734,"Cost":410,"Date":"8/16/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":601,"Cost":559,"Date":"8/23/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":529,"Cost":363,"Date":"9/2/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":486,"Cost":395,"Date":"9/3/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":846,"Cost":662,"Date":"9/16/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":768,"Cost":686,"Date":"10/4/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":959,"Cost":481,"Date":"11/1/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":501,"Cost":387,"Date":"11/2/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":243,"Cost":126,"Date":"12/17/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":272,"Cost":223,"Date":"2/10/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":765,"Cost":704,"Date":"2/28/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":400,"Cost":369,"Date":"3/4/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":676,"Cost":588,"Date":"3/9/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":125,"Cost":96,"Date":"3/9/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":558,"Cost":498,"Date":"3/11/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":573,"Cost":453,"Date":"3/17/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":927,"Cost":638,"Date":"3/17/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":687,"Cost":478,"Date":"3/23/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":466,"Cost":312,"Date":"4/1/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":637,"Cost":532,"Date":"5/7/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":484,"Cost":281,"Date":"5/10/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":985,"Cost":586,"Date":"5/20/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":912,"Cost":841,"Date":"6/2/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":226,"Cost":195,"Date":"6/11/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":380,"Cost":244,"Date":"6/16/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":467,"Cost":332,"Date":"6/16/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":808,"Cost":718,"Date":"7/10/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":202,"Cost":109,"Date":"7/11/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":392,"Cost":241,"Date":"8/28/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":925,"Cost":790,"Date":"8/29/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":449,"Cost":422,"Date":"8/31/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":75,"Cost":54,"Date":"9/8/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":391,"Cost":285,"Date":"9/13/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":389,"Cost":303,"Date":"9/14/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":768,"Cost":641,"Date":"9/19/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":951,"Cost":675,"Date":"9/25/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":544,"Cost":424,"Date":"10/4/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":580,"Cost":336,"Date":"10/10/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":142,"Cost":83,"Date":"10/17/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":274,"Cost":226,"Date":"10/28/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":498,"Cost":405,"Date":"10/30/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":62,"Cost":40,"Date":"11/1/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":915,"Cost":632,"Date":"11/15/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":332,"Cost":258,"Date":"11/25/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":338,"Cost":310,"Date":"1/10/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":222,"Cost":194,"Date":"1/14/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":328,"Cost":183,"Date":"1/20/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":15,"Cost":11,"Date":"2/8/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":10,"Cost":6,"Date":"2/25/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":892,"Cost":789,"Date":"3/7/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":908,"Cost":530,"Date":"3/14/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":932,"Cost":782,"Date":"3/27/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":123,"Cost":86,"Date":"4/5/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":704,"Cost":418,"Date":"4/14/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":82,"Cost":51,"Date":"5/3/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":340,"Cost":253,"Date":"5/9/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":276,"Cost":260,"Date":"5/15/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":544,"Cost":328,"Date":"5/25/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":818,"Cost":466,"Date":"5/26/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":196,"Cost":155,"Date":"5/31/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":949,"Cost":698,"Date":"7/27/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":961,"Cost":560,"Date":"9/17/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":184,"Cost":107,"Date":"10/6/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":526,"Cost":390,"Date":"10/8/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":993,"Cost":507,"Date":"10/26/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":735,"Cost":644,"Date":"11/16/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":902,"Cost":809,"Date":"11/18/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Sellpy","Country":"USA","Sale":871,"Cost":464,"Date":"12/1/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":280,"Cost":199,"Date":"2/9/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":678,"Cost":557,"Date":"2/11/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":660,"Cost":551,"Date":"3/10/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":80,"Cost":57,"Date":"3/16/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":422,"Cost":395,"Date":"3/18/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":698,"Cost":554,"Date":"3/20/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":574,"Cost":304,"Date":"3/26/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":670,"Cost":461,"Date":"6/2/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":588,"Cost":392,"Date":"6/10/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":278,"Cost":199,"Date":"6/16/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":556,"Cost":430,"Date":"6/25/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":198,"Cost":121,"Date":"7/19/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":446,"Cost":250,"Date":"7/21/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":895,"Cost":740,"Date":"7/25/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":877,"Cost":571,"Date":"8/4/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":929,"Cost":871,"Date":"9/2/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":546,"Cost":381,"Date":"9/4/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":10,"Cost":8,"Date":"9/19/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":591,"Cost":512,"Date":"9/29/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":556,"Cost":501,"Date":"10/2/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":654,"Cost":332,"Date":"10/15/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":667,"Cost":573,"Date":"10/30/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":274,"Cost":244,"Date":"11/9/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":470,"Cost":359,"Date":"11/23/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":456,"Cost":322,"Date":"11/30/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":916,"Cost":752,"Date":"12/8/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":200,"Cost":105,"Date":"12/11/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":954,"Cost":896,"Date":"1/15/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":67,"Cost":54,"Date":"1/24/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":351,"Cost":260,"Date":"2/3/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":655,"Cost":347,"Date":"2/4/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":347,"Cost":174,"Date":"3/9/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":841,"Cost":488,"Date":"3/12/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":673,"Cost":524,"Date":"4/19/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":760,"Cost":657,"Date":"5/3/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":861,"Cost":654,"Date":"5/4/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":255,"Cost":195,"Date":"6/8/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":246,"Cost":172,"Date":"6/26/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":342,"Cost":290,"Date":"7/4/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":540,"Cost":447,"Date":"7/13/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":866,"Cost":663,"Date":"8/8/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":625,"Cost":497,"Date":"8/26/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":210,"Cost":176,"Date":"9/2/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":872,"Cost":632,"Date":"9/29/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":818,"Cost":599,"Date":"10/12/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":972,"Cost":865,"Date":"11/2/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":201,"Cost":117,"Date":"11/4/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":506,"Cost":423,"Date":"11/7/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":609,"Cost":471,"Date":"12/1/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":657,"Cost":456,"Date":"12/4/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":47,"Cost":40,"Date":"12/7/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":422,"Cost":333,"Date":"12/18/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":135,"Cost":122,"Date":"12/20/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":1,"Cost":1,"Date":"12/20/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":32,"Cost":30,"Date":"12/21/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":576,"Cost":403,"Date":"1/9/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":601,"Cost":484,"Date":"2/5/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":983,"Cost":893,"Date":"2/16/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":264,"Cost":209,"Date":"2/16/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":814,"Cost":654,"Date":"2/18/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":722,"Cost":487,"Date":"2/22/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":97,"Cost":56,"Date":"2/25/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":30,"Cost":15,"Date":"3/8/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":585,"Cost":346,"Date":"4/2/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":804,"Cost":749,"Date":"4/3/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":521,"Cost":379,"Date":"4/9/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":545,"Cost":398,"Date":"4/10/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":207,"Cost":104,"Date":"4/19/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":826,"Cost":599,"Date":"5/17/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":239,"Cost":216,"Date":"5/22/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":899,"Cost":789,"Date":"6/20/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":338,"Cost":310,"Date":"7/1/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":890,"Cost":545,"Date":"7/4/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":620,"Cost":448,"Date":"7/8/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":122,"Cost":79,"Date":"7/9/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":815,"Cost":687,"Date":"7/14/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":661,"Cost":352,"Date":"7/19/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":878,"Cost":717,"Date":"8/1/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":117,"Cost":75,"Date":"8/6/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":37,"Cost":28,"Date":"8/7/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":352,"Cost":299,"Date":"8/22/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":293,"Cost":177,"Date":"8/31/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":174,"Cost":87,"Date":"9/1/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":294,"Cost":189,"Date":"9/1/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":271,"Cost":163,"Date":"9/17/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":694,"Cost":649,"Date":"9/29/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":273,"Cost":164,"Date":"11/7/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":181,"Cost":124,"Date":"11/26/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":818,"Cost":588,"Date":"11/27/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":345,"Cost":215,"Date":"12/5/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":42,"Cost":37,"Date":"12/26/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":699,"Cost":442,"Date":"12/31/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":203,"Cost":172,"Date":"1/20/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":479,"Cost":274,"Date":"2/2/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":275,"Cost":167,"Date":"2/8/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":943,"Cost":591,"Date":"2/27/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":289,"Cost":251,"Date":"3/1/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":169,"Cost":118,"Date":"3/1/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":820,"Cost":544,"Date":"3/19/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":824,"Cost":622,"Date":"3/28/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":395,"Cost":320,"Date":"5/21/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":344,"Cost":172,"Date":"7/21/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":2,"Cost":1,"Date":"8/5/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":480,"Cost":337,"Date":"8/12/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":574,"Cost":469,"Date":"8/21/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":809,"Cost":728,"Date":"8/23/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":101,"Cost":95,"Date":"9/3/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":999,"Cost":742,"Date":"9/5/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":913,"Cost":561,"Date":"10/6/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":135,"Cost":122,"Date":"10/19/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":266,"Cost":189,"Date":"11/15/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":894,"Cost":541,"Date":"12/8/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":364,"Cost":201,"Date":"1/8/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":871,"Cost":748,"Date":"1/14/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":908,"Cost":557,"Date":"1/19/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":402,"Cost":213,"Date":"1/28/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":857,"Cost":539,"Date":"1/31/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":716,"Cost":426,"Date":"3/27/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":972,"Cost":626,"Date":"4/20/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":359,"Cost":279,"Date":"4/24/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":103,"Cost":84,"Date":"4/28/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":486,"Cost":457,"Date":"5/15/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":329,"Cost":216,"Date":"5/16/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":385,"Cost":329,"Date":"5/18/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":278,"Cost":205,"Date":"6/2/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":432,"Cost":369,"Date":"6/3/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":130,"Cost":118,"Date":"6/5/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":427,"Cost":377,"Date":"6/7/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":472,"Cost":283,"Date":"6/14/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":550,"Cost":481,"Date":"6/20/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":591,"Cost":454,"Date":"6/24/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":594,"Cost":494,"Date":"7/4/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":540,"Cost":314,"Date":"7/9/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":255,"Cost":223,"Date":"7/12/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":846,"Cost":521,"Date":"8/14/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":399,"Cost":361,"Date":"8/16/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":895,"Cost":653,"Date":"8/23/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":215,"Cost":143,"Date":"9/2/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":828,"Cost":450,"Date":"9/3/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":808,"Cost":543,"Date":"9/16/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":245,"Cost":183,"Date":"10/4/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":794,"Cost":573,"Date":"11/1/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":679,"Cost":416,"Date":"11/2/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":123,"Cost":107,"Date":"12/17/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":707,"Cost":386,"Date":"2/10/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":355,"Cost":261,"Date":"2/28/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":298,"Cost":240,"Date":"3/4/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":865,"Cost":627,"Date":"3/9/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":933,"Cost":830,"Date":"3/9/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":22,"Cost":20,"Date":"3/11/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":72,"Cost":54,"Date":"3/17/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":728,"Cost":410,"Date":"3/17/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":298,"Cost":158,"Date":"3/23/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":328,"Cost":308,"Date":"4/1/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":512,"Cost":397,"Date":"5/7/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":161,"Cost":125,"Date":"5/10/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":187,"Cost":171,"Date":"5/20/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":951,"Cost":702,"Date":"6/2/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":771,"Cost":542,"Date":"6/11/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":259,"Cost":243,"Date":"6/16/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":369,"Cost":274,"Date":"6/16/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":795,"Cost":532,"Date":"7/10/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":42,"Cost":26,"Date":"7/11/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":670,"Cost":603,"Date":"8/28/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":501,"Cost":415,"Date":"8/29/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":125,"Cost":73,"Date":"8/31/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":22,"Cost":21,"Date":"9/8/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":762,"Cost":472,"Date":"9/13/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":965,"Cost":535,"Date":"9/14/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":246,"Cost":175,"Date":"9/19/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":427,"Cost":227,"Date":"9/25/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":511,"Cost":432,"Date":"10/4/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":767,"Cost":397,"Date":"10/10/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":291,"Cost":153,"Date":"10/17/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":238,"Cost":170,"Date":"10/28/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":333,"Cost":175,"Date":"10/30/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":833,"Cost":444,"Date":"11/1/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":864,"Cost":673,"Date":"11/15/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":622,"Cost":448,"Date":"11/25/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":413,"Cost":250,"Date":"1/10/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":932,"Cost":612,"Date":"1/14/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":222,"Cost":199,"Date":"1/20/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":448,"Cost":375,"Date":"2/8/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":257,"Cost":241,"Date":"2/25/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":564,"Cost":408,"Date":"3/7/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":156,"Cost":92,"Date":"3/14/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":901,"Cost":831,"Date":"3/27/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":446,"Cost":227,"Date":"4/5/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":546,"Cost":425,"Date":"4/14/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":165,"Cost":121,"Date":"5/3/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":289,"Cost":261,"Date":"5/9/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":170,"Cost":128,"Date":"5/15/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":504,"Cost":398,"Date":"5/25/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":497,"Cost":285,"Date":"5/26/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":897,"Cost":815,"Date":"5/31/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":364,"Cost":334,"Date":"7/27/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":720,"Cost":634,"Date":"9/17/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":850,"Cost":682,"Date":"10/6/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":907,"Cost":500,"Date":"10/8/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":407,"Cost":217,"Date":"10/26/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":695,"Cost":385,"Date":"11/16/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":177,"Cost":139,"Date":"11/18/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"HM Home","Country":"USA","Sale":183,"Cost":158,"Date":"12/1/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":362,"Cost":315,"Date":"2/9/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":563,"Cost":495,"Date":"2/11/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":218,"Cost":137,"Date":"3/10/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":125,"Cost":103,"Date":"3/16/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":338,"Cost":233,"Date":"3/18/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":354,"Cost":332,"Date":"3/20/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":656,"Cost":398,"Date":"3/26/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":214,"Cost":175,"Date":"6/2/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":91,"Cost":79,"Date":"6/10/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":439,"Cost":352,"Date":"6/16/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":182,"Cost":136,"Date":"6/25/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":438,"Cost":362,"Date":"7/19/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":945,"Cost":711,"Date":"7/21/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":497,"Cost":311,"Date":"7/25/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":609,"Cost":507,"Date":"8/4/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":304,"Cost":195,"Date":"9/2/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":934,"Cost":793,"Date":"9/4/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":808,"Cost":626,"Date":"9/19/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":249,"Cost":228,"Date":"9/29/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":574,"Cost":473,"Date":"10/2/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":514,"Cost":370,"Date":"10/15/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":214,"Cost":195,"Date":"10/30/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":702,"Cost":659,"Date":"11/9/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":657,"Cost":369,"Date":"11/23/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":702,"Cost":629,"Date":"11/30/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":884,"Cost":618,"Date":"12/8/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":765,"Cost":412,"Date":"12/11/2018"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":171,"Cost":89,"Date":"1/15/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":518,"Cost":445,"Date":"1/24/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":726,"Cost":493,"Date":"2/3/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":218,"Cost":147,"Date":"2/4/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":238,"Cost":178,"Date":"3/9/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":506,"Cost":286,"Date":"3/12/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":706,"Cost":609,"Date":"4/19/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":806,"Cost":658,"Date":"5/3/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":409,"Cost":364,"Date":"5/4/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":263,"Cost":169,"Date":"6/8/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":57,"Cost":54,"Date":"6/26/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":997,"Cost":594,"Date":"7/4/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":451,"Cost":250,"Date":"7/13/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":205,"Cost":107,"Date":"8/8/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":443,"Cost":419,"Date":"8/26/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":458,"Cost":271,"Date":"9/2/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":669,"Cost":343,"Date":"9/29/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":714,"Cost":590,"Date":"10/12/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":974,"Cost":843,"Date":"11/2/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":57,"Cost":32,"Date":"11/4/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":37,"Cost":24,"Date":"11/7/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":828,"Cost":423,"Date":"12/1/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":573,"Cost":428,"Date":"12/4/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":218,"Cost":130,"Date":"12/7/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":108,"Cost":100,"Date":"12/18/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":74,"Cost":60,"Date":"12/20/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":105,"Cost":96,"Date":"12/20/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":49,"Cost":25,"Date":"12/21/2019"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":569,"Cost":409,"Date":"1/9/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":958,"Cost":496,"Date":"2/5/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":218,"Cost":128,"Date":"2/16/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":633,"Cost":492,"Date":"2/16/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":19,"Cost":18,"Date":"2/18/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":278,"Cost":178,"Date":"2/22/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":230,"Cost":174,"Date":"2/25/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":382,"Cost":204,"Date":"3/8/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":339,"Cost":243,"Date":"4/2/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":67,"Cost":50,"Date":"4/3/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":196,"Cost":151,"Date":"4/9/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":286,"Cost":178,"Date":"4/10/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":347,"Cost":249,"Date":"4/19/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":370,"Cost":316,"Date":"5/17/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":262,"Cost":223,"Date":"5/22/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":655,"Cost":595,"Date":"6/20/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":485,"Cost":255,"Date":"7/1/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":801,"Cost":479,"Date":"7/4/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":308,"Cost":270,"Date":"7/8/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":624,"Cost":433,"Date":"7/9/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":638,"Cost":541,"Date":"7/14/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":442,"Cost":309,"Date":"7/19/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":878,"Cost":634,"Date":"8/1/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":480,"Cost":404,"Date":"8/6/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":188,"Cost":145,"Date":"8/7/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":477,"Cost":328,"Date":"8/22/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":750,"Cost":535,"Date":"8/31/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":783,"Cost":639,"Date":"9/1/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":506,"Cost":299,"Date":"9/1/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":464,"Cost":289,"Date":"9/17/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":652,"Cost":609,"Date":"9/29/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":827,"Cost":453,"Date":"11/7/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":330,"Cost":286,"Date":"11/26/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":776,"Cost":480,"Date":"11/27/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":192,"Cost":107,"Date":"12/5/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":26,"Cost":13,"Date":"12/26/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":26,"Cost":21,"Date":"12/31/2020"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":886,"Cost":753,"Date":"1/20/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":597,"Cost":522,"Date":"2/2/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":653,"Cost":558,"Date":"2/8/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":766,"Cost":647,"Date":"2/27/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":394,"Cost":205,"Date":"3/1/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":986,"Cost":793,"Date":"3/1/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":810,"Cost":511,"Date":"3/19/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":478,"Cost":368,"Date":"3/28/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":495,"Cost":381,"Date":"5/21/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":916,"Cost":869,"Date":"7/21/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":422,"Cost":238,"Date":"8/5/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":485,"Cost":396,"Date":"8/12/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":816,"Cost":690,"Date":"8/21/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":987,"Cost":707,"Date":"8/23/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":113,"Cost":93,"Date":"9/3/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":953,"Cost":556,"Date":"9/5/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":745,"Cost":678,"Date":"10/6/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":555,"Cost":391,"Date":"10/19/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":340,"Cost":278,"Date":"11/15/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":689,"Cost":391,"Date":"12/8/2021"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":218,"Cost":137,"Date":"1/8/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":959,"Cost":859,"Date":"1/14/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":594,"Cost":398,"Date":"1/19/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":815,"Cost":583,"Date":"1/28/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":40,"Cost":33,"Date":"1/31/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":243,"Cost":190,"Date":"3/27/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":631,"Cost":518,"Date":"4/20/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":542,"Cost":455,"Date":"4/24/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":169,"Cost":137,"Date":"4/28/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":495,"Cost":427,"Date":"5/15/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":597,"Cost":413,"Date":"5/16/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":895,"Cost":763,"Date":"5/18/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":586,"Cost":339,"Date":"6/2/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":942,"Cost":656,"Date":"6/3/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":850,"Cost":546,"Date":"6/5/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":248,"Cost":217,"Date":"6/7/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":629,"Cost":433,"Date":"6/14/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":203,"Cost":109,"Date":"6/20/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":398,"Cost":288,"Date":"6/24/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":911,"Cost":518,"Date":"7/4/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":228,"Cost":207,"Date":"7/9/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":916,"Cost":491,"Date":"7/12/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":343,"Cost":311,"Date":"8/14/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":139,"Cost":70,"Date":"8/16/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":288,"Cost":257,"Date":"8/23/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":154,"Cost":91,"Date":"9/2/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":871,"Cost":660,"Date":"9/3/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":102,"Cost":82,"Date":"9/16/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":280,"Cost":170,"Date":"10/4/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":294,"Cost":216,"Date":"11/1/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":579,"Cost":523,"Date":"11/2/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":621,"Cost":412,"Date":"12/17/2022"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":821,"Cost":749,"Date":"2/10/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":407,"Cost":347,"Date":"2/28/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":291,"Cost":217,"Date":"3/4/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":775,"Cost":652,"Date":"3/9/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":805,"Cost":443,"Date":"3/9/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":296,"Cost":197,"Date":"3/11/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":757,"Cost":433,"Date":"3/17/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":638,"Cost":500,"Date":"3/17/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":399,"Cost":201,"Date":"3/23/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":852,"Cost":760,"Date":"4/1/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":773,"Cost":680,"Date":"5/7/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":422,"Cost":313,"Date":"5/10/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":382,"Cost":316,"Date":"5/20/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":625,"Cost":458,"Date":"6/2/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":542,"Cost":425,"Date":"6/11/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":219,"Cost":161,"Date":"6/16/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":907,"Cost":672,"Date":"6/16/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":389,"Cost":367,"Date":"7/10/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":902,"Cost":575,"Date":"7/11/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":816,"Cost":480,"Date":"8/28/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":311,"Cost":278,"Date":"8/29/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":624,"Cost":367,"Date":"8/31/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":386,"Cost":311,"Date":"9/8/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":949,"Cost":551,"Date":"9/13/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":165,"Cost":86,"Date":"9/14/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":655,"Cost":527,"Date":"9/19/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":476,"Cost":309,"Date":"9/25/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":221,"Cost":172,"Date":"10/4/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":953,"Cost":762,"Date":"10/10/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":604,"Cost":570,"Date":"10/17/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":143,"Cost":76,"Date":"10/28/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":832,"Cost":559,"Date":"10/30/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":48,"Cost":38,"Date":"11/1/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":851,"Cost":645,"Date":"11/15/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":754,"Cost":653,"Date":"11/25/2023"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":297,"Cost":163,"Date":"1/10/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":239,"Cost":129,"Date":"1/14/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":308,"Cost":243,"Date":"1/20/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":790,"Cost":422,"Date":"2/8/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":580,"Cost":418,"Date":"2/25/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":769,"Cost":418,"Date":"3/7/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":22,"Cost":18,"Date":"3/14/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":649,"Cost":389,"Date":"3/27/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":349,"Cost":327,"Date":"4/5/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":208,"Cost":108,"Date":"4/14/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":537,"Cost":479,"Date":"5/3/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":658,"Cost":593,"Date":"5/9/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":725,"Cost":482,"Date":"5/15/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":112,"Cost":69,"Date":"5/25/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":968,"Cost":646,"Date":"5/26/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":770,"Cost":668,"Date":"5/31/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":908,"Cost":517,"Date":"7/27/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":80,"Cost":51,"Date":"9/17/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":127,"Cost":107,"Date":"10/6/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":685,"Cost":446,"Date":"10/8/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":70,"Cost":67,"Date":"10/26/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":333,"Cost":192,"Date":"11/16/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":315,"Cost":268,"Date":"11/18/2024"},{"Store":"Southdale Center, Edina, MN","Brand":"Jeans","Country":"USA","Sale":125,"Cost":89,"Date":"12/1/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":141,"Cost":78,"Date":"2/9/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":54,"Cost":48,"Date":"2/11/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":795,"Cost":593,"Date":"3/10/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":113,"Cost":82,"Date":"3/16/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":275,"Cost":218,"Date":"3/18/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":403,"Cost":319,"Date":"3/20/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":435,"Cost":282,"Date":"3/26/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":878,"Cost":696,"Date":"6/2/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":750,"Cost":570,"Date":"6/10/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":833,"Cost":770,"Date":"6/16/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":993,"Cost":600,"Date":"6/25/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":880,"Cost":788,"Date":"7/19/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":98,"Cost":58,"Date":"7/21/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":115,"Cost":74,"Date":"7/25/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":175,"Cost":106,"Date":"8/4/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":157,"Cost":134,"Date":"9/2/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":709,"Cost":474,"Date":"9/4/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":114,"Cost":69,"Date":"9/19/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":940,"Cost":680,"Date":"9/29/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":952,"Cost":513,"Date":"10/2/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":945,"Cost":747,"Date":"10/15/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":650,"Cost":596,"Date":"10/30/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":787,"Cost":547,"Date":"11/9/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":919,"Cost":604,"Date":"11/23/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":967,"Cost":784,"Date":"11/30/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":276,"Cost":161,"Date":"12/8/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":850,"Cost":574,"Date":"12/11/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":853,"Cost":661,"Date":"1/15/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":183,"Cost":172,"Date":"1/24/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":563,"Cost":408,"Date":"2/3/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":373,"Cost":353,"Date":"2/4/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":186,"Cost":152,"Date":"3/9/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":260,"Cost":186,"Date":"3/12/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":548,"Cost":297,"Date":"4/19/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":952,"Cost":724,"Date":"5/3/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":214,"Cost":131,"Date":"5/4/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":796,"Cost":575,"Date":"6/8/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":770,"Cost":445,"Date":"6/26/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":50,"Cost":29,"Date":"7/4/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":753,"Cost":630,"Date":"7/13/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":449,"Cost":382,"Date":"8/8/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":548,"Cost":440,"Date":"8/26/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":868,"Cost":738,"Date":"9/2/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":264,"Cost":204,"Date":"9/29/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":334,"Cost":218,"Date":"10/12/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":607,"Cost":426,"Date":"11/2/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":795,"Cost":518,"Date":"11/4/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":598,"Cost":486,"Date":"11/7/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":409,"Cost":233,"Date":"12/1/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":295,"Cost":242,"Date":"12/4/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":515,"Cost":370,"Date":"12/7/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":670,"Cost":506,"Date":"12/18/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":906,"Cost":807,"Date":"12/20/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":256,"Cost":195,"Date":"12/20/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":8,"Cost":8,"Date":"12/21/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":305,"Cost":176,"Date":"1/9/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":782,"Cost":660,"Date":"2/5/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":848,"Cost":732,"Date":"2/16/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":167,"Cost":114,"Date":"2/16/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":253,"Cost":235,"Date":"2/18/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":790,"Cost":595,"Date":"2/22/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":614,"Cost":554,"Date":"2/25/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":538,"Cost":362,"Date":"3/8/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":704,"Cost":558,"Date":"4/2/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":454,"Cost":404,"Date":"4/3/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":294,"Cost":203,"Date":"4/9/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":375,"Cost":258,"Date":"4/10/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":772,"Cost":511,"Date":"4/19/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":616,"Cost":482,"Date":"5/17/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":432,"Cost":320,"Date":"5/22/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":475,"Cost":325,"Date":"6/20/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":929,"Cost":478,"Date":"7/1/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":933,"Cost":680,"Date":"7/4/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":364,"Cost":253,"Date":"7/8/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":775,"Cost":451,"Date":"7/9/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":740,"Cost":414,"Date":"7/14/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":545,"Cost":346,"Date":"7/19/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":81,"Cost":74,"Date":"8/1/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":925,"Cost":635,"Date":"8/6/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":211,"Cost":179,"Date":"8/7/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":903,"Cost":676,"Date":"8/22/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":168,"Cost":90,"Date":"8/31/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":670,"Cost":530,"Date":"9/1/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":323,"Cost":247,"Date":"9/1/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":242,"Cost":166,"Date":"9/17/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":883,"Cost":732,"Date":"9/29/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":987,"Cost":731,"Date":"11/7/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":119,"Cost":106,"Date":"11/26/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":549,"Cost":512,"Date":"11/27/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":904,"Cost":847,"Date":"12/5/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":487,"Cost":447,"Date":"12/26/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":651,"Cost":346,"Date":"12/31/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":554,"Cost":287,"Date":"1/20/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":630,"Cost":342,"Date":"2/2/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":952,"Cost":825,"Date":"2/8/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":876,"Cost":606,"Date":"2/27/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":792,"Cost":553,"Date":"3/1/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":583,"Cost":326,"Date":"3/1/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":939,"Cost":746,"Date":"3/19/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":725,"Cost":408,"Date":"3/28/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":454,"Cost":365,"Date":"5/21/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":306,"Cost":240,"Date":"7/21/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":932,"Cost":646,"Date":"8/5/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":490,"Cost":391,"Date":"8/12/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":194,"Cost":172,"Date":"8/21/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":613,"Cost":377,"Date":"8/23/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":792,"Cost":584,"Date":"9/3/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":968,"Cost":627,"Date":"9/5/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":683,"Cost":372,"Date":"10/6/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":722,"Cost":643,"Date":"10/19/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":503,"Cost":364,"Date":"11/15/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":298,"Cost":162,"Date":"12/8/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":636,"Cost":548,"Date":"1/8/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":134,"Cost":87,"Date":"1/14/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":656,"Cost":508,"Date":"1/19/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":485,"Cost":449,"Date":"1/28/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":545,"Cost":447,"Date":"1/31/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":359,"Cost":214,"Date":"3/27/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":393,"Cost":357,"Date":"4/20/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":805,"Cost":652,"Date":"4/24/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":100,"Cost":95,"Date":"4/28/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":816,"Cost":470,"Date":"5/15/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":829,"Cost":654,"Date":"5/16/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":174,"Cost":152,"Date":"5/18/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":41,"Cost":33,"Date":"6/2/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":387,"Cost":320,"Date":"6/3/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":477,"Cost":428,"Date":"6/5/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":425,"Cost":285,"Date":"6/7/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":790,"Cost":745,"Date":"6/14/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":389,"Cost":301,"Date":"6/20/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":634,"Cost":560,"Date":"6/24/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":269,"Cost":164,"Date":"7/4/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":598,"Cost":543,"Date":"7/9/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":849,"Cost":440,"Date":"7/12/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":244,"Cost":174,"Date":"8/14/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":153,"Cost":90,"Date":"8/16/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":267,"Cost":185,"Date":"8/23/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":479,"Cost":355,"Date":"9/2/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":389,"Cost":236,"Date":"9/3/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":380,"Cost":248,"Date":"9/16/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":714,"Cost":364,"Date":"10/4/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":825,"Cost":640,"Date":"11/1/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":597,"Cost":457,"Date":"11/2/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":961,"Cost":699,"Date":"12/17/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":208,"Cost":153,"Date":"2/10/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":793,"Cost":742,"Date":"2/28/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":523,"Cost":369,"Date":"3/4/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":413,"Cost":209,"Date":"3/9/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":198,"Cost":109,"Date":"3/9/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":73,"Cost":53,"Date":"3/11/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":910,"Cost":607,"Date":"3/17/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":263,"Cost":175,"Date":"3/17/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":227,"Cost":130,"Date":"3/23/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":149,"Cost":98,"Date":"4/1/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":229,"Cost":134,"Date":"5/7/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":105,"Cost":72,"Date":"5/10/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":942,"Cost":599,"Date":"5/20/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":771,"Cost":401,"Date":"6/2/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":808,"Cost":558,"Date":"6/11/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":1,"Cost":1,"Date":"6/16/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":120,"Cost":103,"Date":"6/16/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":719,"Cost":613,"Date":"7/10/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":662,"Cost":600,"Date":"7/11/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":529,"Cost":349,"Date":"8/28/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":436,"Cost":328,"Date":"8/29/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":172,"Cost":115,"Date":"8/31/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":606,"Cost":490,"Date":"9/8/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":269,"Cost":197,"Date":"9/13/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":680,"Cost":619,"Date":"9/14/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":650,"Cost":583,"Date":"9/19/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":337,"Cost":319,"Date":"9/25/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":928,"Cost":604,"Date":"10/4/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":776,"Cost":423,"Date":"10/10/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":403,"Cost":285,"Date":"10/17/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":616,"Cost":348,"Date":"10/28/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":161,"Cost":118,"Date":"10/30/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":606,"Cost":339,"Date":"11/1/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":234,"Cost":200,"Date":"11/15/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":261,"Cost":149,"Date":"11/25/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":987,"Cost":654,"Date":"1/10/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":441,"Cost":400,"Date":"1/14/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":166,"Cost":102,"Date":"1/20/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":913,"Cost":836,"Date":"2/8/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":683,"Cost":644,"Date":"2/25/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":493,"Cost":314,"Date":"3/7/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":325,"Cost":190,"Date":"3/14/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":991,"Cost":804,"Date":"3/27/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":640,"Cost":587,"Date":"4/5/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":569,"Cost":533,"Date":"4/14/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":888,"Cost":527,"Date":"5/3/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":110,"Cost":94,"Date":"5/9/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":141,"Cost":125,"Date":"5/15/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":997,"Cost":621,"Date":"5/25/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":489,"Cost":406,"Date":"5/26/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":116,"Cost":80,"Date":"5/31/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":954,"Cost":714,"Date":"7/27/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":488,"Cost":250,"Date":"9/17/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":51,"Cost":28,"Date":"10/6/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":928,"Cost":717,"Date":"10/8/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":97,"Cost":61,"Date":"10/26/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":712,"Cost":357,"Date":"11/16/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":785,"Cost":535,"Date":"11/18/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"HM","Country":"USA","Sale":702,"Cost":351,"Date":"12/1/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":529,"Cost":337,"Date":"2/9/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":435,"Cost":263,"Date":"2/11/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":305,"Cost":169,"Date":"3/10/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":538,"Cost":413,"Date":"3/16/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":708,"Cost":407,"Date":"3/18/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":678,"Cost":581,"Date":"3/20/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":931,"Cost":490,"Date":"3/26/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":246,"Cost":146,"Date":"6/2/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":467,"Cost":392,"Date":"6/10/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":933,"Cost":814,"Date":"6/16/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":876,"Cost":817,"Date":"6/25/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":331,"Cost":294,"Date":"7/19/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":59,"Cost":53,"Date":"7/21/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":634,"Cost":439,"Date":"7/25/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":167,"Cost":155,"Date":"8/4/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":423,"Cost":391,"Date":"9/2/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":19,"Cost":18,"Date":"9/4/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":666,"Cost":592,"Date":"9/19/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":969,"Cost":605,"Date":"9/29/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":699,"Cost":542,"Date":"10/2/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":821,"Cost":703,"Date":"10/15/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":130,"Cost":121,"Date":"10/30/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":113,"Cost":76,"Date":"11/9/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":84,"Cost":64,"Date":"11/23/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":807,"Cost":473,"Date":"11/30/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":2,"Cost":1,"Date":"12/8/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":196,"Cost":183,"Date":"12/11/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":540,"Cost":346,"Date":"1/15/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":48,"Cost":28,"Date":"1/24/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":468,"Cost":441,"Date":"2/3/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":329,"Cost":221,"Date":"2/4/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":74,"Cost":57,"Date":"3/9/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":643,"Cost":477,"Date":"3/12/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":929,"Cost":537,"Date":"4/19/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":368,"Cost":255,"Date":"5/3/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":65,"Cost":46,"Date":"5/4/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":897,"Cost":664,"Date":"6/8/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":517,"Cost":383,"Date":"6/26/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":777,"Cost":533,"Date":"7/4/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":127,"Cost":107,"Date":"7/13/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":625,"Cost":517,"Date":"8/8/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":157,"Cost":143,"Date":"8/26/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":470,"Cost":248,"Date":"9/2/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":789,"Cost":732,"Date":"9/29/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":358,"Cost":219,"Date":"10/12/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":681,"Cost":405,"Date":"11/2/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":533,"Cost":348,"Date":"11/4/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":184,"Cost":149,"Date":"11/7/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":57,"Cost":29,"Date":"12/1/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":606,"Cost":515,"Date":"12/4/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":40,"Cost":30,"Date":"12/7/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":667,"Cost":385,"Date":"12/18/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":319,"Cost":269,"Date":"12/20/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":790,"Cost":720,"Date":"12/20/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":620,"Cost":417,"Date":"12/21/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":889,"Cost":699,"Date":"1/9/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":836,"Cost":616,"Date":"2/5/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":232,"Cost":203,"Date":"2/16/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":846,"Cost":701,"Date":"2/16/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":808,"Cost":682,"Date":"2/18/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":950,"Cost":548,"Date":"2/22/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":25,"Cost":15,"Date":"2/25/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":156,"Cost":85,"Date":"3/8/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":554,"Cost":453,"Date":"4/2/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":542,"Cost":392,"Date":"4/3/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":686,"Cost":554,"Date":"4/9/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":884,"Cost":748,"Date":"4/10/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":300,"Cost":238,"Date":"4/19/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":183,"Cost":119,"Date":"5/17/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":100,"Cost":81,"Date":"5/22/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":942,"Cost":795,"Date":"6/20/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":706,"Cost":366,"Date":"7/1/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":833,"Cost":675,"Date":"7/4/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":315,"Cost":294,"Date":"7/8/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":259,"Cost":204,"Date":"7/9/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":216,"Cost":202,"Date":"7/14/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":645,"Cost":535,"Date":"7/19/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":591,"Cost":379,"Date":"8/1/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":945,"Cost":887,"Date":"8/6/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":91,"Cost":56,"Date":"8/7/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":777,"Cost":624,"Date":"8/22/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":154,"Cost":114,"Date":"8/31/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":304,"Cost":259,"Date":"9/1/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":77,"Cost":68,"Date":"9/1/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":830,"Cost":772,"Date":"9/17/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":449,"Cost":327,"Date":"9/29/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":446,"Cost":298,"Date":"11/7/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":722,"Cost":601,"Date":"11/26/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":156,"Cost":102,"Date":"11/27/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":681,"Cost":351,"Date":"12/5/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":424,"Cost":371,"Date":"12/26/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":316,"Cost":244,"Date":"12/31/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":827,"Cost":572,"Date":"1/20/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":42,"Cost":29,"Date":"2/2/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":645,"Cost":609,"Date":"2/8/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":218,"Cost":199,"Date":"2/27/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":764,"Cost":508,"Date":"3/1/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":665,"Cost":521,"Date":"3/1/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":119,"Cost":86,"Date":"3/19/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":506,"Cost":403,"Date":"3/28/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":854,"Cost":549,"Date":"5/21/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":77,"Cost":56,"Date":"7/21/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":179,"Cost":100,"Date":"8/5/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":602,"Cost":366,"Date":"8/12/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":929,"Cost":669,"Date":"8/21/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":564,"Cost":341,"Date":"8/23/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":914,"Cost":805,"Date":"9/3/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":147,"Cost":87,"Date":"9/5/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":601,"Cost":411,"Date":"10/6/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":584,"Cost":336,"Date":"10/19/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":620,"Cost":431,"Date":"11/15/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":417,"Cost":242,"Date":"12/8/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":836,"Cost":761,"Date":"1/8/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":37,"Cost":29,"Date":"1/14/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":71,"Cost":39,"Date":"1/19/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":891,"Cost":486,"Date":"1/28/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":443,"Cost":320,"Date":"1/31/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":996,"Cost":670,"Date":"3/27/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":422,"Cost":286,"Date":"4/20/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":84,"Cost":47,"Date":"4/24/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":437,"Cost":331,"Date":"4/28/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":527,"Cost":491,"Date":"5/15/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":762,"Cost":618,"Date":"5/16/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":742,"Cost":477,"Date":"5/18/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":991,"Cost":521,"Date":"6/2/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":741,"Cost":662,"Date":"6/3/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":150,"Cost":133,"Date":"6/5/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":47,"Cost":33,"Date":"6/7/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":214,"Cost":114,"Date":"6/14/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":56,"Cost":37,"Date":"6/20/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":34,"Cost":32,"Date":"6/24/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":600,"Cost":406,"Date":"7/4/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":51,"Cost":42,"Date":"7/9/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":875,"Cost":551,"Date":"7/12/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":817,"Cost":469,"Date":"8/14/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":347,"Cost":319,"Date":"8/16/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":667,"Cost":395,"Date":"8/23/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":858,"Cost":806,"Date":"9/2/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":845,"Cost":432,"Date":"9/3/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":451,"Cost":382,"Date":"9/16/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":365,"Cost":281,"Date":"10/4/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":815,"Cost":432,"Date":"11/1/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":455,"Cost":276,"Date":"11/2/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":866,"Cost":747,"Date":"12/17/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":425,"Cost":386,"Date":"2/10/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":148,"Cost":103,"Date":"2/28/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":539,"Cost":379,"Date":"3/4/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":201,"Cost":104,"Date":"3/9/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":352,"Cost":299,"Date":"3/9/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":771,"Cost":692,"Date":"3/11/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":382,"Cost":349,"Date":"3/17/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":2,"Cost":1,"Date":"3/17/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":247,"Cost":156,"Date":"3/23/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":455,"Cost":336,"Date":"4/1/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":274,"Cost":222,"Date":"5/7/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":926,"Cost":593,"Date":"5/10/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":827,"Cost":442,"Date":"5/20/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":811,"Cost":556,"Date":"6/2/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":757,"Cost":508,"Date":"6/11/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":897,"Cost":837,"Date":"6/16/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":398,"Cost":257,"Date":"6/16/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":423,"Cost":305,"Date":"7/10/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":245,"Cost":124,"Date":"7/11/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":219,"Cost":206,"Date":"8/28/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":55,"Cost":28,"Date":"8/29/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":666,"Cost":597,"Date":"8/31/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":14,"Cost":13,"Date":"9/8/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":325,"Cost":230,"Date":"9/13/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":621,"Cost":366,"Date":"9/14/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":882,"Cost":528,"Date":"9/19/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":216,"Cost":175,"Date":"9/25/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":682,"Cost":386,"Date":"10/4/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":979,"Cost":719,"Date":"10/10/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":470,"Cost":426,"Date":"10/17/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":767,"Cost":681,"Date":"10/28/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":224,"Cost":207,"Date":"10/30/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":286,"Cost":234,"Date":"11/1/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":862,"Cost":613,"Date":"11/15/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":546,"Cost":426,"Date":"11/25/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":537,"Cost":307,"Date":"1/10/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":107,"Cost":89,"Date":"1/14/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":559,"Cost":498,"Date":"1/20/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":669,"Cost":447,"Date":"2/8/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":614,"Cost":492,"Date":"2/25/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":791,"Cost":529,"Date":"3/7/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":783,"Cost":631,"Date":"3/14/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":835,"Cost":622,"Date":"3/27/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":658,"Cost":397,"Date":"4/5/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":651,"Cost":411,"Date":"4/14/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":929,"Cost":724,"Date":"5/3/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":488,"Cost":397,"Date":"5/9/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":896,"Cost":532,"Date":"5/15/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":965,"Cost":842,"Date":"5/25/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":908,"Cost":698,"Date":"5/26/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":458,"Cost":259,"Date":"5/31/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":375,"Cost":272,"Date":"7/27/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":786,"Cost":690,"Date":"9/17/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":807,"Cost":437,"Date":"10/6/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":133,"Cost":109,"Date":"10/8/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":264,"Cost":138,"Date":"10/26/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":365,"Cost":261,"Date":"11/16/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":579,"Cost":367,"Date":"11/18/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"COS","Country":"USA","Sale":782,"Cost":492,"Date":"12/1/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":772,"Cost":546,"Date":"2/9/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":9,"Cost":7,"Date":"2/11/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":299,"Cost":199,"Date":"3/10/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":792,"Cost":679,"Date":"3/16/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":246,"Cost":138,"Date":"3/18/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":674,"Cost":504,"Date":"3/20/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":185,"Cost":143,"Date":"3/26/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":997,"Cost":825,"Date":"6/2/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":999,"Cost":584,"Date":"6/10/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":564,"Cost":422,"Date":"6/16/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":465,"Cost":306,"Date":"6/25/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":306,"Cost":204,"Date":"7/19/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":173,"Cost":131,"Date":"7/21/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":817,"Cost":520,"Date":"7/25/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":197,"Cost":123,"Date":"8/4/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":4,"Cost":3,"Date":"9/2/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":150,"Cost":138,"Date":"9/4/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":374,"Cost":354,"Date":"9/19/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":95,"Cost":60,"Date":"9/29/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":72,"Cost":46,"Date":"10/2/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":851,"Cost":773,"Date":"10/15/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":883,"Cost":442,"Date":"10/30/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":865,"Cost":440,"Date":"11/9/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":255,"Cost":196,"Date":"11/23/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":311,"Cost":235,"Date":"11/30/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":681,"Cost":354,"Date":"12/8/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":554,"Cost":467,"Date":"12/11/2018"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":370,"Cost":222,"Date":"1/15/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":242,"Cost":149,"Date":"1/24/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":43,"Cost":40,"Date":"2/3/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":381,"Cost":266,"Date":"2/4/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":706,"Cost":495,"Date":"3/9/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":624,"Cost":434,"Date":"3/12/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":294,"Cost":178,"Date":"4/19/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":539,"Cost":361,"Date":"5/3/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":157,"Cost":129,"Date":"5/4/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":411,"Cost":238,"Date":"6/8/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":374,"Cost":283,"Date":"6/26/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":929,"Cost":859,"Date":"7/4/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":803,"Cost":666,"Date":"7/13/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":229,"Cost":167,"Date":"8/8/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":486,"Cost":313,"Date":"8/26/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":706,"Cost":468,"Date":"9/2/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":260,"Cost":180,"Date":"9/29/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":298,"Cost":168,"Date":"10/12/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":422,"Cost":325,"Date":"11/2/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":371,"Cost":197,"Date":"11/4/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":148,"Cost":133,"Date":"11/7/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":757,"Cost":665,"Date":"12/1/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":799,"Cost":671,"Date":"12/4/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":528,"Cost":276,"Date":"12/7/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":101,"Cost":94,"Date":"12/18/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":1,"Cost":1,"Date":"12/20/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":573,"Cost":531,"Date":"12/20/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":702,"Cost":446,"Date":"12/21/2019"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":319,"Cost":268,"Date":"1/9/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":941,"Cost":745,"Date":"2/5/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":369,"Cost":283,"Date":"2/16/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":493,"Cost":382,"Date":"2/16/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":138,"Cost":123,"Date":"2/18/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":275,"Cost":214,"Date":"2/22/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":8,"Cost":7,"Date":"2/25/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":106,"Cost":69,"Date":"3/8/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":693,"Cost":563,"Date":"4/2/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":585,"Cost":433,"Date":"4/3/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":75,"Cost":54,"Date":"4/9/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":320,"Cost":219,"Date":"4/10/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":95,"Cost":56,"Date":"4/19/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":985,"Cost":523,"Date":"5/17/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":501,"Cost":469,"Date":"5/22/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":692,"Cost":578,"Date":"6/20/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":890,"Cost":656,"Date":"7/1/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":141,"Cost":70,"Date":"7/4/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":355,"Cost":206,"Date":"7/8/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":71,"Cost":55,"Date":"7/9/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":940,"Cost":787,"Date":"7/14/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":233,"Cost":218,"Date":"7/19/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":926,"Cost":583,"Date":"8/1/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":440,"Cost":264,"Date":"8/6/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":885,"Cost":682,"Date":"8/7/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":83,"Cost":53,"Date":"8/22/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":266,"Cost":204,"Date":"8/31/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":821,"Cost":432,"Date":"9/1/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":764,"Cost":519,"Date":"9/1/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":914,"Cost":692,"Date":"9/17/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":789,"Cost":408,"Date":"9/29/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":569,"Cost":291,"Date":"11/7/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":176,"Cost":150,"Date":"11/26/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":213,"Cost":127,"Date":"11/27/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":827,"Cost":683,"Date":"12/5/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":451,"Cost":306,"Date":"12/26/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":816,"Cost":636,"Date":"12/31/2020"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":108,"Cost":66,"Date":"1/20/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":585,"Cost":542,"Date":"2/2/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":987,"Cost":739,"Date":"2/8/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":769,"Cost":635,"Date":"2/27/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":534,"Cost":318,"Date":"3/1/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":367,"Cost":313,"Date":"3/1/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":449,"Cost":362,"Date":"3/19/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":818,"Cost":709,"Date":"3/28/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":709,"Cost":590,"Date":"5/21/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":893,"Cost":784,"Date":"7/21/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":707,"Cost":475,"Date":"8/5/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":54,"Cost":36,"Date":"8/12/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":616,"Cost":485,"Date":"8/21/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":637,"Cost":541,"Date":"8/23/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":400,"Cost":341,"Date":"9/3/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":843,"Cost":780,"Date":"9/5/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":88,"Cost":60,"Date":"10/6/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":104,"Cost":62,"Date":"10/19/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":800,"Cost":683,"Date":"11/15/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":61,"Cost":48,"Date":"12/8/2021"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":932,"Cost":626,"Date":"1/8/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":48,"Cost":37,"Date":"1/14/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":27,"Cost":24,"Date":"1/19/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":683,"Cost":517,"Date":"1/28/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":671,"Cost":388,"Date":"1/31/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":940,"Cost":647,"Date":"3/27/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":686,"Cost":394,"Date":"4/20/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":145,"Cost":135,"Date":"4/24/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":428,"Cost":280,"Date":"4/28/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":884,"Cost":442,"Date":"5/15/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":732,"Cost":551,"Date":"5/16/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":164,"Cost":139,"Date":"5/18/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":141,"Cost":107,"Date":"6/2/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":379,"Cost":243,"Date":"6/3/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":156,"Cost":126,"Date":"6/5/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":216,"Cost":128,"Date":"6/7/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":602,"Cost":407,"Date":"6/14/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":957,"Cost":503,"Date":"6/20/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":769,"Cost":503,"Date":"6/24/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":502,"Cost":259,"Date":"7/4/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":413,"Cost":327,"Date":"7/9/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":523,"Cost":428,"Date":"7/12/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":976,"Cost":782,"Date":"8/14/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":895,"Cost":776,"Date":"8/16/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":759,"Cost":714,"Date":"8/23/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":832,"Cost":592,"Date":"9/2/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":489,"Cost":338,"Date":"9/3/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":478,"Cost":290,"Date":"9/16/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":337,"Cost":222,"Date":"10/4/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":486,"Cost":373,"Date":"11/1/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":896,"Cost":847,"Date":"11/2/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":923,"Cost":467,"Date":"12/17/2022"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":817,"Cost":643,"Date":"2/10/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":110,"Cost":90,"Date":"2/28/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":772,"Cost":407,"Date":"3/4/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":324,"Cost":291,"Date":"3/9/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":822,"Cost":435,"Date":"3/9/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":457,"Cost":304,"Date":"3/11/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":99,"Cost":59,"Date":"3/17/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":721,"Cost":471,"Date":"3/17/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":947,"Cost":526,"Date":"3/23/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":109,"Cost":70,"Date":"4/1/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":873,"Cost":821,"Date":"5/7/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":48,"Cost":29,"Date":"5/10/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":496,"Cost":451,"Date":"5/20/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":473,"Cost":243,"Date":"6/2/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":596,"Cost":412,"Date":"6/11/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":522,"Cost":398,"Date":"6/16/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":408,"Cost":332,"Date":"6/16/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":916,"Cost":572,"Date":"7/10/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":596,"Cost":298,"Date":"7/11/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":329,"Cost":167,"Date":"8/28/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":630,"Cost":548,"Date":"8/29/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":392,"Cost":280,"Date":"8/31/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":357,"Cost":323,"Date":"9/8/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":668,"Cost":394,"Date":"9/13/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":461,"Cost":385,"Date":"9/14/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":944,"Cost":546,"Date":"9/19/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":246,"Cost":202,"Date":"9/25/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":964,"Cost":823,"Date":"10/4/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":69,"Cost":54,"Date":"10/10/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":492,"Cost":247,"Date":"10/17/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":801,"Cost":675,"Date":"10/28/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":989,"Cost":737,"Date":"10/30/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":147,"Cost":114,"Date":"11/1/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":178,"Cost":130,"Date":"11/15/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":20,"Cost":11,"Date":"11/25/2023"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":538,"Cost":392,"Date":"1/10/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":431,"Cost":360,"Date":"1/14/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":250,"Cost":233,"Date":"1/20/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":467,"Cost":339,"Date":"2/8/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":940,"Cost":832,"Date":"2/25/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":976,"Cost":914,"Date":"3/7/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":460,"Cost":301,"Date":"3/14/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":389,"Cost":320,"Date":"3/27/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":369,"Cost":277,"Date":"4/5/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":401,"Cost":308,"Date":"4/14/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":863,"Cost":583,"Date":"5/3/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":721,"Cost":534,"Date":"5/9/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":695,"Cost":456,"Date":"5/15/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":304,"Cost":155,"Date":"5/25/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":28,"Cost":23,"Date":"5/26/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":339,"Cost":246,"Date":"5/31/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":77,"Cost":44,"Date":"7/27/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":567,"Cost":448,"Date":"9/17/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":1000,"Cost":506,"Date":"10/6/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":115,"Cost":63,"Date":"10/8/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":430,"Cost":258,"Date":"10/26/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":232,"Cost":130,"Date":"11/16/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":991,"Cost":591,"Date":"11/18/2024"},{"Store":"The Grove, Los Angeles, CA","Brand":"Jeans","Country":"USA","Sale":614,"Cost":369,"Date":"12/1/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":707,"Cost":543,"Date":"2/9/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":6,"Cost":3,"Date":"2/11/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":88,"Cost":69,"Date":"3/10/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":926,"Cost":519,"Date":"3/16/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":355,"Cost":236,"Date":"3/18/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":106,"Cost":54,"Date":"3/20/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":512,"Cost":310,"Date":"3/26/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":289,"Cost":226,"Date":"6/2/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":83,"Cost":68,"Date":"6/10/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":457,"Cost":382,"Date":"6/16/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":611,"Cost":569,"Date":"6/25/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":255,"Cost":193,"Date":"7/19/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":900,"Cost":507,"Date":"7/21/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":590,"Cost":529,"Date":"7/25/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":642,"Cost":357,"Date":"8/4/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":838,"Cost":587,"Date":"9/2/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":631,"Cost":578,"Date":"9/4/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":564,"Cost":396,"Date":"9/19/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":607,"Cost":375,"Date":"9/29/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":28,"Cost":14,"Date":"10/2/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":664,"Cost":370,"Date":"10/15/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":872,"Cost":667,"Date":"10/30/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":829,"Cost":663,"Date":"11/9/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":347,"Cost":214,"Date":"11/23/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":124,"Cost":64,"Date":"11/30/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":925,"Cost":870,"Date":"12/8/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":119,"Cost":76,"Date":"12/11/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":243,"Cost":123,"Date":"1/15/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":422,"Cost":328,"Date":"1/24/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":844,"Cost":507,"Date":"2/3/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":728,"Cost":426,"Date":"2/4/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":816,"Cost":606,"Date":"3/9/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":11,"Cost":5,"Date":"3/12/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":275,"Cost":261,"Date":"4/19/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":457,"Cost":277,"Date":"5/3/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":775,"Cost":575,"Date":"5/4/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":934,"Cost":468,"Date":"6/8/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":249,"Cost":198,"Date":"6/26/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":266,"Cost":179,"Date":"7/4/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":328,"Cost":171,"Date":"7/13/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":846,"Cost":748,"Date":"8/8/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":453,"Cost":372,"Date":"8/26/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":219,"Cost":128,"Date":"9/2/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":928,"Cost":749,"Date":"9/29/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":108,"Cost":84,"Date":"10/12/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":104,"Cost":79,"Date":"11/2/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":412,"Cost":255,"Date":"11/4/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":577,"Cost":547,"Date":"11/7/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":625,"Cost":346,"Date":"12/1/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":650,"Cost":420,"Date":"12/4/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":247,"Cost":216,"Date":"12/7/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":84,"Cost":57,"Date":"12/18/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":422,"Cost":239,"Date":"12/20/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":95,"Cost":68,"Date":"12/20/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":167,"Cost":154,"Date":"12/21/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":360,"Cost":319,"Date":"1/9/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":302,"Cost":233,"Date":"2/5/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":678,"Cost":460,"Date":"2/16/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":376,"Cost":217,"Date":"2/16/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":742,"Cost":469,"Date":"2/18/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":227,"Cost":193,"Date":"2/22/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":486,"Cost":423,"Date":"2/25/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":243,"Cost":191,"Date":"3/8/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":245,"Cost":130,"Date":"4/2/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":199,"Cost":126,"Date":"4/3/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":144,"Cost":103,"Date":"4/9/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":203,"Cost":106,"Date":"4/10/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":851,"Cost":537,"Date":"4/19/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":979,"Cost":868,"Date":"5/17/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":545,"Cost":434,"Date":"5/22/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":327,"Cost":281,"Date":"6/20/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":252,"Cost":166,"Date":"7/1/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":168,"Cost":120,"Date":"7/4/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":659,"Cost":599,"Date":"7/8/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":407,"Cost":241,"Date":"7/9/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":133,"Cost":96,"Date":"7/14/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":990,"Cost":873,"Date":"7/19/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":481,"Cost":328,"Date":"8/1/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":969,"Cost":614,"Date":"8/6/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":67,"Cost":48,"Date":"8/7/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":112,"Cost":98,"Date":"8/22/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":648,"Cost":490,"Date":"8/31/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":499,"Cost":399,"Date":"9/1/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":826,"Cost":751,"Date":"9/1/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":415,"Cost":223,"Date":"9/17/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":146,"Cost":83,"Date":"9/29/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":964,"Cost":516,"Date":"11/7/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":418,"Cost":280,"Date":"11/26/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":314,"Cost":232,"Date":"11/27/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":865,"Cost":634,"Date":"12/5/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":689,"Cost":614,"Date":"12/26/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":325,"Cost":208,"Date":"12/31/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":259,"Cost":163,"Date":"1/20/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":731,"Cost":407,"Date":"2/2/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":382,"Cost":255,"Date":"2/8/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":817,"Cost":578,"Date":"2/27/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":977,"Cost":633,"Date":"3/1/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":20,"Cost":15,"Date":"3/1/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":993,"Cost":557,"Date":"3/19/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":677,"Cost":459,"Date":"3/28/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":425,"Cost":229,"Date":"5/21/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":924,"Cost":831,"Date":"7/21/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":72,"Cost":48,"Date":"8/5/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":488,"Cost":266,"Date":"8/12/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":926,"Cost":823,"Date":"8/21/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":974,"Cost":904,"Date":"8/23/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":455,"Cost":319,"Date":"9/3/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":473,"Cost":258,"Date":"9/5/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":740,"Cost":619,"Date":"10/6/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":160,"Cost":87,"Date":"10/19/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":229,"Cost":122,"Date":"11/15/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":877,"Cost":808,"Date":"12/8/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":968,"Cost":591,"Date":"1/8/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":912,"Cost":783,"Date":"1/14/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":269,"Cost":253,"Date":"1/19/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":782,"Cost":564,"Date":"1/28/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":557,"Cost":476,"Date":"1/31/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":899,"Cost":686,"Date":"3/27/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":652,"Cost":592,"Date":"4/20/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":32,"Cost":30,"Date":"4/24/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":932,"Cost":666,"Date":"4/28/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":38,"Cost":26,"Date":"5/15/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":321,"Cost":176,"Date":"5/16/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":578,"Cost":294,"Date":"5/18/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":37,"Cost":19,"Date":"6/2/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":860,"Cost":606,"Date":"6/3/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":949,"Cost":513,"Date":"6/5/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":825,"Cost":636,"Date":"6/7/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":658,"Cost":585,"Date":"6/14/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":453,"Cost":260,"Date":"6/20/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":808,"Cost":766,"Date":"6/24/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":129,"Cost":117,"Date":"7/4/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":172,"Cost":132,"Date":"7/9/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":272,"Cost":175,"Date":"7/12/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":497,"Cost":463,"Date":"8/14/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":774,"Cost":407,"Date":"8/16/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":760,"Cost":394,"Date":"8/23/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":257,"Cost":131,"Date":"9/2/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":182,"Cost":168,"Date":"9/3/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":732,"Cost":459,"Date":"9/16/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":220,"Cost":200,"Date":"10/4/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":331,"Cost":250,"Date":"11/1/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":706,"Cost":417,"Date":"11/2/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":674,"Cost":500,"Date":"12/17/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":980,"Cost":648,"Date":"2/10/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":831,"Cost":498,"Date":"2/28/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":219,"Cost":158,"Date":"3/4/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":323,"Cost":179,"Date":"3/9/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":312,"Cost":190,"Date":"3/9/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":937,"Cost":861,"Date":"3/11/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":693,"Cost":521,"Date":"3/17/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":82,"Cost":54,"Date":"3/17/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":535,"Cost":390,"Date":"3/23/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":819,"Cost":606,"Date":"4/1/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":550,"Cost":428,"Date":"5/7/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":997,"Cost":540,"Date":"5/10/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":126,"Cost":102,"Date":"5/20/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":477,"Cost":404,"Date":"6/2/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":787,"Cost":513,"Date":"6/11/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":467,"Cost":429,"Date":"6/16/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":827,"Cost":720,"Date":"6/16/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":566,"Cost":377,"Date":"7/10/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":664,"Cost":362,"Date":"7/11/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":954,"Cost":509,"Date":"8/28/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":765,"Cost":664,"Date":"8/29/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":561,"Cost":404,"Date":"8/31/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":494,"Cost":435,"Date":"9/8/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":597,"Cost":432,"Date":"9/13/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":616,"Cost":414,"Date":"9/14/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":900,"Cost":602,"Date":"9/19/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":714,"Cost":410,"Date":"9/25/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":503,"Cost":325,"Date":"10/4/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":533,"Cost":442,"Date":"10/10/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":845,"Cost":800,"Date":"10/17/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":137,"Cost":111,"Date":"10/28/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":880,"Cost":591,"Date":"10/30/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":24,"Cost":19,"Date":"11/1/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":558,"Cost":423,"Date":"11/15/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":543,"Cost":464,"Date":"11/25/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":794,"Cost":712,"Date":"1/10/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":652,"Cost":355,"Date":"1/14/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":447,"Cost":385,"Date":"1/20/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":448,"Cost":354,"Date":"2/8/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":761,"Cost":549,"Date":"2/25/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":197,"Cost":110,"Date":"3/7/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":916,"Cost":823,"Date":"3/14/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":186,"Cost":160,"Date":"3/27/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":371,"Cost":278,"Date":"4/5/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":107,"Cost":68,"Date":"4/14/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":529,"Cost":302,"Date":"5/3/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":637,"Cost":578,"Date":"5/9/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":565,"Cost":493,"Date":"5/15/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":97,"Cost":49,"Date":"5/25/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":867,"Cost":537,"Date":"5/26/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":360,"Cost":207,"Date":"5/31/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":708,"Cost":440,"Date":"7/27/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":352,"Cost":201,"Date":"9/17/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":295,"Cost":229,"Date":"10/6/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":637,"Cost":534,"Date":"10/8/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":885,"Cost":490,"Date":"10/26/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":413,"Cost":282,"Date":"11/16/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":933,"Cost":566,"Date":"11/18/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM Home","Country":"USA","Sale":278,"Cost":243,"Date":"12/1/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":272,"Cost":186,"Date":"2/9/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":495,"Cost":358,"Date":"2/11/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":132,"Cost":116,"Date":"3/10/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":800,"Cost":624,"Date":"3/16/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":751,"Cost":443,"Date":"3/18/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":495,"Cost":384,"Date":"3/20/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":193,"Cost":119,"Date":"3/26/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":982,"Cost":640,"Date":"6/2/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":843,"Cost":733,"Date":"6/10/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":758,"Cost":451,"Date":"6/16/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":488,"Cost":282,"Date":"6/25/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":209,"Cost":120,"Date":"7/19/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":162,"Cost":122,"Date":"7/21/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":787,"Cost":669,"Date":"7/25/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":955,"Cost":559,"Date":"8/4/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":86,"Cost":56,"Date":"9/2/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":814,"Cost":654,"Date":"9/4/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":809,"Cost":729,"Date":"9/19/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":350,"Cost":246,"Date":"9/29/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":863,"Cost":480,"Date":"10/2/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":483,"Cost":326,"Date":"10/15/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":758,"Cost":567,"Date":"10/30/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":535,"Cost":423,"Date":"11/9/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":128,"Cost":73,"Date":"11/23/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":292,"Cost":149,"Date":"11/30/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":928,"Cost":802,"Date":"12/8/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":780,"Cost":740,"Date":"12/11/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":85,"Cost":47,"Date":"1/15/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":501,"Cost":252,"Date":"1/24/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":664,"Cost":511,"Date":"2/3/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":346,"Cost":187,"Date":"2/4/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":892,"Cost":670,"Date":"3/9/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":14,"Cost":13,"Date":"3/12/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":616,"Cost":376,"Date":"4/19/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":970,"Cost":698,"Date":"5/3/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":912,"Cost":609,"Date":"5/4/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":285,"Cost":158,"Date":"6/8/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":245,"Cost":211,"Date":"6/26/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":532,"Cost":297,"Date":"7/4/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":632,"Cost":583,"Date":"7/13/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":581,"Cost":467,"Date":"8/8/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":839,"Cost":772,"Date":"8/26/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":620,"Cost":512,"Date":"9/2/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":165,"Cost":95,"Date":"9/29/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":129,"Cost":67,"Date":"10/12/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":85,"Cost":56,"Date":"11/2/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":185,"Cost":173,"Date":"11/4/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":159,"Cost":109,"Date":"11/7/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":304,"Cost":178,"Date":"12/1/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":50,"Cost":26,"Date":"12/4/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":176,"Cost":95,"Date":"12/7/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":543,"Cost":432,"Date":"12/18/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":273,"Cost":167,"Date":"12/20/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":530,"Cost":342,"Date":"12/20/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":174,"Cost":111,"Date":"12/21/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":302,"Cost":233,"Date":"1/9/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":563,"Cost":400,"Date":"2/5/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":672,"Cost":562,"Date":"2/16/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":270,"Cost":200,"Date":"2/16/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":949,"Cost":736,"Date":"2/18/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":539,"Cost":476,"Date":"2/22/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":30,"Cost":29,"Date":"2/25/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":685,"Cost":580,"Date":"3/8/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":173,"Cost":165,"Date":"4/2/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":543,"Cost":351,"Date":"4/3/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":818,"Cost":717,"Date":"4/9/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":140,"Cost":80,"Date":"4/10/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":384,"Cost":216,"Date":"4/19/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":153,"Cost":76,"Date":"5/17/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":798,"Cost":556,"Date":"5/22/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":278,"Cost":179,"Date":"6/20/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":243,"Cost":171,"Date":"7/1/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":366,"Cost":304,"Date":"7/4/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":957,"Cost":834,"Date":"7/8/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":426,"Cost":383,"Date":"7/9/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":566,"Cost":368,"Date":"7/14/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":613,"Cost":441,"Date":"7/19/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":970,"Cost":645,"Date":"8/1/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":558,"Cost":371,"Date":"8/6/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":973,"Cost":776,"Date":"8/7/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":371,"Cost":196,"Date":"8/22/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":542,"Cost":402,"Date":"8/31/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":116,"Cost":62,"Date":"9/1/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":736,"Cost":635,"Date":"9/1/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":507,"Cost":408,"Date":"9/17/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":444,"Cost":338,"Date":"9/29/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":987,"Cost":852,"Date":"11/7/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":424,"Cost":352,"Date":"11/26/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":221,"Cost":126,"Date":"11/27/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":108,"Cost":86,"Date":"12/5/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":894,"Cost":678,"Date":"12/26/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":912,"Cost":759,"Date":"12/31/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":288,"Cost":163,"Date":"1/20/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":18,"Cost":15,"Date":"2/2/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":135,"Cost":116,"Date":"2/8/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":243,"Cost":130,"Date":"2/27/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":515,"Cost":275,"Date":"3/1/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":228,"Cost":168,"Date":"3/1/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":815,"Cost":428,"Date":"3/19/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":272,"Cost":169,"Date":"3/28/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":912,"Cost":566,"Date":"5/21/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":461,"Cost":288,"Date":"7/21/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":833,"Cost":674,"Date":"8/5/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":436,"Cost":223,"Date":"8/12/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":188,"Cost":124,"Date":"8/21/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":972,"Cost":580,"Date":"8/23/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":390,"Cost":301,"Date":"9/3/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":18,"Cost":14,"Date":"9/5/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":793,"Cost":522,"Date":"10/6/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":74,"Cost":61,"Date":"10/19/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":583,"Cost":430,"Date":"11/15/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":663,"Cost":589,"Date":"12/8/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":28,"Cost":18,"Date":"1/8/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":492,"Cost":394,"Date":"1/14/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":59,"Cost":45,"Date":"1/19/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":635,"Cost":531,"Date":"1/28/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":89,"Cost":73,"Date":"1/31/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":943,"Cost":789,"Date":"3/27/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":16,"Cost":11,"Date":"4/20/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":539,"Cost":305,"Date":"4/24/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":218,"Cost":172,"Date":"4/28/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":870,"Cost":640,"Date":"5/15/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":299,"Cost":154,"Date":"5/16/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":823,"Cost":525,"Date":"5/18/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":540,"Cost":495,"Date":"6/2/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":265,"Cost":183,"Date":"6/3/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":542,"Cost":274,"Date":"6/5/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":697,"Cost":621,"Date":"6/7/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":197,"Cost":146,"Date":"6/14/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":923,"Cost":734,"Date":"6/20/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":122,"Cost":83,"Date":"6/24/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":277,"Cost":139,"Date":"7/4/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":648,"Cost":406,"Date":"7/9/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":18,"Cost":17,"Date":"7/12/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":127,"Cost":83,"Date":"8/14/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":641,"Cost":385,"Date":"8/16/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":912,"Cost":608,"Date":"8/23/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":956,"Cost":842,"Date":"9/2/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":717,"Cost":409,"Date":"9/3/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":865,"Cost":544,"Date":"9/16/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":704,"Cost":504,"Date":"10/4/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":117,"Cost":63,"Date":"11/1/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":121,"Cost":63,"Date":"11/2/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":58,"Cost":40,"Date":"12/17/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":392,"Cost":327,"Date":"2/10/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":353,"Cost":263,"Date":"2/28/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":648,"Cost":584,"Date":"3/4/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":159,"Cost":122,"Date":"3/9/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":881,"Cost":501,"Date":"3/9/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":944,"Cost":863,"Date":"3/11/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":231,"Cost":153,"Date":"3/17/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":448,"Cost":271,"Date":"3/17/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":530,"Cost":453,"Date":"3/23/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":249,"Cost":208,"Date":"4/1/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":710,"Cost":411,"Date":"5/7/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":311,"Cost":253,"Date":"5/10/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":236,"Cost":213,"Date":"5/20/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":548,"Cost":319,"Date":"6/2/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":143,"Cost":77,"Date":"6/11/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":372,"Cost":288,"Date":"6/16/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":155,"Cost":89,"Date":"6/16/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":375,"Cost":234,"Date":"7/10/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":523,"Cost":461,"Date":"7/11/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":345,"Cost":269,"Date":"8/28/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":363,"Cost":210,"Date":"8/29/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":228,"Cost":162,"Date":"8/31/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":994,"Cost":603,"Date":"9/8/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":295,"Cost":197,"Date":"9/13/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":823,"Cost":657,"Date":"9/14/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":951,"Cost":583,"Date":"9/19/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":782,"Cost":514,"Date":"9/25/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":427,"Cost":216,"Date":"10/4/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":826,"Cost":498,"Date":"10/10/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":470,"Cost":413,"Date":"10/17/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":349,"Cost":311,"Date":"10/28/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":758,"Cost":489,"Date":"10/30/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":662,"Cost":371,"Date":"11/1/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":79,"Cost":71,"Date":"11/15/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":853,"Cost":491,"Date":"11/25/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":420,"Cost":211,"Date":"1/10/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":504,"Cost":398,"Date":"1/14/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":242,"Cost":153,"Date":"1/20/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":472,"Cost":323,"Date":"2/8/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":267,"Cost":225,"Date":"2/25/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":911,"Cost":781,"Date":"3/7/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":108,"Cost":75,"Date":"3/14/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":100,"Cost":59,"Date":"3/27/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":491,"Cost":268,"Date":"4/5/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":528,"Cost":466,"Date":"4/14/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":29,"Cost":18,"Date":"5/3/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":133,"Cost":121,"Date":"5/9/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":92,"Cost":62,"Date":"5/15/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":950,"Cost":675,"Date":"5/25/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":350,"Cost":276,"Date":"5/26/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":716,"Cost":359,"Date":"5/31/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":839,"Cost":500,"Date":"7/27/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":147,"Cost":99,"Date":"9/17/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":518,"Cost":292,"Date":"10/6/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":759,"Cost":588,"Date":"10/8/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":868,"Cost":667,"Date":"10/26/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":562,"Cost":500,"Date":"11/16/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":10,"Cost":8,"Date":"11/18/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"HM","Country":"USA","Sale":659,"Cost":486,"Date":"12/1/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":751,"Cost":552,"Date":"2/9/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":143,"Cost":116,"Date":"2/11/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":330,"Cost":243,"Date":"3/10/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":527,"Cost":361,"Date":"3/16/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":219,"Cost":125,"Date":"3/18/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":119,"Cost":60,"Date":"3/20/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":728,"Cost":378,"Date":"3/26/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":989,"Cost":844,"Date":"6/2/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":266,"Cost":230,"Date":"6/10/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":462,"Cost":297,"Date":"6/16/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":33,"Cost":31,"Date":"6/25/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":885,"Cost":637,"Date":"7/19/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":790,"Cost":446,"Date":"7/21/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":8,"Cost":4,"Date":"7/25/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":378,"Cost":321,"Date":"8/4/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":300,"Cost":204,"Date":"9/2/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":398,"Cost":364,"Date":"9/4/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":406,"Cost":332,"Date":"9/19/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":765,"Cost":553,"Date":"9/29/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":234,"Cost":155,"Date":"10/2/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":483,"Cost":417,"Date":"10/15/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":367,"Cost":200,"Date":"10/30/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":651,"Cost":473,"Date":"11/9/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":194,"Cost":167,"Date":"11/23/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":59,"Cost":49,"Date":"11/30/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":979,"Cost":672,"Date":"12/8/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":383,"Cost":249,"Date":"12/11/2018"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":525,"Cost":372,"Date":"1/15/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":42,"Cost":22,"Date":"1/24/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":804,"Cost":527,"Date":"2/3/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":874,"Cost":490,"Date":"2/4/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":727,"Cost":669,"Date":"3/9/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":435,"Cost":288,"Date":"3/12/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":688,"Cost":445,"Date":"4/19/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":155,"Cost":122,"Date":"5/3/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":582,"Cost":347,"Date":"5/4/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":991,"Cost":688,"Date":"6/8/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":133,"Cost":89,"Date":"6/26/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":231,"Cost":209,"Date":"7/4/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":526,"Cost":462,"Date":"7/13/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":403,"Cost":320,"Date":"8/8/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":347,"Cost":298,"Date":"8/26/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":576,"Cost":417,"Date":"9/2/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":22,"Cost":11,"Date":"9/29/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":752,"Cost":473,"Date":"10/12/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":402,"Cost":288,"Date":"11/2/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":709,"Cost":602,"Date":"11/4/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":485,"Cost":427,"Date":"11/7/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":428,"Cost":351,"Date":"12/1/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":461,"Cost":311,"Date":"12/4/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":671,"Cost":561,"Date":"12/7/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":263,"Cost":227,"Date":"12/18/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":706,"Cost":487,"Date":"12/20/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":501,"Cost":345,"Date":"12/20/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":885,"Cost":526,"Date":"12/21/2019"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":619,"Cost":537,"Date":"1/9/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":267,"Cost":197,"Date":"2/5/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":43,"Cost":27,"Date":"2/16/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":671,"Cost":423,"Date":"2/16/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":767,"Cost":569,"Date":"2/18/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":580,"Cost":525,"Date":"2/22/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":426,"Cost":343,"Date":"2/25/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":747,"Cost":428,"Date":"3/8/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":75,"Cost":53,"Date":"4/2/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":360,"Cost":219,"Date":"4/3/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":906,"Cost":850,"Date":"4/9/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":637,"Cost":389,"Date":"4/10/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":473,"Cost":422,"Date":"4/19/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":506,"Cost":362,"Date":"5/17/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":75,"Cost":43,"Date":"5/22/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":732,"Cost":441,"Date":"6/20/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":717,"Cost":679,"Date":"7/1/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":397,"Cost":290,"Date":"7/4/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":943,"Cost":759,"Date":"7/8/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":528,"Cost":429,"Date":"7/9/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":909,"Cost":857,"Date":"7/14/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":529,"Cost":372,"Date":"7/19/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":42,"Cost":25,"Date":"8/1/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":880,"Cost":627,"Date":"8/6/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":297,"Cost":233,"Date":"8/7/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":313,"Cost":190,"Date":"8/22/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":249,"Cost":157,"Date":"8/31/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":465,"Cost":368,"Date":"9/1/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":600,"Cost":346,"Date":"9/1/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":3,"Cost":3,"Date":"9/17/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":795,"Cost":607,"Date":"9/29/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":406,"Cost":336,"Date":"11/7/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":946,"Cost":623,"Date":"11/26/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":511,"Cost":286,"Date":"11/27/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":580,"Cost":530,"Date":"12/5/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":993,"Cost":655,"Date":"12/26/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":177,"Cost":137,"Date":"12/31/2020"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":969,"Cost":672,"Date":"1/20/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":227,"Cost":118,"Date":"2/2/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":654,"Cost":463,"Date":"2/8/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":203,"Cost":107,"Date":"2/27/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":283,"Cost":262,"Date":"3/1/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":455,"Cost":362,"Date":"3/1/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":722,"Cost":594,"Date":"3/19/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":380,"Cost":336,"Date":"3/28/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":199,"Cost":136,"Date":"5/21/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":545,"Cost":292,"Date":"7/21/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":716,"Cost":441,"Date":"8/5/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":473,"Cost":236,"Date":"8/12/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":139,"Cost":90,"Date":"8/21/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":383,"Cost":285,"Date":"8/23/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":981,"Cost":842,"Date":"9/3/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":845,"Cost":521,"Date":"9/5/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":67,"Cost":57,"Date":"10/6/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":381,"Cost":286,"Date":"10/19/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":523,"Cost":395,"Date":"11/15/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":95,"Cost":62,"Date":"12/8/2021"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":599,"Cost":334,"Date":"1/8/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":440,"Cost":295,"Date":"1/14/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":71,"Cost":50,"Date":"1/19/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":168,"Cost":109,"Date":"1/28/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":247,"Cost":130,"Date":"1/31/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":420,"Cost":290,"Date":"3/27/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":320,"Cost":186,"Date":"4/20/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":868,"Cost":753,"Date":"4/24/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":350,"Cost":285,"Date":"4/28/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":493,"Cost":293,"Date":"5/15/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":501,"Cost":298,"Date":"5/16/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":319,"Cost":250,"Date":"5/18/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":872,"Cost":753,"Date":"6/2/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":766,"Cost":599,"Date":"6/3/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":892,"Cost":730,"Date":"6/5/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":350,"Cost":298,"Date":"6/7/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":551,"Cost":380,"Date":"6/14/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":584,"Cost":414,"Date":"6/20/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":750,"Cost":683,"Date":"6/24/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":360,"Cost":206,"Date":"7/4/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":668,"Cost":406,"Date":"7/9/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":952,"Cost":794,"Date":"7/12/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":698,"Cost":569,"Date":"8/14/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":770,"Cost":399,"Date":"8/16/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":454,"Cost":292,"Date":"8/23/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":643,"Cost":473,"Date":"9/2/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":551,"Cost":502,"Date":"9/3/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":17,"Cost":13,"Date":"9/16/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":319,"Cost":161,"Date":"10/4/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":662,"Cost":476,"Date":"11/1/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":765,"Cost":683,"Date":"11/2/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":184,"Cost":97,"Date":"12/17/2022"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":425,"Cost":391,"Date":"2/10/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":679,"Cost":435,"Date":"2/28/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":302,"Cost":160,"Date":"3/4/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":472,"Cost":270,"Date":"3/9/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":510,"Cost":279,"Date":"3/9/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":425,"Cost":350,"Date":"3/11/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":262,"Cost":179,"Date":"3/17/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":375,"Cost":323,"Date":"3/17/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":865,"Cost":436,"Date":"3/23/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":392,"Cost":333,"Date":"4/1/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":106,"Cost":62,"Date":"5/7/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":703,"Cost":452,"Date":"5/10/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":389,"Cost":289,"Date":"5/20/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":371,"Cost":258,"Date":"6/2/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":870,"Cost":678,"Date":"6/11/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":559,"Cost":454,"Date":"6/16/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":327,"Cost":302,"Date":"6/16/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":200,"Cost":144,"Date":"7/10/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":586,"Cost":346,"Date":"7/11/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":627,"Cost":562,"Date":"8/28/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":95,"Cost":91,"Date":"8/29/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":807,"Cost":528,"Date":"8/31/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":123,"Cost":81,"Date":"9/8/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":784,"Cost":715,"Date":"9/13/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":539,"Cost":494,"Date":"9/14/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":664,"Cost":600,"Date":"9/19/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":316,"Cost":171,"Date":"9/25/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":496,"Cost":343,"Date":"10/4/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":969,"Cost":651,"Date":"10/10/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":679,"Cost":502,"Date":"10/17/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":87,"Cost":82,"Date":"10/28/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":94,"Cost":83,"Date":"10/30/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":937,"Cost":882,"Date":"11/1/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":968,"Cost":520,"Date":"11/15/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":358,"Cost":206,"Date":"11/25/2023"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":931,"Cost":499,"Date":"1/10/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":447,"Cost":384,"Date":"1/14/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":25,"Cost":13,"Date":"1/20/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":400,"Cost":232,"Date":"2/8/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":36,"Cost":28,"Date":"2/25/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":403,"Cost":255,"Date":"3/7/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":332,"Cost":228,"Date":"3/14/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":154,"Cost":98,"Date":"3/27/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":715,"Cost":474,"Date":"4/5/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":912,"Cost":784,"Date":"4/14/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":559,"Cost":493,"Date":"5/3/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":63,"Cost":41,"Date":"5/9/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":213,"Cost":192,"Date":"5/15/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":330,"Cost":235,"Date":"5/25/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":418,"Cost":239,"Date":"5/26/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":98,"Cost":56,"Date":"5/31/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":478,"Cost":252,"Date":"7/27/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":426,"Cost":230,"Date":"9/17/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":303,"Cost":263,"Date":"10/6/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":184,"Cost":94,"Date":"10/8/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":677,"Cost":631,"Date":"10/26/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":228,"Cost":138,"Date":"11/16/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":212,"Cost":142,"Date":"11/18/2024"},{"Store":"Woodbridge Center, Woodbridge, NJ","Brand":"Nova","Country":"USA","Sale":505,"Cost":298,"Date":"12/1/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":970,"Cost":637,"Date":"2/9/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":800,"Cost":753,"Date":"2/11/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":125,"Cost":103,"Date":"3/10/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":521,"Cost":262,"Date":"3/16/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":704,"Cost":646,"Date":"3/18/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":64,"Cost":34,"Date":"3/20/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":972,"Cost":657,"Date":"3/26/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":986,"Cost":936,"Date":"6/2/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":793,"Cost":639,"Date":"6/10/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":1000,"Cost":744,"Date":"6/16/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":182,"Cost":93,"Date":"6/25/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":851,"Cost":439,"Date":"7/19/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":471,"Cost":313,"Date":"7/21/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":55,"Cost":32,"Date":"7/25/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":59,"Cost":36,"Date":"8/4/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":448,"Cost":387,"Date":"9/2/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":10,"Cost":7,"Date":"9/4/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":320,"Cost":258,"Date":"9/19/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":259,"Cost":146,"Date":"9/29/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":437,"Cost":341,"Date":"10/2/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":315,"Cost":206,"Date":"10/15/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":734,"Cost":681,"Date":"10/30/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":538,"Cost":360,"Date":"11/9/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":700,"Cost":357,"Date":"11/23/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":878,"Cost":612,"Date":"11/30/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":83,"Cost":75,"Date":"12/8/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":69,"Cost":38,"Date":"12/11/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":400,"Cost":344,"Date":"1/15/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":391,"Cost":212,"Date":"1/24/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":340,"Cost":216,"Date":"2/3/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":135,"Cost":89,"Date":"2/4/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":114,"Cost":101,"Date":"3/9/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":688,"Cost":554,"Date":"3/12/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":591,"Cost":453,"Date":"4/19/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":272,"Cost":249,"Date":"5/3/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":204,"Cost":129,"Date":"5/4/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":22,"Cost":21,"Date":"6/8/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":706,"Cost":657,"Date":"6/26/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":413,"Cost":317,"Date":"7/4/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":876,"Cost":579,"Date":"7/13/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":269,"Cost":155,"Date":"8/8/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":542,"Cost":489,"Date":"8/26/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":826,"Cost":529,"Date":"9/2/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":961,"Cost":774,"Date":"9/29/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":567,"Cost":393,"Date":"10/12/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":727,"Cost":674,"Date":"11/2/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":684,"Cost":490,"Date":"11/4/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":80,"Cost":62,"Date":"11/7/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":222,"Cost":174,"Date":"12/1/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":53,"Cost":32,"Date":"12/4/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":381,"Cost":281,"Date":"12/7/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":380,"Cost":326,"Date":"12/18/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":780,"Cost":396,"Date":"12/20/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":962,"Cost":690,"Date":"12/20/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":79,"Cost":64,"Date":"12/21/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":653,"Cost":395,"Date":"1/9/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":97,"Cost":85,"Date":"2/5/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":385,"Cost":330,"Date":"2/16/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":179,"Cost":106,"Date":"2/16/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":44,"Cost":24,"Date":"2/18/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":291,"Cost":244,"Date":"2/22/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":309,"Cost":211,"Date":"2/25/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":351,"Cost":216,"Date":"3/8/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":249,"Cost":168,"Date":"4/2/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":438,"Cost":345,"Date":"4/3/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":804,"Cost":698,"Date":"4/9/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":185,"Cost":121,"Date":"4/10/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":186,"Cost":102,"Date":"4/19/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":623,"Cost":342,"Date":"5/17/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":78,"Cost":47,"Date":"5/22/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":604,"Cost":445,"Date":"6/20/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":975,"Cost":848,"Date":"7/1/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":828,"Cost":638,"Date":"7/4/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":891,"Cost":451,"Date":"7/8/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":205,"Cost":184,"Date":"7/9/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":589,"Cost":411,"Date":"7/14/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":533,"Cost":470,"Date":"7/19/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":649,"Cost":337,"Date":"8/1/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":826,"Cost":642,"Date":"8/6/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":66,"Cost":33,"Date":"8/7/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":153,"Cost":81,"Date":"8/22/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":89,"Cost":77,"Date":"8/31/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":778,"Cost":663,"Date":"9/1/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":201,"Cost":153,"Date":"9/1/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":923,"Cost":506,"Date":"9/17/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":578,"Cost":356,"Date":"9/29/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":877,"Cost":735,"Date":"11/7/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":798,"Cost":569,"Date":"11/26/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":904,"Cost":856,"Date":"11/27/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":973,"Cost":581,"Date":"12/5/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":305,"Cost":203,"Date":"12/26/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":122,"Cost":101,"Date":"12/31/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":903,"Cost":736,"Date":"1/20/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":374,"Cost":283,"Date":"2/2/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":285,"Cost":194,"Date":"2/8/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":261,"Cost":246,"Date":"2/27/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":173,"Cost":95,"Date":"3/1/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":751,"Cost":467,"Date":"3/1/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":129,"Cost":65,"Date":"3/19/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":782,"Cost":510,"Date":"3/28/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":595,"Cost":426,"Date":"5/21/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":647,"Cost":583,"Date":"7/21/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":284,"Cost":260,"Date":"8/5/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":667,"Cost":531,"Date":"8/12/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":19,"Cost":15,"Date":"8/21/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":175,"Cost":137,"Date":"8/23/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":658,"Cost":515,"Date":"9/3/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":178,"Cost":130,"Date":"9/5/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":294,"Cost":174,"Date":"10/6/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":761,"Cost":424,"Date":"10/19/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":939,"Cost":832,"Date":"11/15/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":657,"Cost":601,"Date":"12/8/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":11,"Cost":7,"Date":"1/8/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":857,"Cost":632,"Date":"1/14/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":331,"Cost":306,"Date":"1/19/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":952,"Cost":494,"Date":"1/28/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":358,"Cost":273,"Date":"1/31/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":352,"Cost":292,"Date":"3/27/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":39,"Cost":24,"Date":"4/20/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":94,"Cost":52,"Date":"4/24/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":362,"Cost":292,"Date":"4/28/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":54,"Cost":33,"Date":"5/15/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":458,"Cost":256,"Date":"5/16/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":126,"Cost":99,"Date":"5/18/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":953,"Cost":511,"Date":"6/2/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":699,"Cost":545,"Date":"6/3/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":356,"Cost":180,"Date":"6/5/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":790,"Cost":703,"Date":"6/7/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":940,"Cost":520,"Date":"6/14/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":959,"Cost":663,"Date":"6/20/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":658,"Cost":480,"Date":"6/24/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":498,"Cost":361,"Date":"7/4/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":592,"Cost":343,"Date":"7/9/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":523,"Cost":353,"Date":"7/12/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":542,"Cost":459,"Date":"8/14/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":493,"Cost":303,"Date":"8/16/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":611,"Cost":349,"Date":"8/23/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":784,"Cost":716,"Date":"9/2/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":675,"Cost":569,"Date":"9/3/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":905,"Cost":561,"Date":"9/16/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":826,"Cost":708,"Date":"10/4/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":627,"Cost":503,"Date":"11/1/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":825,"Cost":587,"Date":"11/2/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":169,"Cost":88,"Date":"12/17/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":62,"Cost":39,"Date":"2/10/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":89,"Cost":82,"Date":"2/28/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":198,"Cost":140,"Date":"3/4/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":749,"Cost":676,"Date":"3/9/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":668,"Cost":472,"Date":"3/9/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":174,"Cost":124,"Date":"3/11/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":795,"Cost":689,"Date":"3/17/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":973,"Cost":550,"Date":"3/17/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":297,"Cost":217,"Date":"3/23/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":696,"Cost":605,"Date":"4/1/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":217,"Cost":189,"Date":"5/7/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":103,"Cost":79,"Date":"5/10/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":836,"Cost":518,"Date":"5/20/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":624,"Cost":435,"Date":"6/2/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":32,"Cost":28,"Date":"6/11/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":798,"Cost":686,"Date":"6/16/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":120,"Cost":101,"Date":"6/16/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":98,"Cost":74,"Date":"7/10/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":228,"Cost":193,"Date":"7/11/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":949,"Cost":494,"Date":"8/28/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":764,"Cost":650,"Date":"8/29/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":975,"Cost":902,"Date":"8/31/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":467,"Cost":373,"Date":"9/8/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":161,"Cost":116,"Date":"9/13/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":250,"Cost":226,"Date":"9/14/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":818,"Cost":765,"Date":"9/19/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":22,"Cost":16,"Date":"9/25/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":574,"Cost":447,"Date":"10/4/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":428,"Cost":220,"Date":"10/10/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":4,"Cost":2,"Date":"10/17/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":80,"Cost":73,"Date":"10/28/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":108,"Cost":55,"Date":"10/30/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":933,"Cost":763,"Date":"11/1/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":913,"Cost":583,"Date":"11/15/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":143,"Cost":114,"Date":"11/25/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":725,"Cost":423,"Date":"1/10/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":164,"Cost":122,"Date":"1/14/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":278,"Cost":237,"Date":"1/20/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":270,"Cost":178,"Date":"2/8/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":71,"Cost":61,"Date":"2/25/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":394,"Cost":197,"Date":"3/7/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":435,"Cost":396,"Date":"3/14/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":640,"Cost":356,"Date":"3/27/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":41,"Cost":27,"Date":"4/5/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":958,"Cost":495,"Date":"4/14/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":883,"Cost":648,"Date":"5/3/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":782,"Cost":668,"Date":"5/9/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":81,"Cost":53,"Date":"5/15/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":478,"Cost":303,"Date":"5/25/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":614,"Cost":509,"Date":"5/26/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":754,"Cost":514,"Date":"5/31/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":652,"Cost":605,"Date":"7/27/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":348,"Cost":194,"Date":"9/17/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":147,"Cost":87,"Date":"10/6/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":521,"Cost":491,"Date":"10/8/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":376,"Cost":242,"Date":"10/26/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":103,"Cost":66,"Date":"11/16/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":224,"Cost":120,"Date":"11/18/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":599,"Cost":440,"Date":"12/1/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":382,"Cost":311,"Date":"2/9/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":235,"Cost":181,"Date":"2/11/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":927,"Cost":570,"Date":"3/10/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":518,"Cost":271,"Date":"3/16/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":915,"Cost":632,"Date":"3/18/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":397,"Cost":244,"Date":"3/20/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":7,"Cost":5,"Date":"3/26/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":479,"Cost":289,"Date":"6/2/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":763,"Cost":675,"Date":"6/10/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":43,"Cost":27,"Date":"6/16/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":255,"Cost":207,"Date":"6/25/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":778,"Cost":434,"Date":"7/19/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":367,"Cost":273,"Date":"7/21/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":252,"Cost":176,"Date":"7/25/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":340,"Cost":231,"Date":"8/4/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":133,"Cost":84,"Date":"9/2/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":534,"Cost":294,"Date":"9/4/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":551,"Cost":409,"Date":"9/19/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":338,"Cost":264,"Date":"9/29/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":774,"Cost":681,"Date":"10/2/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":296,"Cost":267,"Date":"10/15/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":398,"Cost":346,"Date":"10/30/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":276,"Cost":203,"Date":"11/9/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":886,"Cost":737,"Date":"11/23/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":585,"Cost":372,"Date":"11/30/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":459,"Cost":350,"Date":"12/8/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":747,"Cost":387,"Date":"12/11/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":382,"Cost":212,"Date":"1/15/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":558,"Cost":329,"Date":"1/24/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":871,"Cost":442,"Date":"2/3/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":772,"Cost":462,"Date":"2/4/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":583,"Cost":344,"Date":"3/9/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":160,"Cost":120,"Date":"3/12/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":985,"Cost":723,"Date":"4/19/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":228,"Cost":210,"Date":"5/3/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":344,"Cost":274,"Date":"5/4/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":254,"Cost":228,"Date":"6/8/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":37,"Cost":26,"Date":"6/26/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":443,"Cost":406,"Date":"7/4/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":748,"Cost":460,"Date":"7/13/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":178,"Cost":115,"Date":"8/8/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":608,"Cost":314,"Date":"8/26/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":556,"Cost":286,"Date":"9/2/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":34,"Cost":17,"Date":"9/29/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":125,"Cost":87,"Date":"10/12/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":359,"Cost":326,"Date":"11/2/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":371,"Cost":208,"Date":"11/4/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":965,"Cost":907,"Date":"11/7/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":545,"Cost":453,"Date":"12/1/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":468,"Cost":384,"Date":"12/4/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":123,"Cost":89,"Date":"12/7/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":394,"Cost":338,"Date":"12/18/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":870,"Cost":654,"Date":"12/20/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":307,"Cost":164,"Date":"12/20/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":357,"Cost":188,"Date":"12/21/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":613,"Cost":489,"Date":"1/9/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":201,"Cost":179,"Date":"2/5/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":634,"Cost":347,"Date":"2/16/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":730,"Cost":683,"Date":"2/16/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":822,"Cost":722,"Date":"2/18/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":582,"Cost":496,"Date":"2/22/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":206,"Cost":107,"Date":"2/25/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":200,"Cost":111,"Date":"3/8/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":723,"Cost":551,"Date":"4/2/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":985,"Cost":657,"Date":"4/3/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":321,"Cost":219,"Date":"4/9/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":244,"Cost":151,"Date":"4/10/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":537,"Cost":428,"Date":"4/19/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":340,"Cost":257,"Date":"5/17/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":325,"Cost":266,"Date":"5/22/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":82,"Cost":75,"Date":"6/20/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":256,"Cost":147,"Date":"7/1/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":736,"Cost":423,"Date":"7/4/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":309,"Cost":291,"Date":"7/8/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":416,"Cost":305,"Date":"7/9/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":984,"Cost":826,"Date":"7/14/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":108,"Cost":70,"Date":"7/19/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":791,"Cost":455,"Date":"8/1/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":914,"Cost":464,"Date":"8/6/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":654,"Cost":544,"Date":"8/7/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":152,"Cost":114,"Date":"8/22/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":733,"Cost":381,"Date":"8/31/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":581,"Cost":396,"Date":"9/1/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":487,"Cost":306,"Date":"9/1/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":895,"Cost":636,"Date":"9/17/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":51,"Cost":31,"Date":"9/29/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":355,"Cost":267,"Date":"11/7/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":221,"Cost":143,"Date":"11/26/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":152,"Cost":134,"Date":"11/27/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":526,"Cost":439,"Date":"12/5/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":254,"Cost":154,"Date":"12/26/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":703,"Cost":364,"Date":"12/31/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":928,"Cost":540,"Date":"1/20/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":76,"Cost":49,"Date":"2/2/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":659,"Cost":533,"Date":"2/8/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":397,"Cost":361,"Date":"2/27/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":990,"Cost":669,"Date":"3/1/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":979,"Cost":615,"Date":"3/1/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":441,"Cost":379,"Date":"3/19/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":194,"Cost":138,"Date":"3/28/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":879,"Cost":746,"Date":"5/21/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":500,"Cost":335,"Date":"7/21/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":577,"Cost":534,"Date":"8/5/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":431,"Cost":218,"Date":"8/12/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":648,"Cost":482,"Date":"8/21/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":307,"Cost":260,"Date":"8/23/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":650,"Cost":464,"Date":"9/3/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":139,"Cost":115,"Date":"9/5/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":480,"Cost":338,"Date":"10/6/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":597,"Cost":567,"Date":"10/19/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":276,"Cost":182,"Date":"11/15/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":309,"Cost":218,"Date":"12/8/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":413,"Cost":312,"Date":"1/8/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":577,"Cost":475,"Date":"1/14/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":219,"Cost":127,"Date":"1/19/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":789,"Cost":572,"Date":"1/28/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":817,"Cost":442,"Date":"1/31/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":477,"Cost":311,"Date":"3/27/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":247,"Cost":123,"Date":"4/20/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":918,"Cost":629,"Date":"4/24/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":247,"Cost":168,"Date":"4/28/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":935,"Cost":658,"Date":"5/15/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":924,"Cost":561,"Date":"5/16/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":389,"Cost":366,"Date":"5/18/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":219,"Cost":200,"Date":"6/2/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":282,"Cost":258,"Date":"6/3/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":598,"Cost":324,"Date":"6/5/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":687,"Cost":554,"Date":"6/7/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":691,"Cost":414,"Date":"6/14/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":884,"Cost":746,"Date":"6/20/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":896,"Cost":745,"Date":"6/24/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":608,"Cost":369,"Date":"7/4/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":750,"Cost":562,"Date":"7/9/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":162,"Cost":145,"Date":"7/12/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":526,"Cost":474,"Date":"8/14/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":736,"Cost":479,"Date":"8/16/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":100,"Cost":89,"Date":"8/23/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":900,"Cost":696,"Date":"9/2/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":467,"Cost":397,"Date":"9/3/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":454,"Cost":339,"Date":"9/16/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":330,"Cost":170,"Date":"10/4/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":42,"Cost":40,"Date":"11/1/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":638,"Cost":458,"Date":"11/2/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":205,"Cost":124,"Date":"12/17/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":932,"Cost":828,"Date":"2/10/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":299,"Cost":162,"Date":"2/28/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":388,"Cost":355,"Date":"3/4/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":580,"Cost":548,"Date":"3/9/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":238,"Cost":141,"Date":"3/9/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":516,"Cost":370,"Date":"3/11/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":633,"Cost":521,"Date":"3/17/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":4,"Cost":2,"Date":"3/17/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":602,"Cost":381,"Date":"3/23/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":811,"Cost":724,"Date":"4/1/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":595,"Cost":387,"Date":"5/7/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":309,"Cost":248,"Date":"5/10/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":921,"Cost":843,"Date":"5/20/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":989,"Cost":527,"Date":"6/2/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":364,"Cost":210,"Date":"6/11/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":380,"Cost":356,"Date":"6/16/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":497,"Cost":414,"Date":"6/16/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":843,"Cost":472,"Date":"7/10/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":723,"Cost":420,"Date":"7/11/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":127,"Cost":91,"Date":"8/28/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":799,"Cost":527,"Date":"8/29/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":267,"Cost":155,"Date":"8/31/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":462,"Cost":370,"Date":"9/8/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":7,"Cost":6,"Date":"9/13/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":791,"Cost":449,"Date":"9/14/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":685,"Cost":480,"Date":"9/19/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":864,"Cost":466,"Date":"9/25/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":300,"Cost":242,"Date":"10/4/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":482,"Cost":440,"Date":"10/10/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":81,"Cost":62,"Date":"10/17/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":827,"Cost":512,"Date":"10/28/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":162,"Cost":81,"Date":"10/30/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":737,"Cost":457,"Date":"11/1/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":932,"Cost":711,"Date":"11/15/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":299,"Cost":266,"Date":"11/25/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":930,"Cost":654,"Date":"1/10/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":921,"Cost":629,"Date":"1/14/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":80,"Cost":47,"Date":"1/20/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":417,"Cost":241,"Date":"2/8/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":311,"Cost":176,"Date":"2/25/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":343,"Cost":225,"Date":"3/7/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":77,"Cost":38,"Date":"3/14/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":560,"Cost":374,"Date":"3/27/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":409,"Cost":286,"Date":"4/5/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":576,"Cost":391,"Date":"4/14/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":999,"Cost":606,"Date":"5/3/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":456,"Cost":381,"Date":"5/9/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":144,"Cost":122,"Date":"5/15/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":665,"Cost":619,"Date":"5/25/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":897,"Cost":523,"Date":"5/26/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":500,"Cost":318,"Date":"5/31/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":742,"Cost":589,"Date":"7/27/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":674,"Cost":571,"Date":"9/17/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":820,"Cost":705,"Date":"10/6/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":521,"Cost":270,"Date":"10/8/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":114,"Cost":94,"Date":"10/26/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":566,"Cost":493,"Date":"11/16/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":693,"Cost":470,"Date":"11/18/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"HM Home","Country":"USA","Sale":923,"Cost":640,"Date":"12/1/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":860,"Cost":486,"Date":"2/9/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":441,"Cost":375,"Date":"2/11/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":554,"Cost":424,"Date":"3/10/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":225,"Cost":154,"Date":"3/16/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":767,"Cost":497,"Date":"3/18/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":961,"Cost":853,"Date":"3/20/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":340,"Cost":204,"Date":"3/26/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":112,"Cost":72,"Date":"6/2/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":827,"Cost":543,"Date":"6/10/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":663,"Cost":516,"Date":"6/16/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":926,"Cost":816,"Date":"6/25/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":991,"Cost":645,"Date":"7/19/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":429,"Cost":388,"Date":"7/21/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":562,"Cost":290,"Date":"7/25/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":183,"Cost":157,"Date":"8/4/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":866,"Cost":519,"Date":"9/2/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":511,"Cost":277,"Date":"9/4/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":526,"Cost":455,"Date":"9/19/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":768,"Cost":384,"Date":"9/29/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":670,"Cost":392,"Date":"10/2/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":466,"Cost":437,"Date":"10/15/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":152,"Cost":135,"Date":"10/30/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":534,"Cost":315,"Date":"11/9/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":338,"Cost":275,"Date":"11/23/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":50,"Cost":36,"Date":"11/30/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":727,"Cost":461,"Date":"12/8/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":383,"Cost":216,"Date":"12/11/2018"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":103,"Cost":69,"Date":"1/15/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":684,"Cost":542,"Date":"1/24/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":612,"Cost":321,"Date":"2/3/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":433,"Cost":261,"Date":"2/4/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":488,"Cost":436,"Date":"3/9/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":888,"Cost":638,"Date":"3/12/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":105,"Cost":56,"Date":"4/19/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":18,"Cost":9,"Date":"5/3/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":676,"Cost":498,"Date":"5/4/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":192,"Cost":153,"Date":"6/8/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":84,"Cost":67,"Date":"6/26/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":76,"Cost":42,"Date":"7/4/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":38,"Cost":22,"Date":"7/13/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":83,"Cost":55,"Date":"8/8/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":405,"Cost":328,"Date":"8/26/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":875,"Cost":751,"Date":"9/2/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":591,"Cost":457,"Date":"9/29/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":785,"Cost":463,"Date":"10/12/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":996,"Cost":636,"Date":"11/2/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":569,"Cost":454,"Date":"11/4/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":656,"Cost":334,"Date":"11/7/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":130,"Cost":98,"Date":"12/1/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":882,"Cost":643,"Date":"12/4/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":269,"Cost":146,"Date":"12/7/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":251,"Cost":129,"Date":"12/18/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":229,"Cost":201,"Date":"12/20/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":429,"Cost":275,"Date":"12/20/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":733,"Cost":587,"Date":"12/21/2019"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":300,"Cost":256,"Date":"1/9/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":112,"Cost":94,"Date":"2/5/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":355,"Cost":205,"Date":"2/16/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":38,"Cost":30,"Date":"2/16/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":997,"Cost":521,"Date":"2/18/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":405,"Cost":262,"Date":"2/22/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":930,"Cost":784,"Date":"2/25/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":112,"Cost":103,"Date":"3/8/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":280,"Cost":259,"Date":"4/2/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":223,"Cost":137,"Date":"4/3/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":810,"Cost":602,"Date":"4/9/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":626,"Cost":449,"Date":"4/10/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":11,"Cost":8,"Date":"4/19/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":818,"Cost":604,"Date":"5/17/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":121,"Cost":74,"Date":"5/22/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":577,"Cost":433,"Date":"6/20/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":504,"Cost":300,"Date":"7/1/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":326,"Cost":170,"Date":"7/4/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":87,"Cost":76,"Date":"7/8/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":667,"Cost":601,"Date":"7/9/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":948,"Cost":721,"Date":"7/14/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":624,"Cost":468,"Date":"7/19/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":974,"Cost":897,"Date":"8/1/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":249,"Cost":228,"Date":"8/6/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":178,"Cost":153,"Date":"8/7/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":725,"Cost":623,"Date":"8/22/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":856,"Cost":566,"Date":"8/31/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":427,"Cost":294,"Date":"9/1/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":9,"Cost":6,"Date":"9/1/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":46,"Cost":25,"Date":"9/17/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":704,"Cost":517,"Date":"9/29/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":342,"Cost":179,"Date":"11/7/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":932,"Cost":483,"Date":"11/26/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":115,"Cost":104,"Date":"11/27/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":755,"Cost":504,"Date":"12/5/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":84,"Cost":49,"Date":"12/26/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":117,"Cost":75,"Date":"12/31/2020"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":738,"Cost":675,"Date":"1/20/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":413,"Cost":368,"Date":"2/2/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":790,"Cost":425,"Date":"2/8/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":284,"Cost":242,"Date":"2/27/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":902,"Cost":586,"Date":"3/1/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":491,"Cost":445,"Date":"3/1/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":124,"Cost":93,"Date":"3/19/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":163,"Cost":148,"Date":"3/28/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":813,"Cost":650,"Date":"5/21/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":357,"Cost":227,"Date":"7/21/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":239,"Cost":205,"Date":"8/5/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":515,"Cost":326,"Date":"8/12/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":883,"Cost":711,"Date":"8/21/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":480,"Cost":393,"Date":"8/23/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":716,"Cost":679,"Date":"9/3/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":540,"Cost":492,"Date":"9/5/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":379,"Cost":327,"Date":"10/6/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":887,"Cost":594,"Date":"10/19/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":503,"Cost":460,"Date":"11/15/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":894,"Cost":551,"Date":"12/8/2021"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":439,"Cost":269,"Date":"1/8/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":910,"Cost":471,"Date":"1/14/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":992,"Cost":658,"Date":"1/19/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":460,"Cost":284,"Date":"1/28/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":190,"Cost":178,"Date":"1/31/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":365,"Cost":252,"Date":"3/27/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":332,"Cost":256,"Date":"4/20/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":750,"Cost":511,"Date":"4/24/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":127,"Cost":107,"Date":"4/28/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":197,"Cost":169,"Date":"5/15/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":341,"Cost":271,"Date":"5/16/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":383,"Cost":316,"Date":"5/18/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":139,"Cost":106,"Date":"6/2/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":976,"Cost":632,"Date":"6/3/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":823,"Cost":476,"Date":"6/5/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":369,"Cost":252,"Date":"6/7/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":573,"Cost":384,"Date":"6/14/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":964,"Cost":690,"Date":"6/20/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":981,"Cost":558,"Date":"6/24/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":709,"Cost":540,"Date":"7/4/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":206,"Cost":115,"Date":"7/9/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":636,"Cost":385,"Date":"7/12/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":159,"Cost":149,"Date":"8/14/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":60,"Cost":53,"Date":"8/16/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":429,"Cost":222,"Date":"8/23/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":513,"Cost":470,"Date":"9/2/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":602,"Cost":539,"Date":"9/3/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":260,"Cost":184,"Date":"9/16/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":392,"Cost":330,"Date":"10/4/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":738,"Cost":550,"Date":"11/1/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":852,"Cost":588,"Date":"11/2/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":861,"Cost":505,"Date":"12/17/2022"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":126,"Cost":99,"Date":"2/10/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":854,"Cost":756,"Date":"2/28/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":607,"Cost":416,"Date":"3/4/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":865,"Cost":526,"Date":"3/9/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":279,"Cost":146,"Date":"3/9/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":815,"Cost":628,"Date":"3/11/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":768,"Cost":532,"Date":"3/17/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":301,"Cost":240,"Date":"3/17/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":544,"Cost":503,"Date":"3/23/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":874,"Cost":671,"Date":"4/1/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":732,"Cost":504,"Date":"5/7/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":151,"Cost":143,"Date":"5/10/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":866,"Cost":646,"Date":"5/20/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":215,"Cost":160,"Date":"6/2/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":707,"Cost":403,"Date":"6/11/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":449,"Cost":260,"Date":"6/16/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":442,"Cost":367,"Date":"6/16/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":80,"Cost":62,"Date":"7/10/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":897,"Cost":795,"Date":"7/11/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":508,"Cost":437,"Date":"8/28/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":338,"Cost":278,"Date":"8/29/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":959,"Cost":803,"Date":"8/31/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":359,"Cost":192,"Date":"9/8/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":43,"Cost":22,"Date":"9/13/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":168,"Cost":123,"Date":"9/14/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":944,"Cost":472,"Date":"9/19/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":738,"Cost":649,"Date":"9/25/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":9,"Cost":8,"Date":"10/4/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":271,"Cost":180,"Date":"10/10/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":106,"Cost":78,"Date":"10/17/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":816,"Cost":686,"Date":"10/28/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":411,"Cost":362,"Date":"10/30/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":859,"Cost":532,"Date":"11/1/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":722,"Cost":421,"Date":"11/15/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":898,"Cost":564,"Date":"11/25/2023"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":103,"Cost":75,"Date":"1/10/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":774,"Cost":672,"Date":"1/14/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":244,"Cost":208,"Date":"1/20/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":93,"Cost":76,"Date":"2/8/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":390,"Cost":206,"Date":"2/25/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":450,"Cost":375,"Date":"3/7/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":383,"Cost":229,"Date":"3/14/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":929,"Cost":536,"Date":"3/27/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":947,"Cost":553,"Date":"4/5/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":836,"Cost":725,"Date":"4/14/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":920,"Cost":788,"Date":"5/3/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":76,"Cost":62,"Date":"5/9/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":930,"Cost":540,"Date":"5/15/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":951,"Cost":853,"Date":"5/25/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":832,"Cost":433,"Date":"5/26/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":759,"Cost":631,"Date":"5/31/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":167,"Cost":134,"Date":"7/27/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":451,"Cost":356,"Date":"9/17/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":906,"Cost":785,"Date":"10/6/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":410,"Cost":292,"Date":"10/8/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":507,"Cost":351,"Date":"10/26/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":707,"Cost":364,"Date":"11/16/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":475,"Cost":315,"Date":"11/18/2024"},{"Store":"Oakbrook Center, Oak Brook, IL","Brand":"COS","Country":"USA","Sale":788,"Cost":574,"Date":"12/1/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":486,"Cost":378,"Date":"2/9/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":241,"Cost":126,"Date":"2/11/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":467,"Cost":234,"Date":"3/10/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":974,"Cost":822,"Date":"3/16/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":358,"Cost":207,"Date":"3/18/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":774,"Cost":447,"Date":"3/20/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":239,"Cost":175,"Date":"3/26/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":193,"Cost":164,"Date":"6/2/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":594,"Cost":343,"Date":"6/10/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":18,"Cost":10,"Date":"6/16/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":19,"Cost":13,"Date":"6/25/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":82,"Cost":49,"Date":"7/19/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":667,"Cost":589,"Date":"7/21/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":50,"Cost":31,"Date":"7/25/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":546,"Cost":410,"Date":"8/4/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":986,"Cost":514,"Date":"9/2/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":698,"Cost":577,"Date":"9/4/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":189,"Cost":145,"Date":"9/19/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":215,"Cost":115,"Date":"9/29/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":138,"Cost":69,"Date":"10/2/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":854,"Cost":668,"Date":"10/15/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":94,"Cost":62,"Date":"10/30/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":17,"Cost":14,"Date":"11/9/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":344,"Cost":326,"Date":"11/23/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":995,"Cost":941,"Date":"11/30/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":407,"Cost":217,"Date":"12/8/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":537,"Cost":488,"Date":"12/11/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":764,"Cost":479,"Date":"1/15/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":907,"Cost":576,"Date":"1/24/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":269,"Cost":182,"Date":"2/3/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":431,"Cost":391,"Date":"2/4/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":584,"Cost":463,"Date":"3/9/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":854,"Cost":600,"Date":"3/12/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":470,"Cost":359,"Date":"4/19/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":928,"Cost":726,"Date":"5/3/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":747,"Cost":523,"Date":"5/4/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":939,"Cost":681,"Date":"6/8/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":275,"Cost":174,"Date":"6/26/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":656,"Cost":426,"Date":"7/4/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":518,"Cost":460,"Date":"7/13/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":999,"Cost":690,"Date":"8/8/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":544,"Cost":505,"Date":"8/26/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":104,"Cost":61,"Date":"9/2/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":980,"Cost":658,"Date":"9/29/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":896,"Cost":819,"Date":"10/12/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":870,"Cost":569,"Date":"11/2/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":706,"Cost":573,"Date":"11/4/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":896,"Cost":820,"Date":"11/7/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":550,"Cost":500,"Date":"12/1/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":853,"Cost":678,"Date":"12/4/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":57,"Cost":30,"Date":"12/7/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":97,"Cost":62,"Date":"12/18/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":530,"Cost":287,"Date":"12/20/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":697,"Cost":562,"Date":"12/20/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":10,"Cost":9,"Date":"12/21/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":436,"Cost":288,"Date":"1/9/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":834,"Cost":427,"Date":"2/5/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":954,"Cost":781,"Date":"2/16/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":674,"Cost":569,"Date":"2/16/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":681,"Cost":459,"Date":"2/18/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":171,"Cost":116,"Date":"2/22/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":934,"Cost":870,"Date":"2/25/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":164,"Cost":154,"Date":"3/8/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":573,"Cost":428,"Date":"4/2/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":766,"Cost":549,"Date":"4/3/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":86,"Cost":47,"Date":"4/9/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":348,"Cost":207,"Date":"4/10/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":693,"Cost":490,"Date":"4/19/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":188,"Cost":134,"Date":"5/17/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":994,"Cost":789,"Date":"5/22/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":40,"Cost":32,"Date":"6/20/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":336,"Cost":228,"Date":"7/1/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":718,"Cost":630,"Date":"7/4/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":181,"Cost":165,"Date":"7/8/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":955,"Cost":640,"Date":"7/9/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":344,"Cost":181,"Date":"7/14/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":22,"Cost":13,"Date":"7/19/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":963,"Cost":580,"Date":"8/1/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":92,"Cost":48,"Date":"8/6/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":805,"Cost":638,"Date":"8/7/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":861,"Cost":680,"Date":"8/22/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":839,"Cost":696,"Date":"8/31/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":348,"Cost":240,"Date":"9/1/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":251,"Cost":128,"Date":"9/1/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":151,"Cost":111,"Date":"9/17/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":738,"Cost":633,"Date":"9/29/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":474,"Cost":254,"Date":"11/7/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":791,"Cost":490,"Date":"11/26/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":670,"Cost":585,"Date":"11/27/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":878,"Cost":550,"Date":"12/5/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":614,"Cost":478,"Date":"12/26/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":827,"Cost":458,"Date":"12/31/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":638,"Cost":338,"Date":"1/20/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":430,"Cost":381,"Date":"2/2/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":207,"Cost":140,"Date":"2/8/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":483,"Cost":395,"Date":"2/27/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":41,"Cost":31,"Date":"3/1/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":167,"Cost":85,"Date":"3/1/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":432,"Cost":252,"Date":"3/19/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":539,"Cost":493,"Date":"3/28/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":554,"Cost":407,"Date":"5/21/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":665,"Cost":446,"Date":"7/21/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":400,"Cost":324,"Date":"8/5/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":854,"Cost":707,"Date":"8/12/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":194,"Cost":161,"Date":"8/21/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":724,"Cost":669,"Date":"8/23/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":334,"Cost":218,"Date":"9/3/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":83,"Cost":48,"Date":"9/5/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":761,"Cost":624,"Date":"10/6/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":985,"Cost":820,"Date":"10/19/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":50,"Cost":37,"Date":"11/15/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":138,"Cost":124,"Date":"12/8/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":450,"Cost":413,"Date":"1/8/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":429,"Cost":312,"Date":"1/14/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":310,"Cost":162,"Date":"1/19/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":12,"Cost":8,"Date":"1/28/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":917,"Cost":666,"Date":"1/31/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":725,"Cost":407,"Date":"3/27/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":801,"Cost":755,"Date":"4/20/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":515,"Cost":271,"Date":"4/24/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":626,"Cost":484,"Date":"4/28/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":543,"Cost":383,"Date":"5/15/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":686,"Cost":564,"Date":"5/16/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":424,"Cost":365,"Date":"5/18/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":595,"Cost":481,"Date":"6/2/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":315,"Cost":234,"Date":"6/3/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":571,"Cost":401,"Date":"6/5/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":96,"Cost":86,"Date":"6/7/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":572,"Cost":343,"Date":"6/14/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":410,"Cost":388,"Date":"6/20/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":825,"Cost":616,"Date":"6/24/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":809,"Cost":478,"Date":"7/4/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":2,"Cost":2,"Date":"7/9/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":218,"Cost":176,"Date":"7/12/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":908,"Cost":586,"Date":"8/14/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":87,"Cost":46,"Date":"8/16/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":882,"Cost":623,"Date":"8/23/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":863,"Cost":603,"Date":"9/2/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":340,"Cost":296,"Date":"9/3/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":282,"Cost":244,"Date":"9/16/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":126,"Cost":109,"Date":"10/4/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":816,"Cost":683,"Date":"11/1/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":133,"Cost":99,"Date":"11/2/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":746,"Cost":646,"Date":"12/17/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":267,"Cost":200,"Date":"2/10/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":166,"Cost":138,"Date":"2/28/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":659,"Cost":478,"Date":"3/4/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":440,"Cost":401,"Date":"3/9/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":681,"Cost":355,"Date":"3/9/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":716,"Cost":537,"Date":"3/11/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":162,"Cost":138,"Date":"3/17/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":714,"Cost":463,"Date":"3/17/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":698,"Cost":647,"Date":"3/23/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":838,"Cost":496,"Date":"4/1/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":59,"Cost":38,"Date":"5/7/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":850,"Cost":793,"Date":"5/10/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":208,"Cost":179,"Date":"5/20/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":486,"Cost":311,"Date":"6/2/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":735,"Cost":441,"Date":"6/11/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":11,"Cost":9,"Date":"6/16/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":600,"Cost":327,"Date":"6/16/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":549,"Cost":344,"Date":"7/10/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":966,"Cost":551,"Date":"7/11/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":331,"Cost":263,"Date":"8/28/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":553,"Cost":394,"Date":"8/29/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":998,"Cost":530,"Date":"8/31/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":8,"Cost":7,"Date":"9/8/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":272,"Cost":223,"Date":"9/13/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":892,"Cost":586,"Date":"9/14/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":822,"Cost":658,"Date":"9/19/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":393,"Cost":255,"Date":"9/25/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":728,"Cost":671,"Date":"10/4/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":762,"Cost":700,"Date":"10/10/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":641,"Cost":414,"Date":"10/17/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":971,"Cost":913,"Date":"10/28/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":360,"Cost":312,"Date":"10/30/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":671,"Cost":485,"Date":"11/1/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":850,"Cost":426,"Date":"11/15/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":662,"Cost":427,"Date":"11/25/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":20,"Cost":19,"Date":"1/10/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":56,"Cost":38,"Date":"1/14/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":778,"Cost":395,"Date":"1/20/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":918,"Cost":480,"Date":"2/8/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":876,"Cost":658,"Date":"2/25/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":662,"Cost":500,"Date":"3/7/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":276,"Cost":210,"Date":"3/14/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":138,"Cost":114,"Date":"3/27/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":822,"Cost":679,"Date":"4/5/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":467,"Cost":410,"Date":"4/14/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":357,"Cost":273,"Date":"5/3/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":30,"Cost":15,"Date":"5/9/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":151,"Cost":93,"Date":"5/15/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":4,"Cost":2,"Date":"5/25/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":799,"Cost":727,"Date":"5/26/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":510,"Cost":445,"Date":"5/31/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":304,"Cost":256,"Date":"7/27/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":508,"Cost":403,"Date":"9/17/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":199,"Cost":149,"Date":"10/6/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":541,"Cost":298,"Date":"10/8/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":336,"Cost":189,"Date":"10/26/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":988,"Cost":726,"Date":"11/16/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":519,"Cost":417,"Date":"11/18/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"COS","Country":"USA","Sale":881,"Cost":491,"Date":"12/1/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":466,"Cost":423,"Date":"2/9/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":342,"Cost":233,"Date":"2/11/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":531,"Cost":267,"Date":"3/10/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":688,"Cost":530,"Date":"3/16/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":907,"Cost":775,"Date":"3/18/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":810,"Cost":599,"Date":"3/20/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":994,"Cost":824,"Date":"3/26/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":528,"Cost":485,"Date":"6/2/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":650,"Cost":595,"Date":"6/10/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":150,"Cost":134,"Date":"6/16/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":345,"Cost":292,"Date":"6/25/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":675,"Cost":589,"Date":"7/19/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":889,"Cost":666,"Date":"7/21/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":533,"Cost":474,"Date":"7/25/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":676,"Cost":532,"Date":"8/4/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":763,"Cost":591,"Date":"9/2/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":174,"Cost":159,"Date":"9/4/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":194,"Cost":134,"Date":"9/19/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":788,"Cost":429,"Date":"9/29/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":154,"Cost":121,"Date":"10/2/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":180,"Cost":119,"Date":"10/15/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":31,"Cost":22,"Date":"10/30/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":581,"Cost":473,"Date":"11/9/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":619,"Cost":546,"Date":"11/23/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":97,"Cost":87,"Date":"11/30/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":161,"Cost":88,"Date":"12/8/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":812,"Cost":735,"Date":"12/11/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":371,"Cost":233,"Date":"1/15/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":364,"Cost":205,"Date":"1/24/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":345,"Cost":263,"Date":"2/3/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":665,"Cost":369,"Date":"2/4/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":362,"Cost":232,"Date":"3/9/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":746,"Cost":564,"Date":"3/12/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":389,"Cost":309,"Date":"4/19/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":952,"Cost":756,"Date":"5/3/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":876,"Cost":454,"Date":"5/4/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":889,"Cost":595,"Date":"6/8/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":911,"Cost":758,"Date":"6/26/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":486,"Cost":317,"Date":"7/4/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":661,"Cost":448,"Date":"7/13/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":694,"Cost":613,"Date":"8/8/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":82,"Cost":55,"Date":"8/26/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":646,"Cost":429,"Date":"9/2/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":531,"Cost":429,"Date":"9/29/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":495,"Cost":400,"Date":"10/12/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":368,"Cost":194,"Date":"11/2/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":724,"Cost":614,"Date":"11/4/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":693,"Cost":554,"Date":"11/7/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":497,"Cost":371,"Date":"12/1/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":256,"Cost":178,"Date":"12/4/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":321,"Cost":167,"Date":"12/7/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":819,"Cost":723,"Date":"12/18/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":962,"Cost":882,"Date":"12/20/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":493,"Cost":306,"Date":"12/20/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":346,"Cost":307,"Date":"12/21/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":576,"Cost":418,"Date":"1/9/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":808,"Cost":732,"Date":"2/5/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":601,"Cost":375,"Date":"2/16/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":789,"Cost":522,"Date":"2/16/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":178,"Cost":155,"Date":"2/18/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":306,"Cost":185,"Date":"2/22/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":388,"Cost":356,"Date":"2/25/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":250,"Cost":213,"Date":"3/8/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":913,"Cost":736,"Date":"4/2/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":940,"Cost":572,"Date":"4/3/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":275,"Cost":178,"Date":"4/9/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":174,"Cost":154,"Date":"4/10/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":156,"Cost":78,"Date":"4/19/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":675,"Cost":577,"Date":"5/17/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":829,"Cost":600,"Date":"5/22/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":307,"Cost":212,"Date":"6/20/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":731,"Cost":394,"Date":"7/1/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":846,"Cost":714,"Date":"7/4/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":507,"Cost":459,"Date":"7/8/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":882,"Cost":770,"Date":"7/9/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":750,"Cost":663,"Date":"7/14/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":243,"Cost":223,"Date":"7/19/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":641,"Cost":596,"Date":"8/1/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":586,"Cost":522,"Date":"8/6/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":165,"Cost":153,"Date":"8/7/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":829,"Cost":557,"Date":"8/22/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":663,"Cost":486,"Date":"8/31/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":549,"Cost":286,"Date":"9/1/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":70,"Cost":41,"Date":"9/1/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":495,"Cost":282,"Date":"9/17/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":283,"Cost":217,"Date":"9/29/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":670,"Cost":604,"Date":"11/7/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":167,"Cost":89,"Date":"11/26/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":556,"Cost":399,"Date":"11/27/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":394,"Cost":267,"Date":"12/5/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":454,"Cost":230,"Date":"12/26/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":965,"Cost":489,"Date":"12/31/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":159,"Cost":142,"Date":"1/20/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":137,"Cost":86,"Date":"2/2/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":379,"Cost":305,"Date":"2/8/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":443,"Cost":363,"Date":"2/27/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":751,"Cost":469,"Date":"3/1/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":509,"Cost":328,"Date":"3/1/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":304,"Cost":155,"Date":"3/19/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":824,"Cost":424,"Date":"3/28/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":35,"Cost":31,"Date":"5/21/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":519,"Cost":475,"Date":"7/21/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":126,"Cost":79,"Date":"8/5/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":277,"Cost":226,"Date":"8/12/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":979,"Cost":773,"Date":"8/21/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":267,"Cost":222,"Date":"8/23/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":372,"Cost":262,"Date":"9/3/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":726,"Cost":596,"Date":"9/5/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":193,"Cost":169,"Date":"10/6/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":762,"Cost":405,"Date":"10/19/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":410,"Cost":302,"Date":"11/15/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":264,"Cost":220,"Date":"12/8/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":618,"Cost":567,"Date":"1/8/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":398,"Cost":350,"Date":"1/14/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":446,"Cost":360,"Date":"1/19/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":607,"Cost":494,"Date":"1/28/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":54,"Cost":35,"Date":"1/31/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":590,"Cost":394,"Date":"3/27/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":114,"Cost":63,"Date":"4/20/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":402,"Cost":332,"Date":"4/24/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":394,"Cost":371,"Date":"4/28/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":208,"Cost":114,"Date":"5/15/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":731,"Cost":621,"Date":"5/16/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":292,"Cost":157,"Date":"5/18/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":969,"Cost":533,"Date":"6/2/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":561,"Cost":397,"Date":"6/3/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":101,"Cost":87,"Date":"6/5/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":979,"Cost":610,"Date":"6/7/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":806,"Cost":520,"Date":"6/14/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":553,"Cost":307,"Date":"6/20/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":955,"Cost":539,"Date":"6/24/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":698,"Cost":570,"Date":"7/4/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":521,"Cost":385,"Date":"7/9/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":493,"Cost":273,"Date":"7/12/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":707,"Cost":466,"Date":"8/14/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":695,"Cost":540,"Date":"8/16/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":469,"Cost":278,"Date":"8/23/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":716,"Cost":387,"Date":"9/2/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":13,"Cost":8,"Date":"9/3/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":231,"Cost":143,"Date":"9/16/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":899,"Cost":485,"Date":"10/4/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":227,"Cost":148,"Date":"11/1/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":478,"Cost":379,"Date":"11/2/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":726,"Cost":449,"Date":"12/17/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":665,"Cost":470,"Date":"2/10/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":983,"Cost":599,"Date":"2/28/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":683,"Cost":524,"Date":"3/4/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":575,"Cost":544,"Date":"3/9/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":155,"Cost":108,"Date":"3/9/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":709,"Cost":624,"Date":"3/11/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":151,"Cost":86,"Date":"3/17/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":749,"Cost":394,"Date":"3/17/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":88,"Cost":58,"Date":"3/23/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":452,"Cost":307,"Date":"4/1/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":750,"Cost":534,"Date":"5/7/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":179,"Cost":106,"Date":"5/10/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":895,"Cost":564,"Date":"5/20/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":346,"Cost":257,"Date":"6/2/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":91,"Cost":73,"Date":"6/11/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":365,"Cost":323,"Date":"6/16/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":779,"Cost":638,"Date":"6/16/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":437,"Cost":395,"Date":"7/10/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":986,"Cost":499,"Date":"7/11/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":391,"Cost":267,"Date":"8/28/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":927,"Cost":517,"Date":"8/29/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":687,"Cost":424,"Date":"8/31/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":320,"Cost":280,"Date":"9/8/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":395,"Cost":290,"Date":"9/13/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":137,"Cost":76,"Date":"9/14/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":871,"Cost":705,"Date":"9/19/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":121,"Cost":68,"Date":"9/25/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":406,"Cost":212,"Date":"10/4/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":54,"Cost":32,"Date":"10/10/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":206,"Cost":163,"Date":"10/17/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":336,"Cost":268,"Date":"10/28/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":138,"Cost":129,"Date":"10/30/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":844,"Cost":564,"Date":"11/1/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":160,"Cost":111,"Date":"11/15/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":318,"Cost":192,"Date":"11/25/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":375,"Cost":214,"Date":"1/10/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":995,"Cost":777,"Date":"1/14/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":331,"Cost":221,"Date":"1/20/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":591,"Cost":404,"Date":"2/8/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":168,"Cost":105,"Date":"2/25/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":109,"Cost":92,"Date":"3/7/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":125,"Cost":83,"Date":"3/14/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":224,"Cost":168,"Date":"3/27/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":98,"Cost":64,"Date":"4/5/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":463,"Cost":437,"Date":"4/14/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":426,"Cost":237,"Date":"5/3/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":667,"Cost":558,"Date":"5/9/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":670,"Cost":430,"Date":"5/15/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":744,"Cost":443,"Date":"5/25/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":811,"Cost":568,"Date":"5/26/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":998,"Cost":546,"Date":"5/31/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":314,"Cost":180,"Date":"7/27/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":224,"Cost":211,"Date":"9/17/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":436,"Cost":251,"Date":"10/6/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":595,"Cost":507,"Date":"10/8/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":135,"Cost":75,"Date":"10/26/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":242,"Cost":137,"Date":"11/16/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":598,"Cost":388,"Date":"11/18/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"Jeans","Country":"USA","Sale":864,"Cost":818,"Date":"12/1/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":49,"Cost":40,"Date":"2/9/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":577,"Cost":473,"Date":"2/11/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":671,"Cost":562,"Date":"3/10/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":40,"Cost":24,"Date":"3/16/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":751,"Cost":525,"Date":"3/18/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":236,"Cost":161,"Date":"3/20/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":338,"Cost":292,"Date":"3/26/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":7,"Cost":5,"Date":"6/2/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":307,"Cost":153,"Date":"6/10/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":993,"Cost":655,"Date":"6/16/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":134,"Cost":125,"Date":"6/25/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":866,"Cost":814,"Date":"7/19/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":22,"Cost":11,"Date":"7/21/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":703,"Cost":397,"Date":"7/25/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":351,"Cost":308,"Date":"8/4/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":239,"Cost":196,"Date":"9/2/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":434,"Cost":390,"Date":"9/4/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":833,"Cost":546,"Date":"9/19/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":504,"Cost":294,"Date":"9/29/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":787,"Cost":720,"Date":"10/2/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":517,"Cost":464,"Date":"10/15/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":35,"Cost":28,"Date":"10/30/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":947,"Cost":639,"Date":"11/9/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":722,"Cost":532,"Date":"11/23/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":212,"Cost":128,"Date":"11/30/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":697,"Cost":615,"Date":"12/8/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":115,"Cost":71,"Date":"12/11/2018"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":491,"Cost":267,"Date":"1/15/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":416,"Cost":342,"Date":"1/24/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":461,"Cost":296,"Date":"2/3/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":237,"Cost":221,"Date":"2/4/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":229,"Cost":150,"Date":"3/9/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":219,"Cost":126,"Date":"3/12/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":223,"Cost":167,"Date":"4/19/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":959,"Cost":724,"Date":"5/3/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":844,"Cost":770,"Date":"5/4/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":202,"Cost":175,"Date":"6/8/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":776,"Cost":450,"Date":"6/26/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":458,"Cost":295,"Date":"7/4/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":123,"Cost":76,"Date":"7/13/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":433,"Cost":302,"Date":"8/8/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":177,"Cost":153,"Date":"8/26/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":470,"Cost":318,"Date":"9/2/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":268,"Cost":158,"Date":"9/29/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":531,"Cost":389,"Date":"10/12/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":396,"Cost":250,"Date":"11/2/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":257,"Cost":160,"Date":"11/4/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":973,"Cost":530,"Date":"11/7/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":586,"Cost":518,"Date":"12/1/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":677,"Cost":366,"Date":"12/4/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":759,"Cost":427,"Date":"12/7/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":127,"Cost":91,"Date":"12/18/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":706,"Cost":488,"Date":"12/20/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":482,"Cost":381,"Date":"12/20/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":333,"Cost":315,"Date":"12/21/2019"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":899,"Cost":766,"Date":"1/9/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":864,"Cost":501,"Date":"2/5/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":178,"Cost":93,"Date":"2/16/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":243,"Cost":135,"Date":"2/16/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":465,"Cost":329,"Date":"2/18/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":631,"Cost":529,"Date":"2/22/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":775,"Cost":546,"Date":"2/25/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":188,"Cost":103,"Date":"3/8/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":345,"Cost":300,"Date":"4/2/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":374,"Cost":215,"Date":"4/3/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":975,"Cost":926,"Date":"4/9/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":270,"Cost":243,"Date":"4/10/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":79,"Cost":62,"Date":"4/19/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":817,"Cost":437,"Date":"5/17/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":353,"Cost":233,"Date":"5/22/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":815,"Cost":627,"Date":"6/20/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":199,"Cost":188,"Date":"7/1/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":184,"Cost":161,"Date":"7/4/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":587,"Cost":391,"Date":"7/8/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":308,"Cost":239,"Date":"7/9/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":371,"Cost":242,"Date":"7/14/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":178,"Cost":105,"Date":"7/19/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":399,"Cost":272,"Date":"8/1/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":175,"Cost":165,"Date":"8/6/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":754,"Cost":713,"Date":"8/7/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":953,"Cost":835,"Date":"8/22/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":54,"Cost":28,"Date":"8/31/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":109,"Cost":79,"Date":"9/1/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":291,"Cost":161,"Date":"9/1/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":868,"Cost":587,"Date":"9/17/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":725,"Cost":460,"Date":"9/29/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":945,"Cost":560,"Date":"11/7/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":338,"Cost":192,"Date":"11/26/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":618,"Cost":530,"Date":"11/27/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":95,"Cost":70,"Date":"12/5/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":247,"Cost":220,"Date":"12/26/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":743,"Cost":472,"Date":"12/31/2020"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":859,"Cost":538,"Date":"1/20/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":80,"Cost":67,"Date":"2/2/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":75,"Cost":51,"Date":"2/8/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":730,"Cost":653,"Date":"2/27/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":809,"Cost":497,"Date":"3/1/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":625,"Cost":433,"Date":"3/1/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":854,"Cost":748,"Date":"3/19/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":31,"Cost":24,"Date":"3/28/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":585,"Cost":421,"Date":"5/21/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":545,"Cost":366,"Date":"7/21/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":625,"Cost":467,"Date":"8/5/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":139,"Cost":108,"Date":"8/12/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":295,"Cost":199,"Date":"8/21/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":98,"Cost":59,"Date":"8/23/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":189,"Cost":129,"Date":"9/3/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":678,"Cost":444,"Date":"9/5/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":175,"Cost":134,"Date":"10/6/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":363,"Cost":325,"Date":"10/19/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":339,"Cost":270,"Date":"11/15/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":391,"Cost":236,"Date":"12/8/2021"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":671,"Cost":398,"Date":"1/8/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":692,"Cost":407,"Date":"1/14/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":48,"Cost":26,"Date":"1/19/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":547,"Cost":505,"Date":"1/28/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":823,"Cost":509,"Date":"1/31/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":198,"Cost":159,"Date":"3/27/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":374,"Cost":294,"Date":"4/20/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":158,"Cost":132,"Date":"4/24/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":800,"Cost":569,"Date":"4/28/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":271,"Cost":155,"Date":"5/15/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":521,"Cost":267,"Date":"5/16/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":607,"Cost":317,"Date":"5/18/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":292,"Cost":202,"Date":"6/2/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":99,"Cost":62,"Date":"6/3/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":598,"Cost":497,"Date":"6/5/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":768,"Cost":494,"Date":"6/7/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":686,"Cost":391,"Date":"6/14/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":403,"Cost":381,"Date":"6/20/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":526,"Cost":374,"Date":"6/24/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":615,"Cost":332,"Date":"7/4/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":13,"Cost":7,"Date":"7/9/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":335,"Cost":208,"Date":"7/12/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":841,"Cost":744,"Date":"8/14/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":854,"Cost":702,"Date":"8/16/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":187,"Cost":162,"Date":"8/23/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":647,"Cost":472,"Date":"9/2/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":153,"Cost":116,"Date":"9/3/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":613,"Cost":434,"Date":"9/16/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":805,"Cost":480,"Date":"10/4/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":335,"Cost":177,"Date":"11/1/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":953,"Cost":515,"Date":"11/2/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":21,"Cost":11,"Date":"12/17/2022"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":739,"Cost":667,"Date":"2/10/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":853,"Cost":666,"Date":"2/28/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":590,"Cost":305,"Date":"3/4/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":405,"Cost":278,"Date":"3/9/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":805,"Cost":462,"Date":"3/9/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":325,"Cost":300,"Date":"3/11/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":366,"Cost":309,"Date":"3/17/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":304,"Cost":163,"Date":"3/17/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":589,"Cost":337,"Date":"3/23/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":476,"Cost":299,"Date":"4/1/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":797,"Cost":420,"Date":"5/7/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":486,"Cost":358,"Date":"5/10/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":890,"Cost":732,"Date":"5/20/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":425,"Cost":377,"Date":"6/2/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":242,"Cost":165,"Date":"6/11/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":606,"Cost":556,"Date":"6/16/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":416,"Cost":300,"Date":"6/16/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":290,"Cost":219,"Date":"7/10/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":538,"Cost":278,"Date":"7/11/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":15,"Cost":11,"Date":"8/28/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":934,"Cost":813,"Date":"8/29/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":176,"Cost":117,"Date":"8/31/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":881,"Cost":638,"Date":"9/8/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":888,"Cost":545,"Date":"9/13/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":355,"Cost":332,"Date":"9/14/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":868,"Cost":567,"Date":"9/19/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":954,"Cost":744,"Date":"9/25/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":277,"Cost":258,"Date":"10/4/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":148,"Cost":108,"Date":"10/10/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":926,"Cost":813,"Date":"10/17/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":597,"Cost":485,"Date":"10/28/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":298,"Cost":170,"Date":"10/30/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":708,"Cost":509,"Date":"11/1/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":242,"Cost":219,"Date":"11/15/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":471,"Cost":418,"Date":"11/25/2023"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":607,"Cost":313,"Date":"1/10/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":940,"Cost":544,"Date":"1/14/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":415,"Cost":248,"Date":"1/20/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":286,"Cost":164,"Date":"2/8/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":147,"Cost":92,"Date":"2/25/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":206,"Cost":136,"Date":"3/7/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":320,"Cost":202,"Date":"3/14/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":313,"Cost":280,"Date":"3/27/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":765,"Cost":537,"Date":"4/5/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":196,"Cost":102,"Date":"4/14/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":28,"Cost":22,"Date":"5/3/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":353,"Cost":197,"Date":"5/9/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":547,"Cost":297,"Date":"5/15/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":692,"Cost":590,"Date":"5/25/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":294,"Cost":171,"Date":"5/26/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":485,"Cost":305,"Date":"5/31/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":856,"Cost":669,"Date":"7/27/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":93,"Cost":75,"Date":"9/17/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":305,"Cost":211,"Date":"10/6/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":505,"Cost":456,"Date":"10/8/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":41,"Cost":32,"Date":"10/26/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":175,"Cost":144,"Date":"11/16/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":538,"Cost":445,"Date":"11/18/2024"},{"Store":"Brea Mall, Brea, CA","Brand":"HM","Country":"USA","Sale":461,"Cost":313,"Date":"12/1/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":394,"Cost":216,"Date":"2/9/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":177,"Cost":100,"Date":"2/11/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":246,"Cost":158,"Date":"3/10/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":481,"Cost":440,"Date":"3/16/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":276,"Cost":178,"Date":"3/18/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":60,"Cost":47,"Date":"3/20/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":617,"Cost":372,"Date":"3/26/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":1000,"Cost":859,"Date":"6/2/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":924,"Cost":786,"Date":"6/10/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":437,"Cost":253,"Date":"6/16/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":768,"Cost":623,"Date":"6/25/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":966,"Cost":551,"Date":"7/19/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":819,"Cost":698,"Date":"7/21/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":410,"Cost":372,"Date":"7/25/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":818,"Cost":624,"Date":"8/4/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":263,"Cost":228,"Date":"9/2/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":309,"Cost":159,"Date":"9/4/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":495,"Cost":380,"Date":"9/19/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":504,"Cost":399,"Date":"9/29/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":378,"Cost":299,"Date":"10/2/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":499,"Cost":434,"Date":"10/15/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":990,"Cost":618,"Date":"10/30/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":691,"Cost":629,"Date":"11/9/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":265,"Cost":235,"Date":"11/23/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":367,"Cost":327,"Date":"11/30/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":981,"Cost":661,"Date":"12/8/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":566,"Cost":333,"Date":"12/11/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":331,"Cost":281,"Date":"1/15/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":890,"Cost":581,"Date":"1/24/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":18,"Cost":15,"Date":"2/3/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":27,"Cost":17,"Date":"2/4/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":388,"Cost":254,"Date":"3/9/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":572,"Cost":463,"Date":"3/12/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":440,"Cost":343,"Date":"4/19/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":558,"Cost":433,"Date":"5/3/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":369,"Cost":235,"Date":"5/4/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":967,"Cost":873,"Date":"6/8/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":393,"Cost":254,"Date":"6/26/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":345,"Cost":209,"Date":"7/4/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":355,"Cost":187,"Date":"7/13/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":660,"Cost":460,"Date":"8/8/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":926,"Cost":514,"Date":"8/26/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":396,"Cost":304,"Date":"9/2/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":700,"Cost":550,"Date":"9/29/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":263,"Cost":243,"Date":"10/12/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":7,"Cost":6,"Date":"11/2/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":824,"Cost":675,"Date":"11/4/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":923,"Cost":612,"Date":"11/7/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":874,"Cost":523,"Date":"12/1/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":875,"Cost":831,"Date":"12/4/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":479,"Cost":401,"Date":"12/7/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":785,"Cost":488,"Date":"12/18/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":980,"Cost":823,"Date":"12/20/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":101,"Cost":84,"Date":"12/20/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":602,"Cost":316,"Date":"12/21/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":117,"Cost":74,"Date":"1/9/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":137,"Cost":87,"Date":"2/5/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":468,"Cost":305,"Date":"2/16/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":964,"Cost":615,"Date":"2/16/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":338,"Cost":291,"Date":"2/18/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":573,"Cost":315,"Date":"2/22/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":801,"Cost":580,"Date":"2/25/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":313,"Cost":276,"Date":"3/8/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":767,"Cost":499,"Date":"4/2/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":408,"Cost":230,"Date":"4/3/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":580,"Cost":498,"Date":"4/9/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":701,"Cost":564,"Date":"4/10/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":957,"Cost":541,"Date":"4/19/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":538,"Cost":282,"Date":"5/17/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":703,"Cost":513,"Date":"5/22/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":873,"Cost":648,"Date":"6/20/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":418,"Cost":386,"Date":"7/1/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":175,"Cost":150,"Date":"7/4/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":736,"Cost":632,"Date":"7/8/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":63,"Cost":40,"Date":"7/9/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":683,"Cost":514,"Date":"7/14/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":559,"Cost":339,"Date":"7/19/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":283,"Cost":212,"Date":"8/1/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":837,"Cost":678,"Date":"8/6/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":54,"Cost":28,"Date":"8/7/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":477,"Cost":377,"Date":"8/22/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":240,"Cost":134,"Date":"8/31/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":559,"Cost":507,"Date":"9/1/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":177,"Cost":93,"Date":"9/1/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":178,"Cost":143,"Date":"9/17/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":774,"Cost":695,"Date":"9/29/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":938,"Cost":531,"Date":"11/7/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":214,"Cost":108,"Date":"11/26/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":627,"Cost":496,"Date":"11/27/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":541,"Cost":444,"Date":"12/5/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":227,"Cost":160,"Date":"12/26/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":320,"Cost":191,"Date":"12/31/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":945,"Cost":840,"Date":"1/20/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":634,"Cost":563,"Date":"2/2/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":441,"Cost":323,"Date":"2/8/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":429,"Cost":390,"Date":"2/27/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":816,"Cost":445,"Date":"3/1/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":733,"Cost":646,"Date":"3/1/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":151,"Cost":136,"Date":"3/19/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":499,"Cost":273,"Date":"3/28/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":104,"Cost":63,"Date":"5/21/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":457,"Cost":346,"Date":"7/21/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":971,"Cost":885,"Date":"8/5/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":699,"Cost":377,"Date":"8/12/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":566,"Cost":479,"Date":"8/21/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":686,"Cost":415,"Date":"8/23/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":303,"Cost":256,"Date":"9/3/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":557,"Cost":446,"Date":"9/5/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":586,"Cost":539,"Date":"10/6/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":315,"Cost":195,"Date":"10/19/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":985,"Cost":705,"Date":"11/15/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":286,"Cost":272,"Date":"12/8/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":227,"Cost":157,"Date":"1/8/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":204,"Cost":190,"Date":"1/14/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":842,"Cost":746,"Date":"1/19/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":371,"Cost":302,"Date":"1/28/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":679,"Cost":368,"Date":"1/31/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":673,"Cost":354,"Date":"3/27/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":275,"Cost":185,"Date":"4/20/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":286,"Cost":194,"Date":"4/24/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":143,"Cost":91,"Date":"4/28/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":174,"Cost":160,"Date":"5/15/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":382,"Cost":356,"Date":"5/16/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":895,"Cost":646,"Date":"5/18/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":230,"Cost":140,"Date":"6/2/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":792,"Cost":659,"Date":"6/3/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":503,"Cost":393,"Date":"6/5/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":251,"Cost":126,"Date":"6/7/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":470,"Cost":434,"Date":"6/14/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":446,"Cost":321,"Date":"6/20/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":797,"Cost":565,"Date":"6/24/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":611,"Cost":389,"Date":"7/4/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":434,"Cost":263,"Date":"7/9/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":686,"Cost":462,"Date":"7/12/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":951,"Cost":563,"Date":"8/14/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":437,"Cost":285,"Date":"8/16/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":444,"Cost":336,"Date":"8/23/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":772,"Cost":562,"Date":"9/2/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":891,"Cost":703,"Date":"9/3/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":544,"Cost":436,"Date":"9/16/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":577,"Cost":467,"Date":"10/4/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":796,"Cost":494,"Date":"11/1/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":890,"Cost":733,"Date":"11/2/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":539,"Cost":497,"Date":"12/17/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":481,"Cost":355,"Date":"2/10/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":506,"Cost":255,"Date":"2/28/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":24,"Cost":20,"Date":"3/4/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":167,"Cost":150,"Date":"3/9/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":631,"Cost":429,"Date":"3/9/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":950,"Cost":662,"Date":"3/11/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":29,"Cost":20,"Date":"3/17/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":335,"Cost":252,"Date":"3/17/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":439,"Cost":274,"Date":"3/23/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":559,"Cost":293,"Date":"4/1/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":190,"Cost":139,"Date":"5/7/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":663,"Cost":397,"Date":"5/10/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":562,"Cost":435,"Date":"5/20/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":621,"Cost":317,"Date":"6/2/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":156,"Cost":129,"Date":"6/11/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":301,"Cost":229,"Date":"6/16/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":918,"Cost":774,"Date":"6/16/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":704,"Cost":374,"Date":"7/10/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":491,"Cost":306,"Date":"7/11/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":100,"Cost":51,"Date":"8/28/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":535,"Cost":470,"Date":"8/29/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":594,"Cost":372,"Date":"8/31/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":384,"Cost":198,"Date":"9/8/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":828,"Cost":638,"Date":"9/13/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":882,"Cost":448,"Date":"9/14/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":483,"Cost":243,"Date":"9/19/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":919,"Cost":776,"Date":"9/25/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":351,"Cost":215,"Date":"10/4/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":920,"Cost":714,"Date":"10/10/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":748,"Cost":486,"Date":"10/17/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":470,"Cost":392,"Date":"10/28/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":776,"Cost":585,"Date":"10/30/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":375,"Cost":288,"Date":"11/1/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":173,"Cost":102,"Date":"11/15/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":347,"Cost":314,"Date":"11/25/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":573,"Cost":434,"Date":"1/10/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":885,"Cost":703,"Date":"1/14/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":310,"Cost":232,"Date":"1/20/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":510,"Cost":310,"Date":"2/8/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":757,"Cost":672,"Date":"2/25/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":870,"Cost":562,"Date":"3/7/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":826,"Cost":427,"Date":"3/14/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":146,"Cost":101,"Date":"3/27/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":62,"Cost":46,"Date":"4/5/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":520,"Cost":429,"Date":"4/14/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":599,"Cost":400,"Date":"5/3/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":319,"Cost":203,"Date":"5/9/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":305,"Cost":249,"Date":"5/15/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":636,"Cost":534,"Date":"5/25/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":402,"Cost":354,"Date":"5/26/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":428,"Cost":351,"Date":"5/31/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":801,"Cost":431,"Date":"7/27/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":408,"Cost":267,"Date":"9/17/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":739,"Cost":372,"Date":"10/6/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":942,"Cost":684,"Date":"10/8/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":389,"Cost":216,"Date":"10/26/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":340,"Cost":298,"Date":"11/16/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":297,"Cost":240,"Date":"11/18/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":242,"Cost":166,"Date":"12/1/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":100,"Cost":57,"Date":"2/9/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":317,"Cost":293,"Date":"2/11/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":117,"Cost":108,"Date":"3/10/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":352,"Cost":319,"Date":"3/16/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":260,"Cost":189,"Date":"3/18/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":562,"Cost":451,"Date":"3/20/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":358,"Cost":301,"Date":"3/26/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":665,"Cost":373,"Date":"6/2/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":539,"Cost":279,"Date":"6/10/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":10,"Cost":7,"Date":"6/16/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":380,"Cost":256,"Date":"6/25/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":814,"Cost":529,"Date":"7/19/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":370,"Cost":297,"Date":"7/21/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":833,"Cost":675,"Date":"7/25/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":135,"Cost":101,"Date":"8/4/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":247,"Cost":215,"Date":"9/2/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":885,"Cost":576,"Date":"9/4/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":727,"Cost":570,"Date":"9/19/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":350,"Cost":218,"Date":"9/29/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":895,"Cost":763,"Date":"10/2/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":39,"Cost":24,"Date":"10/15/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":273,"Cost":186,"Date":"10/30/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":789,"Cost":573,"Date":"11/9/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":592,"Cost":461,"Date":"11/23/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":295,"Cost":191,"Date":"11/30/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":52,"Cost":32,"Date":"12/8/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":202,"Cost":167,"Date":"12/11/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":914,"Cost":868,"Date":"1/15/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":868,"Cost":694,"Date":"1/24/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":24,"Cost":19,"Date":"2/3/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":42,"Cost":32,"Date":"2/4/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":883,"Cost":529,"Date":"3/9/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":463,"Cost":276,"Date":"3/12/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":991,"Cost":898,"Date":"4/19/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":844,"Cost":466,"Date":"5/3/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":858,"Cost":572,"Date":"5/4/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":264,"Cost":172,"Date":"6/8/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":742,"Cost":552,"Date":"6/26/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":400,"Cost":227,"Date":"7/4/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":337,"Cost":176,"Date":"7/13/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":878,"Cost":625,"Date":"8/8/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":827,"Cost":455,"Date":"8/26/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":317,"Cost":273,"Date":"9/2/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":222,"Cost":165,"Date":"9/29/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":512,"Cost":400,"Date":"10/12/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":704,"Cost":572,"Date":"11/2/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":588,"Cost":477,"Date":"11/4/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":434,"Cost":352,"Date":"11/7/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":326,"Cost":230,"Date":"12/1/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":532,"Cost":313,"Date":"12/4/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":841,"Cost":498,"Date":"12/7/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":571,"Cost":299,"Date":"12/18/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":421,"Cost":306,"Date":"12/20/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":186,"Cost":154,"Date":"12/20/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":921,"Cost":783,"Date":"12/21/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":112,"Cost":91,"Date":"1/9/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":698,"Cost":422,"Date":"2/5/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":52,"Cost":28,"Date":"2/16/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":692,"Cost":442,"Date":"2/16/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":31,"Cost":16,"Date":"2/18/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":450,"Cost":235,"Date":"2/22/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":237,"Cost":185,"Date":"2/25/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":458,"Cost":336,"Date":"3/8/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":354,"Cost":323,"Date":"4/2/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":205,"Cost":161,"Date":"4/3/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":398,"Cost":227,"Date":"4/9/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":725,"Cost":686,"Date":"4/10/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":851,"Cost":616,"Date":"4/19/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":291,"Cost":257,"Date":"5/17/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":176,"Cost":139,"Date":"5/22/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":279,"Cost":148,"Date":"6/20/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":347,"Cost":221,"Date":"7/1/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":433,"Cost":276,"Date":"7/4/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":317,"Cost":161,"Date":"7/8/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":445,"Cost":387,"Date":"7/9/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":696,"Cost":545,"Date":"7/14/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":870,"Cost":608,"Date":"7/19/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":603,"Cost":334,"Date":"8/1/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":531,"Cost":416,"Date":"8/6/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":801,"Cost":468,"Date":"8/7/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":679,"Cost":531,"Date":"8/22/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":973,"Cost":798,"Date":"8/31/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":621,"Cost":565,"Date":"9/1/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":83,"Cost":58,"Date":"9/1/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":919,"Cost":722,"Date":"9/17/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":258,"Cost":145,"Date":"9/29/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":104,"Cost":97,"Date":"11/7/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":966,"Cost":598,"Date":"11/26/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":405,"Cost":319,"Date":"11/27/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":302,"Cost":154,"Date":"12/5/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":746,"Cost":597,"Date":"12/26/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":366,"Cost":198,"Date":"12/31/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":140,"Cost":112,"Date":"1/20/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":692,"Cost":399,"Date":"2/2/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":206,"Cost":133,"Date":"2/8/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":973,"Cost":524,"Date":"2/27/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":205,"Cost":190,"Date":"3/1/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":779,"Cost":548,"Date":"3/1/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":966,"Cost":567,"Date":"3/19/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":827,"Cost":739,"Date":"3/28/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":446,"Cost":363,"Date":"5/21/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":773,"Cost":547,"Date":"7/21/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":604,"Cost":569,"Date":"8/5/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":455,"Cost":271,"Date":"8/12/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":891,"Cost":843,"Date":"8/21/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":127,"Cost":106,"Date":"8/23/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":778,"Cost":698,"Date":"9/3/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":505,"Cost":460,"Date":"9/5/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":155,"Cost":111,"Date":"10/6/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":109,"Cost":72,"Date":"10/19/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":265,"Cost":245,"Date":"11/15/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":679,"Cost":555,"Date":"12/8/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":13,"Cost":12,"Date":"1/8/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":369,"Cost":327,"Date":"1/14/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":560,"Cost":308,"Date":"1/19/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":782,"Cost":600,"Date":"1/28/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":386,"Cost":281,"Date":"1/31/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":554,"Cost":286,"Date":"3/27/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":450,"Cost":267,"Date":"4/20/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":39,"Cost":31,"Date":"4/24/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":668,"Cost":587,"Date":"4/28/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":203,"Cost":193,"Date":"5/15/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":646,"Cost":445,"Date":"5/16/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":137,"Cost":71,"Date":"5/18/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":821,"Cost":518,"Date":"6/2/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":732,"Cost":679,"Date":"6/3/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":392,"Cost":282,"Date":"6/5/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":949,"Cost":750,"Date":"6/7/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":105,"Cost":89,"Date":"6/14/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":844,"Cost":644,"Date":"6/20/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":15,"Cost":10,"Date":"6/24/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":459,"Cost":370,"Date":"7/4/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":944,"Cost":653,"Date":"7/9/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":744,"Cost":584,"Date":"7/12/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":757,"Cost":589,"Date":"8/14/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":691,"Cost":563,"Date":"8/16/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":971,"Cost":873,"Date":"8/23/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":857,"Cost":642,"Date":"9/2/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":865,"Cost":787,"Date":"9/3/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":583,"Cost":325,"Date":"9/16/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":658,"Cost":562,"Date":"10/4/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":552,"Cost":344,"Date":"11/1/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":396,"Cost":376,"Date":"11/2/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":833,"Cost":684,"Date":"12/17/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":465,"Cost":422,"Date":"2/10/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":41,"Cost":26,"Date":"2/28/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":181,"Cost":153,"Date":"3/4/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":587,"Cost":466,"Date":"3/9/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":226,"Cost":173,"Date":"3/9/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":174,"Cost":105,"Date":"3/11/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":58,"Cost":35,"Date":"3/17/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":776,"Cost":497,"Date":"3/17/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":80,"Cost":58,"Date":"3/23/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":833,"Cost":599,"Date":"4/1/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":110,"Cost":97,"Date":"5/7/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":453,"Cost":416,"Date":"5/10/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":773,"Cost":512,"Date":"5/20/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":276,"Cost":195,"Date":"6/2/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":1000,"Cost":611,"Date":"6/11/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":440,"Cost":316,"Date":"6/16/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":4,"Cost":2,"Date":"6/16/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":615,"Cost":361,"Date":"7/10/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":403,"Cost":218,"Date":"7/11/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":452,"Cost":379,"Date":"8/28/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":907,"Cost":733,"Date":"8/29/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":739,"Cost":391,"Date":"8/31/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":429,"Cost":264,"Date":"9/8/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":448,"Cost":269,"Date":"9/13/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":354,"Cost":258,"Date":"9/14/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":705,"Cost":502,"Date":"9/19/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":956,"Cost":780,"Date":"9/25/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":80,"Cost":60,"Date":"10/4/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":968,"Cost":723,"Date":"10/10/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":301,"Cost":246,"Date":"10/17/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":492,"Cost":391,"Date":"10/28/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":829,"Cost":663,"Date":"10/30/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":677,"Cost":392,"Date":"11/1/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":723,"Cost":629,"Date":"11/15/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":414,"Cost":328,"Date":"11/25/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":886,"Cost":795,"Date":"1/10/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":622,"Cost":398,"Date":"1/14/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":883,"Cost":510,"Date":"1/20/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":770,"Cost":557,"Date":"2/8/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":628,"Cost":360,"Date":"2/25/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":822,"Cost":699,"Date":"3/7/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":468,"Cost":386,"Date":"3/14/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":934,"Cost":855,"Date":"3/27/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":970,"Cost":501,"Date":"4/5/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":19,"Cost":13,"Date":"4/14/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":817,"Cost":687,"Date":"5/3/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":986,"Cost":653,"Date":"5/9/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":221,"Cost":147,"Date":"5/15/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":821,"Cost":607,"Date":"5/25/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":906,"Cost":531,"Date":"5/26/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":705,"Cost":663,"Date":"5/31/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":805,"Cost":725,"Date":"7/27/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":886,"Cost":606,"Date":"9/17/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":333,"Cost":283,"Date":"10/6/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":288,"Cost":259,"Date":"10/8/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":480,"Cost":360,"Date":"10/26/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":36,"Cost":33,"Date":"11/16/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":830,"Cost":446,"Date":"11/18/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"Jeans","Country":"USA","Sale":49,"Cost":26,"Date":"12/1/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":285,"Cost":194,"Date":"2/9/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":65,"Cost":53,"Date":"2/11/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":248,"Cost":147,"Date":"3/10/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":641,"Cost":439,"Date":"3/16/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":334,"Cost":202,"Date":"3/18/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":923,"Cost":790,"Date":"3/20/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":111,"Cost":99,"Date":"3/26/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":692,"Cost":488,"Date":"6/2/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":48,"Cost":37,"Date":"6/10/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":698,"Cost":392,"Date":"6/16/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":92,"Cost":85,"Date":"6/25/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":938,"Cost":853,"Date":"7/19/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":633,"Cost":537,"Date":"7/21/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":868,"Cost":565,"Date":"7/25/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":188,"Cost":154,"Date":"8/4/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":57,"Cost":36,"Date":"9/2/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":393,"Cost":310,"Date":"9/4/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":955,"Cost":561,"Date":"9/19/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":904,"Cost":618,"Date":"9/29/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":672,"Cost":407,"Date":"10/2/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":673,"Cost":472,"Date":"10/15/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":327,"Cost":301,"Date":"10/30/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":981,"Cost":614,"Date":"11/9/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":920,"Cost":556,"Date":"11/23/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":727,"Cost":403,"Date":"11/30/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":157,"Cost":123,"Date":"12/8/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":167,"Cost":154,"Date":"12/11/2018"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":208,"Cost":129,"Date":"1/15/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":574,"Cost":373,"Date":"1/24/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":274,"Cost":231,"Date":"2/3/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":941,"Cost":535,"Date":"2/4/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":434,"Cost":403,"Date":"3/9/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":305,"Cost":266,"Date":"3/12/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":222,"Cost":146,"Date":"4/19/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":633,"Cost":443,"Date":"5/3/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":620,"Cost":495,"Date":"5/4/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":907,"Cost":692,"Date":"6/8/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":777,"Cost":426,"Date":"6/26/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":933,"Cost":774,"Date":"7/4/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":965,"Cost":600,"Date":"7/13/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":516,"Cost":418,"Date":"8/8/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":396,"Cost":206,"Date":"8/26/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":122,"Cost":79,"Date":"9/2/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":530,"Cost":348,"Date":"9/29/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":930,"Cost":870,"Date":"10/12/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":2,"Cost":1,"Date":"11/2/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":800,"Cost":585,"Date":"11/4/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":222,"Cost":137,"Date":"11/7/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":74,"Cost":63,"Date":"12/1/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":601,"Cost":309,"Date":"12/4/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":938,"Cost":822,"Date":"12/7/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":436,"Cost":224,"Date":"12/18/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":169,"Cost":106,"Date":"12/20/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":988,"Cost":506,"Date":"12/20/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":627,"Cost":389,"Date":"12/21/2019"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":711,"Cost":536,"Date":"1/9/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":534,"Cost":496,"Date":"2/5/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":373,"Cost":220,"Date":"2/16/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":498,"Cost":250,"Date":"2/16/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":474,"Cost":287,"Date":"2/18/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":647,"Cost":564,"Date":"2/22/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":327,"Cost":184,"Date":"2/25/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":315,"Cost":284,"Date":"3/8/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":352,"Cost":293,"Date":"4/2/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":718,"Cost":655,"Date":"4/3/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":546,"Cost":502,"Date":"4/9/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":482,"Cost":393,"Date":"4/10/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":784,"Cost":405,"Date":"4/19/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":318,"Cost":209,"Date":"5/17/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":569,"Cost":300,"Date":"5/22/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":342,"Cost":232,"Date":"6/20/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":308,"Cost":289,"Date":"7/1/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":646,"Cost":571,"Date":"7/4/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":677,"Cost":344,"Date":"7/8/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":885,"Cost":817,"Date":"7/9/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":26,"Cost":19,"Date":"7/14/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":673,"Cost":597,"Date":"7/19/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":761,"Cost":406,"Date":"8/1/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":519,"Cost":476,"Date":"8/6/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":189,"Cost":102,"Date":"8/7/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":302,"Cost":231,"Date":"8/22/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":593,"Cost":377,"Date":"8/31/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":626,"Cost":570,"Date":"9/1/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":112,"Cost":100,"Date":"9/1/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":36,"Cost":18,"Date":"9/17/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":81,"Cost":46,"Date":"9/29/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":383,"Cost":237,"Date":"11/7/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":395,"Cost":276,"Date":"11/26/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":318,"Cost":295,"Date":"11/27/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":101,"Cost":68,"Date":"12/5/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":748,"Cost":438,"Date":"12/26/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":3,"Cost":2,"Date":"12/31/2020"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":795,"Cost":603,"Date":"1/20/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":204,"Cost":154,"Date":"2/2/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":563,"Cost":393,"Date":"2/8/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":323,"Cost":295,"Date":"2/27/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":866,"Cost":485,"Date":"3/1/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":173,"Cost":158,"Date":"3/1/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":548,"Cost":352,"Date":"3/19/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":499,"Cost":314,"Date":"3/28/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":909,"Cost":528,"Date":"5/21/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":955,"Cost":852,"Date":"7/21/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":393,"Cost":288,"Date":"8/5/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":410,"Cost":289,"Date":"8/12/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":930,"Cost":692,"Date":"8/21/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":192,"Cost":126,"Date":"8/23/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":605,"Cost":313,"Date":"9/3/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":103,"Cost":67,"Date":"9/5/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":843,"Cost":462,"Date":"10/6/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":138,"Cost":107,"Date":"10/19/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":254,"Cost":136,"Date":"11/15/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":122,"Cost":84,"Date":"12/8/2021"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":228,"Cost":207,"Date":"1/8/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":220,"Cost":164,"Date":"1/14/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":625,"Cost":564,"Date":"1/19/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":12,"Cost":12,"Date":"1/28/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":296,"Cost":225,"Date":"1/31/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":194,"Cost":147,"Date":"3/27/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":670,"Cost":606,"Date":"4/20/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":825,"Cost":686,"Date":"4/24/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":732,"Cost":446,"Date":"4/28/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":75,"Cost":48,"Date":"5/15/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":623,"Cost":422,"Date":"5/16/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":562,"Cost":393,"Date":"5/18/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":402,"Cost":351,"Date":"6/2/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":903,"Cost":706,"Date":"6/3/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":641,"Cost":581,"Date":"6/5/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":919,"Cost":594,"Date":"6/7/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":421,"Cost":384,"Date":"6/14/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":325,"Cost":208,"Date":"6/20/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":6,"Cost":5,"Date":"6/24/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":374,"Cost":197,"Date":"7/4/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":870,"Cost":680,"Date":"7/9/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":312,"Cost":203,"Date":"7/12/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":128,"Cost":67,"Date":"8/14/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":164,"Cost":95,"Date":"8/16/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":873,"Cost":576,"Date":"8/23/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":70,"Cost":65,"Date":"9/2/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":480,"Cost":262,"Date":"9/3/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":944,"Cost":622,"Date":"9/16/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":650,"Cost":597,"Date":"10/4/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":775,"Cost":720,"Date":"11/1/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":572,"Cost":439,"Date":"11/2/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":842,"Cost":615,"Date":"12/17/2022"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":791,"Cost":556,"Date":"2/10/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":447,"Cost":285,"Date":"2/28/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":492,"Cost":334,"Date":"3/4/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":586,"Cost":384,"Date":"3/9/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":351,"Cost":232,"Date":"3/9/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":739,"Cost":398,"Date":"3/11/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":51,"Cost":25,"Date":"3/17/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":453,"Cost":314,"Date":"3/17/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":909,"Cost":704,"Date":"3/23/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":388,"Cost":285,"Date":"4/1/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":11,"Cost":8,"Date":"5/7/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":932,"Cost":505,"Date":"5/10/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":242,"Cost":209,"Date":"5/20/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":919,"Cost":763,"Date":"6/2/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":730,"Cost":528,"Date":"6/11/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":157,"Cost":88,"Date":"6/16/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":561,"Cost":326,"Date":"6/16/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":878,"Cost":477,"Date":"7/10/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":881,"Cost":661,"Date":"7/11/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":41,"Cost":32,"Date":"8/28/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":316,"Cost":168,"Date":"8/29/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":554,"Cost":278,"Date":"8/31/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":602,"Cost":387,"Date":"9/8/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":24,"Cost":12,"Date":"9/13/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":166,"Cost":84,"Date":"9/14/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":21,"Cost":15,"Date":"9/19/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":976,"Cost":788,"Date":"9/25/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":861,"Cost":740,"Date":"10/4/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":310,"Cost":262,"Date":"10/10/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":381,"Cost":214,"Date":"10/17/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":469,"Cost":256,"Date":"10/28/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":5,"Cost":3,"Date":"10/30/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":693,"Cost":649,"Date":"11/1/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":258,"Cost":197,"Date":"11/15/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":225,"Cost":192,"Date":"11/25/2023"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":497,"Cost":303,"Date":"1/10/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":991,"Cost":815,"Date":"1/14/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":183,"Cost":141,"Date":"1/20/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":690,"Cost":613,"Date":"2/8/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":427,"Cost":257,"Date":"2/25/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":484,"Cost":362,"Date":"3/7/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":144,"Cost":109,"Date":"3/14/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":670,"Cost":388,"Date":"3/27/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":855,"Cost":720,"Date":"4/5/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":965,"Cost":803,"Date":"4/14/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":45,"Cost":28,"Date":"5/3/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":322,"Cost":247,"Date":"5/9/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":141,"Cost":73,"Date":"5/15/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":679,"Cost":516,"Date":"5/25/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":576,"Cost":348,"Date":"5/26/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":603,"Cost":458,"Date":"5/31/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":152,"Cost":127,"Date":"7/27/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":294,"Cost":152,"Date":"9/17/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":301,"Cost":265,"Date":"10/6/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":687,"Cost":423,"Date":"10/8/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":221,"Cost":155,"Date":"10/26/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":382,"Cost":204,"Date":"11/16/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":728,"Cost":588,"Date":"11/18/2024"},{"Store":"Lenox Square, Atlanta, GA","Brand":"HM","Country":"USA","Sale":712,"Cost":523,"Date":"12/1/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":643,"Cost":591,"Date":"2/9/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":170,"Cost":151,"Date":"2/11/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":889,"Cost":544,"Date":"3/10/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":629,"Cost":591,"Date":"3/16/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":714,"Cost":661,"Date":"3/18/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":123,"Cost":69,"Date":"3/20/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":12,"Cost":11,"Date":"3/26/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":330,"Cost":305,"Date":"6/2/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":118,"Cost":79,"Date":"6/10/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":863,"Cost":509,"Date":"6/16/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":801,"Cost":497,"Date":"6/25/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":543,"Cost":277,"Date":"7/19/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":558,"Cost":317,"Date":"7/21/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":288,"Cost":197,"Date":"7/25/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":832,"Cost":666,"Date":"8/4/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":235,"Cost":192,"Date":"9/2/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":293,"Cost":195,"Date":"9/4/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":655,"Cost":495,"Date":"9/19/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":228,"Cost":142,"Date":"9/29/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":392,"Cost":358,"Date":"10/2/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":359,"Cost":231,"Date":"10/15/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":960,"Cost":664,"Date":"10/30/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":409,"Cost":334,"Date":"11/9/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":506,"Cost":328,"Date":"11/23/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":643,"Cost":585,"Date":"11/30/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":861,"Cost":752,"Date":"12/8/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":104,"Cost":87,"Date":"12/11/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":578,"Cost":506,"Date":"1/15/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":232,"Cost":179,"Date":"1/24/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":855,"Cost":785,"Date":"2/3/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":527,"Cost":500,"Date":"2/4/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":521,"Cost":480,"Date":"3/9/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":833,"Cost":687,"Date":"3/12/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":262,"Cost":158,"Date":"4/19/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":745,"Cost":539,"Date":"5/3/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":948,"Cost":560,"Date":"5/4/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":50,"Cost":41,"Date":"6/8/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":825,"Cost":722,"Date":"6/26/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":633,"Cost":365,"Date":"7/4/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":732,"Cost":611,"Date":"7/13/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":881,"Cost":652,"Date":"8/8/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":169,"Cost":158,"Date":"8/26/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":731,"Cost":396,"Date":"9/2/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":64,"Cost":43,"Date":"9/29/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":943,"Cost":768,"Date":"10/12/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":486,"Cost":360,"Date":"11/2/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":249,"Cost":202,"Date":"11/4/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":720,"Cost":530,"Date":"11/7/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":439,"Cost":253,"Date":"12/1/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":577,"Cost":494,"Date":"12/4/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":117,"Cost":106,"Date":"12/7/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":588,"Cost":446,"Date":"12/18/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":949,"Cost":741,"Date":"12/20/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":856,"Cost":483,"Date":"12/20/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":100,"Cost":71,"Date":"12/21/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":402,"Cost":263,"Date":"1/9/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":475,"Cost":409,"Date":"2/5/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":221,"Cost":172,"Date":"2/16/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":134,"Cost":100,"Date":"2/16/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":311,"Cost":296,"Date":"2/18/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":705,"Cost":387,"Date":"2/22/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":528,"Cost":441,"Date":"2/25/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":978,"Cost":529,"Date":"3/8/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":234,"Cost":221,"Date":"4/2/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":640,"Cost":373,"Date":"4/3/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":222,"Cost":188,"Date":"4/9/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":968,"Cost":559,"Date":"4/10/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":714,"Cost":474,"Date":"4/19/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":112,"Cost":65,"Date":"5/17/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":153,"Cost":106,"Date":"5/22/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":974,"Cost":705,"Date":"6/20/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":182,"Cost":115,"Date":"7/1/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":637,"Cost":341,"Date":"7/4/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":256,"Cost":175,"Date":"7/8/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":392,"Cost":277,"Date":"7/9/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":473,"Cost":285,"Date":"7/14/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":203,"Cost":123,"Date":"7/19/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":70,"Cost":52,"Date":"8/1/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":375,"Cost":338,"Date":"8/6/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":556,"Cost":382,"Date":"8/7/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":120,"Cost":99,"Date":"8/22/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":427,"Cost":350,"Date":"8/31/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":513,"Cost":312,"Date":"9/1/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":810,"Cost":731,"Date":"9/1/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":274,"Cost":243,"Date":"9/17/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":517,"Cost":353,"Date":"9/29/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":435,"Cost":350,"Date":"11/7/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":822,"Cost":548,"Date":"11/26/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":726,"Cost":414,"Date":"11/27/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":772,"Cost":526,"Date":"12/5/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":53,"Cost":40,"Date":"12/26/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":968,"Cost":492,"Date":"12/31/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":782,"Cost":626,"Date":"1/20/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":806,"Cost":429,"Date":"2/2/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":797,"Cost":655,"Date":"2/8/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":646,"Cost":542,"Date":"2/27/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":622,"Cost":496,"Date":"3/1/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":15,"Cost":14,"Date":"3/1/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":679,"Cost":599,"Date":"3/19/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":449,"Cost":406,"Date":"3/28/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":569,"Cost":503,"Date":"5/21/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":203,"Cost":110,"Date":"7/21/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":656,"Cost":365,"Date":"8/5/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":614,"Cost":476,"Date":"8/12/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":866,"Cost":476,"Date":"8/21/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":90,"Cost":78,"Date":"8/23/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":208,"Cost":153,"Date":"9/3/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":904,"Cost":508,"Date":"9/5/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":761,"Cost":705,"Date":"10/6/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":66,"Cost":53,"Date":"10/19/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":713,"Cost":433,"Date":"11/15/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":484,"Cost":295,"Date":"12/8/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":719,"Cost":568,"Date":"1/8/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":239,"Cost":223,"Date":"1/14/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":917,"Cost":864,"Date":"1/19/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":324,"Cost":189,"Date":"1/28/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":9,"Cost":7,"Date":"1/31/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":569,"Cost":340,"Date":"3/27/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":798,"Cost":690,"Date":"4/20/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":878,"Cost":625,"Date":"4/24/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":423,"Cost":315,"Date":"4/28/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":682,"Cost":457,"Date":"5/15/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":576,"Cost":497,"Date":"5/16/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":486,"Cost":276,"Date":"5/18/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":31,"Cost":19,"Date":"6/2/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":331,"Cost":242,"Date":"6/3/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":361,"Cost":201,"Date":"6/5/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":330,"Cost":181,"Date":"6/7/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":567,"Cost":536,"Date":"6/14/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":690,"Cost":571,"Date":"6/20/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":970,"Cost":747,"Date":"6/24/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":813,"Cost":552,"Date":"7/4/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":659,"Cost":568,"Date":"7/9/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":846,"Cost":627,"Date":"7/12/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":596,"Cost":514,"Date":"8/14/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":33,"Cost":29,"Date":"8/16/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":481,"Cost":443,"Date":"8/23/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":449,"Cost":337,"Date":"9/2/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":619,"Cost":409,"Date":"9/3/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":476,"Cost":345,"Date":"9/16/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":58,"Cost":43,"Date":"10/4/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":840,"Cost":443,"Date":"11/1/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":593,"Cost":459,"Date":"11/2/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":741,"Cost":398,"Date":"12/17/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":854,"Cost":708,"Date":"2/10/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":357,"Cost":251,"Date":"2/28/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":485,"Cost":415,"Date":"3/4/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":793,"Cost":642,"Date":"3/9/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":694,"Cost":581,"Date":"3/9/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":213,"Cost":189,"Date":"3/11/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":748,"Cost":643,"Date":"3/17/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":474,"Cost":367,"Date":"3/17/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":17,"Cost":10,"Date":"3/23/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":976,"Cost":520,"Date":"4/1/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":39,"Cost":28,"Date":"5/7/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":650,"Cost":502,"Date":"5/10/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":343,"Cost":263,"Date":"5/20/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":455,"Cost":356,"Date":"6/2/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":593,"Cost":392,"Date":"6/11/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":437,"Cost":334,"Date":"6/16/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":212,"Cost":185,"Date":"6/16/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":852,"Cost":454,"Date":"7/10/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":451,"Cost":246,"Date":"7/11/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":479,"Cost":436,"Date":"8/28/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":524,"Cost":322,"Date":"8/29/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":638,"Cost":352,"Date":"8/31/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":125,"Cost":98,"Date":"9/8/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":409,"Cost":234,"Date":"9/13/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":835,"Cost":500,"Date":"9/14/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":725,"Cost":437,"Date":"9/19/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":900,"Cost":601,"Date":"9/25/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":331,"Cost":294,"Date":"10/4/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":414,"Cost":209,"Date":"10/10/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":457,"Cost":329,"Date":"10/17/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":178,"Cost":94,"Date":"10/28/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":532,"Cost":471,"Date":"10/30/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":4,"Cost":4,"Date":"11/1/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":390,"Cost":213,"Date":"11/15/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":149,"Cost":107,"Date":"11/25/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":369,"Cost":309,"Date":"1/10/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":647,"Cost":611,"Date":"1/14/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":628,"Cost":365,"Date":"1/20/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":721,"Cost":452,"Date":"2/8/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":603,"Cost":550,"Date":"2/25/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":463,"Cost":405,"Date":"3/7/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":613,"Cost":384,"Date":"3/14/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":848,"Cost":786,"Date":"3/27/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":233,"Cost":149,"Date":"4/5/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":142,"Cost":92,"Date":"4/14/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":507,"Cost":259,"Date":"5/3/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":298,"Cost":264,"Date":"5/9/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":980,"Cost":926,"Date":"5/15/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":95,"Cost":68,"Date":"5/25/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":707,"Cost":619,"Date":"5/26/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":904,"Cost":672,"Date":"5/31/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":310,"Cost":224,"Date":"7/27/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":652,"Cost":515,"Date":"9/17/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":314,"Cost":163,"Date":"10/6/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":298,"Cost":184,"Date":"10/8/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":548,"Cost":400,"Date":"10/26/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":393,"Cost":262,"Date":"11/16/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":614,"Cost":518,"Date":"11/18/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":363,"Cost":278,"Date":"12/1/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":988,"Cost":868,"Date":"2/9/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":274,"Cost":229,"Date":"2/11/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":957,"Cost":646,"Date":"3/10/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":573,"Cost":303,"Date":"3/16/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":886,"Cost":554,"Date":"3/18/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":432,"Cost":296,"Date":"3/20/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":409,"Cost":335,"Date":"3/26/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":608,"Cost":545,"Date":"6/2/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":331,"Cost":254,"Date":"6/10/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":736,"Cost":428,"Date":"6/16/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":884,"Cost":583,"Date":"6/25/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":611,"Cost":503,"Date":"7/19/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":436,"Cost":248,"Date":"7/21/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":345,"Cost":262,"Date":"7/25/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":979,"Cost":731,"Date":"8/4/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":687,"Cost":650,"Date":"9/2/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":893,"Cost":721,"Date":"9/4/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":999,"Cost":757,"Date":"9/19/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":445,"Cost":314,"Date":"9/29/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":435,"Cost":305,"Date":"10/2/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":821,"Cost":680,"Date":"10/15/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":929,"Cost":655,"Date":"10/30/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":186,"Cost":132,"Date":"11/9/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":671,"Cost":448,"Date":"11/23/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":196,"Cost":158,"Date":"11/30/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":368,"Cost":338,"Date":"12/8/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":801,"Cost":525,"Date":"12/11/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":204,"Cost":183,"Date":"1/15/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":542,"Cost":304,"Date":"1/24/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":311,"Cost":196,"Date":"2/3/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":750,"Cost":683,"Date":"2/4/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":541,"Cost":334,"Date":"3/9/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":678,"Cost":473,"Date":"3/12/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":675,"Cost":448,"Date":"4/19/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":509,"Cost":395,"Date":"5/3/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":315,"Cost":187,"Date":"5/4/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":144,"Cost":125,"Date":"6/8/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":965,"Cost":592,"Date":"6/26/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":57,"Cost":39,"Date":"7/4/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":88,"Cost":66,"Date":"7/13/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":631,"Cost":405,"Date":"8/8/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":106,"Cost":90,"Date":"8/26/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":199,"Cost":125,"Date":"9/2/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":627,"Cost":388,"Date":"9/29/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":833,"Cost":715,"Date":"10/12/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":452,"Cost":402,"Date":"11/2/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":973,"Cost":886,"Date":"11/4/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":273,"Cost":244,"Date":"11/7/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":983,"Cost":666,"Date":"12/1/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":300,"Cost":257,"Date":"12/4/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":969,"Cost":498,"Date":"12/7/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":594,"Cost":331,"Date":"12/18/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":777,"Cost":438,"Date":"12/20/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":108,"Cost":98,"Date":"12/20/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":638,"Cost":543,"Date":"12/21/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":973,"Cost":864,"Date":"1/9/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":456,"Cost":244,"Date":"2/5/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":837,"Cost":419,"Date":"2/16/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":400,"Cost":205,"Date":"2/16/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":77,"Cost":69,"Date":"2/18/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":322,"Cost":250,"Date":"2/22/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":378,"Cost":315,"Date":"2/25/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":445,"Cost":270,"Date":"3/8/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":789,"Cost":484,"Date":"4/2/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":205,"Cost":169,"Date":"4/3/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":716,"Cost":495,"Date":"4/9/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":590,"Cost":340,"Date":"4/10/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":608,"Cost":382,"Date":"4/19/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":934,"Cost":702,"Date":"5/17/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":272,"Cost":236,"Date":"5/22/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":504,"Cost":348,"Date":"6/20/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":317,"Cost":227,"Date":"7/1/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":994,"Cost":536,"Date":"7/4/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":504,"Cost":451,"Date":"7/8/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":946,"Cost":576,"Date":"7/9/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":289,"Cost":186,"Date":"7/14/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":924,"Cost":464,"Date":"7/19/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":400,"Cost":282,"Date":"8/1/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":284,"Cost":178,"Date":"8/6/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":566,"Cost":353,"Date":"8/7/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":663,"Cost":607,"Date":"8/22/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":765,"Cost":654,"Date":"8/31/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":76,"Cost":71,"Date":"9/1/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":892,"Cost":511,"Date":"9/1/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":95,"Cost":62,"Date":"9/17/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":826,"Cost":767,"Date":"9/29/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":659,"Cost":594,"Date":"11/7/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":477,"Cost":420,"Date":"11/26/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":140,"Cost":104,"Date":"11/27/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":826,"Cost":454,"Date":"12/5/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":24,"Cost":16,"Date":"12/26/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":943,"Cost":746,"Date":"12/31/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":597,"Cost":536,"Date":"1/20/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":664,"Cost":595,"Date":"2/2/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":178,"Cost":148,"Date":"2/8/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":632,"Cost":444,"Date":"2/27/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":539,"Cost":278,"Date":"3/1/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":418,"Cost":381,"Date":"3/1/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":54,"Cost":33,"Date":"3/19/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":149,"Cost":142,"Date":"3/28/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":312,"Cost":222,"Date":"5/21/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":633,"Cost":505,"Date":"7/21/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":209,"Cost":184,"Date":"8/5/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":412,"Cost":299,"Date":"8/12/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":668,"Cost":508,"Date":"8/21/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":458,"Cost":237,"Date":"8/23/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":209,"Cost":181,"Date":"9/3/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":512,"Cost":408,"Date":"9/5/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":865,"Cost":782,"Date":"10/6/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":826,"Cost":502,"Date":"10/19/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":245,"Cost":172,"Date":"11/15/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":742,"Cost":401,"Date":"12/8/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":675,"Cost":402,"Date":"1/8/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":386,"Cost":344,"Date":"1/14/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":87,"Cost":74,"Date":"1/19/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":710,"Cost":385,"Date":"1/28/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":795,"Cost":755,"Date":"1/31/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":683,"Cost":372,"Date":"3/27/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":383,"Cost":241,"Date":"4/20/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":154,"Cost":104,"Date":"4/24/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":672,"Cost":630,"Date":"4/28/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":141,"Cost":81,"Date":"5/15/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":109,"Cost":71,"Date":"5/16/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":861,"Cost":647,"Date":"5/18/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":537,"Cost":403,"Date":"6/2/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":787,"Cost":629,"Date":"6/3/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":439,"Cost":398,"Date":"6/5/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":149,"Cost":107,"Date":"6/7/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":759,"Cost":675,"Date":"6/14/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":76,"Cost":49,"Date":"6/20/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":32,"Cost":21,"Date":"6/24/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":302,"Cost":261,"Date":"7/4/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":383,"Cost":280,"Date":"7/9/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":49,"Cost":24,"Date":"7/12/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":676,"Cost":487,"Date":"8/14/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":270,"Cost":160,"Date":"8/16/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":537,"Cost":288,"Date":"8/23/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":182,"Cost":98,"Date":"9/2/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":507,"Cost":407,"Date":"9/3/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":383,"Cost":301,"Date":"9/16/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":980,"Cost":845,"Date":"10/4/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":429,"Cost":363,"Date":"11/1/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":691,"Cost":351,"Date":"11/2/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":254,"Cost":233,"Date":"12/17/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":133,"Cost":105,"Date":"2/10/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":950,"Cost":479,"Date":"2/28/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":402,"Cost":368,"Date":"3/4/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":974,"Cost":616,"Date":"3/9/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":371,"Cost":270,"Date":"3/9/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":457,"Cost":321,"Date":"3/11/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":792,"Cost":410,"Date":"3/17/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":558,"Cost":296,"Date":"3/17/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":296,"Cost":251,"Date":"3/23/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":181,"Cost":111,"Date":"4/1/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":126,"Cost":74,"Date":"5/7/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":477,"Cost":348,"Date":"5/10/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":453,"Cost":335,"Date":"5/20/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":450,"Cost":369,"Date":"6/2/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":164,"Cost":137,"Date":"6/11/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":565,"Cost":299,"Date":"6/16/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":876,"Cost":700,"Date":"6/16/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":706,"Cost":479,"Date":"7/10/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":968,"Cost":820,"Date":"7/11/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":316,"Cost":263,"Date":"8/28/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":97,"Cost":69,"Date":"8/29/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":500,"Cost":251,"Date":"8/31/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":965,"Cost":486,"Date":"9/8/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":911,"Cost":791,"Date":"9/13/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":287,"Cost":263,"Date":"9/14/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":126,"Cost":88,"Date":"9/19/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":977,"Cost":813,"Date":"9/25/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":398,"Cost":339,"Date":"10/4/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":306,"Cost":156,"Date":"10/10/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":517,"Cost":396,"Date":"10/17/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":885,"Cost":506,"Date":"10/28/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":821,"Cost":521,"Date":"10/30/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":227,"Cost":197,"Date":"11/1/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":458,"Cost":349,"Date":"11/15/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":772,"Cost":417,"Date":"11/25/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":346,"Cost":181,"Date":"1/10/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":796,"Cost":718,"Date":"1/14/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":602,"Cost":397,"Date":"1/20/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":805,"Cost":725,"Date":"2/8/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":143,"Cost":81,"Date":"2/25/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":376,"Cost":313,"Date":"3/7/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":904,"Cost":760,"Date":"3/14/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":143,"Cost":72,"Date":"3/27/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":533,"Cost":407,"Date":"4/5/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":930,"Cost":652,"Date":"4/14/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":783,"Cost":722,"Date":"5/3/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":798,"Cost":581,"Date":"5/9/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":558,"Cost":343,"Date":"5/15/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":791,"Cost":445,"Date":"5/25/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":630,"Cost":325,"Date":"5/26/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":767,"Cost":388,"Date":"5/31/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":595,"Cost":504,"Date":"7/27/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":530,"Cost":276,"Date":"9/17/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":584,"Cost":510,"Date":"10/6/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":93,"Cost":62,"Date":"10/8/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":757,"Cost":712,"Date":"10/26/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":924,"Cost":698,"Date":"11/16/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":767,"Cost":687,"Date":"11/18/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"HM","Country":"USA","Sale":149,"Cost":141,"Date":"12/1/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":162,"Cost":120,"Date":"2/9/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":182,"Cost":109,"Date":"2/11/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":242,"Cost":212,"Date":"3/10/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":717,"Cost":593,"Date":"3/16/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":410,"Cost":273,"Date":"3/18/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":131,"Cost":95,"Date":"3/20/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":562,"Cost":508,"Date":"3/26/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":590,"Cost":405,"Date":"6/2/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":752,"Cost":511,"Date":"6/10/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":390,"Cost":316,"Date":"6/16/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":572,"Cost":307,"Date":"6/25/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":184,"Cost":166,"Date":"7/19/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":851,"Cost":684,"Date":"7/21/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":16,"Cost":12,"Date":"7/25/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":964,"Cost":743,"Date":"8/4/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":715,"Cost":515,"Date":"9/2/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":611,"Cost":439,"Date":"9/4/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":117,"Cost":86,"Date":"9/19/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":266,"Cost":241,"Date":"9/29/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":329,"Cost":198,"Date":"10/2/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":934,"Cost":793,"Date":"10/15/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":842,"Cost":578,"Date":"10/30/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":917,"Cost":645,"Date":"11/9/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":462,"Cost":274,"Date":"11/23/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":288,"Cost":267,"Date":"11/30/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":457,"Cost":358,"Date":"12/8/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":707,"Cost":380,"Date":"12/11/2018"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":206,"Cost":127,"Date":"1/15/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":549,"Cost":282,"Date":"1/24/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":688,"Cost":621,"Date":"2/3/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":18,"Cost":15,"Date":"2/4/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":366,"Cost":318,"Date":"3/9/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":398,"Cost":317,"Date":"3/12/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":490,"Cost":264,"Date":"4/19/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":194,"Cost":177,"Date":"5/3/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":218,"Cost":178,"Date":"5/4/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":159,"Cost":90,"Date":"6/8/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":661,"Cost":426,"Date":"6/26/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":74,"Cost":60,"Date":"7/4/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":111,"Cost":85,"Date":"7/13/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":402,"Cost":348,"Date":"8/8/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":327,"Cost":174,"Date":"8/26/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":636,"Cost":527,"Date":"9/2/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":901,"Cost":698,"Date":"9/29/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":755,"Cost":627,"Date":"10/12/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":67,"Cost":48,"Date":"11/2/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":439,"Cost":258,"Date":"11/4/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":301,"Cost":260,"Date":"11/7/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":720,"Cost":680,"Date":"12/1/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":736,"Cost":508,"Date":"12/4/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":356,"Cost":182,"Date":"12/7/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":836,"Cost":670,"Date":"12/18/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":733,"Cost":566,"Date":"12/20/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":111,"Cost":67,"Date":"12/20/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":29,"Cost":28,"Date":"12/21/2019"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":322,"Cost":303,"Date":"1/9/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":111,"Cost":100,"Date":"2/5/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":247,"Cost":126,"Date":"2/16/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":789,"Cost":659,"Date":"2/16/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":320,"Cost":222,"Date":"2/18/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":395,"Cost":255,"Date":"2/22/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":99,"Cost":85,"Date":"2/25/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":919,"Cost":814,"Date":"3/8/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":426,"Cost":355,"Date":"4/2/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":565,"Cost":374,"Date":"4/3/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":860,"Cost":738,"Date":"4/9/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":699,"Cost":568,"Date":"4/10/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":244,"Cost":213,"Date":"4/19/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":232,"Cost":199,"Date":"5/17/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":537,"Cost":330,"Date":"5/22/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":290,"Cost":260,"Date":"6/20/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":166,"Cost":138,"Date":"7/1/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":897,"Cost":714,"Date":"7/4/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":821,"Cost":425,"Date":"7/8/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":581,"Cost":355,"Date":"7/9/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":311,"Cost":191,"Date":"7/14/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":981,"Cost":914,"Date":"7/19/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":959,"Cost":682,"Date":"8/1/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":545,"Cost":305,"Date":"8/6/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":659,"Cost":500,"Date":"8/7/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":852,"Cost":479,"Date":"8/22/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":844,"Cost":591,"Date":"8/31/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":401,"Cost":230,"Date":"9/1/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":86,"Cost":81,"Date":"9/1/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":303,"Cost":272,"Date":"9/17/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":726,"Cost":515,"Date":"9/29/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":529,"Cost":399,"Date":"11/7/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":914,"Cost":585,"Date":"11/26/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":955,"Cost":870,"Date":"11/27/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":611,"Cost":444,"Date":"12/5/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":234,"Cost":172,"Date":"12/26/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":915,"Cost":668,"Date":"12/31/2020"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":821,"Cost":593,"Date":"1/20/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":617,"Cost":391,"Date":"2/2/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":828,"Cost":562,"Date":"2/8/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":985,"Cost":767,"Date":"2/27/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":810,"Cost":742,"Date":"3/1/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":806,"Cost":409,"Date":"3/1/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":604,"Cost":427,"Date":"3/19/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":863,"Cost":451,"Date":"3/28/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":549,"Cost":377,"Date":"5/21/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":815,"Cost":719,"Date":"7/21/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":419,"Cost":329,"Date":"8/5/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":919,"Cost":620,"Date":"8/12/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":885,"Cost":643,"Date":"8/21/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":85,"Cost":72,"Date":"8/23/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":816,"Cost":622,"Date":"9/3/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":17,"Cost":14,"Date":"9/5/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":402,"Cost":274,"Date":"10/6/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":359,"Cost":316,"Date":"10/19/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":173,"Cost":142,"Date":"11/15/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":623,"Cost":365,"Date":"12/8/2021"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":395,"Cost":375,"Date":"1/8/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":896,"Cost":803,"Date":"1/14/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":594,"Cost":319,"Date":"1/19/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":125,"Cost":79,"Date":"1/28/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":718,"Cost":662,"Date":"1/31/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":962,"Cost":812,"Date":"3/27/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":606,"Cost":389,"Date":"4/20/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":827,"Cost":710,"Date":"4/24/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":11,"Cost":6,"Date":"4/28/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":260,"Cost":152,"Date":"5/15/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":144,"Cost":78,"Date":"5/16/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":860,"Cost":605,"Date":"5/18/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":576,"Cost":534,"Date":"6/2/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":97,"Cost":49,"Date":"6/3/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":78,"Cost":51,"Date":"6/5/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":3,"Cost":3,"Date":"6/7/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":8,"Cost":7,"Date":"6/14/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":556,"Cost":474,"Date":"6/20/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":250,"Cost":238,"Date":"6/24/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":849,"Cost":709,"Date":"7/4/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":275,"Cost":214,"Date":"7/9/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":558,"Cost":414,"Date":"7/12/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":545,"Cost":445,"Date":"8/14/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":780,"Cost":674,"Date":"8/16/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":538,"Cost":270,"Date":"8/23/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":342,"Cost":235,"Date":"9/2/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":416,"Cost":278,"Date":"9/3/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":775,"Cost":545,"Date":"9/16/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":805,"Cost":572,"Date":"10/4/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":844,"Cost":427,"Date":"11/1/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":389,"Cost":211,"Date":"11/2/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":843,"Cost":727,"Date":"12/17/2022"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":497,"Cost":340,"Date":"2/10/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":535,"Cost":403,"Date":"2/28/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":459,"Cost":310,"Date":"3/4/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":321,"Cost":245,"Date":"3/9/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":558,"Cost":311,"Date":"3/9/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":101,"Cost":84,"Date":"3/11/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":344,"Cost":189,"Date":"3/17/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":886,"Cost":543,"Date":"3/17/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":555,"Cost":406,"Date":"3/23/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":764,"Cost":525,"Date":"4/1/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":370,"Cost":271,"Date":"5/7/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":327,"Cost":259,"Date":"5/10/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":515,"Cost":394,"Date":"5/20/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":24,"Cost":22,"Date":"6/2/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":660,"Cost":589,"Date":"6/11/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":55,"Cost":38,"Date":"6/16/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":103,"Cost":96,"Date":"6/16/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":269,"Cost":153,"Date":"7/10/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":523,"Cost":444,"Date":"7/11/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":279,"Cost":181,"Date":"8/28/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":221,"Cost":203,"Date":"8/29/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":762,"Cost":624,"Date":"8/31/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":846,"Cost":512,"Date":"9/8/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":996,"Cost":569,"Date":"9/13/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":176,"Cost":130,"Date":"9/14/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":515,"Cost":474,"Date":"9/19/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":293,"Cost":207,"Date":"9/25/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":500,"Cost":438,"Date":"10/4/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":683,"Cost":402,"Date":"10/10/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":220,"Cost":140,"Date":"10/17/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":363,"Cost":219,"Date":"10/28/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":546,"Cost":317,"Date":"10/30/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":728,"Cost":398,"Date":"11/1/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":334,"Cost":241,"Date":"11/15/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":191,"Cost":143,"Date":"11/25/2023"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":203,"Cost":140,"Date":"1/10/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":51,"Cost":32,"Date":"1/14/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":253,"Cost":131,"Date":"1/20/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":830,"Cost":428,"Date":"2/8/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":506,"Cost":266,"Date":"2/25/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":423,"Cost":300,"Date":"3/7/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":602,"Cost":424,"Date":"3/14/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":693,"Cost":397,"Date":"3/27/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":890,"Cost":623,"Date":"4/5/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":833,"Cost":771,"Date":"4/14/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":805,"Cost":448,"Date":"5/3/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":883,"Cost":802,"Date":"5/9/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":577,"Cost":348,"Date":"5/15/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":6,"Cost":5,"Date":"5/25/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":27,"Cost":20,"Date":"5/26/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":557,"Cost":378,"Date":"5/31/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":883,"Cost":580,"Date":"7/27/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":832,"Cost":779,"Date":"9/17/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":573,"Cost":521,"Date":"10/6/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":239,"Cost":188,"Date":"10/8/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":458,"Cost":397,"Date":"10/26/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":38,"Cost":21,"Date":"11/16/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":648,"Cost":474,"Date":"11/18/2024"},{"Store":"Macy's Herald Square, New York, NY","Brand":"Jeans","Country":"USA","Sale":404,"Cost":232,"Date":"12/1/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":968,"Cost":864,"Date":"2/9/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":27,"Cost":21,"Date":"2/11/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":83,"Cost":61,"Date":"3/10/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":509,"Cost":382,"Date":"3/16/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":979,"Cost":782,"Date":"3/18/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":249,"Cost":179,"Date":"3/20/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":868,"Cost":732,"Date":"3/26/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":810,"Cost":489,"Date":"6/2/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":97,"Cost":70,"Date":"6/10/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":200,"Cost":131,"Date":"6/16/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":269,"Cost":213,"Date":"6/25/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":637,"Cost":510,"Date":"7/19/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":205,"Cost":155,"Date":"7/21/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":603,"Cost":374,"Date":"7/25/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":710,"Cost":668,"Date":"8/4/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":163,"Cost":137,"Date":"9/2/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":720,"Cost":468,"Date":"9/4/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":139,"Cost":104,"Date":"9/19/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":289,"Cost":149,"Date":"9/29/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":473,"Cost":295,"Date":"10/2/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":549,"Cost":335,"Date":"10/15/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":310,"Cost":265,"Date":"10/30/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":795,"Cost":548,"Date":"11/9/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":359,"Cost":222,"Date":"11/23/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":752,"Cost":650,"Date":"11/30/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":835,"Cost":759,"Date":"12/8/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":5,"Cost":3,"Date":"12/11/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":129,"Cost":87,"Date":"1/15/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":208,"Cost":142,"Date":"1/24/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":194,"Cost":154,"Date":"2/3/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":483,"Cost":352,"Date":"2/4/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":495,"Cost":433,"Date":"3/9/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":249,"Cost":168,"Date":"3/12/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":336,"Cost":295,"Date":"4/19/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":164,"Cost":94,"Date":"5/3/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":257,"Cost":143,"Date":"5/4/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":404,"Cost":383,"Date":"6/8/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":817,"Cost":564,"Date":"6/26/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":168,"Cost":102,"Date":"7/4/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":810,"Cost":692,"Date":"7/13/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":754,"Cost":595,"Date":"8/8/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":424,"Cost":240,"Date":"8/26/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":834,"Cost":742,"Date":"9/2/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":562,"Cost":529,"Date":"9/29/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":115,"Cost":63,"Date":"10/12/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":661,"Cost":573,"Date":"11/2/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":742,"Cost":472,"Date":"11/4/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":121,"Cost":81,"Date":"11/7/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":759,"Cost":706,"Date":"12/1/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":662,"Cost":398,"Date":"12/4/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":614,"Cost":474,"Date":"12/7/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":875,"Cost":585,"Date":"12/18/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":39,"Cost":26,"Date":"12/20/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":25,"Cost":20,"Date":"12/20/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":714,"Cost":669,"Date":"12/21/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":498,"Cost":389,"Date":"1/9/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":268,"Cost":172,"Date":"2/5/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":255,"Cost":167,"Date":"2/16/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":852,"Cost":668,"Date":"2/16/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":493,"Cost":353,"Date":"2/18/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":440,"Cost":241,"Date":"2/22/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":899,"Cost":812,"Date":"2/25/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":472,"Cost":375,"Date":"3/8/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":985,"Cost":617,"Date":"4/2/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":308,"Cost":265,"Date":"4/3/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":63,"Cost":44,"Date":"4/9/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":974,"Cost":785,"Date":"4/10/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":37,"Cost":35,"Date":"4/19/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":358,"Cost":300,"Date":"5/17/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":137,"Cost":95,"Date":"5/22/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":663,"Cost":564,"Date":"6/20/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":649,"Cost":422,"Date":"7/1/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":188,"Cost":110,"Date":"7/4/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":224,"Cost":144,"Date":"7/8/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":818,"Cost":613,"Date":"7/9/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":274,"Cost":258,"Date":"7/14/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":645,"Cost":533,"Date":"7/19/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":889,"Cost":758,"Date":"8/1/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":914,"Cost":851,"Date":"8/6/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":11,"Cost":6,"Date":"8/7/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":609,"Cost":453,"Date":"8/22/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":242,"Cost":216,"Date":"8/31/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":589,"Cost":403,"Date":"9/1/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":372,"Cost":192,"Date":"9/1/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":147,"Cost":77,"Date":"9/17/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":334,"Cost":257,"Date":"9/29/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":556,"Cost":292,"Date":"11/7/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":303,"Cost":259,"Date":"11/26/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":484,"Cost":282,"Date":"11/27/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":216,"Cost":109,"Date":"12/5/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":596,"Cost":547,"Date":"12/26/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":565,"Cost":494,"Date":"12/31/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":962,"Cost":610,"Date":"1/20/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":646,"Cost":549,"Date":"2/2/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":347,"Cost":230,"Date":"2/8/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":528,"Cost":485,"Date":"2/27/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":427,"Cost":342,"Date":"3/1/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":324,"Cost":168,"Date":"3/1/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":485,"Cost":334,"Date":"3/19/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":500,"Cost":325,"Date":"3/28/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":670,"Cost":367,"Date":"5/21/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":137,"Cost":118,"Date":"7/21/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":330,"Cost":290,"Date":"8/5/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":182,"Cost":94,"Date":"8/12/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":23,"Cost":14,"Date":"8/21/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":389,"Cost":351,"Date":"8/23/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":1000,"Cost":898,"Date":"9/3/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":187,"Cost":151,"Date":"9/5/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":91,"Cost":50,"Date":"10/6/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":906,"Cost":676,"Date":"10/19/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":879,"Cost":662,"Date":"11/15/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":737,"Cost":560,"Date":"12/8/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":23,"Cost":22,"Date":"1/8/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":126,"Cost":82,"Date":"1/14/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":394,"Cost":248,"Date":"1/19/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":681,"Cost":635,"Date":"1/28/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":119,"Cost":71,"Date":"1/31/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":875,"Cost":590,"Date":"3/27/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":991,"Cost":817,"Date":"4/20/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":334,"Cost":230,"Date":"4/24/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":456,"Cost":260,"Date":"4/28/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":334,"Cost":175,"Date":"5/15/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":258,"Cost":182,"Date":"5/16/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":976,"Cost":860,"Date":"5/18/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":284,"Cost":146,"Date":"6/2/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":865,"Cost":765,"Date":"6/3/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":959,"Cost":586,"Date":"6/5/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":102,"Cost":87,"Date":"6/7/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":738,"Cost":505,"Date":"6/14/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":276,"Cost":236,"Date":"6/20/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":361,"Cost":180,"Date":"6/24/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":873,"Cost":780,"Date":"7/4/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":213,"Cost":146,"Date":"7/9/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":191,"Cost":180,"Date":"7/12/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":33,"Cost":24,"Date":"8/14/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":235,"Cost":175,"Date":"8/16/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":483,"Cost":383,"Date":"8/23/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":138,"Cost":127,"Date":"9/2/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":848,"Cost":682,"Date":"9/3/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":263,"Cost":163,"Date":"9/16/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":892,"Cost":611,"Date":"10/4/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":249,"Cost":167,"Date":"11/1/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":980,"Cost":600,"Date":"11/2/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":524,"Cost":436,"Date":"12/17/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":905,"Cost":601,"Date":"2/10/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":8,"Cost":6,"Date":"2/28/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":689,"Cost":389,"Date":"3/4/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":804,"Cost":417,"Date":"3/9/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":273,"Cost":252,"Date":"3/9/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":662,"Cost":382,"Date":"3/11/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":963,"Cost":913,"Date":"3/17/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":566,"Cost":413,"Date":"3/17/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":940,"Cost":598,"Date":"3/23/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":733,"Cost":583,"Date":"4/1/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":234,"Cost":154,"Date":"5/7/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":309,"Cost":196,"Date":"5/10/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":551,"Cost":495,"Date":"5/20/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":547,"Cost":371,"Date":"6/2/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":816,"Cost":494,"Date":"6/11/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":467,"Cost":434,"Date":"6/16/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":838,"Cost":665,"Date":"6/16/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":311,"Cost":242,"Date":"7/10/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":840,"Cost":682,"Date":"7/11/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":813,"Cost":699,"Date":"8/28/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":555,"Cost":345,"Date":"8/29/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":754,"Cost":401,"Date":"8/31/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":14,"Cost":9,"Date":"9/8/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":31,"Cost":27,"Date":"9/13/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":620,"Cost":459,"Date":"9/14/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":723,"Cost":624,"Date":"9/19/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":117,"Cost":110,"Date":"9/25/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":783,"Cost":432,"Date":"10/4/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":153,"Cost":132,"Date":"10/10/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":808,"Cost":658,"Date":"10/17/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":670,"Cost":359,"Date":"10/28/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":265,"Cost":163,"Date":"10/30/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":123,"Cost":76,"Date":"11/1/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":710,"Cost":530,"Date":"11/15/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":759,"Cost":508,"Date":"11/25/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":962,"Cost":769,"Date":"1/10/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":928,"Cost":680,"Date":"1/14/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":223,"Cost":180,"Date":"1/20/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":956,"Cost":799,"Date":"2/8/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":742,"Cost":567,"Date":"2/25/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":239,"Cost":216,"Date":"3/7/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":489,"Cost":384,"Date":"3/14/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":851,"Cost":432,"Date":"3/27/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":458,"Cost":282,"Date":"4/5/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":910,"Cost":615,"Date":"4/14/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":917,"Cost":841,"Date":"5/3/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":550,"Cost":294,"Date":"5/9/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":185,"Cost":129,"Date":"5/15/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":123,"Cost":77,"Date":"5/25/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":6,"Cost":6,"Date":"5/26/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":636,"Cost":441,"Date":"5/31/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":645,"Cost":489,"Date":"7/27/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":491,"Cost":410,"Date":"9/17/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":207,"Cost":154,"Date":"10/6/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":87,"Cost":74,"Date":"10/8/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":329,"Cost":276,"Date":"10/26/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":140,"Cost":105,"Date":"11/16/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":715,"Cost":657,"Date":"11/18/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"COS","Country":"USA","Sale":631,"Cost":447,"Date":"12/1/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":164,"Cost":90,"Date":"2/9/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":1,"Cost":0,"Date":"2/11/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":988,"Cost":649,"Date":"3/10/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":70,"Cost":63,"Date":"3/16/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":25,"Cost":24,"Date":"3/18/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":118,"Cost":68,"Date":"3/20/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":677,"Cost":635,"Date":"3/26/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":921,"Cost":826,"Date":"6/2/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":914,"Cost":603,"Date":"6/10/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":98,"Cost":85,"Date":"6/16/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":965,"Cost":486,"Date":"6/25/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":465,"Cost":239,"Date":"7/19/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":638,"Cost":601,"Date":"7/21/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":807,"Cost":480,"Date":"7/25/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":525,"Cost":291,"Date":"8/4/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":206,"Cost":130,"Date":"9/2/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":272,"Cost":195,"Date":"9/4/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":757,"Cost":439,"Date":"9/19/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":495,"Cost":281,"Date":"9/29/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":489,"Cost":326,"Date":"10/2/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":379,"Cost":334,"Date":"10/15/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":521,"Cost":315,"Date":"10/30/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":416,"Cost":226,"Date":"11/9/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":776,"Cost":536,"Date":"11/23/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":747,"Cost":506,"Date":"11/30/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":777,"Cost":640,"Date":"12/8/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":844,"Cost":544,"Date":"12/11/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":526,"Cost":377,"Date":"1/15/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":476,"Cost":270,"Date":"1/24/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":673,"Cost":605,"Date":"2/3/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":173,"Cost":117,"Date":"2/4/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":121,"Cost":110,"Date":"3/9/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":456,"Cost":432,"Date":"3/12/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":954,"Cost":518,"Date":"4/19/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":346,"Cost":179,"Date":"5/3/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":977,"Cost":773,"Date":"5/4/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":634,"Cost":427,"Date":"6/8/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":774,"Cost":391,"Date":"6/26/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":604,"Cost":402,"Date":"7/4/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":77,"Cost":67,"Date":"7/13/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":343,"Cost":216,"Date":"8/8/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":505,"Cost":389,"Date":"8/26/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":2,"Cost":2,"Date":"9/2/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":779,"Cost":570,"Date":"9/29/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":899,"Cost":852,"Date":"10/12/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":108,"Cost":94,"Date":"11/2/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":404,"Cost":276,"Date":"11/4/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":311,"Cost":233,"Date":"11/7/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":366,"Cost":223,"Date":"12/1/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":961,"Cost":714,"Date":"12/4/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":640,"Cost":406,"Date":"12/7/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":16,"Cost":8,"Date":"12/18/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":370,"Cost":254,"Date":"12/20/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":443,"Cost":300,"Date":"12/20/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":866,"Cost":613,"Date":"12/21/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":798,"Cost":605,"Date":"1/9/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":986,"Cost":505,"Date":"2/5/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":675,"Cost":517,"Date":"2/16/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":764,"Cost":640,"Date":"2/16/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":411,"Cost":273,"Date":"2/18/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":973,"Cost":506,"Date":"2/22/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":604,"Cost":393,"Date":"2/25/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":386,"Cost":326,"Date":"3/8/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":93,"Cost":70,"Date":"4/2/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":18,"Cost":11,"Date":"4/3/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":218,"Cost":121,"Date":"4/9/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":120,"Cost":66,"Date":"4/10/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":474,"Cost":266,"Date":"4/19/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":546,"Cost":395,"Date":"5/17/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":239,"Cost":211,"Date":"5/22/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":534,"Cost":333,"Date":"6/20/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":434,"Cost":253,"Date":"7/1/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":463,"Cost":415,"Date":"7/4/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":564,"Cost":440,"Date":"7/8/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":276,"Cost":181,"Date":"7/9/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":257,"Cost":141,"Date":"7/14/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":469,"Cost":354,"Date":"7/19/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":541,"Cost":379,"Date":"8/1/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":381,"Cost":249,"Date":"8/6/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":668,"Cost":622,"Date":"8/7/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":487,"Cost":365,"Date":"8/22/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":322,"Cost":279,"Date":"8/31/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":7,"Cost":6,"Date":"9/1/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":316,"Cost":186,"Date":"9/1/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":335,"Cost":181,"Date":"9/17/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":717,"Cost":385,"Date":"9/29/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":292,"Cost":194,"Date":"11/7/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":908,"Cost":724,"Date":"11/26/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":860,"Cost":605,"Date":"11/27/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":458,"Cost":365,"Date":"12/5/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":895,"Cost":467,"Date":"12/26/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":410,"Cost":338,"Date":"12/31/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":474,"Cost":273,"Date":"1/20/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":274,"Cost":160,"Date":"2/2/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":964,"Cost":728,"Date":"2/8/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":859,"Cost":491,"Date":"2/27/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":521,"Cost":358,"Date":"3/1/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":283,"Cost":215,"Date":"3/1/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":602,"Cost":531,"Date":"3/19/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":991,"Cost":665,"Date":"3/28/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":222,"Cost":207,"Date":"5/21/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":272,"Cost":201,"Date":"7/21/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":733,"Cost":512,"Date":"8/5/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":10,"Cost":8,"Date":"8/12/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":228,"Cost":174,"Date":"8/21/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":406,"Cost":306,"Date":"8/23/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":318,"Cost":232,"Date":"9/3/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":931,"Cost":645,"Date":"9/5/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":464,"Cost":333,"Date":"10/6/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":165,"Cost":114,"Date":"10/19/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":67,"Cost":44,"Date":"11/15/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":46,"Cost":32,"Date":"12/8/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":958,"Cost":672,"Date":"1/8/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":708,"Cost":528,"Date":"1/14/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":731,"Cost":402,"Date":"1/19/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":321,"Cost":175,"Date":"1/28/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":83,"Cost":63,"Date":"1/31/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":202,"Cost":148,"Date":"3/27/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":536,"Cost":337,"Date":"4/20/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":164,"Cost":91,"Date":"4/24/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":599,"Cost":361,"Date":"4/28/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":288,"Cost":185,"Date":"5/15/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":476,"Cost":331,"Date":"5/16/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":357,"Cost":320,"Date":"5/18/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":808,"Cost":609,"Date":"6/2/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":50,"Cost":36,"Date":"6/3/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":629,"Cost":414,"Date":"6/5/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":908,"Cost":581,"Date":"6/7/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":161,"Cost":88,"Date":"6/14/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":309,"Cost":196,"Date":"6/20/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":862,"Cost":523,"Date":"6/24/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":987,"Cost":531,"Date":"7/4/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":32,"Cost":28,"Date":"7/9/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":923,"Cost":579,"Date":"7/12/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":718,"Cost":520,"Date":"8/14/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":610,"Cost":462,"Date":"8/16/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":244,"Cost":135,"Date":"8/23/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":138,"Cost":76,"Date":"9/2/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":511,"Cost":450,"Date":"9/3/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":24,"Cost":15,"Date":"9/16/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":544,"Cost":348,"Date":"10/4/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":415,"Cost":340,"Date":"11/1/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":109,"Cost":83,"Date":"11/2/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":878,"Cost":811,"Date":"12/17/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":866,"Cost":673,"Date":"2/10/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":883,"Cost":799,"Date":"2/28/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":538,"Cost":296,"Date":"3/4/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":303,"Cost":186,"Date":"3/9/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":638,"Cost":535,"Date":"3/9/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":649,"Cost":515,"Date":"3/11/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":625,"Cost":417,"Date":"3/17/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":160,"Cost":104,"Date":"3/17/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":941,"Cost":532,"Date":"3/23/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":563,"Cost":522,"Date":"4/1/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":812,"Cost":611,"Date":"5/7/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":451,"Cost":324,"Date":"5/10/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":744,"Cost":472,"Date":"5/20/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":415,"Cost":343,"Date":"6/2/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":219,"Cost":206,"Date":"6/11/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":974,"Cost":627,"Date":"6/16/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":492,"Cost":325,"Date":"6/16/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":12,"Cost":8,"Date":"7/10/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":264,"Cost":136,"Date":"7/11/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":246,"Cost":215,"Date":"8/28/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":842,"Cost":624,"Date":"8/29/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":14,"Cost":7,"Date":"8/31/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":695,"Cost":352,"Date":"9/8/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":824,"Cost":414,"Date":"9/13/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":636,"Cost":370,"Date":"9/14/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":523,"Cost":493,"Date":"9/19/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":668,"Cost":632,"Date":"9/25/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":510,"Cost":274,"Date":"10/4/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":255,"Cost":191,"Date":"10/10/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":618,"Cost":509,"Date":"10/17/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":661,"Cost":367,"Date":"10/28/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":384,"Cost":195,"Date":"10/30/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":809,"Cost":526,"Date":"11/1/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":580,"Cost":523,"Date":"11/15/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":200,"Cost":115,"Date":"11/25/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":721,"Cost":625,"Date":"1/10/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":823,"Cost":595,"Date":"1/14/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":183,"Cost":110,"Date":"1/20/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":654,"Cost":351,"Date":"2/8/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":688,"Cost":561,"Date":"2/25/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":696,"Cost":643,"Date":"3/7/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":65,"Cost":58,"Date":"3/14/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":394,"Cost":277,"Date":"3/27/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":914,"Cost":678,"Date":"4/5/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":724,"Cost":553,"Date":"4/14/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":595,"Cost":401,"Date":"5/3/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":710,"Cost":652,"Date":"5/9/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":480,"Cost":247,"Date":"5/15/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":66,"Cost":58,"Date":"5/25/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":92,"Cost":82,"Date":"5/26/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":712,"Cost":452,"Date":"5/31/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":2,"Cost":1,"Date":"7/27/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":531,"Cost":426,"Date":"9/17/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":288,"Cost":178,"Date":"10/6/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":724,"Cost":419,"Date":"10/8/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":706,"Cost":399,"Date":"10/26/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":641,"Cost":382,"Date":"11/16/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":542,"Cost":488,"Date":"11/18/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"Jeans","Country":"USA","Sale":219,"Cost":150,"Date":"12/1/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":472,"Cost":250,"Date":"2/9/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":129,"Cost":92,"Date":"2/11/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":475,"Cost":393,"Date":"3/10/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":118,"Cost":88,"Date":"3/16/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":855,"Cost":774,"Date":"3/18/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":794,"Cost":685,"Date":"3/20/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":34,"Cost":29,"Date":"3/26/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":674,"Cost":522,"Date":"6/2/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":826,"Cost":560,"Date":"6/10/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":436,"Cost":267,"Date":"6/16/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":588,"Cost":537,"Date":"6/25/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":46,"Cost":25,"Date":"7/19/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":601,"Cost":544,"Date":"7/21/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":591,"Cost":315,"Date":"7/25/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":202,"Cost":177,"Date":"8/4/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":568,"Cost":353,"Date":"9/2/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":293,"Cost":154,"Date":"9/4/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":413,"Cost":278,"Date":"9/19/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":662,"Cost":411,"Date":"9/29/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":887,"Cost":568,"Date":"10/2/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":344,"Cost":251,"Date":"10/15/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":32,"Cost":22,"Date":"10/30/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":956,"Cost":749,"Date":"11/9/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":398,"Cost":234,"Date":"11/23/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":854,"Cost":449,"Date":"11/30/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":985,"Cost":771,"Date":"12/8/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":472,"Cost":353,"Date":"12/11/2018"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":219,"Cost":197,"Date":"1/15/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":458,"Cost":296,"Date":"1/24/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":72,"Cost":60,"Date":"2/3/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":688,"Cost":567,"Date":"2/4/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":744,"Cost":560,"Date":"3/9/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":847,"Cost":711,"Date":"3/12/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":210,"Cost":142,"Date":"4/19/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":640,"Cost":575,"Date":"5/3/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":81,"Cost":76,"Date":"5/4/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":495,"Cost":258,"Date":"6/8/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":375,"Cost":333,"Date":"6/26/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":669,"Cost":497,"Date":"7/4/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":615,"Cost":308,"Date":"7/13/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":177,"Cost":144,"Date":"8/8/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":464,"Cost":366,"Date":"8/26/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":808,"Cost":663,"Date":"9/2/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":783,"Cost":520,"Date":"9/29/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":839,"Cost":739,"Date":"10/12/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":110,"Cost":104,"Date":"11/2/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":236,"Cost":171,"Date":"11/4/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":501,"Cost":410,"Date":"11/7/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":709,"Cost":373,"Date":"12/1/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":924,"Cost":529,"Date":"12/4/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":305,"Cost":210,"Date":"12/7/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":943,"Cost":571,"Date":"12/18/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":329,"Cost":185,"Date":"12/20/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":979,"Cost":633,"Date":"12/20/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":875,"Cost":737,"Date":"12/21/2019"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":761,"Cost":628,"Date":"1/9/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":377,"Cost":243,"Date":"2/5/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":396,"Cost":219,"Date":"2/16/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":524,"Cost":384,"Date":"2/16/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":635,"Cost":506,"Date":"2/18/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":338,"Cost":239,"Date":"2/22/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":38,"Cost":24,"Date":"2/25/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":60,"Cost":31,"Date":"3/8/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":146,"Cost":115,"Date":"4/2/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":216,"Cost":126,"Date":"4/3/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":235,"Cost":131,"Date":"4/9/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":763,"Cost":630,"Date":"4/10/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":206,"Cost":125,"Date":"4/19/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":287,"Cost":260,"Date":"5/17/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":965,"Cost":774,"Date":"5/22/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":549,"Cost":378,"Date":"6/20/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":702,"Cost":473,"Date":"7/1/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":68,"Cost":37,"Date":"7/4/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":638,"Cost":508,"Date":"7/8/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":834,"Cost":444,"Date":"7/9/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":9,"Cost":6,"Date":"7/14/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":421,"Cost":325,"Date":"7/19/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":617,"Cost":411,"Date":"8/1/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":77,"Cost":70,"Date":"8/6/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":589,"Cost":313,"Date":"8/7/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":537,"Cost":469,"Date":"8/22/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":41,"Cost":38,"Date":"8/31/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":521,"Cost":415,"Date":"9/1/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":287,"Cost":170,"Date":"9/1/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":481,"Cost":396,"Date":"9/17/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":314,"Cost":206,"Date":"9/29/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":115,"Cost":93,"Date":"11/7/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":190,"Cost":107,"Date":"11/26/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":244,"Cost":207,"Date":"11/27/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":191,"Cost":167,"Date":"12/5/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":439,"Cost":233,"Date":"12/26/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":183,"Cost":96,"Date":"12/31/2020"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":950,"Cost":795,"Date":"1/20/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":120,"Cost":90,"Date":"2/2/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":53,"Cost":36,"Date":"2/8/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":47,"Cost":23,"Date":"2/27/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":832,"Cost":495,"Date":"3/1/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":672,"Cost":529,"Date":"3/1/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":639,"Cost":327,"Date":"3/19/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":762,"Cost":381,"Date":"3/28/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":70,"Cost":47,"Date":"5/21/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":621,"Cost":325,"Date":"7/21/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":582,"Cost":410,"Date":"8/5/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":95,"Cost":73,"Date":"8/12/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":555,"Cost":348,"Date":"8/21/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":610,"Cost":567,"Date":"8/23/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":344,"Cost":322,"Date":"9/3/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":599,"Cost":363,"Date":"9/5/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":782,"Cost":458,"Date":"10/6/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":663,"Cost":533,"Date":"10/19/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":46,"Cost":34,"Date":"11/15/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":221,"Cost":131,"Date":"12/8/2021"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":247,"Cost":151,"Date":"1/8/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":606,"Cost":498,"Date":"1/14/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":954,"Cost":495,"Date":"1/19/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":752,"Cost":464,"Date":"1/28/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":244,"Cost":198,"Date":"1/31/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":417,"Cost":296,"Date":"3/27/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":513,"Cost":399,"Date":"4/20/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":226,"Cost":207,"Date":"4/24/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":196,"Cost":126,"Date":"4/28/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":246,"Cost":138,"Date":"5/15/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":646,"Cost":452,"Date":"5/16/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":109,"Cost":61,"Date":"5/18/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":292,"Cost":276,"Date":"6/2/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":304,"Cost":217,"Date":"6/3/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":668,"Cost":507,"Date":"6/5/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":809,"Cost":584,"Date":"6/7/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":635,"Cost":478,"Date":"6/14/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":200,"Cost":184,"Date":"6/20/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":589,"Cost":390,"Date":"6/24/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":996,"Cost":854,"Date":"7/4/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":208,"Cost":198,"Date":"7/9/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":605,"Cost":530,"Date":"7/12/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":701,"Cost":497,"Date":"8/14/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":313,"Cost":274,"Date":"8/16/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":83,"Cost":58,"Date":"8/23/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":249,"Cost":176,"Date":"9/2/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":181,"Cost":119,"Date":"9/3/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":802,"Cost":617,"Date":"9/16/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":184,"Cost":168,"Date":"10/4/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":970,"Cost":682,"Date":"11/1/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":855,"Cost":590,"Date":"11/2/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":238,"Cost":223,"Date":"12/17/2022"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":578,"Cost":523,"Date":"2/10/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":552,"Cost":449,"Date":"2/28/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":419,"Cost":269,"Date":"3/4/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":392,"Cost":244,"Date":"3/9/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":480,"Cost":313,"Date":"3/9/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":134,"Cost":72,"Date":"3/11/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":842,"Cost":550,"Date":"3/17/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":505,"Cost":462,"Date":"3/17/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":911,"Cost":587,"Date":"3/23/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":579,"Cost":519,"Date":"4/1/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":458,"Cost":303,"Date":"5/7/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":943,"Cost":694,"Date":"5/10/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":693,"Cost":583,"Date":"5/20/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":795,"Cost":605,"Date":"6/2/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":535,"Cost":403,"Date":"6/11/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":188,"Cost":144,"Date":"6/16/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":75,"Cost":57,"Date":"6/16/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":292,"Cost":157,"Date":"7/10/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":447,"Cost":235,"Date":"7/11/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":386,"Cost":225,"Date":"8/28/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":559,"Cost":327,"Date":"8/29/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":505,"Cost":461,"Date":"8/31/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":248,"Cost":141,"Date":"9/8/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":872,"Cost":565,"Date":"9/13/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":65,"Cost":50,"Date":"9/14/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":783,"Cost":515,"Date":"9/19/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":64,"Cost":51,"Date":"9/25/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":339,"Cost":283,"Date":"10/4/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":188,"Cost":124,"Date":"10/10/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":720,"Cost":595,"Date":"10/17/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":750,"Cost":643,"Date":"10/28/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":189,"Cost":172,"Date":"10/30/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":842,"Cost":742,"Date":"11/1/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":799,"Cost":481,"Date":"11/15/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":928,"Cost":846,"Date":"11/25/2023"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":400,"Cost":330,"Date":"1/10/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":24,"Cost":17,"Date":"1/14/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":69,"Cost":61,"Date":"1/20/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":155,"Cost":147,"Date":"2/8/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":834,"Cost":445,"Date":"2/25/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":987,"Cost":591,"Date":"3/7/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":670,"Cost":380,"Date":"3/14/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":500,"Cost":331,"Date":"3/27/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":577,"Cost":299,"Date":"4/5/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":451,"Cost":287,"Date":"4/14/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":69,"Cost":47,"Date":"5/3/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":952,"Cost":560,"Date":"5/9/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":389,"Cost":333,"Date":"5/15/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":181,"Cost":123,"Date":"5/25/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":160,"Cost":95,"Date":"5/26/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":430,"Cost":279,"Date":"5/31/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":875,"Cost":728,"Date":"7/27/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":486,"Cost":256,"Date":"9/17/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":122,"Cost":115,"Date":"10/6/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":504,"Cost":389,"Date":"10/8/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":444,"Cost":278,"Date":"10/26/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":741,"Cost":387,"Date":"11/16/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":327,"Cost":166,"Date":"11/18/2024"},{"Store":"Cherry Creek Shopping Center, Denver, CO","Brand":"HM Home","Country":"USA","Sale":666,"Cost":534,"Date":"12/1/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":884,"Cost":783,"Date":"2/9/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":143,"Cost":101,"Date":"2/11/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":402,"Cost":280,"Date":"3/10/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":915,"Cost":545,"Date":"3/16/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":315,"Cost":297,"Date":"3/18/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":908,"Cost":753,"Date":"3/20/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":419,"Cost":351,"Date":"3/26/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":109,"Cost":82,"Date":"6/2/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":90,"Cost":57,"Date":"6/10/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":744,"Cost":470,"Date":"6/16/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":682,"Cost":360,"Date":"6/25/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":994,"Cost":535,"Date":"7/19/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":225,"Cost":205,"Date":"7/21/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":807,"Cost":568,"Date":"7/25/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":500,"Cost":266,"Date":"8/4/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":154,"Cost":143,"Date":"9/2/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":72,"Cost":36,"Date":"9/4/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":945,"Cost":535,"Date":"9/19/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":886,"Cost":814,"Date":"9/29/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":671,"Cost":354,"Date":"10/2/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":622,"Cost":496,"Date":"10/15/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":201,"Cost":148,"Date":"10/30/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":755,"Cost":684,"Date":"11/9/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":189,"Cost":103,"Date":"11/23/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":276,"Cost":157,"Date":"11/30/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":168,"Cost":89,"Date":"12/8/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":512,"Cost":479,"Date":"12/11/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":181,"Cost":137,"Date":"1/15/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":405,"Cost":340,"Date":"1/24/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":692,"Cost":590,"Date":"2/3/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":824,"Cost":569,"Date":"2/4/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":28,"Cost":20,"Date":"3/9/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":6,"Cost":3,"Date":"3/12/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":948,"Cost":616,"Date":"4/19/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":391,"Cost":311,"Date":"5/3/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":543,"Cost":453,"Date":"5/4/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":959,"Cost":500,"Date":"6/8/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":433,"Cost":221,"Date":"6/26/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":112,"Cost":74,"Date":"7/4/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":517,"Cost":271,"Date":"7/13/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":62,"Cost":41,"Date":"8/8/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":377,"Cost":201,"Date":"8/26/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":617,"Cost":579,"Date":"9/2/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":71,"Cost":60,"Date":"9/29/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":558,"Cost":320,"Date":"10/12/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":138,"Cost":121,"Date":"11/2/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":119,"Cost":84,"Date":"11/4/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":927,"Cost":519,"Date":"11/7/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":244,"Cost":157,"Date":"12/1/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":346,"Cost":260,"Date":"12/4/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":564,"Cost":505,"Date":"12/7/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":607,"Cost":432,"Date":"12/18/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":831,"Cost":662,"Date":"12/20/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":519,"Cost":282,"Date":"12/20/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":145,"Cost":121,"Date":"12/21/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":527,"Cost":432,"Date":"1/9/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":846,"Cost":715,"Date":"2/5/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":800,"Cost":458,"Date":"2/16/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":686,"Cost":538,"Date":"2/16/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":259,"Cost":202,"Date":"2/18/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":999,"Cost":743,"Date":"2/22/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":47,"Cost":26,"Date":"2/25/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":748,"Cost":559,"Date":"3/8/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":691,"Cost":508,"Date":"4/2/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":182,"Cost":172,"Date":"4/3/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":997,"Cost":894,"Date":"4/9/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":719,"Cost":366,"Date":"4/10/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":680,"Cost":515,"Date":"4/19/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":480,"Cost":419,"Date":"5/17/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":144,"Cost":99,"Date":"5/22/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":261,"Cost":140,"Date":"6/20/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":181,"Cost":138,"Date":"7/1/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":905,"Cost":746,"Date":"7/4/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":78,"Cost":53,"Date":"7/8/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":615,"Cost":377,"Date":"7/9/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":926,"Cost":828,"Date":"7/14/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":568,"Cost":442,"Date":"7/19/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":963,"Cost":591,"Date":"8/1/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":781,"Cost":691,"Date":"8/6/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":678,"Cost":589,"Date":"8/7/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":265,"Cost":170,"Date":"8/22/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":531,"Cost":466,"Date":"8/31/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":446,"Cost":348,"Date":"9/1/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":201,"Cost":117,"Date":"9/1/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":646,"Cost":327,"Date":"9/17/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":586,"Cost":522,"Date":"9/29/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":861,"Cost":534,"Date":"11/7/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":129,"Cost":77,"Date":"11/26/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":289,"Cost":248,"Date":"11/27/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":295,"Cost":243,"Date":"12/5/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":159,"Cost":151,"Date":"12/26/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":357,"Cost":213,"Date":"12/31/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":850,"Cost":687,"Date":"1/20/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":222,"Cost":156,"Date":"2/2/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":636,"Cost":412,"Date":"2/8/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":882,"Cost":458,"Date":"2/27/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":464,"Cost":286,"Date":"3/1/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":113,"Cost":107,"Date":"3/1/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":822,"Cost":421,"Date":"3/19/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":374,"Cost":277,"Date":"3/28/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":736,"Cost":475,"Date":"5/21/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":763,"Cost":394,"Date":"7/21/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":254,"Cost":173,"Date":"8/5/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":720,"Cost":639,"Date":"8/12/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":836,"Cost":498,"Date":"8/21/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":388,"Cost":206,"Date":"8/23/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":815,"Cost":552,"Date":"9/3/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":419,"Cost":356,"Date":"9/5/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":119,"Cost":64,"Date":"10/6/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":591,"Cost":380,"Date":"10/19/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":67,"Cost":47,"Date":"11/15/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":10,"Cost":6,"Date":"12/8/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":264,"Cost":133,"Date":"1/8/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":650,"Cost":525,"Date":"1/14/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":904,"Cost":812,"Date":"1/19/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":722,"Cost":545,"Date":"1/28/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":543,"Cost":439,"Date":"1/31/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":664,"Cost":374,"Date":"3/27/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":958,"Cost":669,"Date":"4/20/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":280,"Cost":265,"Date":"4/24/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":165,"Cost":115,"Date":"4/28/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":520,"Cost":485,"Date":"5/15/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":675,"Cost":509,"Date":"5/16/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":354,"Cost":259,"Date":"5/18/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":796,"Cost":648,"Date":"6/2/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":578,"Cost":451,"Date":"6/3/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":818,"Cost":644,"Date":"6/5/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":137,"Cost":130,"Date":"6/7/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":216,"Cost":138,"Date":"6/14/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":290,"Cost":192,"Date":"6/20/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":857,"Cost":673,"Date":"6/24/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":108,"Cost":83,"Date":"7/4/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":629,"Cost":364,"Date":"7/9/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":956,"Cost":833,"Date":"7/12/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":204,"Cost":106,"Date":"8/14/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":376,"Cost":329,"Date":"8/16/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":135,"Cost":79,"Date":"8/23/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":301,"Cost":220,"Date":"9/2/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":839,"Cost":779,"Date":"9/3/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":608,"Cost":534,"Date":"9/16/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":423,"Cost":290,"Date":"10/4/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":725,"Cost":407,"Date":"11/1/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":307,"Cost":228,"Date":"11/2/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":69,"Cost":59,"Date":"12/17/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":715,"Cost":664,"Date":"2/10/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":679,"Cost":591,"Date":"2/28/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":139,"Cost":77,"Date":"3/4/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":27,"Cost":26,"Date":"3/9/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":409,"Cost":321,"Date":"3/9/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":254,"Cost":162,"Date":"3/11/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":822,"Cost":523,"Date":"3/17/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":44,"Cost":28,"Date":"3/17/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":45,"Cost":40,"Date":"3/23/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":610,"Cost":308,"Date":"4/1/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":59,"Cost":55,"Date":"5/7/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":258,"Cost":188,"Date":"5/10/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":559,"Cost":316,"Date":"5/20/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":195,"Cost":173,"Date":"6/2/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":317,"Cost":267,"Date":"6/11/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":591,"Cost":308,"Date":"6/16/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":811,"Cost":487,"Date":"6/16/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":237,"Cost":184,"Date":"7/10/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":360,"Cost":242,"Date":"7/11/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":417,"Cost":235,"Date":"8/28/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":466,"Cost":404,"Date":"8/29/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":457,"Cost":413,"Date":"8/31/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":919,"Cost":577,"Date":"9/8/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":666,"Cost":501,"Date":"9/13/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":236,"Cost":121,"Date":"9/14/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":348,"Cost":259,"Date":"9/19/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":582,"Cost":394,"Date":"9/25/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":336,"Cost":206,"Date":"10/4/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":234,"Cost":190,"Date":"10/10/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":444,"Cost":261,"Date":"10/17/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":433,"Cost":310,"Date":"10/28/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":574,"Cost":343,"Date":"10/30/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":762,"Cost":613,"Date":"11/1/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":109,"Cost":56,"Date":"11/15/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":838,"Cost":502,"Date":"11/25/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":565,"Cost":383,"Date":"1/10/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":187,"Cost":169,"Date":"1/14/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":607,"Cost":419,"Date":"1/20/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":426,"Cost":380,"Date":"2/8/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":636,"Cost":469,"Date":"2/25/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":50,"Cost":39,"Date":"3/7/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":448,"Cost":397,"Date":"3/14/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":622,"Cost":521,"Date":"3/27/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":569,"Cost":325,"Date":"4/5/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":719,"Cost":555,"Date":"4/14/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":342,"Cost":273,"Date":"5/3/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":668,"Cost":345,"Date":"5/9/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":696,"Cost":523,"Date":"5/15/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":527,"Cost":460,"Date":"5/25/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":432,"Cost":262,"Date":"5/26/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":901,"Cost":759,"Date":"5/31/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":952,"Cost":905,"Date":"7/27/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":824,"Cost":647,"Date":"9/17/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":679,"Cost":633,"Date":"10/6/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":197,"Cost":178,"Date":"10/8/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":537,"Cost":436,"Date":"10/26/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":823,"Cost":775,"Date":"11/16/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":964,"Cost":786,"Date":"11/18/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"ARKET","Country":"USA","Sale":767,"Cost":678,"Date":"12/1/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":973,"Cost":765,"Date":"2/9/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":639,"Cost":482,"Date":"2/11/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":322,"Cost":303,"Date":"3/10/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":381,"Cost":295,"Date":"3/16/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":862,"Cost":688,"Date":"3/18/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":508,"Cost":293,"Date":"3/20/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":873,"Cost":685,"Date":"3/26/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":92,"Cost":87,"Date":"6/2/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":55,"Cost":30,"Date":"6/10/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":683,"Cost":473,"Date":"6/16/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":87,"Cost":60,"Date":"6/25/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":577,"Cost":317,"Date":"7/19/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":865,"Cost":778,"Date":"7/21/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":39,"Cost":29,"Date":"7/25/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":469,"Cost":426,"Date":"8/4/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":965,"Cost":679,"Date":"9/2/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":1000,"Cost":928,"Date":"9/4/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":868,"Cost":787,"Date":"9/19/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":629,"Cost":488,"Date":"9/29/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":65,"Cost":47,"Date":"10/2/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":86,"Cost":69,"Date":"10/15/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":835,"Cost":733,"Date":"10/30/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":767,"Cost":723,"Date":"11/9/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":113,"Cost":65,"Date":"11/23/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":897,"Cost":752,"Date":"11/30/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":572,"Cost":314,"Date":"12/8/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":205,"Cost":133,"Date":"12/11/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":654,"Cost":534,"Date":"1/15/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":761,"Cost":390,"Date":"1/24/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":909,"Cost":840,"Date":"2/3/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":379,"Cost":271,"Date":"2/4/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":603,"Cost":470,"Date":"3/9/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":879,"Cost":671,"Date":"3/12/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":158,"Cost":93,"Date":"4/19/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":195,"Cost":149,"Date":"5/3/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":757,"Cost":497,"Date":"5/4/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":649,"Cost":539,"Date":"6/8/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":214,"Cost":126,"Date":"6/26/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":292,"Cost":205,"Date":"7/4/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":439,"Cost":240,"Date":"7/13/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":868,"Cost":620,"Date":"8/8/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":204,"Cost":105,"Date":"8/26/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":865,"Cost":595,"Date":"9/2/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":46,"Cost":26,"Date":"9/29/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":88,"Cost":76,"Date":"10/12/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":986,"Cost":874,"Date":"11/2/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":427,"Cost":373,"Date":"11/4/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":740,"Cost":640,"Date":"11/7/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":880,"Cost":787,"Date":"12/1/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":343,"Cost":300,"Date":"12/4/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":759,"Cost":667,"Date":"12/7/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":79,"Cost":58,"Date":"12/18/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":693,"Cost":539,"Date":"12/20/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":305,"Cost":253,"Date":"12/20/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":334,"Cost":289,"Date":"12/21/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":941,"Cost":886,"Date":"1/9/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":523,"Cost":296,"Date":"2/5/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":905,"Cost":731,"Date":"2/16/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":237,"Cost":174,"Date":"2/16/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":295,"Cost":196,"Date":"2/18/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":158,"Cost":115,"Date":"2/22/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":452,"Cost":299,"Date":"2/25/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":837,"Cost":704,"Date":"3/8/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":158,"Cost":134,"Date":"4/2/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":292,"Cost":235,"Date":"4/3/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":479,"Cost":361,"Date":"4/9/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":153,"Cost":79,"Date":"4/10/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":223,"Cost":209,"Date":"4/19/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":508,"Cost":459,"Date":"5/17/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":985,"Cost":915,"Date":"5/22/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":132,"Cost":99,"Date":"6/20/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":860,"Cost":659,"Date":"7/1/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":123,"Cost":105,"Date":"7/4/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":817,"Cost":655,"Date":"7/8/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":697,"Cost":373,"Date":"7/9/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":902,"Cost":626,"Date":"7/14/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":418,"Cost":346,"Date":"7/19/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":142,"Cost":80,"Date":"8/1/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":10,"Cost":5,"Date":"8/6/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":137,"Cost":94,"Date":"8/7/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":101,"Cost":83,"Date":"8/22/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":785,"Cost":506,"Date":"8/31/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":232,"Cost":140,"Date":"9/1/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":49,"Cost":46,"Date":"9/1/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":776,"Cost":565,"Date":"9/17/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":860,"Cost":440,"Date":"9/29/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":178,"Cost":131,"Date":"11/7/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":790,"Cost":728,"Date":"11/26/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":518,"Cost":480,"Date":"11/27/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":414,"Cost":385,"Date":"12/5/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":645,"Cost":458,"Date":"12/26/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":457,"Cost":292,"Date":"12/31/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":505,"Cost":447,"Date":"1/20/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":116,"Cost":111,"Date":"2/2/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":491,"Cost":430,"Date":"2/8/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":929,"Cost":602,"Date":"2/27/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":833,"Cost":650,"Date":"3/1/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":772,"Cost":688,"Date":"3/1/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":873,"Cost":544,"Date":"3/19/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":305,"Cost":272,"Date":"3/28/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":620,"Cost":420,"Date":"5/21/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":155,"Cost":109,"Date":"7/21/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":594,"Cost":501,"Date":"8/5/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":323,"Cost":242,"Date":"8/12/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":957,"Cost":745,"Date":"8/21/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":768,"Cost":614,"Date":"8/23/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":327,"Cost":245,"Date":"9/3/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":595,"Cost":370,"Date":"9/5/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":492,"Cost":299,"Date":"10/6/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":240,"Cost":127,"Date":"10/19/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":170,"Cost":129,"Date":"11/15/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":541,"Cost":366,"Date":"12/8/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":48,"Cost":29,"Date":"1/8/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":189,"Cost":164,"Date":"1/14/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":622,"Cost":312,"Date":"1/19/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":449,"Cost":245,"Date":"1/28/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":821,"Cost":730,"Date":"1/31/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":311,"Cost":202,"Date":"3/27/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":291,"Cost":254,"Date":"4/20/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":80,"Cost":42,"Date":"4/24/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":568,"Cost":443,"Date":"4/28/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":74,"Cost":64,"Date":"5/15/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":138,"Cost":74,"Date":"5/16/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":176,"Cost":139,"Date":"5/18/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":850,"Cost":635,"Date":"6/2/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":44,"Cost":31,"Date":"6/3/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":295,"Cost":263,"Date":"6/5/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":211,"Cost":118,"Date":"6/7/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":984,"Cost":697,"Date":"6/14/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":453,"Cost":290,"Date":"6/20/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":25,"Cost":20,"Date":"6/24/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":120,"Cost":113,"Date":"7/4/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":173,"Cost":136,"Date":"7/9/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":189,"Cost":111,"Date":"7/12/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":942,"Cost":514,"Date":"8/14/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":868,"Cost":775,"Date":"8/16/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":895,"Cost":743,"Date":"8/23/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":531,"Cost":330,"Date":"9/2/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":893,"Cost":458,"Date":"9/3/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":726,"Cost":427,"Date":"9/16/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":378,"Cost":315,"Date":"10/4/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":230,"Cost":208,"Date":"11/1/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":764,"Cost":595,"Date":"11/2/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":10,"Cost":5,"Date":"12/17/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":794,"Cost":595,"Date":"2/10/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":263,"Cost":204,"Date":"2/28/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":362,"Cost":266,"Date":"3/4/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":829,"Cost":645,"Date":"3/9/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":393,"Cost":236,"Date":"3/9/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":847,"Cost":692,"Date":"3/11/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":924,"Cost":770,"Date":"3/17/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":821,"Cost":754,"Date":"3/17/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":61,"Cost":37,"Date":"3/23/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":422,"Cost":339,"Date":"4/1/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":366,"Cost":253,"Date":"5/7/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":646,"Cost":430,"Date":"5/10/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":114,"Cost":72,"Date":"5/20/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":775,"Cost":406,"Date":"6/2/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":660,"Cost":610,"Date":"6/11/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":402,"Cost":247,"Date":"6/16/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":437,"Cost":265,"Date":"6/16/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":561,"Cost":310,"Date":"7/10/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":246,"Cost":176,"Date":"7/11/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":111,"Cost":91,"Date":"8/28/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":811,"Cost":711,"Date":"8/29/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":65,"Cost":42,"Date":"8/31/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":146,"Cost":74,"Date":"9/8/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":321,"Cost":172,"Date":"9/13/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":681,"Cost":485,"Date":"9/14/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":339,"Cost":301,"Date":"9/19/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":111,"Cost":67,"Date":"9/25/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":53,"Cost":49,"Date":"10/4/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":694,"Cost":533,"Date":"10/10/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":628,"Cost":486,"Date":"10/17/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":453,"Cost":392,"Date":"10/28/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":226,"Cost":127,"Date":"10/30/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":82,"Cost":50,"Date":"11/1/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":334,"Cost":273,"Date":"11/15/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":80,"Cost":56,"Date":"11/25/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":548,"Cost":386,"Date":"1/10/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":629,"Cost":315,"Date":"1/14/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":858,"Cost":814,"Date":"1/20/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":633,"Cost":359,"Date":"2/8/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":315,"Cost":162,"Date":"2/25/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":961,"Cost":593,"Date":"3/7/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":773,"Cost":675,"Date":"3/14/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":163,"Cost":138,"Date":"3/27/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":692,"Cost":620,"Date":"4/5/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":359,"Cost":222,"Date":"4/14/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":882,"Cost":792,"Date":"5/3/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":237,"Cost":138,"Date":"5/9/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":843,"Cost":499,"Date":"5/15/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":81,"Cost":68,"Date":"5/25/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":70,"Cost":37,"Date":"5/26/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":260,"Cost":195,"Date":"5/31/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":467,"Cost":433,"Date":"7/27/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":542,"Cost":366,"Date":"9/17/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":491,"Cost":321,"Date":"10/6/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":638,"Cost":514,"Date":"10/8/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":626,"Cost":399,"Date":"10/26/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":377,"Cost":234,"Date":"11/16/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":949,"Cost":532,"Date":"11/18/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"HM Home","Country":"USA","Sale":740,"Cost":639,"Date":"12/1/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":705,"Cost":407,"Date":"2/9/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":800,"Cost":740,"Date":"2/11/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":645,"Cost":488,"Date":"3/10/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":119,"Cost":91,"Date":"3/16/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":399,"Cost":379,"Date":"3/18/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":600,"Cost":309,"Date":"3/20/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":934,"Cost":589,"Date":"3/26/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":467,"Cost":433,"Date":"6/2/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":42,"Cost":33,"Date":"6/10/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":829,"Cost":715,"Date":"6/16/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":859,"Cost":797,"Date":"6/25/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":310,"Cost":241,"Date":"7/19/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":887,"Cost":522,"Date":"7/21/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":325,"Cost":271,"Date":"7/25/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":607,"Cost":370,"Date":"8/4/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":148,"Cost":98,"Date":"9/2/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":556,"Cost":480,"Date":"9/4/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":3,"Cost":2,"Date":"9/19/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":107,"Cost":90,"Date":"9/29/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":727,"Cost":526,"Date":"10/2/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":370,"Cost":251,"Date":"10/15/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":484,"Cost":456,"Date":"10/30/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":730,"Cost":601,"Date":"11/9/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":250,"Cost":150,"Date":"11/23/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":916,"Cost":848,"Date":"11/30/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":270,"Cost":205,"Date":"12/8/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":17,"Cost":12,"Date":"12/11/2018"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":2,"Cost":2,"Date":"1/15/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":181,"Cost":97,"Date":"1/24/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":465,"Cost":275,"Date":"2/3/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":985,"Cost":707,"Date":"2/4/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":644,"Cost":584,"Date":"3/9/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":960,"Cost":509,"Date":"3/12/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":715,"Cost":517,"Date":"4/19/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":208,"Cost":109,"Date":"5/3/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":965,"Cost":608,"Date":"5/4/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":827,"Cost":730,"Date":"6/8/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":371,"Cost":204,"Date":"6/26/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":537,"Cost":477,"Date":"7/4/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":644,"Cost":453,"Date":"7/13/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":682,"Cost":412,"Date":"8/8/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":995,"Cost":806,"Date":"8/26/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":631,"Cost":561,"Date":"9/2/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":326,"Cost":309,"Date":"9/29/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":700,"Cost":519,"Date":"10/12/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":174,"Cost":164,"Date":"11/2/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":530,"Cost":443,"Date":"11/4/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":951,"Cost":504,"Date":"11/7/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":228,"Cost":201,"Date":"12/1/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":317,"Cost":208,"Date":"12/4/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":262,"Cost":207,"Date":"12/7/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":128,"Cost":105,"Date":"12/18/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":833,"Cost":707,"Date":"12/20/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":728,"Cost":473,"Date":"12/20/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":513,"Cost":473,"Date":"12/21/2019"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":464,"Cost":278,"Date":"1/9/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":38,"Cost":22,"Date":"2/5/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":696,"Cost":485,"Date":"2/16/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":809,"Cost":482,"Date":"2/16/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":461,"Cost":351,"Date":"2/18/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":38,"Cost":21,"Date":"2/22/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":763,"Cost":684,"Date":"2/25/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":14,"Cost":8,"Date":"3/8/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":107,"Cost":71,"Date":"4/2/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":961,"Cost":643,"Date":"4/3/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":339,"Cost":212,"Date":"4/9/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":645,"Cost":524,"Date":"4/10/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":952,"Cost":797,"Date":"4/19/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":546,"Cost":443,"Date":"5/17/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":54,"Cost":39,"Date":"5/22/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":405,"Cost":288,"Date":"6/20/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":338,"Cost":305,"Date":"7/1/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":400,"Cost":314,"Date":"7/4/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":348,"Cost":226,"Date":"7/8/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":980,"Cost":532,"Date":"7/9/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":174,"Cost":123,"Date":"7/14/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":265,"Cost":156,"Date":"7/19/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":401,"Cost":220,"Date":"8/1/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":999,"Cost":673,"Date":"8/6/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":647,"Cost":544,"Date":"8/7/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":858,"Cost":509,"Date":"8/22/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":733,"Cost":659,"Date":"8/31/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":660,"Cost":418,"Date":"9/1/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":858,"Cost":538,"Date":"9/1/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":378,"Cost":318,"Date":"9/17/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":127,"Cost":112,"Date":"9/29/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":657,"Cost":402,"Date":"11/7/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":545,"Cost":303,"Date":"11/26/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":685,"Cost":461,"Date":"11/27/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":673,"Cost":577,"Date":"12/5/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":296,"Cost":207,"Date":"12/26/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":544,"Cost":403,"Date":"12/31/2020"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":965,"Cost":796,"Date":"1/20/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":380,"Cost":324,"Date":"2/2/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":287,"Cost":213,"Date":"2/8/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":963,"Cost":538,"Date":"2/27/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":629,"Cost":398,"Date":"3/1/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":218,"Cost":147,"Date":"3/1/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":992,"Cost":557,"Date":"3/19/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":533,"Cost":442,"Date":"3/28/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":792,"Cost":478,"Date":"5/21/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":841,"Cost":459,"Date":"7/21/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":882,"Cost":611,"Date":"8/5/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":207,"Cost":159,"Date":"8/12/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":588,"Cost":380,"Date":"8/21/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":309,"Cost":192,"Date":"8/23/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":385,"Cost":361,"Date":"9/3/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":184,"Cost":147,"Date":"9/5/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":17,"Cost":10,"Date":"10/6/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":381,"Cost":253,"Date":"10/19/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":107,"Cost":78,"Date":"11/15/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":349,"Cost":292,"Date":"12/8/2021"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":993,"Cost":576,"Date":"1/8/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":285,"Cost":232,"Date":"1/14/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":162,"Cost":136,"Date":"1/19/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":290,"Cost":274,"Date":"1/28/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":203,"Cost":109,"Date":"1/31/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":902,"Cost":602,"Date":"3/27/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":661,"Cost":331,"Date":"4/20/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":533,"Cost":396,"Date":"4/24/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":53,"Cost":50,"Date":"4/28/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":153,"Cost":119,"Date":"5/15/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":853,"Cost":688,"Date":"5/16/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":220,"Cost":167,"Date":"5/18/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":818,"Cost":474,"Date":"6/2/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":183,"Cost":164,"Date":"6/3/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":172,"Cost":106,"Date":"6/5/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":178,"Cost":146,"Date":"6/7/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":262,"Cost":141,"Date":"6/14/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":201,"Cost":102,"Date":"6/20/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":783,"Cost":720,"Date":"6/24/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":245,"Cost":192,"Date":"7/4/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":757,"Cost":669,"Date":"7/9/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":419,"Cost":393,"Date":"7/12/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":322,"Cost":306,"Date":"8/14/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":19,"Cost":11,"Date":"8/16/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":312,"Cost":210,"Date":"8/23/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":691,"Cost":565,"Date":"9/2/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":744,"Cost":450,"Date":"9/3/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":331,"Cost":230,"Date":"9/16/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":277,"Cost":259,"Date":"10/4/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":982,"Cost":852,"Date":"11/1/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":785,"Cost":691,"Date":"11/2/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":967,"Cost":634,"Date":"12/17/2022"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":381,"Cost":307,"Date":"2/10/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":251,"Cost":209,"Date":"2/28/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":198,"Cost":160,"Date":"3/4/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":574,"Cost":472,"Date":"3/9/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":339,"Cost":217,"Date":"3/9/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":542,"Cost":414,"Date":"3/11/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":36,"Cost":25,"Date":"3/17/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":461,"Cost":299,"Date":"3/17/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":82,"Cost":42,"Date":"3/23/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":702,"Cost":646,"Date":"4/1/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":231,"Cost":121,"Date":"5/7/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":32,"Cost":16,"Date":"5/10/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":920,"Cost":510,"Date":"5/20/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":854,"Cost":732,"Date":"6/2/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":783,"Cost":656,"Date":"6/11/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":36,"Cost":26,"Date":"6/16/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":40,"Cost":29,"Date":"6/16/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":588,"Cost":351,"Date":"7/10/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":530,"Cost":455,"Date":"7/11/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":989,"Cost":604,"Date":"8/28/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":362,"Cost":272,"Date":"8/29/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":724,"Cost":455,"Date":"8/31/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":43,"Cost":30,"Date":"9/8/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":615,"Cost":580,"Date":"9/13/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":810,"Cost":523,"Date":"9/14/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":885,"Cost":823,"Date":"9/19/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":365,"Cost":242,"Date":"9/25/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":218,"Cost":115,"Date":"10/4/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":490,"Cost":438,"Date":"10/10/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":839,"Cost":747,"Date":"10/17/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":565,"Cost":359,"Date":"10/28/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":181,"Cost":124,"Date":"10/30/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":390,"Cost":316,"Date":"11/1/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":692,"Cost":449,"Date":"11/15/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":827,"Cost":431,"Date":"11/25/2023"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":288,"Cost":202,"Date":"1/10/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":851,"Cost":685,"Date":"1/14/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":619,"Cost":325,"Date":"1/20/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":580,"Cost":319,"Date":"2/8/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":363,"Cost":311,"Date":"2/25/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":876,"Cost":484,"Date":"3/7/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":88,"Cost":79,"Date":"3/14/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":779,"Cost":484,"Date":"3/27/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":744,"Cost":636,"Date":"4/5/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":975,"Cost":874,"Date":"4/14/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":975,"Cost":788,"Date":"5/3/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":310,"Cost":279,"Date":"5/9/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":485,"Cost":418,"Date":"5/15/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":319,"Cost":251,"Date":"5/25/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":257,"Cost":176,"Date":"5/26/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":657,"Cost":366,"Date":"5/31/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":558,"Cost":337,"Date":"7/27/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":926,"Cost":638,"Date":"9/17/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":364,"Cost":242,"Date":"10/6/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":170,"Cost":149,"Date":"10/8/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":167,"Cost":94,"Date":"10/26/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":363,"Cost":235,"Date":"11/16/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":293,"Cost":243,"Date":"11/18/2024"},{"Store":"Beverly Center, Los Angeles, CA","Brand":"Sellpy","Country":"USA","Sale":306,"Cost":172,"Date":"12/1/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":349,"Cost":211,"Date":"2/9/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":773,"Cost":704,"Date":"2/11/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":254,"Cost":207,"Date":"3/10/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":446,"Cost":415,"Date":"3/16/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":249,"Cost":219,"Date":"3/18/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":776,"Cost":621,"Date":"3/20/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":237,"Cost":223,"Date":"3/26/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":914,"Cost":773,"Date":"6/2/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":197,"Cost":182,"Date":"6/10/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":895,"Cost":675,"Date":"6/16/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":148,"Cost":119,"Date":"6/25/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":780,"Cost":409,"Date":"7/19/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":505,"Cost":479,"Date":"7/21/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":415,"Cost":296,"Date":"7/25/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":294,"Cost":152,"Date":"8/4/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":68,"Cost":47,"Date":"9/2/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":342,"Cost":174,"Date":"9/4/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":446,"Cost":391,"Date":"9/19/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":289,"Cost":244,"Date":"9/29/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":11,"Cost":9,"Date":"10/2/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":241,"Cost":214,"Date":"10/15/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":461,"Cost":253,"Date":"10/30/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":618,"Cost":583,"Date":"11/9/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":540,"Cost":295,"Date":"11/23/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":752,"Cost":710,"Date":"11/30/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":736,"Cost":523,"Date":"12/8/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":671,"Cost":633,"Date":"12/11/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":268,"Cost":233,"Date":"1/15/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":260,"Cost":211,"Date":"1/24/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":275,"Cost":187,"Date":"2/3/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":690,"Cost":525,"Date":"2/4/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":562,"Cost":416,"Date":"3/9/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":654,"Cost":357,"Date":"3/12/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":712,"Cost":676,"Date":"4/19/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":753,"Cost":708,"Date":"5/3/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":423,"Cost":319,"Date":"5/4/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":939,"Cost":686,"Date":"6/8/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":197,"Cost":153,"Date":"6/26/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":651,"Cost":329,"Date":"7/4/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":475,"Cost":443,"Date":"7/13/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":594,"Cost":528,"Date":"8/8/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":308,"Cost":246,"Date":"8/26/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":619,"Cost":582,"Date":"9/2/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":527,"Cost":477,"Date":"9/29/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":325,"Cost":290,"Date":"10/12/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":786,"Cost":677,"Date":"11/2/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":293,"Cost":178,"Date":"11/4/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":648,"Cost":392,"Date":"11/7/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":608,"Cost":415,"Date":"12/1/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":997,"Cost":647,"Date":"12/4/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":355,"Cost":305,"Date":"12/7/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":61,"Cost":44,"Date":"12/18/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":246,"Cost":127,"Date":"12/20/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":674,"Cost":359,"Date":"12/20/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":258,"Cost":241,"Date":"12/21/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":571,"Cost":449,"Date":"1/9/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":306,"Cost":259,"Date":"2/5/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":14,"Cost":13,"Date":"2/16/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":408,"Cost":275,"Date":"2/16/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":894,"Cost":534,"Date":"2/18/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":712,"Cost":381,"Date":"2/22/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":246,"Cost":150,"Date":"2/25/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":382,"Cost":293,"Date":"3/8/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":751,"Cost":403,"Date":"4/2/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":662,"Cost":616,"Date":"4/3/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":782,"Cost":464,"Date":"4/9/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":927,"Cost":672,"Date":"4/10/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":357,"Cost":261,"Date":"4/19/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":452,"Cost":418,"Date":"5/17/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":136,"Cost":112,"Date":"5/22/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":211,"Cost":131,"Date":"6/20/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":937,"Cost":790,"Date":"7/1/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":892,"Cost":530,"Date":"7/4/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":893,"Cost":645,"Date":"7/8/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":407,"Cost":356,"Date":"7/9/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":53,"Cost":30,"Date":"7/14/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":304,"Cost":185,"Date":"7/19/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":922,"Cost":661,"Date":"8/1/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":357,"Cost":213,"Date":"8/6/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":738,"Cost":654,"Date":"8/7/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":968,"Cost":845,"Date":"8/22/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":649,"Cost":389,"Date":"8/31/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":924,"Cost":559,"Date":"9/1/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":654,"Cost":528,"Date":"9/1/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":332,"Cost":259,"Date":"9/17/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":591,"Cost":406,"Date":"9/29/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":742,"Cost":455,"Date":"11/7/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":83,"Cost":67,"Date":"11/26/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":260,"Cost":239,"Date":"11/27/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":457,"Cost":331,"Date":"12/5/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":304,"Cost":246,"Date":"12/26/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":652,"Cost":428,"Date":"12/31/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":788,"Cost":407,"Date":"1/20/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":52,"Cost":28,"Date":"2/2/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":324,"Cost":226,"Date":"2/8/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":130,"Cost":70,"Date":"2/27/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":777,"Cost":527,"Date":"3/1/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":820,"Cost":699,"Date":"3/1/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":527,"Cost":381,"Date":"3/19/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":216,"Cost":171,"Date":"3/28/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":765,"Cost":641,"Date":"5/21/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":451,"Cost":412,"Date":"7/21/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":473,"Cost":361,"Date":"8/5/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":616,"Cost":368,"Date":"8/12/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":514,"Cost":437,"Date":"8/21/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":882,"Cost":643,"Date":"8/23/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":231,"Cost":116,"Date":"9/3/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":483,"Cost":263,"Date":"9/5/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":818,"Cost":433,"Date":"10/6/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":718,"Cost":572,"Date":"10/19/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":805,"Cost":638,"Date":"11/15/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":426,"Cost":372,"Date":"12/8/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":463,"Cost":402,"Date":"1/8/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":639,"Cost":603,"Date":"1/14/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":654,"Cost":448,"Date":"1/19/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":312,"Cost":262,"Date":"1/28/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":836,"Cost":690,"Date":"1/31/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":507,"Cost":326,"Date":"3/27/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":90,"Cost":79,"Date":"4/20/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":55,"Cost":37,"Date":"4/24/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":851,"Cost":785,"Date":"4/28/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":473,"Cost":371,"Date":"5/15/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":876,"Cost":442,"Date":"5/16/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":916,"Cost":627,"Date":"5/18/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":65,"Cost":62,"Date":"6/2/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":620,"Cost":560,"Date":"6/3/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":798,"Cost":660,"Date":"6/5/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":694,"Cost":608,"Date":"6/7/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":614,"Cost":532,"Date":"6/14/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":265,"Cost":236,"Date":"6/20/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":254,"Cost":229,"Date":"6/24/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":521,"Cost":393,"Date":"7/4/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":515,"Cost":286,"Date":"7/9/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":960,"Cost":843,"Date":"7/12/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":432,"Cost":247,"Date":"8/14/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":190,"Cost":98,"Date":"8/16/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":16,"Cost":12,"Date":"8/23/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":517,"Cost":301,"Date":"9/2/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":189,"Cost":95,"Date":"9/3/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":753,"Cost":460,"Date":"9/16/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":828,"Cost":774,"Date":"10/4/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":499,"Cost":435,"Date":"11/1/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":286,"Cost":239,"Date":"11/2/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":438,"Cost":411,"Date":"12/17/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":266,"Cost":192,"Date":"2/10/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":899,"Cost":844,"Date":"2/28/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":17,"Cost":14,"Date":"3/4/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":821,"Cost":679,"Date":"3/9/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":35,"Cost":22,"Date":"3/9/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":934,"Cost":870,"Date":"3/11/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":154,"Cost":104,"Date":"3/17/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":113,"Cost":104,"Date":"3/17/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":278,"Cost":253,"Date":"3/23/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":180,"Cost":98,"Date":"4/1/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":779,"Cost":472,"Date":"5/7/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":211,"Cost":190,"Date":"5/10/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":35,"Cost":28,"Date":"5/20/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":314,"Cost":267,"Date":"6/2/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":339,"Cost":304,"Date":"6/11/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":584,"Cost":343,"Date":"6/16/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":316,"Cost":170,"Date":"6/16/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":600,"Cost":453,"Date":"7/10/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":102,"Cost":84,"Date":"7/11/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":612,"Cost":450,"Date":"8/28/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":397,"Cost":242,"Date":"8/29/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":919,"Cost":527,"Date":"8/31/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":625,"Cost":527,"Date":"9/8/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":91,"Cost":58,"Date":"9/13/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":745,"Cost":503,"Date":"9/14/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":974,"Cost":752,"Date":"9/19/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":883,"Cost":467,"Date":"9/25/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":83,"Cost":74,"Date":"10/4/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":556,"Cost":460,"Date":"10/10/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":578,"Cost":440,"Date":"10/17/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":460,"Cost":341,"Date":"10/28/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":709,"Cost":592,"Date":"10/30/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":775,"Cost":723,"Date":"11/1/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":745,"Cost":688,"Date":"11/15/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":46,"Cost":28,"Date":"11/25/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":78,"Cost":71,"Date":"1/10/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":347,"Cost":204,"Date":"1/14/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":885,"Cost":717,"Date":"1/20/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":53,"Cost":28,"Date":"2/8/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":863,"Cost":683,"Date":"2/25/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":837,"Cost":479,"Date":"3/7/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":985,"Cost":825,"Date":"3/14/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":719,"Cost":490,"Date":"3/27/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":353,"Cost":197,"Date":"4/5/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":431,"Cost":246,"Date":"4/14/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":9,"Cost":7,"Date":"5/3/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":658,"Cost":497,"Date":"5/9/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":36,"Cost":32,"Date":"5/15/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":922,"Cost":813,"Date":"5/25/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":573,"Cost":416,"Date":"5/26/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":661,"Cost":566,"Date":"5/31/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":367,"Cost":218,"Date":"7/27/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":113,"Cost":63,"Date":"9/17/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":887,"Cost":804,"Date":"10/6/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":831,"Cost":435,"Date":"10/8/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":240,"Cost":124,"Date":"10/26/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":322,"Cost":163,"Date":"11/16/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":156,"Cost":131,"Date":"11/18/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":129,"Cost":118,"Date":"12/1/2024"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":124,"Cost":114,"Date":"2/9/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":131,"Cost":106,"Date":"2/11/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":418,"Cost":312,"Date":"3/10/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":774,"Cost":542,"Date":"3/16/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":804,"Cost":736,"Date":"3/18/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":7,"Cost":4,"Date":"3/20/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":572,"Cost":470,"Date":"3/26/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":366,"Cost":260,"Date":"6/2/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":746,"Cost":489,"Date":"6/10/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":957,"Cost":608,"Date":"6/16/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":454,"Cost":231,"Date":"6/25/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":182,"Cost":132,"Date":"7/19/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":636,"Cost":381,"Date":"7/21/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":694,"Cost":431,"Date":"7/25/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":632,"Cost":452,"Date":"8/4/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":670,"Cost":543,"Date":"9/2/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":314,"Cost":165,"Date":"9/4/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":543,"Cost":493,"Date":"9/19/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":154,"Cost":115,"Date":"9/29/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":501,"Cost":470,"Date":"10/2/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":601,"Cost":337,"Date":"10/15/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":631,"Cost":575,"Date":"10/30/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":224,"Cost":123,"Date":"11/9/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":789,"Cost":746,"Date":"11/23/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":463,"Cost":397,"Date":"11/30/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":437,"Cost":219,"Date":"12/8/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":668,"Cost":345,"Date":"12/11/2018"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":184,"Cost":109,"Date":"1/15/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":174,"Cost":114,"Date":"1/24/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":604,"Cost":428,"Date":"2/3/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":136,"Cost":86,"Date":"2/4/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":863,"Cost":704,"Date":"3/9/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":674,"Cost":412,"Date":"3/12/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":486,"Cost":277,"Date":"4/19/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":597,"Cost":424,"Date":"5/3/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":331,"Cost":211,"Date":"5/4/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":757,"Cost":476,"Date":"6/8/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":895,"Cost":489,"Date":"6/26/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":86,"Cost":56,"Date":"7/4/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":421,"Cost":242,"Date":"7/13/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":568,"Cost":373,"Date":"8/8/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":310,"Cost":262,"Date":"8/26/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":658,"Cost":525,"Date":"9/2/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":331,"Cost":282,"Date":"9/29/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":41,"Cost":28,"Date":"10/12/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":757,"Cost":395,"Date":"11/2/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":443,"Cost":280,"Date":"11/4/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":45,"Cost":36,"Date":"11/7/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":180,"Cost":133,"Date":"12/1/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":213,"Cost":109,"Date":"12/4/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":957,"Cost":793,"Date":"12/7/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":67,"Cost":36,"Date":"12/18/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":289,"Cost":270,"Date":"12/20/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":266,"Cost":219,"Date":"12/20/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":493,"Cost":371,"Date":"12/21/2019"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":677,"Cost":508,"Date":"1/9/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":524,"Cost":286,"Date":"2/5/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":393,"Cost":349,"Date":"2/16/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":151,"Cost":96,"Date":"2/16/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":281,"Cost":182,"Date":"2/18/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":610,"Cost":441,"Date":"2/22/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":493,"Cost":302,"Date":"2/25/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":229,"Cost":122,"Date":"3/8/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":348,"Cost":258,"Date":"4/2/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":538,"Cost":439,"Date":"4/3/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":802,"Cost":464,"Date":"4/9/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":385,"Cost":341,"Date":"4/10/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":485,"Cost":302,"Date":"4/19/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":367,"Cost":207,"Date":"5/17/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":288,"Cost":151,"Date":"5/22/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":288,"Cost":195,"Date":"6/20/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":961,"Cost":817,"Date":"7/1/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":446,"Cost":251,"Date":"7/4/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":966,"Cost":696,"Date":"7/8/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":981,"Cost":644,"Date":"7/9/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":521,"Cost":402,"Date":"7/14/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":822,"Cost":761,"Date":"7/19/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":142,"Cost":120,"Date":"8/1/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":674,"Cost":609,"Date":"8/6/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":375,"Cost":241,"Date":"8/7/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":565,"Cost":354,"Date":"8/22/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":510,"Cost":382,"Date":"8/31/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":894,"Cost":805,"Date":"9/1/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":137,"Cost":115,"Date":"9/1/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":685,"Cost":644,"Date":"9/17/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":52,"Cost":38,"Date":"9/29/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":411,"Cost":299,"Date":"11/7/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":464,"Cost":243,"Date":"11/26/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":448,"Cost":249,"Date":"11/27/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":338,"Cost":276,"Date":"12/5/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":208,"Cost":143,"Date":"12/26/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":580,"Cost":414,"Date":"12/31/2020"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":477,"Cost":427,"Date":"1/20/2021"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":770,"Cost":397,"Date":"2/2/2021"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":648,"Cost":407,"Date":"2/8/2021"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":231,"Cost":147,"Date":"2/27/2021"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":1000,"Cost":501,"Date":"3/1/2021"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":827,"Cost":459,"Date":"3/1/2021"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":471,"Cost":392,"Date":"3/19/2021"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":203,"Cost":135,"Date":"3/28/2021"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":774,"Cost":719,"Date":"5/21/2021"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":144,"Cost":93,"Date":"7/21/2021"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":481,"Cost":314,"Date":"8/5/2021"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":848,"Cost":558,"Date":"8/12/2021"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":301,"Cost":178,"Date":"8/21/2021"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":379,"Cost":197,"Date":"8/23/2021"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":658,"Cost":496,"Date":"9/3/2021"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":909,"Cost":576,"Date":"9/5/2021"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":955,"Cost":498,"Date":"10/6/2021"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":499,"Cost":380,"Date":"10/19/2021"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":94,"Cost":52,"Date":"11/15/2021"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":497,"Cost":392,"Date":"12/8/2021"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":163,"Cost":105,"Date":"1/8/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":440,"Cost":308,"Date":"1/14/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":692,"Cost":413,"Date":"1/19/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":160,"Cost":145,"Date":"1/28/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":960,"Cost":688,"Date":"1/31/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":869,"Cost":708,"Date":"3/27/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":488,"Cost":441,"Date":"4/20/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":503,"Cost":369,"Date":"4/24/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":971,"Cost":542,"Date":"4/28/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":828,"Cost":520,"Date":"5/15/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":664,"Cost":556,"Date":"5/16/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":399,"Cost":212,"Date":"5/18/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":370,"Cost":226,"Date":"6/2/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":122,"Cost":78,"Date":"6/3/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":665,"Cost":407,"Date":"6/5/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":432,"Cost":262,"Date":"6/7/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":637,"Cost":601,"Date":"6/14/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":647,"Cost":480,"Date":"6/20/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":365,"Cost":233,"Date":"6/24/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":189,"Cost":137,"Date":"7/4/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":287,"Cost":265,"Date":"7/9/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":826,"Cost":773,"Date":"7/12/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":47,"Cost":42,"Date":"8/14/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":303,"Cost":259,"Date":"8/16/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":287,"Cost":238,"Date":"8/23/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":410,"Cost":383,"Date":"9/2/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":656,"Cost":439,"Date":"9/3/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":552,"Cost":458,"Date":"9/16/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":57,"Cost":52,"Date":"10/4/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":605,"Cost":539,"Date":"11/1/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":575,"Cost":430,"Date":"11/2/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":831,"Cost":545,"Date":"12/17/2022"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":59,"Cost":48,"Date":"2/10/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":640,"Cost":326,"Date":"2/28/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":459,"Cost":294,"Date":"3/4/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":244,"Cost":205,"Date":"3/9/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":454,"Cost":297,"Date":"3/9/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":913,"Cost":725,"Date":"3/11/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":185,"Cost":121,"Date":"3/17/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":537,"Cost":360,"Date":"3/17/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":995,"Cost":938,"Date":"3/23/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":402,"Cost":264,"Date":"4/1/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":787,"Cost":666,"Date":"5/7/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":126,"Cost":70,"Date":"5/10/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":898,"Cost":591,"Date":"5/20/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":12,"Cost":11,"Date":"6/2/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":596,"Cost":313,"Date":"6/11/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":496,"Cost":273,"Date":"6/16/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":670,"Cost":468,"Date":"6/16/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":974,"Cost":617,"Date":"7/10/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":140,"Cost":72,"Date":"7/11/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":759,"Cost":493,"Date":"8/28/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":17,"Cost":12,"Date":"8/29/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":578,"Cost":341,"Date":"8/31/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":592,"Cost":343,"Date":"9/8/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":564,"Cost":426,"Date":"9/13/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":482,"Cost":423,"Date":"9/14/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":883,"Cost":799,"Date":"9/19/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":25,"Cost":15,"Date":"9/25/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":610,"Cost":421,"Date":"10/4/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":366,"Cost":305,"Date":"10/10/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":609,"Cost":489,"Date":"10/17/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":811,"Cost":462,"Date":"10/28/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":52,"Cost":30,"Date":"10/30/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":580,"Cost":340,"Date":"11/1/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":914,"Cost":862,"Date":"11/15/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":583,"Cost":391,"Date":"11/25/2023"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":670,"Cost":604,"Date":"1/10/2024"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":937,"Cost":831,"Date":"1/14/2024"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":330,"Cost":266,"Date":"1/20/2024"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":113,"Cost":67,"Date":"2/8/2024"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":465,"Cost":402,"Date":"2/25/2024"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":637,"Cost":546,"Date":"3/7/2024"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":974,"Cost":885,"Date":"3/14/2024"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":841,"Cost":546,"Date":"3/27/2024"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":63,"Cost":40,"Date":"4/5/2024"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":15,"Cost":14,"Date":"4/14/2024"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":4,"Cost":2,"Date":"5/3/2024"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":952,"Cost":689,"Date":"5/9/2024"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":800,"Cost":579,"Date":"5/15/2024"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":704,"Cost":563,"Date":"5/25/2024"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":11,"Cost":11,"Date":"5/26/2024"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":181,"Cost":95,"Date":"5/31/2024"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":128,"Cost":77,"Date":"7/27/2024"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":571,"Cost":328,"Date":"9/17/2024"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":873,"Cost":740,"Date":"10/6/2024"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":985,"Cost":832,"Date":"10/8/2024"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":579,"Cost":400,"Date":"10/26/2024"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":251,"Cost":142,"Date":"11/16/2024"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":591,"Cost":365,"Date":"11/18/2024"},{"Store":"Tokyo Midtown","Brand":"HM","Country":"Japan","Sale":719,"Cost":528,"Date":"12/1/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":978,"Cost":494,"Date":"2/9/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":662,"Cost":461,"Date":"2/11/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":702,"Cost":568,"Date":"3/10/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":505,"Cost":307,"Date":"3/16/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":823,"Cost":570,"Date":"3/18/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":212,"Cost":181,"Date":"3/20/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":413,"Cost":304,"Date":"3/26/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":819,"Cost":682,"Date":"6/2/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":501,"Cost":336,"Date":"6/10/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":501,"Cost":382,"Date":"6/16/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":150,"Cost":125,"Date":"6/25/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":308,"Cost":205,"Date":"7/19/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":392,"Cost":236,"Date":"7/21/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":287,"Cost":158,"Date":"7/25/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":158,"Cost":104,"Date":"8/4/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":287,"Cost":174,"Date":"9/2/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":354,"Cost":207,"Date":"9/4/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":954,"Cost":843,"Date":"9/19/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":97,"Cost":74,"Date":"9/29/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":671,"Cost":558,"Date":"10/2/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":463,"Cost":379,"Date":"10/15/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":452,"Cost":246,"Date":"10/30/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":730,"Cost":664,"Date":"11/9/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":560,"Cost":516,"Date":"11/23/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":72,"Cost":53,"Date":"11/30/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":246,"Cost":179,"Date":"12/8/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":934,"Cost":567,"Date":"12/11/2018"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":528,"Cost":324,"Date":"1/15/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":44,"Cost":30,"Date":"1/24/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":875,"Cost":621,"Date":"2/3/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":410,"Cost":205,"Date":"2/4/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":781,"Cost":547,"Date":"3/9/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":41,"Cost":21,"Date":"3/12/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":185,"Cost":100,"Date":"4/19/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":722,"Cost":591,"Date":"5/3/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":686,"Cost":487,"Date":"5/4/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":19,"Cost":11,"Date":"6/8/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":161,"Cost":85,"Date":"6/26/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":294,"Cost":246,"Date":"7/4/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":216,"Cost":193,"Date":"7/13/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":432,"Cost":320,"Date":"8/8/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":249,"Cost":192,"Date":"8/26/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":976,"Cost":927,"Date":"9/2/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":763,"Cost":525,"Date":"9/29/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":911,"Cost":463,"Date":"10/12/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":66,"Cost":62,"Date":"11/2/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":825,"Cost":421,"Date":"11/4/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":167,"Cost":107,"Date":"11/7/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":186,"Cost":111,"Date":"12/1/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":474,"Cost":340,"Date":"12/4/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":321,"Cost":215,"Date":"12/7/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":82,"Cost":68,"Date":"12/18/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":983,"Cost":744,"Date":"12/20/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":343,"Cost":238,"Date":"12/20/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":681,"Cost":522,"Date":"12/21/2019"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":83,"Cost":67,"Date":"1/9/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":72,"Cost":57,"Date":"2/5/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":592,"Cost":315,"Date":"2/16/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":25,"Cost":22,"Date":"2/16/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":852,"Cost":434,"Date":"2/18/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":333,"Cost":198,"Date":"2/22/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":548,"Cost":477,"Date":"2/25/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":4,"Cost":3,"Date":"3/8/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":574,"Cost":295,"Date":"4/2/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":629,"Cost":504,"Date":"4/3/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":635,"Cost":335,"Date":"4/9/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":212,"Cost":135,"Date":"4/10/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":889,"Cost":675,"Date":"4/19/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":349,"Cost":252,"Date":"5/17/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":257,"Cost":231,"Date":"5/22/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":459,"Cost":232,"Date":"6/20/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":671,"Cost":409,"Date":"7/1/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":559,"Cost":498,"Date":"7/4/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":465,"Cost":334,"Date":"7/8/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":222,"Cost":157,"Date":"7/9/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":53,"Cost":38,"Date":"7/14/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":908,"Cost":641,"Date":"7/19/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":744,"Cost":683,"Date":"8/1/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":810,"Cost":550,"Date":"8/6/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":727,"Cost":521,"Date":"8/7/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":818,"Cost":704,"Date":"8/22/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":561,"Cost":301,"Date":"8/31/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":586,"Cost":408,"Date":"9/1/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":946,"Cost":653,"Date":"9/1/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":293,"Cost":264,"Date":"9/17/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":919,"Cost":834,"Date":"9/29/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":28,"Cost":22,"Date":"11/7/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":595,"Cost":353,"Date":"11/26/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":496,"Cost":456,"Date":"11/27/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":286,"Cost":192,"Date":"12/5/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":193,"Cost":138,"Date":"12/26/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":986,"Cost":864,"Date":"12/31/2020"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":925,"Cost":841,"Date":"1/20/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":303,"Cost":198,"Date":"2/2/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":264,"Cost":203,"Date":"2/8/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":252,"Cost":224,"Date":"2/27/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":717,"Cost":458,"Date":"3/1/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":204,"Cost":124,"Date":"3/1/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":343,"Cost":193,"Date":"3/19/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":912,"Cost":485,"Date":"3/28/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":717,"Cost":371,"Date":"5/21/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":76,"Cost":69,"Date":"7/21/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":685,"Cost":465,"Date":"8/5/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":855,"Cost":488,"Date":"8/12/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":133,"Cost":113,"Date":"8/21/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":681,"Cost":434,"Date":"8/23/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":565,"Cost":473,"Date":"9/3/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":543,"Cost":297,"Date":"9/5/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":364,"Cost":272,"Date":"10/6/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":524,"Cost":283,"Date":"10/19/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":690,"Cost":455,"Date":"11/15/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":937,"Cost":772,"Date":"12/8/2021"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":756,"Cost":640,"Date":"1/8/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":784,"Cost":459,"Date":"1/14/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":941,"Cost":693,"Date":"1/19/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":271,"Cost":147,"Date":"1/28/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":771,"Cost":413,"Date":"1/31/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":712,"Cost":617,"Date":"3/27/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":252,"Cost":135,"Date":"4/20/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":99,"Cost":94,"Date":"4/24/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":644,"Cost":571,"Date":"4/28/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":314,"Cost":161,"Date":"5/15/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":602,"Cost":504,"Date":"5/16/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":950,"Cost":762,"Date":"5/18/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":517,"Cost":381,"Date":"6/2/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":447,"Cost":233,"Date":"6/3/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":469,"Cost":432,"Date":"6/5/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":818,"Cost":690,"Date":"6/7/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":32,"Cost":30,"Date":"6/14/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":611,"Cost":439,"Date":"6/20/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":954,"Cost":765,"Date":"6/24/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":907,"Cost":603,"Date":"7/4/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":546,"Cost":385,"Date":"7/9/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":439,"Cost":281,"Date":"7/12/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":435,"Cost":236,"Date":"8/14/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":540,"Cost":434,"Date":"8/16/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":426,"Cost":328,"Date":"8/23/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":115,"Cost":68,"Date":"9/2/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":355,"Cost":247,"Date":"9/3/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":368,"Cost":302,"Date":"9/16/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":193,"Cost":178,"Date":"10/4/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":114,"Cost":82,"Date":"11/1/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":268,"Cost":247,"Date":"11/2/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":113,"Cost":100,"Date":"12/17/2022"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":601,"Cost":559,"Date":"2/10/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":949,"Cost":651,"Date":"2/28/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":142,"Cost":106,"Date":"3/4/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":989,"Cost":715,"Date":"3/9/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":516,"Cost":453,"Date":"3/9/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":989,"Cost":712,"Date":"3/11/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":559,"Cost":373,"Date":"3/17/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":107,"Cost":56,"Date":"3/17/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":578,"Cost":430,"Date":"3/23/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":199,"Cost":178,"Date":"4/1/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":73,"Cost":46,"Date":"5/7/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":915,"Cost":729,"Date":"5/10/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":106,"Cost":62,"Date":"5/20/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":890,"Cost":804,"Date":"6/2/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":429,"Cost":331,"Date":"6/11/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":319,"Cost":247,"Date":"6/16/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":44,"Cost":22,"Date":"6/16/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":968,"Cost":622,"Date":"7/10/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":835,"Cost":679,"Date":"7/11/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":831,"Cost":650,"Date":"8/28/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":41,"Cost":39,"Date":"8/29/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":600,"Cost":385,"Date":"8/31/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":668,"Cost":499,"Date":"9/8/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":579,"Cost":297,"Date":"9/13/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":93,"Cost":82,"Date":"9/14/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":21,"Cost":12,"Date":"9/19/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":869,"Cost":690,"Date":"9/25/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":783,"Cost":690,"Date":"10/4/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":775,"Cost":581,"Date":"10/10/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":158,"Cost":140,"Date":"10/17/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":473,"Cost":338,"Date":"10/28/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":49,"Cost":34,"Date":"10/30/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":747,"Cost":394,"Date":"11/1/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":13,"Cost":8,"Date":"11/15/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":745,"Cost":653,"Date":"11/25/2023"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":668,"Cost":567,"Date":"1/10/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":902,"Cost":680,"Date":"1/14/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":240,"Cost":120,"Date":"1/20/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":215,"Cost":117,"Date":"2/8/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":275,"Cost":243,"Date":"2/25/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":841,"Cost":449,"Date":"3/7/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":990,"Cost":816,"Date":"3/14/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":680,"Cost":620,"Date":"3/27/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":892,"Cost":706,"Date":"4/5/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":811,"Cost":512,"Date":"4/14/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":584,"Cost":437,"Date":"5/3/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":142,"Cost":90,"Date":"5/9/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":758,"Cost":437,"Date":"5/15/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":674,"Cost":349,"Date":"5/25/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":946,"Cost":695,"Date":"5/26/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":882,"Cost":560,"Date":"5/31/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":997,"Cost":906,"Date":"7/27/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":797,"Cost":493,"Date":"9/17/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":888,"Cost":810,"Date":"10/6/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":869,"Cost":800,"Date":"10/8/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":838,"Cost":665,"Date":"10/26/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":262,"Cost":221,"Date":"11/16/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":95,"Cost":50,"Date":"11/18/2024"},{"Store":"Tokyo Midtown","Brand":"Nova","Country":"Japan","Sale":751,"Cost":426,"Date":"12/1/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":326,"Cost":273,"Date":"2/9/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":317,"Cost":240,"Date":"2/11/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":955,"Cost":636,"Date":"3/10/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":816,"Cost":585,"Date":"3/16/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":389,"Cost":263,"Date":"3/18/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":721,"Cost":408,"Date":"3/20/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":461,"Cost":388,"Date":"3/26/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":768,"Cost":461,"Date":"6/2/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":259,"Cost":240,"Date":"6/10/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":913,"Cost":480,"Date":"6/16/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":48,"Cost":24,"Date":"6/25/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":445,"Cost":402,"Date":"7/19/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":613,"Cost":554,"Date":"7/21/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":96,"Cost":76,"Date":"7/25/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":706,"Cost":405,"Date":"8/4/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":676,"Cost":525,"Date":"9/2/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":777,"Cost":615,"Date":"9/4/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":914,"Cost":679,"Date":"9/19/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":291,"Cost":234,"Date":"9/29/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":404,"Cost":252,"Date":"10/2/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":712,"Cost":471,"Date":"10/15/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":239,"Cost":134,"Date":"10/30/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":711,"Cost":604,"Date":"11/9/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":634,"Cost":503,"Date":"11/23/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":168,"Cost":145,"Date":"11/30/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":297,"Cost":260,"Date":"12/8/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":76,"Cost":64,"Date":"12/11/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":197,"Cost":124,"Date":"1/15/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":704,"Cost":550,"Date":"1/24/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":231,"Cost":167,"Date":"2/3/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":562,"Cost":317,"Date":"2/4/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":547,"Cost":507,"Date":"3/9/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":769,"Cost":727,"Date":"3/12/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":117,"Cost":106,"Date":"4/19/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":894,"Cost":732,"Date":"5/3/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":938,"Cost":767,"Date":"5/4/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":893,"Cost":526,"Date":"6/8/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":309,"Cost":182,"Date":"6/26/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":506,"Cost":456,"Date":"7/4/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":493,"Cost":454,"Date":"7/13/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":985,"Cost":842,"Date":"8/8/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":760,"Cost":544,"Date":"8/26/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":902,"Cost":812,"Date":"9/2/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":167,"Cost":137,"Date":"9/29/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":880,"Cost":580,"Date":"10/12/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":716,"Cost":640,"Date":"11/2/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":272,"Cost":242,"Date":"11/4/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":248,"Cost":144,"Date":"11/7/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":579,"Cost":529,"Date":"12/1/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":435,"Cost":223,"Date":"12/4/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":311,"Cost":250,"Date":"12/7/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":813,"Cost":538,"Date":"12/18/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":605,"Cost":448,"Date":"12/20/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":119,"Cost":98,"Date":"12/20/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":361,"Cost":301,"Date":"12/21/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":741,"Cost":450,"Date":"1/9/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":732,"Cost":384,"Date":"2/5/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":518,"Cost":371,"Date":"2/16/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":633,"Cost":468,"Date":"2/16/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":844,"Cost":464,"Date":"2/18/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":421,"Cost":366,"Date":"2/22/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":21,"Cost":18,"Date":"2/25/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":195,"Cost":160,"Date":"3/8/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":232,"Cost":127,"Date":"4/2/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":87,"Cost":58,"Date":"4/3/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":609,"Cost":338,"Date":"4/9/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":656,"Cost":418,"Date":"4/10/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":921,"Cost":725,"Date":"4/19/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":205,"Cost":153,"Date":"5/17/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":718,"Cost":651,"Date":"5/22/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":412,"Cost":209,"Date":"6/20/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":461,"Cost":366,"Date":"7/1/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":934,"Cost":777,"Date":"7/4/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":627,"Cost":565,"Date":"7/8/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":995,"Cost":553,"Date":"7/9/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":621,"Cost":539,"Date":"7/14/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":308,"Cost":248,"Date":"7/19/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":503,"Cost":467,"Date":"8/1/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":701,"Cost":607,"Date":"8/6/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":821,"Cost":686,"Date":"8/7/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":965,"Cost":817,"Date":"8/22/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":66,"Cost":51,"Date":"8/31/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":660,"Cost":413,"Date":"9/1/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":285,"Cost":239,"Date":"9/1/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":697,"Cost":579,"Date":"9/17/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":172,"Cost":102,"Date":"9/29/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":745,"Cost":485,"Date":"11/7/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":634,"Cost":438,"Date":"11/26/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":81,"Cost":69,"Date":"11/27/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":667,"Cost":349,"Date":"12/5/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":935,"Cost":640,"Date":"12/26/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":78,"Cost":45,"Date":"12/31/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":631,"Cost":418,"Date":"1/20/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":897,"Cost":621,"Date":"2/2/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":131,"Cost":101,"Date":"2/8/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":115,"Cost":85,"Date":"2/27/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":239,"Cost":223,"Date":"3/1/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":292,"Cost":190,"Date":"3/1/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":507,"Cost":338,"Date":"3/19/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":795,"Cost":704,"Date":"3/28/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":662,"Cost":409,"Date":"5/21/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":393,"Cost":229,"Date":"7/21/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":319,"Cost":222,"Date":"8/5/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":681,"Cost":354,"Date":"8/12/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":219,"Cost":135,"Date":"8/21/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":541,"Cost":273,"Date":"8/23/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":8,"Cost":4,"Date":"9/3/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":814,"Cost":589,"Date":"9/5/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":766,"Cost":473,"Date":"10/6/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":520,"Cost":428,"Date":"10/19/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":615,"Cost":496,"Date":"11/15/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":479,"Cost":240,"Date":"12/8/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":238,"Cost":136,"Date":"1/8/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":563,"Cost":505,"Date":"1/14/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":560,"Cost":283,"Date":"1/19/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":597,"Cost":457,"Date":"1/28/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":172,"Cost":140,"Date":"1/31/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":31,"Cost":20,"Date":"3/27/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":647,"Cost":475,"Date":"4/20/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":971,"Cost":798,"Date":"4/24/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":730,"Cost":687,"Date":"4/28/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":565,"Cost":362,"Date":"5/15/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":736,"Cost":536,"Date":"5/16/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":866,"Cost":638,"Date":"5/18/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":608,"Cost":377,"Date":"6/2/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":296,"Cost":274,"Date":"6/3/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":339,"Cost":292,"Date":"6/5/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":972,"Cost":539,"Date":"6/7/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":642,"Cost":340,"Date":"6/14/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":149,"Cost":89,"Date":"6/20/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":296,"Cost":220,"Date":"6/24/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":169,"Cost":124,"Date":"7/4/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":69,"Cost":49,"Date":"7/9/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":870,"Cost":574,"Date":"7/12/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":525,"Cost":299,"Date":"8/14/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":661,"Cost":360,"Date":"8/16/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":703,"Cost":667,"Date":"8/23/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":800,"Cost":702,"Date":"9/2/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":101,"Cost":95,"Date":"9/3/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":587,"Cost":488,"Date":"9/16/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":572,"Cost":299,"Date":"10/4/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":782,"Cost":629,"Date":"11/1/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":601,"Cost":360,"Date":"11/2/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":710,"Cost":569,"Date":"12/17/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":843,"Cost":563,"Date":"2/10/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":392,"Cost":236,"Date":"2/28/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":230,"Cost":214,"Date":"3/4/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":123,"Cost":77,"Date":"3/9/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":179,"Cost":92,"Date":"3/9/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":803,"Cost":737,"Date":"3/11/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":702,"Cost":427,"Date":"3/17/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":386,"Cost":290,"Date":"3/17/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":149,"Cost":126,"Date":"3/23/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":530,"Cost":398,"Date":"4/1/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":347,"Cost":183,"Date":"5/7/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":599,"Cost":318,"Date":"5/10/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":797,"Cost":697,"Date":"5/20/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":182,"Cost":156,"Date":"6/2/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":875,"Cost":813,"Date":"6/11/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":943,"Cost":739,"Date":"6/16/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":500,"Cost":436,"Date":"6/16/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":949,"Cost":884,"Date":"7/10/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":163,"Cost":143,"Date":"7/11/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":22,"Cost":18,"Date":"8/28/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":884,"Cost":761,"Date":"8/29/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":405,"Cost":245,"Date":"8/31/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":458,"Cost":267,"Date":"9/8/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":588,"Cost":517,"Date":"9/13/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":289,"Cost":235,"Date":"9/14/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":637,"Cost":570,"Date":"9/19/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":639,"Cost":348,"Date":"9/25/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":630,"Cost":435,"Date":"10/4/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":770,"Cost":403,"Date":"10/10/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":737,"Cost":433,"Date":"10/17/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":851,"Cost":665,"Date":"10/28/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":353,"Cost":331,"Date":"10/30/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":206,"Cost":104,"Date":"11/1/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":229,"Cost":140,"Date":"11/15/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":257,"Cost":133,"Date":"11/25/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":252,"Cost":180,"Date":"1/10/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":901,"Cost":667,"Date":"1/14/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":439,"Cost":356,"Date":"1/20/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":820,"Cost":507,"Date":"2/8/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":578,"Cost":315,"Date":"2/25/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":949,"Cost":683,"Date":"3/7/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":626,"Cost":348,"Date":"3/14/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":290,"Cost":177,"Date":"3/27/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":836,"Cost":464,"Date":"4/5/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":152,"Cost":124,"Date":"4/14/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":437,"Cost":292,"Date":"5/3/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":297,"Cost":222,"Date":"5/9/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":948,"Cost":709,"Date":"5/15/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":286,"Cost":259,"Date":"5/25/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":611,"Cost":416,"Date":"5/26/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":262,"Cost":196,"Date":"5/31/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":721,"Cost":616,"Date":"7/27/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":523,"Cost":383,"Date":"9/17/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":982,"Cost":524,"Date":"10/6/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":116,"Cost":88,"Date":"10/8/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":501,"Cost":407,"Date":"10/26/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":841,"Cost":732,"Date":"11/16/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":86,"Cost":48,"Date":"11/18/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":750,"Cost":567,"Date":"12/1/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":433,"Cost":346,"Date":"2/9/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":860,"Cost":539,"Date":"2/11/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":973,"Cost":607,"Date":"3/10/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":721,"Cost":643,"Date":"3/16/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":681,"Cost":533,"Date":"3/18/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":533,"Cost":375,"Date":"3/20/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":527,"Cost":419,"Date":"3/26/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":910,"Cost":666,"Date":"6/2/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":843,"Cost":448,"Date":"6/10/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":159,"Cost":93,"Date":"6/16/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":367,"Cost":221,"Date":"6/25/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":283,"Cost":219,"Date":"7/19/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":364,"Cost":233,"Date":"7/21/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":486,"Cost":390,"Date":"7/25/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":931,"Cost":497,"Date":"8/4/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":321,"Cost":282,"Date":"9/2/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":535,"Cost":492,"Date":"9/4/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":983,"Cost":648,"Date":"9/19/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":54,"Cost":29,"Date":"9/29/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":871,"Cost":664,"Date":"10/2/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":279,"Cost":253,"Date":"10/15/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":463,"Cost":397,"Date":"10/30/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":513,"Cost":260,"Date":"11/9/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":371,"Cost":349,"Date":"11/23/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":83,"Cost":76,"Date":"11/30/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":90,"Cost":70,"Date":"12/8/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":65,"Cost":60,"Date":"12/11/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":937,"Cost":658,"Date":"1/15/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":853,"Cost":462,"Date":"1/24/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":280,"Cost":186,"Date":"2/3/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":697,"Cost":539,"Date":"2/4/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":583,"Cost":475,"Date":"3/9/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":92,"Cost":78,"Date":"3/12/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":225,"Cost":120,"Date":"4/19/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":26,"Cost":23,"Date":"5/3/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":437,"Cost":222,"Date":"5/4/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":495,"Cost":329,"Date":"6/8/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":822,"Cost":467,"Date":"6/26/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":759,"Cost":385,"Date":"7/4/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":296,"Cost":187,"Date":"7/13/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":269,"Cost":195,"Date":"8/8/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":322,"Cost":258,"Date":"8/26/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":288,"Cost":174,"Date":"9/2/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":406,"Cost":339,"Date":"9/29/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":368,"Cost":185,"Date":"10/12/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":508,"Cost":435,"Date":"11/2/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":781,"Cost":703,"Date":"11/4/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":994,"Cost":636,"Date":"11/7/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":673,"Cost":535,"Date":"12/1/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":353,"Cost":293,"Date":"12/4/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":223,"Cost":130,"Date":"12/7/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":803,"Cost":482,"Date":"12/18/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":400,"Cost":297,"Date":"12/20/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":267,"Cost":229,"Date":"12/20/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":643,"Cost":409,"Date":"12/21/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":774,"Cost":655,"Date":"1/9/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":734,"Cost":568,"Date":"2/5/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":968,"Cost":741,"Date":"2/16/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":51,"Cost":32,"Date":"2/16/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":357,"Cost":254,"Date":"2/18/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":480,"Cost":350,"Date":"2/22/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":762,"Cost":647,"Date":"2/25/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":135,"Cost":109,"Date":"3/8/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":37,"Cost":32,"Date":"4/2/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":428,"Cost":383,"Date":"4/3/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":924,"Cost":652,"Date":"4/9/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":609,"Cost":312,"Date":"4/10/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":116,"Cost":99,"Date":"4/19/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":907,"Cost":500,"Date":"5/17/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":363,"Cost":336,"Date":"5/22/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":904,"Cost":659,"Date":"6/20/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":59,"Cost":42,"Date":"7/1/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":731,"Cost":520,"Date":"7/4/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":446,"Cost":376,"Date":"7/8/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":75,"Cost":45,"Date":"7/9/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":622,"Cost":526,"Date":"7/14/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":863,"Cost":701,"Date":"7/19/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":437,"Cost":219,"Date":"8/1/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":89,"Cost":55,"Date":"8/6/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":166,"Cost":94,"Date":"8/7/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":977,"Cost":558,"Date":"8/22/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":693,"Cost":426,"Date":"8/31/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":46,"Cost":33,"Date":"9/1/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":56,"Cost":41,"Date":"9/1/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":284,"Cost":175,"Date":"9/17/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":599,"Cost":352,"Date":"9/29/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":201,"Cost":101,"Date":"11/7/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":502,"Cost":264,"Date":"11/26/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":741,"Cost":465,"Date":"11/27/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":419,"Cost":278,"Date":"12/5/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":255,"Cost":183,"Date":"12/26/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":437,"Cost":410,"Date":"12/31/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":930,"Cost":633,"Date":"1/20/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":573,"Cost":295,"Date":"2/2/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":170,"Cost":125,"Date":"2/8/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":13,"Cost":6,"Date":"2/27/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":7,"Cost":4,"Date":"3/1/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":654,"Cost":344,"Date":"3/1/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":827,"Cost":558,"Date":"3/19/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":35,"Cost":27,"Date":"3/28/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":271,"Cost":160,"Date":"5/21/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":111,"Cost":61,"Date":"7/21/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":927,"Cost":529,"Date":"8/5/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":298,"Cost":153,"Date":"8/12/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":796,"Cost":465,"Date":"8/21/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":994,"Cost":569,"Date":"8/23/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":696,"Cost":427,"Date":"9/3/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":539,"Cost":447,"Date":"9/5/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":372,"Cost":267,"Date":"10/6/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":65,"Cost":40,"Date":"10/19/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":306,"Cost":156,"Date":"11/15/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":100,"Cost":68,"Date":"12/8/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":705,"Cost":628,"Date":"1/8/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":43,"Cost":31,"Date":"1/14/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":970,"Cost":829,"Date":"1/19/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":557,"Cost":488,"Date":"1/28/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":392,"Cost":230,"Date":"1/31/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":468,"Cost":312,"Date":"3/27/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":429,"Cost":308,"Date":"4/20/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":957,"Cost":523,"Date":"4/24/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":593,"Cost":391,"Date":"4/28/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":639,"Cost":584,"Date":"5/15/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":700,"Cost":384,"Date":"5/16/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":568,"Cost":444,"Date":"5/18/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":182,"Cost":102,"Date":"6/2/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":347,"Cost":235,"Date":"6/3/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":106,"Cost":73,"Date":"6/5/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":960,"Cost":516,"Date":"6/7/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":391,"Cost":338,"Date":"6/14/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":646,"Cost":531,"Date":"6/20/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":376,"Cost":201,"Date":"6/24/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":124,"Cost":86,"Date":"7/4/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":433,"Cost":352,"Date":"7/9/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":527,"Cost":496,"Date":"7/12/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":243,"Cost":179,"Date":"8/14/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":308,"Cost":244,"Date":"8/16/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":557,"Cost":423,"Date":"8/23/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":380,"Cost":328,"Date":"9/2/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":457,"Cost":349,"Date":"9/3/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":788,"Cost":659,"Date":"9/16/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":162,"Cost":95,"Date":"10/4/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":546,"Cost":295,"Date":"11/1/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":531,"Cost":330,"Date":"11/2/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":877,"Cost":801,"Date":"12/17/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":675,"Cost":411,"Date":"2/10/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":758,"Cost":500,"Date":"2/28/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":26,"Cost":14,"Date":"3/4/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":456,"Cost":314,"Date":"3/9/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":226,"Cost":180,"Date":"3/9/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":5,"Cost":5,"Date":"3/11/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":34,"Cost":32,"Date":"3/17/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":395,"Cost":363,"Date":"3/17/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":723,"Cost":527,"Date":"3/23/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":596,"Cost":429,"Date":"4/1/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":883,"Cost":631,"Date":"5/7/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":456,"Cost":285,"Date":"5/10/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":871,"Cost":818,"Date":"5/20/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":724,"Cost":565,"Date":"6/2/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":159,"Cost":83,"Date":"6/11/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":870,"Cost":537,"Date":"6/16/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":389,"Cost":220,"Date":"6/16/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":347,"Cost":297,"Date":"7/10/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":444,"Cost":298,"Date":"7/11/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":971,"Cost":839,"Date":"8/28/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":941,"Cost":859,"Date":"8/29/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":957,"Cost":902,"Date":"8/31/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":801,"Cost":502,"Date":"9/8/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":512,"Cost":483,"Date":"9/13/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":132,"Cost":116,"Date":"9/14/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":20,"Cost":13,"Date":"9/19/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":399,"Cost":340,"Date":"9/25/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":26,"Cost":24,"Date":"10/4/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":455,"Cost":260,"Date":"10/10/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":629,"Cost":525,"Date":"10/17/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":912,"Cost":603,"Date":"10/28/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":98,"Cost":90,"Date":"10/30/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":453,"Cost":395,"Date":"11/1/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":186,"Cost":115,"Date":"11/15/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":436,"Cost":263,"Date":"11/25/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":801,"Cost":460,"Date":"1/10/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":398,"Cost":236,"Date":"1/14/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":595,"Cost":534,"Date":"1/20/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":605,"Cost":342,"Date":"2/8/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":54,"Cost":43,"Date":"2/25/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":384,"Cost":202,"Date":"3/7/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":111,"Cost":92,"Date":"3/14/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":977,"Cost":584,"Date":"3/27/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":994,"Cost":874,"Date":"4/5/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":629,"Cost":472,"Date":"4/14/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":168,"Cost":150,"Date":"5/3/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":503,"Cost":301,"Date":"5/9/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":840,"Cost":456,"Date":"5/15/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":874,"Cost":476,"Date":"5/25/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":312,"Cost":251,"Date":"5/26/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":212,"Cost":146,"Date":"5/31/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":614,"Cost":353,"Date":"7/27/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":297,"Cost":245,"Date":"9/17/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":835,"Cost":660,"Date":"10/6/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":912,"Cost":727,"Date":"10/8/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":320,"Cost":165,"Date":"10/26/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":785,"Cost":433,"Date":"11/16/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":863,"Cost":448,"Date":"11/18/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"ARKET","Country":"Japan","Sale":623,"Cost":442,"Date":"12/1/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":102,"Cost":91,"Date":"2/9/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":751,"Cost":621,"Date":"2/11/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":775,"Cost":581,"Date":"3/10/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":749,"Cost":646,"Date":"3/16/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":278,"Cost":225,"Date":"3/18/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":899,"Cost":707,"Date":"3/20/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":689,"Cost":374,"Date":"3/26/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":926,"Cost":552,"Date":"6/2/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":938,"Cost":769,"Date":"6/10/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":913,"Cost":497,"Date":"6/16/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":674,"Cost":566,"Date":"6/25/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":622,"Cost":426,"Date":"7/19/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":275,"Cost":211,"Date":"7/21/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":714,"Cost":439,"Date":"7/25/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":454,"Cost":362,"Date":"8/4/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":349,"Cost":287,"Date":"9/2/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":495,"Cost":312,"Date":"9/4/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":22,"Cost":17,"Date":"9/19/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":470,"Cost":314,"Date":"9/29/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":74,"Cost":38,"Date":"10/2/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":350,"Cost":268,"Date":"10/15/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":187,"Cost":116,"Date":"10/30/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":540,"Cost":356,"Date":"11/9/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":583,"Cost":368,"Date":"11/23/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":523,"Cost":464,"Date":"11/30/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":953,"Cost":788,"Date":"12/8/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":48,"Cost":26,"Date":"12/11/2018"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":649,"Cost":325,"Date":"1/15/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":969,"Cost":657,"Date":"1/24/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":646,"Cost":516,"Date":"2/3/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":280,"Cost":187,"Date":"2/4/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":300,"Cost":204,"Date":"3/9/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":842,"Cost":578,"Date":"3/12/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":469,"Cost":360,"Date":"4/19/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":410,"Cost":227,"Date":"5/3/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":71,"Cost":61,"Date":"5/4/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":171,"Cost":87,"Date":"6/8/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":780,"Cost":705,"Date":"6/26/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":421,"Cost":357,"Date":"7/4/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":309,"Cost":199,"Date":"7/13/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":332,"Cost":175,"Date":"8/8/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":79,"Cost":48,"Date":"8/26/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":933,"Cost":560,"Date":"9/2/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":932,"Cost":516,"Date":"9/29/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":1,"Cost":1,"Date":"10/12/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":769,"Cost":385,"Date":"11/2/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":985,"Cost":575,"Date":"11/4/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":441,"Cost":295,"Date":"11/7/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":583,"Cost":516,"Date":"12/1/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":119,"Cost":107,"Date":"12/4/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":215,"Cost":156,"Date":"12/7/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":113,"Cost":104,"Date":"12/18/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":619,"Cost":311,"Date":"12/20/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":812,"Cost":531,"Date":"12/20/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":367,"Cost":276,"Date":"12/21/2019"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":763,"Cost":546,"Date":"1/9/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":988,"Cost":666,"Date":"2/5/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":991,"Cost":900,"Date":"2/16/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":525,"Cost":384,"Date":"2/16/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":484,"Cost":297,"Date":"2/18/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":389,"Cost":259,"Date":"2/22/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":482,"Cost":338,"Date":"2/25/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":818,"Cost":637,"Date":"3/8/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":922,"Cost":475,"Date":"4/2/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":686,"Cost":453,"Date":"4/3/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":320,"Cost":269,"Date":"4/9/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":154,"Cost":102,"Date":"4/10/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":66,"Cost":59,"Date":"4/19/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":87,"Cost":74,"Date":"5/17/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":860,"Cost":519,"Date":"5/22/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":634,"Cost":447,"Date":"6/20/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":466,"Cost":270,"Date":"7/1/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":758,"Cost":590,"Date":"7/4/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":431,"Cost":381,"Date":"7/8/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":710,"Cost":445,"Date":"7/9/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":213,"Cost":151,"Date":"7/14/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":939,"Cost":726,"Date":"7/19/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":692,"Cost":363,"Date":"8/1/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":812,"Cost":674,"Date":"8/6/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":864,"Cost":615,"Date":"8/7/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":393,"Cost":228,"Date":"8/22/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":82,"Cost":49,"Date":"8/31/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":691,"Cost":407,"Date":"9/1/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":61,"Cost":31,"Date":"9/1/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":294,"Cost":197,"Date":"9/17/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":46,"Cost":39,"Date":"9/29/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":170,"Cost":97,"Date":"11/7/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":389,"Cost":264,"Date":"11/26/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":232,"Cost":184,"Date":"11/27/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":36,"Cost":31,"Date":"12/5/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":710,"Cost":596,"Date":"12/26/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":481,"Cost":445,"Date":"12/31/2020"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":835,"Cost":607,"Date":"1/20/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":728,"Cost":496,"Date":"2/2/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":385,"Cost":221,"Date":"2/8/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":334,"Cost":188,"Date":"2/27/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":377,"Cost":313,"Date":"3/1/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":301,"Cost":257,"Date":"3/1/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":329,"Cost":249,"Date":"3/19/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":466,"Cost":341,"Date":"3/28/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":659,"Cost":548,"Date":"5/21/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":955,"Cost":590,"Date":"7/21/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":922,"Cost":561,"Date":"8/5/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":977,"Cost":527,"Date":"8/12/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":391,"Cost":269,"Date":"8/21/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":138,"Cost":117,"Date":"8/23/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":8,"Cost":4,"Date":"9/3/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":677,"Cost":535,"Date":"9/5/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":491,"Cost":441,"Date":"10/6/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":895,"Cost":551,"Date":"10/19/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":252,"Cost":233,"Date":"11/15/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":287,"Cost":266,"Date":"12/8/2021"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":298,"Cost":168,"Date":"1/8/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":563,"Cost":481,"Date":"1/14/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":957,"Cost":614,"Date":"1/19/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":616,"Cost":371,"Date":"1/28/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":962,"Cost":715,"Date":"1/31/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":262,"Cost":165,"Date":"3/27/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":431,"Cost":259,"Date":"4/20/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":272,"Cost":159,"Date":"4/24/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":991,"Cost":706,"Date":"4/28/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":759,"Cost":530,"Date":"5/15/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":157,"Cost":138,"Date":"5/16/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":775,"Cost":537,"Date":"5/18/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":925,"Cost":621,"Date":"6/2/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":803,"Cost":718,"Date":"6/3/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":874,"Cost":810,"Date":"6/5/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":484,"Cost":323,"Date":"6/7/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":28,"Cost":17,"Date":"6/14/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":666,"Cost":542,"Date":"6/20/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":372,"Cost":215,"Date":"6/24/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":287,"Cost":208,"Date":"7/4/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":240,"Cost":129,"Date":"7/9/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":852,"Cost":769,"Date":"7/12/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":937,"Cost":804,"Date":"8/14/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":232,"Cost":158,"Date":"8/16/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":959,"Cost":611,"Date":"8/23/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":773,"Cost":703,"Date":"9/2/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":862,"Cost":597,"Date":"9/3/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":405,"Cost":203,"Date":"9/16/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":965,"Cost":614,"Date":"10/4/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":572,"Cost":435,"Date":"11/1/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":527,"Cost":355,"Date":"11/2/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":436,"Cost":271,"Date":"12/17/2022"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":372,"Cost":195,"Date":"2/10/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":162,"Cost":89,"Date":"2/28/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":641,"Cost":368,"Date":"3/4/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":715,"Cost":417,"Date":"3/9/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":862,"Cost":488,"Date":"3/9/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":331,"Cost":301,"Date":"3/11/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":709,"Cost":536,"Date":"3/17/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":8,"Cost":8,"Date":"3/17/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":618,"Cost":481,"Date":"3/23/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":560,"Cost":448,"Date":"4/1/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":777,"Cost":457,"Date":"5/7/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":154,"Cost":129,"Date":"5/10/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":886,"Cost":470,"Date":"5/20/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":913,"Cost":865,"Date":"6/2/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":137,"Cost":74,"Date":"6/11/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":89,"Cost":69,"Date":"6/16/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":319,"Cost":276,"Date":"6/16/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":938,"Cost":517,"Date":"7/10/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":300,"Cost":183,"Date":"7/11/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":628,"Cost":528,"Date":"8/28/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":375,"Cost":318,"Date":"8/29/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":500,"Cost":421,"Date":"8/31/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":688,"Cost":354,"Date":"9/8/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":914,"Cost":688,"Date":"9/13/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":332,"Cost":236,"Date":"9/14/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":568,"Cost":381,"Date":"9/19/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":198,"Cost":166,"Date":"9/25/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":549,"Cost":432,"Date":"10/4/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":142,"Cost":118,"Date":"10/10/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":56,"Cost":50,"Date":"10/17/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":156,"Cost":86,"Date":"10/28/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":349,"Cost":319,"Date":"10/30/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":658,"Cost":567,"Date":"11/1/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":543,"Cost":481,"Date":"11/15/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":105,"Cost":65,"Date":"11/25/2023"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":168,"Cost":151,"Date":"1/10/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":222,"Cost":171,"Date":"1/14/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":9,"Cost":5,"Date":"1/20/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":205,"Cost":159,"Date":"2/8/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":365,"Cost":184,"Date":"2/25/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":831,"Cost":458,"Date":"3/7/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":945,"Cost":568,"Date":"3/14/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":363,"Cost":263,"Date":"3/27/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":138,"Cost":87,"Date":"4/5/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":57,"Cost":33,"Date":"4/14/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":455,"Cost":339,"Date":"5/3/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":421,"Cost":290,"Date":"5/9/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":944,"Cost":820,"Date":"5/15/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":844,"Cost":713,"Date":"5/25/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":765,"Cost":426,"Date":"5/26/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":896,"Cost":608,"Date":"5/31/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":406,"Cost":312,"Date":"7/27/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":534,"Cost":506,"Date":"9/17/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":780,"Cost":462,"Date":"10/6/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":846,"Cost":717,"Date":"10/8/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":525,"Cost":286,"Date":"10/26/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":771,"Cost":565,"Date":"11/16/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":223,"Cost":162,"Date":"11/18/2024"},{"Store":"Roppongi Hills, Tokyo","Brand":"HM Home","Country":"Japan","Sale":644,"Cost":528,"Date":"12/1/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":483,"Cost":399,"Date":"2/9/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":2,"Cost":1,"Date":"2/11/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":17,"Cost":14,"Date":"3/10/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":938,"Cost":622,"Date":"3/16/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":191,"Cost":154,"Date":"3/18/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":864,"Cost":520,"Date":"3/20/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":786,"Cost":614,"Date":"3/26/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":822,"Cost":656,"Date":"6/2/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":636,"Cost":377,"Date":"6/10/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":788,"Cost":586,"Date":"6/16/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":765,"Cost":696,"Date":"6/25/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":346,"Cost":284,"Date":"7/19/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":127,"Cost":119,"Date":"7/21/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":383,"Cost":216,"Date":"7/25/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":624,"Cost":350,"Date":"8/4/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":830,"Cost":646,"Date":"9/2/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":663,"Cost":435,"Date":"9/4/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":765,"Cost":473,"Date":"9/19/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":345,"Cost":284,"Date":"9/29/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":408,"Cost":266,"Date":"10/2/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":688,"Cost":482,"Date":"10/15/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":647,"Cost":541,"Date":"10/30/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":983,"Cost":719,"Date":"11/9/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":375,"Cost":269,"Date":"11/23/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":135,"Cost":115,"Date":"11/30/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":74,"Cost":57,"Date":"12/8/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":399,"Cost":239,"Date":"12/11/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":647,"Cost":494,"Date":"1/15/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":864,"Cost":735,"Date":"1/24/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":195,"Cost":165,"Date":"2/3/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":324,"Cost":240,"Date":"2/4/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":289,"Cost":153,"Date":"3/9/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":391,"Cost":225,"Date":"3/12/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":397,"Cost":288,"Date":"4/19/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":803,"Cost":437,"Date":"5/3/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":42,"Cost":21,"Date":"5/4/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":251,"Cost":150,"Date":"6/8/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":632,"Cost":516,"Date":"6/26/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":841,"Cost":610,"Date":"7/4/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":353,"Cost":183,"Date":"7/13/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":970,"Cost":765,"Date":"8/8/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":60,"Cost":49,"Date":"8/26/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":749,"Cost":657,"Date":"9/2/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":738,"Cost":409,"Date":"9/29/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":276,"Cost":249,"Date":"10/12/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":727,"Cost":417,"Date":"11/2/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":645,"Cost":537,"Date":"11/4/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":839,"Cost":696,"Date":"11/7/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":441,"Cost":228,"Date":"12/1/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":212,"Cost":119,"Date":"12/4/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":376,"Cost":260,"Date":"12/7/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":298,"Cost":161,"Date":"12/18/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":211,"Cost":113,"Date":"12/20/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":828,"Cost":526,"Date":"12/20/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":515,"Cost":486,"Date":"12/21/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":841,"Cost":630,"Date":"1/9/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":112,"Cost":59,"Date":"2/5/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":142,"Cost":95,"Date":"2/16/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":880,"Cost":750,"Date":"2/16/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":576,"Cost":400,"Date":"2/18/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":828,"Cost":541,"Date":"2/22/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":693,"Cost":464,"Date":"2/25/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":649,"Cost":388,"Date":"3/8/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":608,"Cost":493,"Date":"4/2/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":626,"Cost":444,"Date":"4/3/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":137,"Cost":127,"Date":"4/9/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":184,"Cost":155,"Date":"4/10/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":421,"Cost":215,"Date":"4/19/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":205,"Cost":164,"Date":"5/17/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":646,"Cost":509,"Date":"5/22/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":959,"Cost":880,"Date":"6/20/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":615,"Cost":378,"Date":"7/1/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":444,"Cost":337,"Date":"7/4/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":536,"Cost":291,"Date":"7/8/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":574,"Cost":506,"Date":"7/9/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":470,"Cost":273,"Date":"7/14/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":130,"Cost":121,"Date":"7/19/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":146,"Cost":125,"Date":"8/1/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":414,"Cost":342,"Date":"8/6/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":683,"Cost":368,"Date":"8/7/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":996,"Cost":756,"Date":"8/22/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":702,"Cost":490,"Date":"8/31/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":636,"Cost":408,"Date":"9/1/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":794,"Cost":456,"Date":"9/1/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":451,"Cost":296,"Date":"9/17/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":874,"Cost":740,"Date":"9/29/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":971,"Cost":820,"Date":"11/7/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":959,"Cost":528,"Date":"11/26/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":646,"Cost":415,"Date":"11/27/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":988,"Cost":834,"Date":"12/5/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":567,"Cost":500,"Date":"12/26/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":202,"Cost":157,"Date":"12/31/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":125,"Cost":73,"Date":"1/20/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":602,"Cost":503,"Date":"2/2/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":591,"Cost":298,"Date":"2/8/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":918,"Cost":763,"Date":"2/27/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":389,"Cost":330,"Date":"3/1/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":259,"Cost":144,"Date":"3/1/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":346,"Cost":313,"Date":"3/19/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":774,"Cost":432,"Date":"3/28/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":347,"Cost":268,"Date":"5/21/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":958,"Cost":506,"Date":"7/21/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":457,"Cost":327,"Date":"8/5/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":351,"Cost":256,"Date":"8/12/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":636,"Cost":542,"Date":"8/21/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":776,"Cost":557,"Date":"8/23/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":905,"Cost":608,"Date":"9/3/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":816,"Cost":468,"Date":"9/5/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":216,"Cost":143,"Date":"10/6/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":173,"Cost":154,"Date":"10/19/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":660,"Cost":620,"Date":"11/15/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":129,"Cost":101,"Date":"12/8/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":323,"Cost":225,"Date":"1/8/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":823,"Cost":743,"Date":"1/14/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":729,"Cost":564,"Date":"1/19/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":839,"Cost":436,"Date":"1/28/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":57,"Cost":43,"Date":"1/31/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":946,"Cost":666,"Date":"3/27/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":146,"Cost":114,"Date":"4/20/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":140,"Cost":126,"Date":"4/24/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":574,"Cost":355,"Date":"4/28/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":91,"Cost":45,"Date":"5/15/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":330,"Cost":210,"Date":"5/16/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":981,"Cost":674,"Date":"5/18/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":624,"Cost":480,"Date":"6/2/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":902,"Cost":829,"Date":"6/3/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":12,"Cost":7,"Date":"6/5/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":106,"Cost":71,"Date":"6/7/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":14,"Cost":11,"Date":"6/14/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":647,"Cost":413,"Date":"6/20/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":323,"Cost":279,"Date":"6/24/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":920,"Cost":735,"Date":"7/4/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":857,"Cost":601,"Date":"7/9/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":917,"Cost":815,"Date":"7/12/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":527,"Cost":487,"Date":"8/14/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":67,"Cost":38,"Date":"8/16/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":258,"Cost":225,"Date":"8/23/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":374,"Cost":277,"Date":"9/2/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":632,"Cost":423,"Date":"9/3/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":577,"Cost":436,"Date":"9/16/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":416,"Cost":311,"Date":"10/4/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":253,"Cost":171,"Date":"11/1/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":932,"Cost":809,"Date":"11/2/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":724,"Cost":536,"Date":"12/17/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":143,"Cost":100,"Date":"2/10/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":676,"Cost":593,"Date":"2/28/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":771,"Cost":611,"Date":"3/4/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":875,"Cost":472,"Date":"3/9/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":909,"Cost":731,"Date":"3/9/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":316,"Cost":163,"Date":"3/11/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":792,"Cost":682,"Date":"3/17/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":864,"Cost":598,"Date":"3/17/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":57,"Cost":30,"Date":"3/23/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":242,"Cost":150,"Date":"4/1/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":860,"Cost":614,"Date":"5/7/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":320,"Cost":222,"Date":"5/10/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":588,"Cost":342,"Date":"5/20/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":204,"Cost":136,"Date":"6/2/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":377,"Cost":312,"Date":"6/11/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":885,"Cost":741,"Date":"6/16/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":621,"Cost":466,"Date":"6/16/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":554,"Cost":505,"Date":"7/10/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":990,"Cost":906,"Date":"7/11/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":214,"Cost":121,"Date":"8/28/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":449,"Cost":230,"Date":"8/29/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":870,"Cost":669,"Date":"8/31/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":706,"Cost":631,"Date":"9/8/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":892,"Cost":823,"Date":"9/13/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":714,"Cost":605,"Date":"9/14/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":928,"Cost":467,"Date":"9/19/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":228,"Cost":177,"Date":"9/25/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":557,"Cost":360,"Date":"10/4/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":988,"Cost":506,"Date":"10/10/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":187,"Cost":126,"Date":"10/17/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":356,"Cost":221,"Date":"10/28/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":165,"Cost":118,"Date":"10/30/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":17,"Cost":9,"Date":"11/1/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":888,"Cost":561,"Date":"11/15/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":205,"Cost":148,"Date":"11/25/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":410,"Cost":257,"Date":"1/10/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":614,"Cost":514,"Date":"1/14/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":641,"Cost":434,"Date":"1/20/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":690,"Cost":369,"Date":"2/8/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":845,"Cost":771,"Date":"2/25/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":510,"Cost":275,"Date":"3/7/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":613,"Cost":458,"Date":"3/14/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":561,"Cost":347,"Date":"3/27/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":95,"Cost":64,"Date":"4/5/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":510,"Cost":348,"Date":"4/14/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":388,"Cost":241,"Date":"5/3/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":723,"Cost":632,"Date":"5/9/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":733,"Cost":491,"Date":"5/15/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":56,"Cost":40,"Date":"5/25/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":69,"Cost":39,"Date":"5/26/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":162,"Cost":139,"Date":"5/31/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":315,"Cost":247,"Date":"7/27/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":684,"Cost":514,"Date":"9/17/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":789,"Cost":427,"Date":"10/6/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":452,"Cost":317,"Date":"10/8/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":803,"Cost":615,"Date":"10/26/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":756,"Cost":628,"Date":"11/16/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":155,"Cost":122,"Date":"11/18/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":590,"Cost":488,"Date":"12/1/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":944,"Cost":753,"Date":"2/9/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":400,"Cost":342,"Date":"2/11/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":823,"Cost":674,"Date":"3/10/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":234,"Cost":118,"Date":"3/16/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":635,"Cost":337,"Date":"3/18/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":80,"Cost":69,"Date":"3/20/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":922,"Cost":774,"Date":"3/26/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":460,"Cost":383,"Date":"6/2/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":565,"Cost":335,"Date":"6/10/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":975,"Cost":818,"Date":"6/16/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":942,"Cost":828,"Date":"6/25/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":48,"Cost":39,"Date":"7/19/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":77,"Cost":40,"Date":"7/21/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":630,"Cost":476,"Date":"7/25/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":938,"Cost":724,"Date":"8/4/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":435,"Cost":381,"Date":"9/2/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":854,"Cost":524,"Date":"9/4/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":411,"Cost":270,"Date":"9/19/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":717,"Cost":643,"Date":"9/29/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":969,"Cost":756,"Date":"10/2/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":245,"Cost":221,"Date":"10/15/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":419,"Cost":255,"Date":"10/30/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":468,"Cost":421,"Date":"11/9/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":864,"Cost":820,"Date":"11/23/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":171,"Cost":162,"Date":"11/30/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":829,"Cost":516,"Date":"12/8/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":245,"Cost":151,"Date":"12/11/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":421,"Cost":296,"Date":"1/15/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":318,"Cost":162,"Date":"1/24/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":837,"Cost":593,"Date":"2/3/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":131,"Cost":94,"Date":"2/4/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":238,"Cost":185,"Date":"3/9/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":26,"Cost":13,"Date":"3/12/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":173,"Cost":115,"Date":"4/19/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":933,"Cost":771,"Date":"5/3/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":598,"Cost":325,"Date":"5/4/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":100,"Cost":53,"Date":"6/8/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":285,"Cost":171,"Date":"6/26/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":61,"Cost":56,"Date":"7/4/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":574,"Cost":314,"Date":"7/13/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":833,"Cost":642,"Date":"8/8/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":120,"Cost":111,"Date":"8/26/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":894,"Cost":692,"Date":"9/2/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":611,"Cost":336,"Date":"9/29/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":632,"Cost":427,"Date":"10/12/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":920,"Cost":708,"Date":"11/2/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":772,"Cost":520,"Date":"11/4/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":386,"Cost":198,"Date":"11/7/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":829,"Cost":738,"Date":"12/1/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":825,"Cost":483,"Date":"12/4/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":444,"Cost":231,"Date":"12/7/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":177,"Cost":148,"Date":"12/18/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":199,"Cost":139,"Date":"12/20/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":112,"Cost":91,"Date":"12/20/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":65,"Cost":35,"Date":"12/21/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":211,"Cost":140,"Date":"1/9/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":146,"Cost":108,"Date":"2/5/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":265,"Cost":191,"Date":"2/16/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":6,"Cost":5,"Date":"2/16/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":838,"Cost":714,"Date":"2/18/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":298,"Cost":261,"Date":"2/22/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":398,"Cost":363,"Date":"2/25/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":737,"Cost":374,"Date":"3/8/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":494,"Cost":380,"Date":"4/2/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":68,"Cost":39,"Date":"4/3/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":39,"Cost":34,"Date":"4/9/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":183,"Cost":173,"Date":"4/10/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":484,"Cost":445,"Date":"4/19/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":658,"Cost":618,"Date":"5/17/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":4,"Cost":2,"Date":"5/22/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":744,"Cost":633,"Date":"6/20/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":364,"Cost":275,"Date":"7/1/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":504,"Cost":450,"Date":"7/4/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":86,"Cost":57,"Date":"7/8/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":322,"Cost":289,"Date":"7/9/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":871,"Cost":629,"Date":"7/14/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":121,"Cost":96,"Date":"7/19/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":396,"Cost":264,"Date":"8/1/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":76,"Cost":58,"Date":"8/6/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":570,"Cost":471,"Date":"8/7/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":163,"Cost":84,"Date":"8/22/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":500,"Cost":339,"Date":"8/31/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":202,"Cost":138,"Date":"9/1/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":577,"Cost":400,"Date":"9/1/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":138,"Cost":106,"Date":"9/17/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":520,"Cost":336,"Date":"9/29/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":721,"Cost":647,"Date":"11/7/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":974,"Cost":641,"Date":"11/26/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":542,"Cost":470,"Date":"11/27/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":243,"Cost":142,"Date":"12/5/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":318,"Cost":204,"Date":"12/26/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":620,"Cost":546,"Date":"12/31/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":789,"Cost":701,"Date":"1/20/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":56,"Cost":51,"Date":"2/2/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":782,"Cost":658,"Date":"2/8/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":699,"Cost":351,"Date":"2/27/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":743,"Cost":669,"Date":"3/1/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":3,"Cost":2,"Date":"3/1/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":402,"Cost":363,"Date":"3/19/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":198,"Cost":106,"Date":"3/28/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":337,"Cost":314,"Date":"5/21/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":82,"Cost":44,"Date":"7/21/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":737,"Cost":513,"Date":"8/5/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":414,"Cost":360,"Date":"8/12/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":579,"Cost":543,"Date":"8/21/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":910,"Cost":665,"Date":"8/23/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":19,"Cost":17,"Date":"9/3/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":426,"Cost":359,"Date":"9/5/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":666,"Cost":477,"Date":"10/6/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":745,"Cost":437,"Date":"10/19/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":302,"Cost":153,"Date":"11/15/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":986,"Cost":521,"Date":"12/8/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":59,"Cost":34,"Date":"1/8/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":263,"Cost":202,"Date":"1/14/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":560,"Cost":284,"Date":"1/19/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":52,"Cost":39,"Date":"1/28/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":255,"Cost":140,"Date":"1/31/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":492,"Cost":302,"Date":"3/27/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":259,"Cost":210,"Date":"4/20/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":92,"Cost":56,"Date":"4/24/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":710,"Cost":408,"Date":"4/28/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":107,"Cost":92,"Date":"5/15/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":498,"Cost":441,"Date":"5/16/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":6,"Cost":6,"Date":"5/18/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":678,"Cost":428,"Date":"6/2/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":857,"Cost":702,"Date":"6/3/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":10,"Cost":8,"Date":"6/5/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":724,"Cost":478,"Date":"6/7/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":462,"Cost":290,"Date":"6/14/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":849,"Cost":488,"Date":"6/20/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":450,"Cost":291,"Date":"6/24/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":663,"Cost":425,"Date":"7/4/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":152,"Cost":128,"Date":"7/9/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":956,"Cost":497,"Date":"7/12/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":113,"Cost":103,"Date":"8/14/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":713,"Cost":418,"Date":"8/16/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":40,"Cost":25,"Date":"8/23/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":499,"Cost":398,"Date":"9/2/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":380,"Cost":202,"Date":"9/3/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":598,"Cost":330,"Date":"9/16/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":648,"Cost":521,"Date":"10/4/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":840,"Cost":548,"Date":"11/1/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":166,"Cost":139,"Date":"11/2/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":234,"Cost":179,"Date":"12/17/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":149,"Cost":76,"Date":"2/10/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":559,"Cost":518,"Date":"2/28/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":777,"Cost":537,"Date":"3/4/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":296,"Cost":186,"Date":"3/9/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":621,"Cost":410,"Date":"3/9/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":451,"Cost":226,"Date":"3/11/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":511,"Cost":411,"Date":"3/17/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":873,"Cost":671,"Date":"3/17/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":982,"Cost":521,"Date":"3/23/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":26,"Cost":22,"Date":"4/1/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":217,"Cost":154,"Date":"5/7/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":658,"Cost":414,"Date":"5/10/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":35,"Cost":23,"Date":"5/20/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":4,"Cost":2,"Date":"6/2/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":315,"Cost":228,"Date":"6/11/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":156,"Cost":117,"Date":"6/16/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":352,"Cost":272,"Date":"6/16/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":346,"Cost":264,"Date":"7/10/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":430,"Cost":290,"Date":"7/11/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":612,"Cost":467,"Date":"8/28/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":620,"Cost":331,"Date":"8/29/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":716,"Cost":419,"Date":"8/31/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":342,"Cost":322,"Date":"9/8/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":471,"Cost":249,"Date":"9/13/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":865,"Cost":485,"Date":"9/14/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":908,"Cost":649,"Date":"9/19/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":76,"Cost":43,"Date":"9/25/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":710,"Cost":437,"Date":"10/4/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":706,"Cost":531,"Date":"10/10/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":200,"Cost":187,"Date":"10/17/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":468,"Cost":276,"Date":"10/28/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":151,"Cost":112,"Date":"10/30/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":480,"Cost":453,"Date":"11/1/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":118,"Cost":80,"Date":"11/15/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":528,"Cost":406,"Date":"11/25/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":885,"Cost":473,"Date":"1/10/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":373,"Cost":277,"Date":"1/14/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":474,"Cost":244,"Date":"1/20/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":755,"Cost":621,"Date":"2/8/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":937,"Cost":576,"Date":"2/25/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":492,"Cost":365,"Date":"3/7/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":273,"Cost":160,"Date":"3/14/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":893,"Cost":705,"Date":"3/27/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":654,"Cost":460,"Date":"4/5/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":439,"Cost":282,"Date":"4/14/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":541,"Cost":341,"Date":"5/3/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":464,"Cost":304,"Date":"5/9/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":438,"Cost":353,"Date":"5/15/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":405,"Cost":290,"Date":"5/25/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":622,"Cost":534,"Date":"5/26/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":377,"Cost":326,"Date":"5/31/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":200,"Cost":127,"Date":"7/27/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":633,"Cost":541,"Date":"9/17/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":692,"Cost":534,"Date":"10/6/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":367,"Cost":247,"Date":"10/8/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":422,"Cost":227,"Date":"10/26/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":676,"Cost":634,"Date":"11/16/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":347,"Cost":198,"Date":"11/18/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":521,"Cost":382,"Date":"12/1/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":808,"Cost":660,"Date":"2/9/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":261,"Cost":189,"Date":"2/11/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":100,"Cost":87,"Date":"3/10/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":877,"Cost":449,"Date":"3/16/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":938,"Cost":493,"Date":"3/18/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":314,"Cost":276,"Date":"3/20/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":86,"Cost":55,"Date":"3/26/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":241,"Cost":215,"Date":"6/2/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":498,"Cost":262,"Date":"6/10/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":588,"Cost":421,"Date":"6/16/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":881,"Cost":469,"Date":"6/25/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":225,"Cost":151,"Date":"7/19/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":687,"Cost":409,"Date":"7/21/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":621,"Cost":351,"Date":"7/25/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":109,"Cost":62,"Date":"8/4/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":181,"Cost":121,"Date":"9/2/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":575,"Cost":530,"Date":"9/4/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":418,"Cost":318,"Date":"9/19/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":123,"Cost":78,"Date":"9/29/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":901,"Cost":718,"Date":"10/2/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":371,"Cost":328,"Date":"10/15/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":276,"Cost":190,"Date":"10/30/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":892,"Cost":651,"Date":"11/9/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":228,"Cost":213,"Date":"11/23/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":283,"Cost":269,"Date":"11/30/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":464,"Cost":388,"Date":"12/8/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":598,"Cost":328,"Date":"12/11/2018"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":360,"Cost":279,"Date":"1/15/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":310,"Cost":175,"Date":"1/24/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":404,"Cost":302,"Date":"2/3/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":377,"Cost":316,"Date":"2/4/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":244,"Cost":176,"Date":"3/9/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":182,"Cost":149,"Date":"3/12/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":792,"Cost":649,"Date":"4/19/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":446,"Cost":244,"Date":"5/3/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":995,"Cost":795,"Date":"5/4/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":751,"Cost":645,"Date":"6/8/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":827,"Cost":675,"Date":"6/26/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":761,"Cost":548,"Date":"7/4/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":201,"Cost":104,"Date":"7/13/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":102,"Cost":90,"Date":"8/8/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":564,"Cost":468,"Date":"8/26/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":15,"Cost":8,"Date":"9/2/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":916,"Cost":503,"Date":"9/29/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":305,"Cost":207,"Date":"10/12/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":461,"Cost":430,"Date":"11/2/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":340,"Cost":268,"Date":"11/4/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":296,"Cost":207,"Date":"11/7/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":919,"Cost":721,"Date":"12/1/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":861,"Cost":781,"Date":"12/4/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":328,"Cost":228,"Date":"12/7/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":899,"Cost":582,"Date":"12/18/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":399,"Cost":270,"Date":"12/20/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":467,"Cost":306,"Date":"12/20/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":317,"Cost":275,"Date":"12/21/2019"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":727,"Cost":687,"Date":"1/9/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":346,"Cost":196,"Date":"2/5/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":382,"Cost":313,"Date":"2/16/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":205,"Cost":176,"Date":"2/16/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":36,"Cost":20,"Date":"2/18/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":672,"Cost":534,"Date":"2/22/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":442,"Cost":374,"Date":"2/25/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":897,"Cost":777,"Date":"3/8/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":611,"Cost":316,"Date":"4/2/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":182,"Cost":170,"Date":"4/3/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":829,"Cost":544,"Date":"4/9/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":754,"Cost":468,"Date":"4/10/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":610,"Cost":450,"Date":"4/19/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":198,"Cost":142,"Date":"5/17/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":107,"Cost":67,"Date":"5/22/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":632,"Cost":524,"Date":"6/20/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":968,"Cost":643,"Date":"7/1/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":472,"Cost":355,"Date":"7/4/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":148,"Cost":126,"Date":"7/8/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":375,"Cost":189,"Date":"7/9/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":847,"Cost":545,"Date":"7/14/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":537,"Cost":420,"Date":"7/19/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":167,"Cost":159,"Date":"8/1/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":653,"Cost":502,"Date":"8/6/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":931,"Cost":582,"Date":"8/7/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":95,"Cost":76,"Date":"8/22/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":40,"Cost":36,"Date":"8/31/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":617,"Cost":469,"Date":"9/1/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":143,"Cost":104,"Date":"9/1/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":236,"Cost":147,"Date":"9/17/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":386,"Cost":233,"Date":"9/29/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":508,"Cost":333,"Date":"11/7/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":433,"Cost":399,"Date":"11/26/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":262,"Cost":244,"Date":"11/27/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":809,"Cost":476,"Date":"12/5/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":930,"Cost":759,"Date":"12/26/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":952,"Cost":688,"Date":"12/31/2020"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":460,"Cost":385,"Date":"1/20/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":651,"Cost":414,"Date":"2/2/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":757,"Cost":653,"Date":"2/8/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":170,"Cost":135,"Date":"2/27/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":174,"Cost":129,"Date":"3/1/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":422,"Cost":351,"Date":"3/1/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":768,"Cost":707,"Date":"3/19/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":560,"Cost":325,"Date":"3/28/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":825,"Cost":552,"Date":"5/21/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":210,"Cost":128,"Date":"7/21/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":135,"Cost":110,"Date":"8/5/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":523,"Cost":301,"Date":"8/12/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":322,"Cost":282,"Date":"8/21/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":379,"Cost":286,"Date":"8/23/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":892,"Cost":824,"Date":"9/3/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":735,"Cost":594,"Date":"9/5/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":209,"Cost":188,"Date":"10/6/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":484,"Cost":247,"Date":"10/19/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":21,"Cost":17,"Date":"11/15/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":841,"Cost":771,"Date":"12/8/2021"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":540,"Cost":472,"Date":"1/8/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":464,"Cost":298,"Date":"1/14/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":903,"Cost":763,"Date":"1/19/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":441,"Cost":314,"Date":"1/28/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":202,"Cost":166,"Date":"1/31/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":602,"Cost":550,"Date":"3/27/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":618,"Cost":407,"Date":"4/20/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":750,"Cost":442,"Date":"4/24/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":515,"Cost":301,"Date":"4/28/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":210,"Cost":113,"Date":"5/15/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":830,"Cost":482,"Date":"5/16/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":711,"Cost":448,"Date":"5/18/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":218,"Cost":203,"Date":"6/2/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":939,"Cost":621,"Date":"6/3/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":7,"Cost":4,"Date":"6/5/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":142,"Cost":80,"Date":"6/7/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":778,"Cost":544,"Date":"6/14/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":565,"Cost":492,"Date":"6/20/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":656,"Cost":443,"Date":"6/24/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":404,"Cost":226,"Date":"7/4/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":429,"Cost":349,"Date":"7/9/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":442,"Cost":257,"Date":"7/12/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":537,"Cost":486,"Date":"8/14/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":8,"Cost":6,"Date":"8/16/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":386,"Cost":305,"Date":"8/23/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":640,"Cost":504,"Date":"9/2/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":700,"Cost":504,"Date":"9/3/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":782,"Cost":684,"Date":"9/16/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":918,"Cost":602,"Date":"10/4/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":217,"Cost":132,"Date":"11/1/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":294,"Cost":157,"Date":"11/2/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":387,"Cost":248,"Date":"12/17/2022"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":558,"Cost":417,"Date":"2/10/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":626,"Cost":546,"Date":"2/28/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":624,"Cost":392,"Date":"3/4/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":207,"Cost":170,"Date":"3/9/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":9,"Cost":9,"Date":"3/9/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":933,"Cost":740,"Date":"3/11/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":628,"Cost":415,"Date":"3/17/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":781,"Cost":663,"Date":"3/17/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":858,"Cost":755,"Date":"3/23/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":542,"Cost":381,"Date":"4/1/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":760,"Cost":597,"Date":"5/7/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":667,"Cost":385,"Date":"5/10/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":851,"Cost":438,"Date":"5/20/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":51,"Cost":47,"Date":"6/2/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":322,"Cost":219,"Date":"6/11/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":567,"Cost":460,"Date":"6/16/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":84,"Cost":78,"Date":"6/16/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":840,"Cost":548,"Date":"7/10/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":501,"Cost":330,"Date":"7/11/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":638,"Cost":448,"Date":"8/28/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":182,"Cost":91,"Date":"8/29/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":426,"Cost":264,"Date":"8/31/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":142,"Cost":84,"Date":"9/8/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":894,"Cost":454,"Date":"9/13/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":950,"Cost":611,"Date":"9/14/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":783,"Cost":620,"Date":"9/19/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":665,"Cost":439,"Date":"9/25/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":534,"Cost":358,"Date":"10/4/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":30,"Cost":15,"Date":"10/10/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":50,"Cost":33,"Date":"10/17/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":829,"Cost":696,"Date":"10/28/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":184,"Cost":116,"Date":"10/30/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":69,"Cost":51,"Date":"11/1/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":350,"Cost":200,"Date":"11/15/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":777,"Cost":686,"Date":"11/25/2023"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":895,"Cost":668,"Date":"1/10/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":360,"Cost":334,"Date":"1/14/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":110,"Cost":97,"Date":"1/20/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":49,"Cost":34,"Date":"2/8/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":881,"Cost":455,"Date":"2/25/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":921,"Cost":566,"Date":"3/7/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":870,"Cost":534,"Date":"3/14/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":140,"Cost":120,"Date":"3/27/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":514,"Cost":266,"Date":"4/5/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":587,"Cost":409,"Date":"4/14/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":67,"Cost":60,"Date":"5/3/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":264,"Cost":168,"Date":"5/9/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":913,"Cost":596,"Date":"5/15/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":877,"Cost":661,"Date":"5/25/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":345,"Cost":313,"Date":"5/26/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":691,"Cost":486,"Date":"5/31/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":53,"Cost":47,"Date":"7/27/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":368,"Cost":329,"Date":"9/17/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":734,"Cost":451,"Date":"10/6/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":817,"Cost":422,"Date":"10/8/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":919,"Cost":814,"Date":"10/26/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":761,"Cost":702,"Date":"11/16/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":710,"Cost":431,"Date":"11/18/2024"},{"Store":"Shibuya Mark City, Tokyo","Brand":"ARKET","Country":"Japan","Sale":506,"Cost":449,"Date":"12/1/2024"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":208,"Cost":121,"Date":"2/9/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":763,"Cost":608,"Date":"2/11/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":847,"Cost":518,"Date":"3/10/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":718,"Cost":431,"Date":"3/16/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":261,"Cost":210,"Date":"3/18/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":755,"Cost":383,"Date":"3/20/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":94,"Cost":78,"Date":"3/26/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":430,"Cost":247,"Date":"6/2/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":151,"Cost":127,"Date":"6/10/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":582,"Cost":477,"Date":"6/16/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":895,"Cost":796,"Date":"6/25/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":595,"Cost":522,"Date":"7/19/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":35,"Cost":19,"Date":"7/21/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":950,"Cost":583,"Date":"7/25/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":767,"Cost":451,"Date":"8/4/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":496,"Cost":415,"Date":"9/2/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":44,"Cost":32,"Date":"9/4/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":485,"Cost":389,"Date":"9/19/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":463,"Cost":418,"Date":"9/29/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":148,"Cost":109,"Date":"10/2/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":376,"Cost":269,"Date":"10/15/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":757,"Cost":671,"Date":"10/30/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":423,"Cost":297,"Date":"11/9/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":472,"Cost":255,"Date":"11/23/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":679,"Cost":620,"Date":"11/30/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":808,"Cost":742,"Date":"12/8/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":19,"Cost":13,"Date":"12/11/2018"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":402,"Cost":335,"Date":"1/15/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":209,"Cost":119,"Date":"1/24/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":166,"Cost":121,"Date":"2/3/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":989,"Cost":853,"Date":"2/4/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":674,"Cost":353,"Date":"3/9/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":131,"Cost":90,"Date":"3/12/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":290,"Cost":239,"Date":"4/19/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":141,"Cost":92,"Date":"5/3/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":639,"Cost":397,"Date":"5/4/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":631,"Cost":564,"Date":"6/8/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":339,"Cost":306,"Date":"6/26/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":13,"Cost":9,"Date":"7/4/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":432,"Cost":305,"Date":"7/13/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":162,"Cost":93,"Date":"8/8/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":123,"Cost":83,"Date":"8/26/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":464,"Cost":336,"Date":"9/2/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":19,"Cost":16,"Date":"9/29/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":650,"Cost":415,"Date":"10/12/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":170,"Cost":120,"Date":"11/2/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":762,"Cost":543,"Date":"11/4/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":219,"Cost":154,"Date":"11/7/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":715,"Cost":553,"Date":"12/1/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":289,"Cost":252,"Date":"12/4/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":101,"Cost":87,"Date":"12/7/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":502,"Cost":304,"Date":"12/18/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":566,"Cost":312,"Date":"12/20/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":622,"Cost":470,"Date":"12/20/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":342,"Cost":192,"Date":"12/21/2019"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":596,"Cost":362,"Date":"1/9/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":495,"Cost":444,"Date":"2/5/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":3,"Cost":1,"Date":"2/16/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":204,"Cost":137,"Date":"2/16/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":919,"Cost":697,"Date":"2/18/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":522,"Cost":301,"Date":"2/22/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":872,"Cost":810,"Date":"2/25/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":396,"Cost":289,"Date":"3/8/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":315,"Cost":249,"Date":"4/2/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":401,"Cost":237,"Date":"4/3/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":770,"Cost":604,"Date":"4/9/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":926,"Cost":790,"Date":"4/10/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":493,"Cost":334,"Date":"4/19/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":500,"Cost":280,"Date":"5/17/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":163,"Cost":96,"Date":"5/22/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":306,"Cost":254,"Date":"6/20/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":873,"Cost":462,"Date":"7/1/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":17,"Cost":11,"Date":"7/4/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":500,"Cost":337,"Date":"7/8/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":9,"Cost":6,"Date":"7/9/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":744,"Cost":373,"Date":"7/14/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":831,"Cost":577,"Date":"7/19/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":961,"Cost":493,"Date":"8/1/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":596,"Cost":300,"Date":"8/6/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":918,"Cost":691,"Date":"8/7/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":188,"Cost":166,"Date":"8/22/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":686,"Cost":439,"Date":"8/31/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":590,"Cost":445,"Date":"9/1/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":47,"Cost":33,"Date":"9/1/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":128,"Cost":86,"Date":"9/17/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":192,"Cost":157,"Date":"9/29/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":290,"Cost":242,"Date":"11/7/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":820,"Cost":514,"Date":"11/26/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":929,"Cost":859,"Date":"11/27/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":836,"Cost":696,"Date":"12/5/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":225,"Cost":159,"Date":"12/26/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":880,"Cost":454,"Date":"12/31/2020"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":431,"Cost":311,"Date":"1/20/2021"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":935,"Cost":852,"Date":"2/2/2021"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":377,"Cost":323,"Date":"2/8/2021"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":454,"Cost":310,"Date":"2/27/2021"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":253,"Cost":145,"Date":"3/1/2021"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":258,"Cost":221,"Date":"3/1/2021"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":671,"Cost":428,"Date":"3/19/2021"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":883,"Cost":771,"Date":"3/28/2021"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":393,"Cost":236,"Date":"5/21/2021"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":398,"Cost":260,"Date":"7/21/2021"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":205,"Cost":128,"Date":"8/5/2021"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":878,"Cost":754,"Date":"8/12/2021"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":336,"Cost":270,"Date":"8/21/2021"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":498,"Cost":287,"Date":"8/23/2021"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":295,"Cost":189,"Date":"9/3/2021"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":113,"Cost":62,"Date":"9/5/2021"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":318,"Cost":201,"Date":"10/6/2021"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":158,"Cost":146,"Date":"10/19/2021"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":155,"Cost":83,"Date":"11/15/2021"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":350,"Cost":304,"Date":"12/8/2021"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":314,"Cost":189,"Date":"1/8/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":423,"Cost":322,"Date":"1/14/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":465,"Cost":401,"Date":"1/19/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":913,"Cost":542,"Date":"1/28/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":715,"Cost":531,"Date":"1/31/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":623,"Cost":326,"Date":"3/27/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":328,"Cost":263,"Date":"4/20/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":691,"Cost":433,"Date":"4/24/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":254,"Cost":154,"Date":"4/28/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":945,"Cost":633,"Date":"5/15/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":210,"Cost":168,"Date":"5/16/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":292,"Cost":256,"Date":"5/18/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":700,"Cost":584,"Date":"6/2/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":56,"Cost":36,"Date":"6/3/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":305,"Cost":181,"Date":"6/5/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":363,"Cost":300,"Date":"6/7/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":867,"Cost":790,"Date":"6/14/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":839,"Cost":661,"Date":"6/20/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":483,"Cost":424,"Date":"6/24/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":803,"Cost":466,"Date":"7/4/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":975,"Cost":825,"Date":"7/9/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":59,"Cost":45,"Date":"7/12/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":295,"Cost":176,"Date":"8/14/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":854,"Cost":676,"Date":"8/16/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":83,"Cost":51,"Date":"8/23/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":460,"Cost":306,"Date":"9/2/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":155,"Cost":106,"Date":"9/3/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":114,"Cost":106,"Date":"9/16/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":429,"Cost":260,"Date":"10/4/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":696,"Cost":511,"Date":"11/1/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":341,"Cost":223,"Date":"11/2/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":756,"Cost":666,"Date":"12/17/2022"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":565,"Cost":300,"Date":"2/10/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":280,"Cost":259,"Date":"2/28/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":709,"Cost":364,"Date":"3/4/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":889,"Cost":479,"Date":"3/9/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":432,"Cost":241,"Date":"3/9/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":185,"Cost":97,"Date":"3/11/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":503,"Cost":383,"Date":"3/17/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":930,"Cost":718,"Date":"3/17/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":896,"Cost":616,"Date":"3/23/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":994,"Cost":534,"Date":"4/1/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":231,"Cost":191,"Date":"5/7/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":567,"Cost":413,"Date":"5/10/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":883,"Cost":801,"Date":"5/20/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":281,"Cost":167,"Date":"6/2/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":131,"Cost":98,"Date":"6/11/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":988,"Cost":850,"Date":"6/16/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":525,"Cost":404,"Date":"6/16/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":658,"Cost":440,"Date":"7/10/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":456,"Cost":388,"Date":"7/11/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":469,"Cost":284,"Date":"8/28/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":111,"Cost":68,"Date":"8/29/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":216,"Cost":159,"Date":"8/31/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":552,"Cost":354,"Date":"9/8/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":187,"Cost":141,"Date":"9/13/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":154,"Cost":141,"Date":"9/14/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":963,"Cost":539,"Date":"9/19/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":184,"Cost":129,"Date":"9/25/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":928,"Cost":569,"Date":"10/4/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":467,"Cost":407,"Date":"10/10/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":978,"Cost":507,"Date":"10/17/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":638,"Cost":349,"Date":"10/28/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":533,"Cost":455,"Date":"10/30/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":211,"Cost":164,"Date":"11/1/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":685,"Cost":381,"Date":"11/15/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":68,"Cost":39,"Date":"11/25/2023"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":850,"Cost":568,"Date":"1/10/2024"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":876,"Cost":551,"Date":"1/14/2024"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":891,"Cost":566,"Date":"1/20/2024"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":25,"Cost":19,"Date":"2/8/2024"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":161,"Cost":141,"Date":"2/25/2024"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":520,"Cost":369,"Date":"3/7/2024"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":665,"Cost":464,"Date":"3/14/2024"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":846,"Cost":664,"Date":"3/27/2024"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":469,"Cost":333,"Date":"4/5/2024"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":597,"Cost":438,"Date":"4/14/2024"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":98,"Cost":57,"Date":"5/3/2024"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":67,"Cost":37,"Date":"5/9/2024"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":168,"Cost":148,"Date":"5/15/2024"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":668,"Cost":615,"Date":"5/25/2024"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":845,"Cost":713,"Date":"5/26/2024"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":807,"Cost":462,"Date":"5/31/2024"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":43,"Cost":22,"Date":"7/27/2024"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":357,"Cost":231,"Date":"9/17/2024"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":981,"Cost":805,"Date":"10/6/2024"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":340,"Cost":209,"Date":"10/8/2024"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":82,"Cost":53,"Date":"10/26/2024"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":694,"Cost":393,"Date":"11/16/2024"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":363,"Cost":196,"Date":"11/18/2024"},{"Store":"Tokyo Solamachi","Brand":"Nova","Country":"Japan","Sale":862,"Cost":453,"Date":"12/1/2024"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":711,"Cost":462,"Date":"2/9/2018"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":538,"Cost":277,"Date":"2/11/2018"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":137,"Cost":76,"Date":"3/10/2018"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":678,"Cost":541,"Date":"3/16/2018"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":302,"Cost":237,"Date":"3/18/2018"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":411,"Cost":256,"Date":"3/20/2018"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":137,"Cost":116,"Date":"3/26/2018"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":457,"Cost":278,"Date":"6/2/2018"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":786,"Cost":483,"Date":"6/10/2018"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":743,"Cost":553,"Date":"6/16/2018"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":445,"Cost":337,"Date":"6/25/2018"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":249,"Cost":130,"Date":"7/19/2018"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":992,"Cost":690,"Date":"7/21/2018"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":604,"Cost":309,"Date":"7/25/2018"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":775,"Cost":629,"Date":"8/4/2018"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":552,"Cost":432,"Date":"9/2/2018"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":136,"Cost":83,"Date":"9/4/2018"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":551,"Cost":322,"Date":"9/19/2018"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":556,"Cost":466,"Date":"9/29/2018"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":630,"Cost":402,"Date":"10/2/2018"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":531,"Cost":469,"Date":"10/15/2018"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":652,"Cost":481,"Date":"10/30/2018"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":321,"Cost":255,"Date":"11/9/2018"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":485,"Cost":419,"Date":"11/23/2018"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":156,"Cost":87,"Date":"11/30/2018"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":166,"Cost":83,"Date":"12/8/2018"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":988,"Cost":705,"Date":"12/11/2018"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":739,"Cost":416,"Date":"1/15/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":161,"Cost":95,"Date":"1/24/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":749,"Cost":513,"Date":"2/3/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":32,"Cost":19,"Date":"2/4/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":281,"Cost":148,"Date":"3/9/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":919,"Cost":739,"Date":"3/12/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":779,"Cost":610,"Date":"4/19/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":977,"Cost":886,"Date":"5/3/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":930,"Cost":632,"Date":"5/4/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":19,"Cost":11,"Date":"6/8/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":180,"Cost":140,"Date":"6/26/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":27,"Cost":19,"Date":"7/4/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":724,"Cost":430,"Date":"7/13/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":34,"Cost":26,"Date":"8/8/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":317,"Cost":203,"Date":"8/26/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":182,"Cost":99,"Date":"9/2/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":354,"Cost":253,"Date":"9/29/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":555,"Cost":476,"Date":"10/12/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":620,"Cost":437,"Date":"11/2/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":656,"Cost":419,"Date":"11/4/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":491,"Cost":350,"Date":"11/7/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":608,"Cost":381,"Date":"12/1/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":319,"Cost":222,"Date":"12/4/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":780,"Cost":626,"Date":"12/7/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":552,"Cost":278,"Date":"12/18/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":776,"Cost":535,"Date":"12/20/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":707,"Cost":360,"Date":"12/20/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":967,"Cost":834,"Date":"12/21/2019"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":290,"Cost":269,"Date":"1/9/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":578,"Cost":298,"Date":"2/5/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":407,"Cost":354,"Date":"2/16/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":185,"Cost":130,"Date":"2/16/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":782,"Cost":418,"Date":"2/18/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":837,"Cost":610,"Date":"2/22/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":405,"Cost":361,"Date":"2/25/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":628,"Cost":343,"Date":"3/8/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":732,"Cost":665,"Date":"4/2/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":516,"Cost":386,"Date":"4/3/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":593,"Cost":548,"Date":"4/9/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":892,"Cost":758,"Date":"4/10/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":788,"Cost":727,"Date":"4/19/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":870,"Cost":506,"Date":"5/17/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":383,"Cost":340,"Date":"5/22/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":707,"Cost":531,"Date":"6/20/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":343,"Cost":192,"Date":"7/1/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":452,"Cost":333,"Date":"7/4/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":670,"Cost":446,"Date":"7/8/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":903,"Cost":603,"Date":"7/9/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":441,"Cost":243,"Date":"7/14/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":720,"Cost":614,"Date":"7/19/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":603,"Cost":321,"Date":"8/1/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":477,"Cost":244,"Date":"8/6/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":403,"Cost":282,"Date":"8/7/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":228,"Cost":143,"Date":"8/22/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":91,"Cost":46,"Date":"8/31/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":349,"Cost":325,"Date":"9/1/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":120,"Cost":95,"Date":"9/1/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":84,"Cost":74,"Date":"9/17/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":415,"Cost":251,"Date":"9/29/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":258,"Cost":182,"Date":"11/7/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":490,"Cost":250,"Date":"11/26/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":698,"Cost":415,"Date":"11/27/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":66,"Cost":60,"Date":"12/5/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":168,"Cost":144,"Date":"12/26/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":963,"Cost":632,"Date":"12/31/2020"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":776,"Cost":501,"Date":"1/20/2021"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":338,"Cost":279,"Date":"2/2/2021"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":243,"Cost":200,"Date":"2/8/2021"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":300,"Cost":235,"Date":"2/27/2021"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":869,"Cost":634,"Date":"3/1/2021"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":14,"Cost":9,"Date":"3/1/2021"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":404,"Cost":246,"Date":"3/19/2021"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":962,"Cost":607,"Date":"3/28/2021"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":401,"Cost":238,"Date":"5/21/2021"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":284,"Cost":233,"Date":"7/21/2021"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":892,"Cost":472,"Date":"8/5/2021"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":598,"Cost":526,"Date":"8/12/2021"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":986,"Cost":667,"Date":"8/21/2021"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":468,"Cost":282,"Date":"8/23/2021"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":741,"Cost":512,"Date":"9/3/2021"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":650,"Cost":446,"Date":"9/5/2021"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":526,"Cost":408,"Date":"10/6/2021"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":37,"Cost":33,"Date":"10/19/2021"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":351,"Cost":177,"Date":"11/15/2021"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":375,"Cost":242,"Date":"12/8/2021"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":455,"Cost":345,"Date":"1/8/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":154,"Cost":79,"Date":"1/14/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":494,"Cost":371,"Date":"1/19/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":637,"Cost":604,"Date":"1/28/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":383,"Cost":198,"Date":"1/31/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":320,"Cost":301,"Date":"3/27/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":939,"Cost":637,"Date":"4/20/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":797,"Cost":696,"Date":"4/24/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":303,"Cost":188,"Date":"4/28/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":3,"Cost":2,"Date":"5/15/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":916,"Cost":554,"Date":"5/16/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":934,"Cost":498,"Date":"5/18/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":902,"Cost":631,"Date":"6/2/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":683,"Cost":368,"Date":"6/3/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":340,"Cost":313,"Date":"6/5/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":87,"Cost":60,"Date":"6/7/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":457,"Cost":272,"Date":"6/14/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":973,"Cost":832,"Date":"6/20/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":545,"Cost":399,"Date":"6/24/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":639,"Cost":330,"Date":"7/4/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":10,"Cost":6,"Date":"7/9/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":837,"Cost":485,"Date":"7/12/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":476,"Cost":449,"Date":"8/14/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":3,"Cost":2,"Date":"8/16/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":408,"Cost":328,"Date":"8/23/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":852,"Cost":678,"Date":"9/2/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":505,"Cost":365,"Date":"9/3/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":824,"Cost":450,"Date":"9/16/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":7,"Cost":7,"Date":"10/4/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":41,"Cost":29,"Date":"11/1/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":111,"Cost":57,"Date":"11/2/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":711,"Cost":490,"Date":"12/17/2022"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":662,"Cost":444,"Date":"2/10/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":318,"Cost":271,"Date":"2/28/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":531,"Cost":426,"Date":"3/4/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":491,"Cost":312,"Date":"3/9/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":691,"Cost":657,"Date":"3/9/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":195,"Cost":132,"Date":"3/11/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":169,"Cost":129,"Date":"3/17/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":651,"Cost":379,"Date":"3/17/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":112,"Cost":85,"Date":"3/23/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":275,"Cost":238,"Date":"4/1/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":359,"Cost":314,"Date":"5/7/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":593,"Cost":513,"Date":"5/10/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":657,"Cost":552,"Date":"5/20/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":12,"Cost":10,"Date":"6/2/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":580,"Cost":337,"Date":"6/11/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":685,"Cost":571,"Date":"6/16/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":496,"Cost":390,"Date":"6/16/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":519,"Cost":333,"Date":"7/10/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":70,"Cost":56,"Date":"7/11/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":508,"Cost":294,"Date":"8/28/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":628,"Cost":501,"Date":"8/29/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":336,"Cost":251,"Date":"8/31/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":394,"Cost":284,"Date":"9/8/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":844,"Cost":531,"Date":"9/13/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":51,"Cost":46,"Date":"9/14/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":786,"Cost":489,"Date":"9/19/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":506,"Cost":355,"Date":"9/25/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":186,"Cost":174,"Date":"10/4/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":114,"Cost":87,"Date":"10/10/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":706,"Cost":491,"Date":"10/17/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":716,"Cost":498,"Date":"10/28/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":255,"Cost":144,"Date":"10/30/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":48,"Cost":46,"Date":"11/1/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":674,"Cost":372,"Date":"11/15/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":751,"Cost":490,"Date":"11/25/2023"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":417,"Cost":228,"Date":"1/10/2024"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":170,"Cost":143,"Date":"1/14/2024"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":455,"Cost":413,"Date":"1/20/2024"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":971,"Cost":601,"Date":"2/8/2024"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":474,"Cost":442,"Date":"2/25/2024"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":782,"Cost":733,"Date":"3/7/2024"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":959,"Cost":748,"Date":"3/14/2024"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":362,"Cost":186,"Date":"3/27/2024"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":102,"Cost":85,"Date":"4/5/2024"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":224,"Cost":182,"Date":"4/14/2024"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":879,"Cost":833,"Date":"5/3/2024"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":963,"Cost":558,"Date":"5/9/2024"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":404,"Cost":257,"Date":"5/15/2024"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":197,"Cost":133,"Date":"5/25/2024"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":893,"Cost":487,"Date":"5/26/2024"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":10,"Cost":8,"Date":"5/31/2024"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":784,"Cost":452,"Date":"7/27/2024"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":518,"Cost":474,"Date":"9/17/2024"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":709,"Cost":486,"Date":"10/6/2024"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":954,"Cost":734,"Date":"10/8/2024"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":815,"Cost":565,"Date":"10/26/2024"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":826,"Cost":738,"Date":"11/16/2024"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":695,"Cost":487,"Date":"11/18/2024"},{"Store":"Tokyo Solamachi","Brand":"HM Home","Country":"Japan","Sale":594,"Cost":461,"Date":"12/1/2024"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":186,"Cost":133,"Date":"2/9/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":210,"Cost":184,"Date":"2/11/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":688,"Cost":459,"Date":"3/10/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":197,"Cost":114,"Date":"3/16/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":643,"Cost":342,"Date":"3/18/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":274,"Cost":249,"Date":"3/20/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":729,"Cost":655,"Date":"3/26/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":134,"Cost":100,"Date":"6/2/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":168,"Cost":134,"Date":"6/10/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":389,"Cost":216,"Date":"6/16/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":45,"Cost":22,"Date":"6/25/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":125,"Cost":65,"Date":"7/19/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":816,"Cost":574,"Date":"7/21/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":299,"Cost":254,"Date":"7/25/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":277,"Cost":209,"Date":"8/4/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":703,"Cost":383,"Date":"9/2/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":483,"Cost":362,"Date":"9/4/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":382,"Cost":230,"Date":"9/19/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":397,"Cost":253,"Date":"9/29/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":68,"Cost":45,"Date":"10/2/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":274,"Cost":163,"Date":"10/15/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":350,"Cost":204,"Date":"10/30/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":337,"Cost":311,"Date":"11/9/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":104,"Cost":73,"Date":"11/23/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":459,"Cost":353,"Date":"11/30/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":388,"Cost":315,"Date":"12/8/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":259,"Cost":183,"Date":"12/11/2018"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":7,"Cost":6,"Date":"1/15/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":227,"Cost":163,"Date":"1/24/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":680,"Cost":364,"Date":"2/3/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":499,"Cost":335,"Date":"2/4/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":871,"Cost":729,"Date":"3/9/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":991,"Cost":559,"Date":"3/12/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":173,"Cost":135,"Date":"4/19/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":527,"Cost":346,"Date":"5/3/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":220,"Cost":159,"Date":"5/4/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":373,"Cost":199,"Date":"6/8/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":778,"Cost":463,"Date":"6/26/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":649,"Cost":569,"Date":"7/4/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":403,"Cost":350,"Date":"7/13/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":19,"Cost":17,"Date":"8/8/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":256,"Cost":159,"Date":"8/26/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":505,"Cost":270,"Date":"9/2/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":798,"Cost":456,"Date":"9/29/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":565,"Cost":454,"Date":"10/12/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":784,"Cost":596,"Date":"11/2/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":770,"Cost":600,"Date":"11/4/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":29,"Cost":27,"Date":"11/7/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":515,"Cost":393,"Date":"12/1/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":669,"Cost":552,"Date":"12/4/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":348,"Cost":286,"Date":"12/7/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":594,"Cost":368,"Date":"12/18/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":567,"Cost":414,"Date":"12/20/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":939,"Cost":502,"Date":"12/20/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":892,"Cost":737,"Date":"12/21/2019"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":727,"Cost":417,"Date":"1/9/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":963,"Cost":492,"Date":"2/5/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":435,"Cost":401,"Date":"2/16/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":323,"Cost":277,"Date":"2/16/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":375,"Cost":333,"Date":"2/18/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":594,"Cost":529,"Date":"2/22/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":179,"Cost":117,"Date":"2/25/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":92,"Cost":57,"Date":"3/8/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":31,"Cost":17,"Date":"4/2/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":549,"Cost":370,"Date":"4/3/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":604,"Cost":462,"Date":"4/9/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":969,"Cost":571,"Date":"4/10/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":156,"Cost":86,"Date":"4/19/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":853,"Cost":604,"Date":"5/17/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":922,"Cost":644,"Date":"5/22/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":43,"Cost":24,"Date":"6/20/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":522,"Cost":442,"Date":"7/1/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":507,"Cost":294,"Date":"7/4/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":258,"Cost":167,"Date":"7/8/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":226,"Cost":164,"Date":"7/9/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":47,"Cost":36,"Date":"7/14/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":250,"Cost":139,"Date":"7/19/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":178,"Cost":97,"Date":"8/1/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":829,"Cost":497,"Date":"8/6/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":611,"Cost":314,"Date":"8/7/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":17,"Cost":8,"Date":"8/22/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":763,"Cost":455,"Date":"8/31/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":772,"Cost":440,"Date":"9/1/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":986,"Cost":742,"Date":"9/1/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":151,"Cost":87,"Date":"9/17/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":992,"Cost":527,"Date":"9/29/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":908,"Cost":812,"Date":"11/7/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":261,"Cost":224,"Date":"11/26/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":431,"Cost":303,"Date":"11/27/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":547,"Cost":517,"Date":"12/5/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":938,"Cost":752,"Date":"12/26/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":787,"Cost":421,"Date":"12/31/2020"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":83,"Cost":75,"Date":"1/20/2021"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":674,"Cost":517,"Date":"2/2/2021"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":46,"Cost":36,"Date":"2/8/2021"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":830,"Cost":504,"Date":"2/27/2021"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":1,"Cost":0,"Date":"3/1/2021"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":595,"Cost":366,"Date":"3/1/2021"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":133,"Cost":115,"Date":"3/19/2021"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":34,"Cost":28,"Date":"3/28/2021"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":161,"Cost":137,"Date":"5/21/2021"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":157,"Cost":130,"Date":"7/21/2021"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":251,"Cost":187,"Date":"8/5/2021"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":813,"Cost":430,"Date":"8/12/2021"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":723,"Cost":644,"Date":"8/21/2021"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":671,"Cost":567,"Date":"8/23/2021"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":379,"Cost":226,"Date":"9/3/2021"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":647,"Cost":357,"Date":"9/5/2021"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":254,"Cost":211,"Date":"10/6/2021"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":872,"Cost":633,"Date":"10/19/2021"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":282,"Cost":197,"Date":"11/15/2021"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":623,"Cost":469,"Date":"12/8/2021"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":322,"Cost":300,"Date":"1/8/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":227,"Cost":150,"Date":"1/14/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":14,"Cost":12,"Date":"1/19/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":197,"Cost":115,"Date":"1/28/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":846,"Cost":483,"Date":"1/31/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":246,"Cost":212,"Date":"3/27/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":63,"Cost":35,"Date":"4/20/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":412,"Cost":294,"Date":"4/24/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":873,"Cost":495,"Date":"4/28/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":149,"Cost":92,"Date":"5/15/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":63,"Cost":39,"Date":"5/16/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":993,"Cost":604,"Date":"5/18/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":402,"Cost":253,"Date":"6/2/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":766,"Cost":611,"Date":"6/3/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":709,"Cost":513,"Date":"6/5/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":24,"Cost":21,"Date":"6/7/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":356,"Cost":237,"Date":"6/14/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":67,"Cost":49,"Date":"6/20/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":928,"Cost":616,"Date":"6/24/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":443,"Cost":237,"Date":"7/4/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":821,"Cost":535,"Date":"7/9/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":850,"Cost":545,"Date":"7/12/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":352,"Cost":335,"Date":"8/14/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":237,"Cost":194,"Date":"8/16/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":534,"Cost":458,"Date":"8/23/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":898,"Cost":770,"Date":"9/2/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":295,"Cost":168,"Date":"9/3/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":809,"Cost":668,"Date":"9/16/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":433,"Cost":371,"Date":"10/4/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":358,"Cost":187,"Date":"11/1/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":937,"Cost":670,"Date":"11/2/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":779,"Cost":611,"Date":"12/17/2022"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":330,"Cost":220,"Date":"2/10/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":430,"Cost":349,"Date":"2/28/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":104,"Cost":63,"Date":"3/4/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":945,"Cost":794,"Date":"3/9/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":72,"Cost":53,"Date":"3/9/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":649,"Cost":597,"Date":"3/11/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":387,"Cost":227,"Date":"3/17/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":215,"Cost":161,"Date":"3/17/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":436,"Cost":364,"Date":"3/23/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":710,"Cost":622,"Date":"4/1/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":205,"Cost":145,"Date":"5/7/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":174,"Cost":105,"Date":"5/10/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":124,"Cost":80,"Date":"5/20/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":239,"Cost":212,"Date":"6/2/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":446,"Cost":389,"Date":"6/11/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":966,"Cost":739,"Date":"6/16/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":39,"Cost":30,"Date":"6/16/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":584,"Cost":322,"Date":"7/10/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":534,"Cost":344,"Date":"7/11/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":340,"Cost":170,"Date":"8/28/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":555,"Cost":382,"Date":"8/29/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":390,"Cost":316,"Date":"8/31/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":907,"Cost":547,"Date":"9/8/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":340,"Cost":316,"Date":"9/13/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":255,"Cost":233,"Date":"9/14/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":829,"Cost":773,"Date":"9/19/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":103,"Cost":51,"Date":"9/25/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":134,"Cost":104,"Date":"10/4/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":253,"Cost":178,"Date":"10/10/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":24,"Cost":13,"Date":"10/17/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":210,"Cost":138,"Date":"10/28/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":963,"Cost":878,"Date":"10/30/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":517,"Cost":421,"Date":"11/1/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":780,"Cost":626,"Date":"11/15/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":872,"Cost":532,"Date":"11/25/2023"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":787,"Cost":406,"Date":"1/10/2024"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":681,"Cost":480,"Date":"1/14/2024"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":127,"Cost":100,"Date":"1/20/2024"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":592,"Cost":407,"Date":"2/8/2024"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":432,"Cost":323,"Date":"2/25/2024"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":467,"Cost":359,"Date":"3/7/2024"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":922,"Cost":770,"Date":"3/14/2024"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":530,"Cost":493,"Date":"3/27/2024"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":468,"Cost":383,"Date":"4/5/2024"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":128,"Cost":119,"Date":"4/14/2024"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":454,"Cost":280,"Date":"5/3/2024"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":510,"Cost":366,"Date":"5/9/2024"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":590,"Cost":332,"Date":"5/15/2024"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":421,"Cost":308,"Date":"5/25/2024"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":728,"Cost":599,"Date":"5/26/2024"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":424,"Cost":281,"Date":"5/31/2024"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":832,"Cost":779,"Date":"7/27/2024"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":527,"Cost":333,"Date":"9/17/2024"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":420,"Cost":258,"Date":"10/6/2024"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":764,"Cost":560,"Date":"10/8/2024"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":766,"Cost":570,"Date":"10/26/2024"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":224,"Cost":194,"Date":"11/16/2024"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":328,"Cost":302,"Date":"11/18/2024"},{"Store":"Tokyo Solamachi","Brand":"COS","Country":"Japan","Sale":833,"Cost":625,"Date":"12/1/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":694,"Cost":651,"Date":"2/9/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":641,"Cost":503,"Date":"2/11/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":650,"Cost":584,"Date":"3/10/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":727,"Cost":528,"Date":"3/16/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":397,"Cost":202,"Date":"3/18/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":690,"Cost":364,"Date":"3/20/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":242,"Cost":223,"Date":"3/26/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":911,"Cost":520,"Date":"6/2/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":393,"Cost":287,"Date":"6/10/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":426,"Cost":340,"Date":"6/16/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":964,"Cost":909,"Date":"6/25/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":527,"Cost":316,"Date":"7/19/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":166,"Cost":147,"Date":"7/21/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":608,"Cost":499,"Date":"7/25/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":155,"Cost":83,"Date":"8/4/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":801,"Cost":479,"Date":"9/2/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":276,"Cost":140,"Date":"9/4/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":511,"Cost":354,"Date":"9/19/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":927,"Cost":812,"Date":"9/29/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":535,"Cost":442,"Date":"10/2/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":394,"Cost":237,"Date":"10/15/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":68,"Cost":47,"Date":"10/30/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":872,"Cost":485,"Date":"11/9/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":518,"Cost":287,"Date":"11/23/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":703,"Cost":489,"Date":"11/30/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":429,"Cost":388,"Date":"12/8/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":75,"Cost":58,"Date":"12/11/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":284,"Cost":184,"Date":"1/15/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":812,"Cost":595,"Date":"1/24/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":108,"Cost":77,"Date":"2/3/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":446,"Cost":262,"Date":"2/4/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":591,"Cost":454,"Date":"3/9/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":759,"Cost":702,"Date":"3/12/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":712,"Cost":649,"Date":"4/19/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":310,"Cost":234,"Date":"5/3/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":885,"Cost":597,"Date":"5/4/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":202,"Cost":136,"Date":"6/8/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":810,"Cost":740,"Date":"6/26/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":138,"Cost":115,"Date":"7/4/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":517,"Cost":308,"Date":"7/13/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":21,"Cost":16,"Date":"8/8/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":983,"Cost":809,"Date":"8/26/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":448,"Cost":401,"Date":"9/2/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":363,"Cost":187,"Date":"9/29/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":17,"Cost":14,"Date":"10/12/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":260,"Cost":226,"Date":"11/2/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":237,"Cost":148,"Date":"11/4/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":532,"Cost":485,"Date":"11/7/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":77,"Cost":41,"Date":"12/1/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":33,"Cost":22,"Date":"12/4/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":924,"Cost":815,"Date":"12/7/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":621,"Cost":469,"Date":"12/18/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":380,"Cost":196,"Date":"12/20/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":687,"Cost":417,"Date":"12/20/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":437,"Cost":301,"Date":"12/21/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":803,"Cost":723,"Date":"1/9/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":733,"Cost":600,"Date":"2/5/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":165,"Cost":102,"Date":"2/16/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":419,"Cost":369,"Date":"2/16/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":687,"Cost":567,"Date":"2/18/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":956,"Cost":543,"Date":"2/22/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":343,"Cost":294,"Date":"2/25/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":687,"Cost":413,"Date":"3/8/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":438,"Cost":314,"Date":"4/2/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":383,"Cost":349,"Date":"4/3/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":290,"Cost":231,"Date":"4/9/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":478,"Cost":249,"Date":"4/10/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":212,"Cost":166,"Date":"4/19/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":377,"Cost":263,"Date":"5/17/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":955,"Cost":865,"Date":"5/22/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":862,"Cost":540,"Date":"6/20/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":273,"Cost":140,"Date":"7/1/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":913,"Cost":691,"Date":"7/4/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":926,"Cost":877,"Date":"7/8/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":290,"Cost":232,"Date":"7/9/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":823,"Cost":494,"Date":"7/14/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":864,"Cost":640,"Date":"7/19/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":999,"Cost":693,"Date":"8/1/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":357,"Cost":187,"Date":"8/6/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":460,"Cost":259,"Date":"8/7/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":12,"Cost":8,"Date":"8/22/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":679,"Cost":588,"Date":"8/31/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":624,"Cost":441,"Date":"9/1/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":95,"Cost":91,"Date":"9/1/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":842,"Cost":513,"Date":"9/17/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":151,"Cost":122,"Date":"9/29/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":458,"Cost":419,"Date":"11/7/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":350,"Cost":325,"Date":"11/26/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":887,"Cost":503,"Date":"11/27/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":189,"Cost":164,"Date":"12/5/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":915,"Cost":527,"Date":"12/26/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":480,"Cost":257,"Date":"12/31/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":119,"Cost":80,"Date":"1/20/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":813,"Cost":649,"Date":"2/2/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":110,"Cost":81,"Date":"2/8/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":497,"Cost":371,"Date":"2/27/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":298,"Cost":196,"Date":"3/1/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":912,"Cost":647,"Date":"3/1/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":188,"Cost":157,"Date":"3/19/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":441,"Cost":234,"Date":"3/28/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":661,"Cost":485,"Date":"5/21/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":64,"Cost":42,"Date":"7/21/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":626,"Cost":393,"Date":"8/5/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":62,"Cost":38,"Date":"8/12/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":678,"Cost":637,"Date":"8/21/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":695,"Cost":500,"Date":"8/23/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":130,"Cost":120,"Date":"9/3/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":59,"Cost":56,"Date":"9/5/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":957,"Cost":671,"Date":"10/6/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":678,"Cost":389,"Date":"10/19/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":46,"Cost":37,"Date":"11/15/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":253,"Cost":187,"Date":"12/8/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":822,"Cost":444,"Date":"1/8/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":104,"Cost":74,"Date":"1/14/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":532,"Cost":345,"Date":"1/19/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":585,"Cost":315,"Date":"1/28/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":108,"Cost":101,"Date":"1/31/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":822,"Cost":646,"Date":"3/27/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":551,"Cost":376,"Date":"4/20/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":326,"Cost":202,"Date":"4/24/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":706,"Cost":660,"Date":"4/28/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":997,"Cost":895,"Date":"5/15/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":356,"Cost":326,"Date":"5/16/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":657,"Cost":566,"Date":"5/18/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":130,"Cost":112,"Date":"6/2/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":671,"Cost":578,"Date":"6/3/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":681,"Cost":565,"Date":"6/5/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":422,"Cost":223,"Date":"6/7/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":922,"Cost":572,"Date":"6/14/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":615,"Cost":494,"Date":"6/20/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":18,"Cost":12,"Date":"6/24/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":261,"Cost":207,"Date":"7/4/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":168,"Cost":126,"Date":"7/9/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":491,"Cost":340,"Date":"7/12/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":493,"Cost":285,"Date":"8/14/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":670,"Cost":337,"Date":"8/16/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":451,"Cost":336,"Date":"8/23/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":67,"Cost":41,"Date":"9/2/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":544,"Cost":293,"Date":"9/3/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":191,"Cost":166,"Date":"9/16/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":18,"Cost":11,"Date":"10/4/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":116,"Cost":104,"Date":"11/1/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":590,"Cost":559,"Date":"11/2/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":782,"Cost":564,"Date":"12/17/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":836,"Cost":736,"Date":"2/10/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":117,"Cost":87,"Date":"2/28/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":304,"Cost":205,"Date":"3/4/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":804,"Cost":739,"Date":"3/9/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":450,"Cost":262,"Date":"3/9/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":869,"Cost":604,"Date":"3/11/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":444,"Cost":334,"Date":"3/17/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":109,"Cost":59,"Date":"3/17/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":720,"Cost":412,"Date":"3/23/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":735,"Cost":579,"Date":"4/1/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":326,"Cost":233,"Date":"5/7/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":934,"Cost":808,"Date":"5/10/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":20,"Cost":11,"Date":"5/20/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":249,"Cost":183,"Date":"6/2/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":919,"Cost":637,"Date":"6/11/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":880,"Cost":783,"Date":"6/16/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":239,"Cost":195,"Date":"6/16/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":378,"Cost":300,"Date":"7/10/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":347,"Cost":263,"Date":"7/11/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":756,"Cost":664,"Date":"8/28/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":281,"Cost":143,"Date":"8/29/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":685,"Cost":520,"Date":"8/31/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":913,"Cost":577,"Date":"9/8/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":238,"Cost":191,"Date":"9/13/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":762,"Cost":694,"Date":"9/14/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":355,"Cost":230,"Date":"9/19/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":147,"Cost":108,"Date":"9/25/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":179,"Cost":160,"Date":"10/4/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":392,"Cost":335,"Date":"10/10/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":607,"Cost":468,"Date":"10/17/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":780,"Cost":728,"Date":"10/28/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":354,"Cost":184,"Date":"10/30/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":838,"Cost":695,"Date":"11/1/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":149,"Cost":120,"Date":"11/15/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":201,"Cost":126,"Date":"11/25/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":426,"Cost":367,"Date":"1/10/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":300,"Cost":229,"Date":"1/14/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":64,"Cost":37,"Date":"1/20/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":200,"Cost":140,"Date":"2/8/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":321,"Cost":270,"Date":"2/25/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":833,"Cost":416,"Date":"3/7/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":93,"Cost":69,"Date":"3/14/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":906,"Cost":552,"Date":"3/27/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":359,"Cost":181,"Date":"4/5/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":10,"Cost":8,"Date":"4/14/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":283,"Cost":191,"Date":"5/3/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":112,"Cost":96,"Date":"5/9/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":231,"Cost":195,"Date":"5/15/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":516,"Cost":286,"Date":"5/25/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":715,"Cost":527,"Date":"5/26/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":485,"Cost":326,"Date":"5/31/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":719,"Cost":472,"Date":"7/27/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":913,"Cost":751,"Date":"9/17/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":755,"Cost":677,"Date":"10/6/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":881,"Cost":672,"Date":"10/8/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":712,"Cost":676,"Date":"10/26/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":550,"Cost":328,"Date":"11/16/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":700,"Cost":532,"Date":"11/18/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"ARKET","Country":"Japan","Sale":723,"Cost":542,"Date":"12/1/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":993,"Cost":917,"Date":"2/9/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":2,"Cost":2,"Date":"2/11/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":888,"Cost":765,"Date":"3/10/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":370,"Cost":259,"Date":"3/16/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":446,"Cost":296,"Date":"3/18/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":299,"Cost":215,"Date":"3/20/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":603,"Cost":400,"Date":"3/26/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":17,"Cost":15,"Date":"6/2/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":645,"Cost":590,"Date":"6/10/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":455,"Cost":356,"Date":"6/16/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":654,"Cost":501,"Date":"6/25/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":232,"Cost":207,"Date":"7/19/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":565,"Cost":302,"Date":"7/21/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":885,"Cost":708,"Date":"7/25/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":94,"Cost":52,"Date":"8/4/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":173,"Cost":123,"Date":"9/2/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":384,"Cost":330,"Date":"9/4/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":459,"Cost":238,"Date":"9/19/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":171,"Cost":156,"Date":"9/29/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":453,"Cost":403,"Date":"10/2/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":410,"Cost":361,"Date":"10/15/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":318,"Cost":211,"Date":"10/30/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":75,"Cost":47,"Date":"11/9/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":349,"Cost":235,"Date":"11/23/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":870,"Cost":450,"Date":"11/30/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":621,"Cost":545,"Date":"12/8/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":756,"Cost":681,"Date":"12/11/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":62,"Cost":44,"Date":"1/15/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":704,"Cost":630,"Date":"1/24/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":757,"Cost":447,"Date":"2/3/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":228,"Cost":128,"Date":"2/4/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":314,"Cost":242,"Date":"3/9/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":440,"Cost":261,"Date":"3/12/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":801,"Cost":541,"Date":"4/19/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":911,"Cost":851,"Date":"5/3/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":156,"Cost":124,"Date":"5/4/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":587,"Cost":325,"Date":"6/8/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":758,"Cost":630,"Date":"6/26/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":163,"Cost":85,"Date":"7/4/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":61,"Cost":44,"Date":"7/13/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":783,"Cost":444,"Date":"8/8/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":997,"Cost":539,"Date":"8/26/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":15,"Cost":11,"Date":"9/2/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":31,"Cost":17,"Date":"9/29/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":411,"Cost":301,"Date":"10/12/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":250,"Cost":202,"Date":"11/2/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":695,"Cost":552,"Date":"11/4/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":154,"Cost":129,"Date":"11/7/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":523,"Cost":311,"Date":"12/1/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":378,"Cost":289,"Date":"12/4/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":632,"Cost":546,"Date":"12/7/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":688,"Cost":402,"Date":"12/18/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":97,"Cost":59,"Date":"12/20/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":854,"Cost":469,"Date":"12/20/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":978,"Cost":709,"Date":"12/21/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":980,"Cost":799,"Date":"1/9/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":451,"Cost":405,"Date":"2/5/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":536,"Cost":475,"Date":"2/16/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":462,"Cost":250,"Date":"2/16/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":176,"Cost":158,"Date":"2/18/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":907,"Cost":833,"Date":"2/22/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":128,"Cost":104,"Date":"2/25/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":913,"Cost":695,"Date":"3/8/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":131,"Cost":118,"Date":"4/2/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":977,"Cost":522,"Date":"4/3/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":183,"Cost":159,"Date":"4/9/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":61,"Cost":52,"Date":"4/10/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":630,"Cost":563,"Date":"4/19/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":836,"Cost":615,"Date":"5/17/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":733,"Cost":548,"Date":"5/22/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":180,"Cost":101,"Date":"6/20/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":775,"Cost":392,"Date":"7/1/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":650,"Cost":585,"Date":"7/4/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":677,"Cost":595,"Date":"7/8/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":796,"Cost":738,"Date":"7/9/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":571,"Cost":411,"Date":"7/14/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":510,"Cost":267,"Date":"7/19/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":207,"Cost":107,"Date":"8/1/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":969,"Cost":602,"Date":"8/6/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":509,"Cost":372,"Date":"8/7/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":390,"Cost":371,"Date":"8/22/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":896,"Cost":604,"Date":"8/31/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":894,"Cost":451,"Date":"9/1/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":73,"Cost":70,"Date":"9/1/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":321,"Cost":254,"Date":"9/17/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":123,"Cost":110,"Date":"9/29/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":513,"Cost":288,"Date":"11/7/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":630,"Cost":425,"Date":"11/26/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":910,"Cost":804,"Date":"11/27/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":83,"Cost":67,"Date":"12/5/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":523,"Cost":340,"Date":"12/26/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":335,"Cost":299,"Date":"12/31/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":603,"Cost":551,"Date":"1/20/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":382,"Cost":236,"Date":"2/2/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":723,"Cost":582,"Date":"2/8/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":70,"Cost":41,"Date":"2/27/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":977,"Cost":601,"Date":"3/1/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":185,"Cost":171,"Date":"3/1/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":541,"Cost":454,"Date":"3/19/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":923,"Cost":627,"Date":"3/28/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":282,"Cost":206,"Date":"5/21/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":473,"Cost":352,"Date":"7/21/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":552,"Cost":333,"Date":"8/5/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":868,"Cost":736,"Date":"8/12/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":809,"Cost":659,"Date":"8/21/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":355,"Cost":262,"Date":"8/23/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":692,"Cost":371,"Date":"9/3/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":10,"Cost":7,"Date":"9/5/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":266,"Cost":134,"Date":"10/6/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":893,"Cost":547,"Date":"10/19/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":919,"Cost":524,"Date":"11/15/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":910,"Cost":861,"Date":"12/8/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":202,"Cost":176,"Date":"1/8/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":574,"Cost":399,"Date":"1/14/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":777,"Cost":656,"Date":"1/19/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":560,"Cost":288,"Date":"1/28/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":279,"Cost":231,"Date":"1/31/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":18,"Cost":17,"Date":"3/27/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":5,"Cost":3,"Date":"4/20/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":987,"Cost":640,"Date":"4/24/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":581,"Cost":393,"Date":"4/28/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":12,"Cost":7,"Date":"5/15/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":327,"Cost":248,"Date":"5/16/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":800,"Cost":610,"Date":"5/18/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":851,"Cost":592,"Date":"6/2/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":483,"Cost":438,"Date":"6/3/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":735,"Cost":688,"Date":"6/5/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":207,"Cost":191,"Date":"6/7/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":526,"Cost":356,"Date":"6/14/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":649,"Cost":391,"Date":"6/20/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":460,"Cost":295,"Date":"6/24/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":834,"Cost":441,"Date":"7/4/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":953,"Cost":853,"Date":"7/9/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":808,"Cost":566,"Date":"7/12/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":903,"Cost":553,"Date":"8/14/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":783,"Cost":488,"Date":"8/16/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":265,"Cost":231,"Date":"8/23/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":452,"Cost":304,"Date":"9/2/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":188,"Cost":144,"Date":"9/3/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":166,"Cost":116,"Date":"9/16/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":482,"Cost":389,"Date":"10/4/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":367,"Cost":326,"Date":"11/1/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":608,"Cost":392,"Date":"11/2/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":182,"Cost":94,"Date":"12/17/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":420,"Cost":342,"Date":"2/10/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":645,"Cost":461,"Date":"2/28/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":852,"Cost":749,"Date":"3/4/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":727,"Cost":401,"Date":"3/9/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":716,"Cost":561,"Date":"3/9/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":858,"Cost":525,"Date":"3/11/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":943,"Cost":717,"Date":"3/17/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":780,"Cost":645,"Date":"3/17/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":188,"Cost":149,"Date":"3/23/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":95,"Cost":80,"Date":"4/1/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":721,"Cost":475,"Date":"5/7/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":890,"Cost":748,"Date":"5/10/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":158,"Cost":98,"Date":"5/20/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":375,"Cost":319,"Date":"6/2/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":102,"Cost":93,"Date":"6/11/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":227,"Cost":118,"Date":"6/16/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":946,"Cost":806,"Date":"6/16/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":557,"Cost":327,"Date":"7/10/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":333,"Cost":225,"Date":"7/11/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":111,"Cost":81,"Date":"8/28/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":240,"Cost":211,"Date":"8/29/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":643,"Cost":475,"Date":"8/31/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":233,"Cost":155,"Date":"9/8/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":683,"Cost":600,"Date":"9/13/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":56,"Cost":28,"Date":"9/14/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":548,"Cost":512,"Date":"9/19/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":749,"Cost":642,"Date":"9/25/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":758,"Cost":634,"Date":"10/4/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":410,"Cost":260,"Date":"10/10/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":264,"Cost":236,"Date":"10/17/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":520,"Cost":455,"Date":"10/28/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":762,"Cost":711,"Date":"10/30/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":432,"Cost":383,"Date":"11/1/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":135,"Cost":91,"Date":"11/15/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":475,"Cost":261,"Date":"11/25/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":824,"Cost":477,"Date":"1/10/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":454,"Cost":430,"Date":"1/14/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":423,"Cost":335,"Date":"1/20/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":261,"Cost":146,"Date":"2/8/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":319,"Cost":159,"Date":"2/25/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":76,"Cost":59,"Date":"3/7/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":805,"Cost":632,"Date":"3/14/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":816,"Cost":646,"Date":"3/27/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":85,"Cost":47,"Date":"4/5/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":674,"Cost":632,"Date":"4/14/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":544,"Cost":315,"Date":"5/3/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":962,"Cost":812,"Date":"5/9/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":90,"Cost":79,"Date":"5/15/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":80,"Cost":44,"Date":"5/25/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":811,"Cost":490,"Date":"5/26/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":359,"Cost":327,"Date":"5/31/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":922,"Cost":475,"Date":"7/27/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":3,"Cost":2,"Date":"9/17/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":733,"Cost":481,"Date":"10/6/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":876,"Cost":586,"Date":"10/8/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":150,"Cost":77,"Date":"10/26/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":352,"Cost":335,"Date":"11/16/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":622,"Cost":392,"Date":"11/18/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM Home","Country":"Japan","Sale":319,"Cost":284,"Date":"12/1/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":678,"Cost":581,"Date":"2/9/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":446,"Cost":244,"Date":"2/11/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":196,"Cost":117,"Date":"3/10/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":576,"Cost":502,"Date":"3/16/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":318,"Cost":258,"Date":"3/18/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":65,"Cost":58,"Date":"3/20/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":940,"Cost":518,"Date":"3/26/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":168,"Cost":159,"Date":"6/2/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":593,"Cost":488,"Date":"6/10/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":297,"Cost":171,"Date":"6/16/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":444,"Cost":368,"Date":"6/25/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":504,"Cost":348,"Date":"7/19/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":64,"Cost":56,"Date":"7/21/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":850,"Cost":647,"Date":"7/25/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":237,"Cost":129,"Date":"8/4/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":460,"Cost":236,"Date":"9/2/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":982,"Cost":928,"Date":"9/4/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":819,"Cost":564,"Date":"9/19/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":512,"Cost":313,"Date":"9/29/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":714,"Cost":491,"Date":"10/2/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":690,"Cost":475,"Date":"10/15/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":871,"Cost":506,"Date":"10/30/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":353,"Cost":255,"Date":"11/9/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":86,"Cost":72,"Date":"11/23/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":510,"Cost":354,"Date":"11/30/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":123,"Cost":70,"Date":"12/8/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":494,"Cost":409,"Date":"12/11/2018"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":199,"Cost":167,"Date":"1/15/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":969,"Cost":620,"Date":"1/24/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":341,"Cost":281,"Date":"2/3/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":547,"Cost":285,"Date":"2/4/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":558,"Cost":425,"Date":"3/9/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":953,"Cost":829,"Date":"3/12/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":388,"Cost":244,"Date":"4/19/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":41,"Cost":35,"Date":"5/3/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":297,"Cost":203,"Date":"5/4/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":611,"Cost":581,"Date":"6/8/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":775,"Cost":719,"Date":"6/26/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":749,"Cost":627,"Date":"7/4/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":657,"Cost":463,"Date":"7/13/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":596,"Cost":399,"Date":"8/8/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":381,"Cost":291,"Date":"8/26/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":336,"Cost":248,"Date":"9/2/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":641,"Cost":398,"Date":"9/29/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":674,"Cost":577,"Date":"10/12/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":376,"Cost":286,"Date":"11/2/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":687,"Cost":483,"Date":"11/4/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":774,"Cost":523,"Date":"11/7/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":956,"Cost":545,"Date":"12/1/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":130,"Cost":94,"Date":"12/4/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":474,"Cost":360,"Date":"12/7/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":50,"Cost":45,"Date":"12/18/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":617,"Cost":444,"Date":"12/20/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":623,"Cost":358,"Date":"12/20/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":933,"Cost":849,"Date":"12/21/2019"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":434,"Cost":318,"Date":"1/9/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":353,"Cost":216,"Date":"2/5/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":789,"Cost":424,"Date":"2/16/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":388,"Cost":367,"Date":"2/16/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":436,"Cost":261,"Date":"2/18/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":75,"Cost":39,"Date":"2/22/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":814,"Cost":708,"Date":"2/25/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":732,"Cost":490,"Date":"3/8/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":13,"Cost":12,"Date":"4/2/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":798,"Cost":642,"Date":"4/3/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":710,"Cost":355,"Date":"4/9/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":783,"Cost":423,"Date":"4/10/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":336,"Cost":312,"Date":"4/19/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":5,"Cost":4,"Date":"5/17/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":861,"Cost":657,"Date":"5/22/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":309,"Cost":254,"Date":"6/20/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":387,"Cost":243,"Date":"7/1/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":115,"Cost":104,"Date":"7/4/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":11,"Cost":8,"Date":"7/8/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":739,"Cost":602,"Date":"7/9/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":448,"Cost":347,"Date":"7/14/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":309,"Cost":225,"Date":"7/19/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":406,"Cost":344,"Date":"8/1/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":684,"Cost":472,"Date":"8/6/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":855,"Cost":489,"Date":"8/7/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":220,"Cost":170,"Date":"8/22/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":923,"Cost":702,"Date":"8/31/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":368,"Cost":290,"Date":"9/1/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":416,"Cost":276,"Date":"9/1/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":510,"Cost":429,"Date":"9/17/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":686,"Cost":586,"Date":"9/29/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":72,"Cost":62,"Date":"11/7/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":459,"Cost":342,"Date":"11/26/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":259,"Cost":236,"Date":"11/27/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":73,"Cost":40,"Date":"12/5/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":386,"Cost":344,"Date":"12/26/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":764,"Cost":459,"Date":"12/31/2020"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":391,"Cost":359,"Date":"1/20/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":169,"Cost":133,"Date":"2/2/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":365,"Cost":327,"Date":"2/8/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":997,"Cost":852,"Date":"2/27/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":298,"Cost":190,"Date":"3/1/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":988,"Cost":727,"Date":"3/1/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":318,"Cost":199,"Date":"3/19/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":674,"Cost":349,"Date":"3/28/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":890,"Cost":570,"Date":"5/21/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":209,"Cost":173,"Date":"7/21/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":857,"Cost":565,"Date":"8/5/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":693,"Cost":605,"Date":"8/12/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":905,"Cost":562,"Date":"8/21/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":420,"Cost":262,"Date":"8/23/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":67,"Cost":48,"Date":"9/3/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":303,"Cost":287,"Date":"9/5/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":94,"Cost":53,"Date":"10/6/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":43,"Cost":33,"Date":"10/19/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":341,"Cost":252,"Date":"11/15/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":384,"Cost":233,"Date":"12/8/2021"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":985,"Cost":822,"Date":"1/8/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":971,"Cost":792,"Date":"1/14/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":869,"Cost":676,"Date":"1/19/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":721,"Cost":670,"Date":"1/28/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":319,"Cost":239,"Date":"1/31/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":466,"Cost":241,"Date":"3/27/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":724,"Cost":493,"Date":"4/20/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":952,"Cost":522,"Date":"4/24/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":225,"Cost":168,"Date":"4/28/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":817,"Cost":706,"Date":"5/15/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":195,"Cost":172,"Date":"5/16/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":22,"Cost":17,"Date":"5/18/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":430,"Cost":241,"Date":"6/2/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":839,"Cost":776,"Date":"6/3/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":184,"Cost":112,"Date":"6/5/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":583,"Cost":326,"Date":"6/7/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":592,"Cost":540,"Date":"6/14/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":25,"Cost":19,"Date":"6/20/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":150,"Cost":138,"Date":"6/24/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":434,"Cost":300,"Date":"7/4/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":376,"Cost":313,"Date":"7/9/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":950,"Cost":723,"Date":"7/12/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":945,"Cost":766,"Date":"8/14/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":737,"Cost":531,"Date":"8/16/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":343,"Cost":203,"Date":"8/23/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":36,"Cost":33,"Date":"9/2/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":85,"Cost":52,"Date":"9/3/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":297,"Cost":151,"Date":"9/16/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":602,"Cost":550,"Date":"10/4/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":133,"Cost":74,"Date":"11/1/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":774,"Cost":614,"Date":"11/2/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":836,"Cost":463,"Date":"12/17/2022"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":395,"Cost":365,"Date":"2/10/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":939,"Cost":823,"Date":"2/28/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":702,"Cost":384,"Date":"3/4/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":647,"Cost":478,"Date":"3/9/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":804,"Cost":546,"Date":"3/9/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":503,"Cost":345,"Date":"3/11/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":975,"Cost":506,"Date":"3/17/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":816,"Cost":736,"Date":"3/17/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":752,"Cost":439,"Date":"3/23/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":322,"Cost":188,"Date":"4/1/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":550,"Cost":278,"Date":"5/7/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":622,"Cost":330,"Date":"5/10/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":883,"Cost":719,"Date":"5/20/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":177,"Cost":95,"Date":"6/2/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":545,"Cost":363,"Date":"6/11/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":433,"Cost":232,"Date":"6/16/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":370,"Cost":193,"Date":"6/16/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":743,"Cost":640,"Date":"7/10/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":82,"Cost":55,"Date":"7/11/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":215,"Cost":165,"Date":"8/28/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":576,"Cost":350,"Date":"8/29/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":340,"Cost":276,"Date":"8/31/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":46,"Cost":23,"Date":"9/8/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":930,"Cost":477,"Date":"9/13/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":708,"Cost":570,"Date":"9/14/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":193,"Cost":173,"Date":"9/19/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":367,"Cost":239,"Date":"9/25/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":332,"Cost":246,"Date":"10/4/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":691,"Cost":534,"Date":"10/10/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":913,"Cost":579,"Date":"10/17/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":743,"Cost":552,"Date":"10/28/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":526,"Cost":363,"Date":"10/30/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":960,"Cost":699,"Date":"11/1/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":288,"Cost":224,"Date":"11/15/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":183,"Cost":97,"Date":"11/25/2023"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":918,"Cost":845,"Date":"1/10/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":431,"Cost":283,"Date":"1/14/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":818,"Cost":513,"Date":"1/20/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":283,"Cost":165,"Date":"2/8/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":684,"Cost":603,"Date":"2/25/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":589,"Cost":385,"Date":"3/7/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":63,"Cost":42,"Date":"3/14/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":796,"Cost":498,"Date":"3/27/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":441,"Cost":316,"Date":"4/5/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":475,"Cost":281,"Date":"4/14/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":416,"Cost":280,"Date":"5/3/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":673,"Cost":557,"Date":"5/9/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":234,"Cost":125,"Date":"5/15/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":738,"Cost":549,"Date":"5/25/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":97,"Cost":76,"Date":"5/26/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":544,"Cost":464,"Date":"5/31/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":650,"Cost":573,"Date":"7/27/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":307,"Cost":286,"Date":"9/17/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":708,"Cost":588,"Date":"10/6/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":214,"Cost":139,"Date":"10/8/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":96,"Cost":85,"Date":"10/26/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":829,"Cost":639,"Date":"11/16/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":294,"Cost":150,"Date":"11/18/2024"},{"Store":"Tokyu Plaza Omotesando Harajuku, Tokyo","Brand":"HM","Country":"Japan","Sale":943,"Cost":611,"Date":"12/1/2024"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":672,"Cost":534,"Date":"2/9/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":136,"Cost":117,"Date":"2/11/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":834,"Cost":469,"Date":"3/10/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":289,"Cost":156,"Date":"3/16/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":485,"Cost":375,"Date":"3/18/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":838,"Cost":650,"Date":"3/20/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":908,"Cost":692,"Date":"3/26/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":485,"Cost":432,"Date":"6/2/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":395,"Cost":232,"Date":"6/10/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":439,"Cost":236,"Date":"6/16/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":358,"Cost":316,"Date":"6/25/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":255,"Cost":131,"Date":"7/19/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":602,"Cost":509,"Date":"7/21/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":835,"Cost":791,"Date":"7/25/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":306,"Cost":220,"Date":"8/4/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":36,"Cost":26,"Date":"9/2/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":951,"Cost":896,"Date":"9/4/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":365,"Cost":186,"Date":"9/19/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":201,"Cost":188,"Date":"9/29/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":910,"Cost":596,"Date":"10/2/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":174,"Cost":161,"Date":"10/15/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":98,"Cost":62,"Date":"10/30/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":708,"Cost":480,"Date":"11/9/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":685,"Cost":514,"Date":"11/23/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":751,"Cost":617,"Date":"11/30/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":18,"Cost":9,"Date":"12/8/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":282,"Cost":254,"Date":"12/11/2018"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":530,"Cost":367,"Date":"1/15/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":595,"Cost":555,"Date":"1/24/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":964,"Cost":826,"Date":"2/3/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":823,"Cost":479,"Date":"2/4/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":489,"Cost":299,"Date":"3/9/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":279,"Cost":177,"Date":"3/12/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":184,"Cost":94,"Date":"4/19/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":744,"Cost":697,"Date":"5/3/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":230,"Cost":158,"Date":"5/4/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":404,"Cost":273,"Date":"6/8/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":345,"Cost":173,"Date":"6/26/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":886,"Cost":674,"Date":"7/4/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":55,"Cost":47,"Date":"7/13/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":501,"Cost":313,"Date":"8/8/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":787,"Cost":497,"Date":"8/26/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":365,"Cost":214,"Date":"9/2/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":961,"Cost":827,"Date":"9/29/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":796,"Cost":720,"Date":"10/12/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":359,"Cost":305,"Date":"11/2/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":995,"Cost":541,"Date":"11/4/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":307,"Cost":210,"Date":"11/7/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":717,"Cost":378,"Date":"12/1/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":193,"Cost":174,"Date":"12/4/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":613,"Cost":465,"Date":"12/7/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":293,"Cost":254,"Date":"12/18/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":331,"Cost":183,"Date":"12/20/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":827,"Cost":532,"Date":"12/20/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":34,"Cost":22,"Date":"12/21/2019"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":473,"Cost":371,"Date":"1/9/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":611,"Cost":354,"Date":"2/5/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":122,"Cost":98,"Date":"2/16/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":235,"Cost":137,"Date":"2/16/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":458,"Cost":302,"Date":"2/18/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":294,"Cost":163,"Date":"2/22/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":852,"Cost":473,"Date":"2/25/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":199,"Cost":178,"Date":"3/8/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":306,"Cost":174,"Date":"4/2/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":454,"Cost":300,"Date":"4/3/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":889,"Cost":505,"Date":"4/9/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":73,"Cost":65,"Date":"4/10/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":535,"Cost":505,"Date":"4/19/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":729,"Cost":628,"Date":"5/17/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":225,"Cost":204,"Date":"5/22/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":480,"Cost":447,"Date":"6/20/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":1000,"Cost":782,"Date":"7/1/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":886,"Cost":486,"Date":"7/4/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":642,"Cost":520,"Date":"7/8/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":55,"Cost":44,"Date":"7/9/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":721,"Cost":494,"Date":"7/14/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":230,"Cost":141,"Date":"7/19/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":765,"Cost":507,"Date":"8/1/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":316,"Cost":203,"Date":"8/6/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":278,"Cost":172,"Date":"8/7/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":156,"Cost":140,"Date":"8/22/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":119,"Cost":62,"Date":"8/31/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":491,"Cost":320,"Date":"9/1/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":712,"Cost":493,"Date":"9/1/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":196,"Cost":112,"Date":"9/17/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":179,"Cost":169,"Date":"9/29/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":307,"Cost":259,"Date":"11/7/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":587,"Cost":327,"Date":"11/26/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":439,"Cost":397,"Date":"11/27/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":562,"Cost":464,"Date":"12/5/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":147,"Cost":126,"Date":"12/26/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":987,"Cost":668,"Date":"12/31/2020"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":907,"Cost":537,"Date":"1/20/2021"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":612,"Cost":564,"Date":"2/2/2021"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":426,"Cost":323,"Date":"2/8/2021"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":506,"Cost":381,"Date":"2/27/2021"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":923,"Cost":794,"Date":"3/1/2021"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":591,"Cost":441,"Date":"3/1/2021"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":13,"Cost":13,"Date":"3/19/2021"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":417,"Cost":274,"Date":"3/28/2021"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":503,"Cost":254,"Date":"5/21/2021"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":413,"Cost":262,"Date":"7/21/2021"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":170,"Cost":149,"Date":"8/5/2021"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":64,"Cost":58,"Date":"8/12/2021"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":335,"Cost":188,"Date":"8/21/2021"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":714,"Cost":562,"Date":"8/23/2021"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":303,"Cost":277,"Date":"9/3/2021"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":317,"Cost":238,"Date":"9/5/2021"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":847,"Cost":612,"Date":"10/6/2021"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":749,"Cost":543,"Date":"10/19/2021"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":859,"Cost":768,"Date":"11/15/2021"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":526,"Cost":362,"Date":"12/8/2021"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":28,"Cost":25,"Date":"1/8/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":321,"Cost":291,"Date":"1/14/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":764,"Cost":461,"Date":"1/19/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":618,"Cost":375,"Date":"1/28/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":16,"Cost":11,"Date":"1/31/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":693,"Cost":580,"Date":"3/27/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":396,"Cost":300,"Date":"4/20/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":678,"Cost":536,"Date":"4/24/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":835,"Cost":778,"Date":"4/28/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":971,"Cost":616,"Date":"5/15/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":318,"Cost":193,"Date":"5/16/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":746,"Cost":581,"Date":"5/18/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":666,"Cost":397,"Date":"6/2/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":656,"Cost":436,"Date":"6/3/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":57,"Cost":43,"Date":"6/5/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":932,"Cost":828,"Date":"6/7/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":346,"Cost":242,"Date":"6/14/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":508,"Cost":446,"Date":"6/20/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":985,"Cost":770,"Date":"6/24/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":436,"Cost":318,"Date":"7/4/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":880,"Cost":738,"Date":"7/9/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":733,"Cost":375,"Date":"7/12/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":483,"Cost":262,"Date":"8/14/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":792,"Cost":624,"Date":"8/16/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":19,"Cost":11,"Date":"8/23/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":310,"Cost":286,"Date":"9/2/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":661,"Cost":498,"Date":"9/3/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":138,"Cost":98,"Date":"9/16/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":40,"Cost":21,"Date":"10/4/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":196,"Cost":168,"Date":"11/1/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":813,"Cost":587,"Date":"11/2/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":143,"Cost":99,"Date":"12/17/2022"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":826,"Cost":716,"Date":"2/10/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":908,"Cost":542,"Date":"2/28/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":561,"Cost":532,"Date":"3/4/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":515,"Cost":266,"Date":"3/9/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":32,"Cost":16,"Date":"3/9/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":924,"Cost":670,"Date":"3/11/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":482,"Cost":414,"Date":"3/17/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":36,"Cost":35,"Date":"3/17/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":77,"Cost":67,"Date":"3/23/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":61,"Cost":42,"Date":"4/1/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":32,"Cost":27,"Date":"5/7/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":322,"Cost":259,"Date":"5/10/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":389,"Cost":337,"Date":"5/20/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":567,"Cost":306,"Date":"6/2/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":130,"Cost":107,"Date":"6/11/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":192,"Cost":116,"Date":"6/16/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":187,"Cost":98,"Date":"6/16/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":339,"Cost":238,"Date":"7/10/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":770,"Cost":512,"Date":"7/11/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":744,"Cost":449,"Date":"8/28/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":657,"Cost":487,"Date":"8/29/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":952,"Cost":804,"Date":"8/31/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":782,"Cost":681,"Date":"9/8/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":510,"Cost":332,"Date":"9/13/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":849,"Cost":456,"Date":"9/14/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":506,"Cost":341,"Date":"9/19/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":256,"Cost":222,"Date":"9/25/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":138,"Cost":89,"Date":"10/4/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":889,"Cost":754,"Date":"10/10/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":152,"Cost":91,"Date":"10/17/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":298,"Cost":213,"Date":"10/28/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":438,"Cost":241,"Date":"10/30/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":181,"Cost":131,"Date":"11/1/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":405,"Cost":335,"Date":"11/15/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":421,"Cost":286,"Date":"11/25/2023"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":839,"Cost":763,"Date":"1/10/2024"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":39,"Cost":28,"Date":"1/14/2024"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":857,"Cost":646,"Date":"1/20/2024"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":473,"Cost":405,"Date":"2/8/2024"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":953,"Cost":645,"Date":"2/25/2024"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":928,"Cost":517,"Date":"3/7/2024"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":679,"Cost":644,"Date":"3/14/2024"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":259,"Cost":237,"Date":"3/27/2024"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":542,"Cost":442,"Date":"4/5/2024"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":286,"Cost":208,"Date":"4/14/2024"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":455,"Cost":317,"Date":"5/3/2024"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":928,"Cost":696,"Date":"5/9/2024"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":457,"Cost":348,"Date":"5/15/2024"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":834,"Cost":650,"Date":"5/25/2024"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":756,"Cost":572,"Date":"5/26/2024"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":161,"Cost":125,"Date":"5/31/2024"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":725,"Cost":649,"Date":"7/27/2024"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":394,"Cost":345,"Date":"9/17/2024"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":823,"Cost":475,"Date":"10/6/2024"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":778,"Cost":437,"Date":"10/8/2024"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":212,"Cost":194,"Date":"10/26/2024"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":987,"Cost":684,"Date":"11/16/2024"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":124,"Cost":86,"Date":"11/18/2024"},{"Store":"VenusFort, Tokyo","Brand":"HM Home","Country":"Japan","Sale":405,"Cost":370,"Date":"12/1/2024"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":32,"Cost":27,"Date":"2/9/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":993,"Cost":696,"Date":"2/11/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":820,"Cost":751,"Date":"3/10/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":409,"Cost":340,"Date":"3/16/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":545,"Cost":479,"Date":"3/18/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":590,"Cost":517,"Date":"3/20/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":318,"Cost":189,"Date":"3/26/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":813,"Cost":645,"Date":"6/2/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":703,"Cost":405,"Date":"6/10/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":54,"Cost":45,"Date":"6/16/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":406,"Cost":330,"Date":"6/25/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":805,"Cost":515,"Date":"7/19/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":778,"Cost":565,"Date":"7/21/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":431,"Cost":359,"Date":"7/25/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":277,"Cost":186,"Date":"8/4/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":840,"Cost":598,"Date":"9/2/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":281,"Cost":158,"Date":"9/4/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":469,"Cost":263,"Date":"9/19/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":207,"Cost":133,"Date":"9/29/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":80,"Cost":61,"Date":"10/2/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":856,"Cost":508,"Date":"10/15/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":498,"Cost":422,"Date":"10/30/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":614,"Cost":483,"Date":"11/9/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":18,"Cost":15,"Date":"11/23/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":847,"Cost":554,"Date":"11/30/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":229,"Cost":115,"Date":"12/8/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":793,"Cost":666,"Date":"12/11/2018"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":256,"Cost":175,"Date":"1/15/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":962,"Cost":662,"Date":"1/24/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":561,"Cost":427,"Date":"2/3/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":152,"Cost":107,"Date":"2/4/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":804,"Cost":510,"Date":"3/9/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":225,"Cost":162,"Date":"3/12/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":328,"Cost":221,"Date":"4/19/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":987,"Cost":647,"Date":"5/3/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":119,"Cost":70,"Date":"5/4/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":299,"Cost":177,"Date":"6/8/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":947,"Cost":765,"Date":"6/26/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":102,"Cost":71,"Date":"7/4/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":619,"Cost":506,"Date":"7/13/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":276,"Cost":231,"Date":"8/8/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":947,"Cost":842,"Date":"8/26/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":722,"Cost":399,"Date":"9/2/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":1000,"Cost":697,"Date":"9/29/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":478,"Cost":440,"Date":"10/12/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":592,"Cost":509,"Date":"11/2/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":867,"Cost":507,"Date":"11/4/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":20,"Cost":19,"Date":"11/7/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":664,"Cost":489,"Date":"12/1/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":169,"Cost":129,"Date":"12/4/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":329,"Cost":206,"Date":"12/7/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":226,"Cost":141,"Date":"12/18/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":864,"Cost":670,"Date":"12/20/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":202,"Cost":180,"Date":"12/20/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":752,"Cost":517,"Date":"12/21/2019"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":531,"Cost":287,"Date":"1/9/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":291,"Cost":192,"Date":"2/5/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":69,"Cost":64,"Date":"2/16/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":172,"Cost":152,"Date":"2/16/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":68,"Cost":34,"Date":"2/18/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":752,"Cost":554,"Date":"2/22/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":201,"Cost":189,"Date":"2/25/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":65,"Cost":52,"Date":"3/8/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":344,"Cost":265,"Date":"4/2/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":653,"Cost":464,"Date":"4/3/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":662,"Cost":435,"Date":"4/9/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":329,"Cost":171,"Date":"4/10/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":944,"Cost":878,"Date":"4/19/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":443,"Cost":319,"Date":"5/17/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":50,"Cost":32,"Date":"5/22/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":485,"Cost":373,"Date":"6/20/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":81,"Cost":64,"Date":"7/1/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":990,"Cost":676,"Date":"7/4/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":12,"Cost":8,"Date":"7/8/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":295,"Cost":196,"Date":"7/9/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":740,"Cost":452,"Date":"7/14/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":171,"Cost":111,"Date":"7/19/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":817,"Cost":685,"Date":"8/1/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":288,"Cost":235,"Date":"8/6/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":933,"Cost":787,"Date":"8/7/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":854,"Cost":693,"Date":"8/22/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":179,"Cost":110,"Date":"8/31/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":173,"Cost":105,"Date":"9/1/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":727,"Cost":558,"Date":"9/1/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":988,"Cost":622,"Date":"9/17/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":96,"Cost":55,"Date":"9/29/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":577,"Cost":544,"Date":"11/7/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":634,"Cost":455,"Date":"11/26/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":861,"Cost":573,"Date":"11/27/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":454,"Cost":304,"Date":"12/5/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":176,"Cost":162,"Date":"12/26/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":11,"Cost":11,"Date":"12/31/2020"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":677,"Cost":445,"Date":"1/20/2021"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":136,"Cost":129,"Date":"2/2/2021"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":988,"Cost":692,"Date":"2/8/2021"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":75,"Cost":71,"Date":"2/27/2021"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":535,"Cost":297,"Date":"3/1/2021"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":764,"Cost":725,"Date":"3/1/2021"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":941,"Cost":631,"Date":"3/19/2021"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":381,"Cost":268,"Date":"3/28/2021"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":160,"Cost":128,"Date":"5/21/2021"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":937,"Cost":889,"Date":"7/21/2021"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":720,"Cost":444,"Date":"8/5/2021"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":633,"Cost":502,"Date":"8/12/2021"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":739,"Cost":592,"Date":"8/21/2021"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":200,"Cost":175,"Date":"8/23/2021"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":887,"Cost":564,"Date":"9/3/2021"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":312,"Cost":276,"Date":"9/5/2021"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":936,"Cost":608,"Date":"10/6/2021"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":400,"Cost":309,"Date":"10/19/2021"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":631,"Cost":550,"Date":"11/15/2021"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":856,"Cost":641,"Date":"12/8/2021"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":58,"Cost":50,"Date":"1/8/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":656,"Cost":495,"Date":"1/14/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":483,"Cost":446,"Date":"1/19/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":77,"Cost":39,"Date":"1/28/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":494,"Cost":373,"Date":"1/31/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":192,"Cost":160,"Date":"3/27/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":447,"Cost":344,"Date":"4/20/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":219,"Cost":169,"Date":"4/24/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":749,"Cost":417,"Date":"4/28/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":209,"Cost":183,"Date":"5/15/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":505,"Cost":253,"Date":"5/16/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":954,"Cost":535,"Date":"5/18/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":833,"Cost":474,"Date":"6/2/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":733,"Cost":682,"Date":"6/3/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":614,"Cost":434,"Date":"6/5/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":243,"Cost":226,"Date":"6/7/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":455,"Cost":339,"Date":"6/14/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":149,"Cost":140,"Date":"6/20/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":220,"Cost":168,"Date":"6/24/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":452,"Cost":243,"Date":"7/4/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":697,"Cost":571,"Date":"7/9/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":819,"Cost":603,"Date":"7/12/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":272,"Cost":204,"Date":"8/14/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":347,"Cost":205,"Date":"8/16/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":450,"Cost":254,"Date":"8/23/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":269,"Cost":153,"Date":"9/2/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":620,"Cost":550,"Date":"9/3/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":359,"Cost":196,"Date":"9/16/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":286,"Cost":272,"Date":"10/4/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":60,"Cost":57,"Date":"11/1/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":692,"Cost":495,"Date":"11/2/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":874,"Cost":770,"Date":"12/17/2022"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":503,"Cost":417,"Date":"2/10/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":89,"Cost":50,"Date":"2/28/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":594,"Cost":430,"Date":"3/4/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":226,"Cost":134,"Date":"3/9/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":566,"Cost":486,"Date":"3/9/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":892,"Cost":801,"Date":"3/11/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":463,"Cost":411,"Date":"3/17/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":686,"Cost":548,"Date":"3/17/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":607,"Cost":341,"Date":"3/23/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":713,"Cost":397,"Date":"4/1/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":121,"Cost":88,"Date":"5/7/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":852,"Cost":663,"Date":"5/10/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":678,"Cost":598,"Date":"5/20/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":653,"Cost":589,"Date":"6/2/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":884,"Cost":604,"Date":"6/11/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":87,"Cost":45,"Date":"6/16/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":872,"Cost":787,"Date":"6/16/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":200,"Cost":137,"Date":"7/10/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":692,"Cost":415,"Date":"7/11/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":226,"Cost":181,"Date":"8/28/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":188,"Cost":130,"Date":"8/29/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":56,"Cost":30,"Date":"8/31/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":222,"Cost":116,"Date":"9/8/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":373,"Cost":251,"Date":"9/13/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":422,"Cost":307,"Date":"9/14/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":242,"Cost":220,"Date":"9/19/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":379,"Cost":349,"Date":"9/25/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":840,"Cost":758,"Date":"10/4/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":805,"Cost":651,"Date":"10/10/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":566,"Cost":314,"Date":"10/17/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":295,"Cost":152,"Date":"10/28/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":482,"Cost":431,"Date":"10/30/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":815,"Cost":746,"Date":"11/1/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":767,"Cost":686,"Date":"11/15/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":719,"Cost":559,"Date":"11/25/2023"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":896,"Cost":468,"Date":"1/10/2024"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":646,"Cost":541,"Date":"1/14/2024"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":997,"Cost":626,"Date":"1/20/2024"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":320,"Cost":199,"Date":"2/8/2024"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":570,"Cost":427,"Date":"2/25/2024"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":372,"Cost":315,"Date":"3/7/2024"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":196,"Cost":156,"Date":"3/14/2024"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":99,"Cost":91,"Date":"3/27/2024"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":798,"Cost":659,"Date":"4/5/2024"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":483,"Cost":370,"Date":"4/14/2024"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":765,"Cost":487,"Date":"5/3/2024"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":198,"Cost":187,"Date":"5/9/2024"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":917,"Cost":788,"Date":"5/15/2024"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":958,"Cost":717,"Date":"5/25/2024"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":581,"Cost":462,"Date":"5/26/2024"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":472,"Cost":389,"Date":"5/31/2024"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":67,"Cost":39,"Date":"7/27/2024"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":72,"Cost":51,"Date":"9/17/2024"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":619,"Cost":587,"Date":"10/6/2024"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":949,"Cost":625,"Date":"10/8/2024"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":248,"Cost":168,"Date":"10/26/2024"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":151,"Cost":125,"Date":"11/16/2024"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":641,"Cost":557,"Date":"11/18/2024"},{"Store":"VenusFort, Tokyo","Brand":"Sellpy","Country":"Japan","Sale":534,"Cost":453,"Date":"12/1/2024"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":839,"Cost":733,"Date":"2/9/2018"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":267,"Cost":173,"Date":"2/11/2018"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":605,"Cost":501,"Date":"3/10/2018"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":482,"Cost":315,"Date":"3/16/2018"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":71,"Cost":59,"Date":"3/18/2018"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":347,"Cost":271,"Date":"3/20/2018"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":481,"Cost":340,"Date":"3/26/2018"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":516,"Cost":269,"Date":"6/2/2018"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":200,"Cost":124,"Date":"6/10/2018"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":636,"Cost":583,"Date":"6/16/2018"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":29,"Cost":19,"Date":"6/25/2018"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":718,"Cost":386,"Date":"7/19/2018"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":731,"Cost":624,"Date":"7/21/2018"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":926,"Cost":523,"Date":"7/25/2018"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":483,"Cost":409,"Date":"8/4/2018"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":983,"Cost":549,"Date":"9/2/2018"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":615,"Cost":522,"Date":"9/4/2018"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":363,"Cost":201,"Date":"9/19/2018"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":392,"Cost":295,"Date":"9/29/2018"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":304,"Cost":231,"Date":"10/2/2018"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":869,"Cost":706,"Date":"10/15/2018"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":109,"Cost":102,"Date":"10/30/2018"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":753,"Cost":378,"Date":"11/9/2018"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":400,"Cost":276,"Date":"11/23/2018"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":792,"Cost":477,"Date":"11/30/2018"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":758,"Cost":681,"Date":"12/8/2018"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":976,"Cost":852,"Date":"12/11/2018"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":294,"Cost":251,"Date":"1/15/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":124,"Cost":69,"Date":"1/24/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":952,"Cost":659,"Date":"2/3/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":461,"Cost":278,"Date":"2/4/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":70,"Cost":57,"Date":"3/9/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":348,"Cost":323,"Date":"3/12/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":746,"Cost":533,"Date":"4/19/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":221,"Cost":183,"Date":"5/3/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":918,"Cost":823,"Date":"5/4/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":979,"Cost":830,"Date":"6/8/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":465,"Cost":331,"Date":"6/26/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":804,"Cost":715,"Date":"7/4/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":750,"Cost":562,"Date":"7/13/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":756,"Cost":508,"Date":"8/8/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":262,"Cost":189,"Date":"8/26/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":370,"Cost":280,"Date":"9/2/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":410,"Cost":250,"Date":"9/29/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":729,"Cost":644,"Date":"10/12/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":840,"Cost":474,"Date":"11/2/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":298,"Cost":155,"Date":"11/4/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":869,"Cost":740,"Date":"11/7/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":850,"Cost":462,"Date":"12/1/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":915,"Cost":665,"Date":"12/4/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":219,"Cost":184,"Date":"12/7/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":204,"Cost":157,"Date":"12/18/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":28,"Cost":17,"Date":"12/20/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":104,"Cost":58,"Date":"12/20/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":349,"Cost":177,"Date":"12/21/2019"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":761,"Cost":573,"Date":"1/9/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":59,"Cost":52,"Date":"2/5/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":290,"Cost":245,"Date":"2/16/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":384,"Cost":338,"Date":"2/16/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":962,"Cost":674,"Date":"2/18/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":210,"Cost":154,"Date":"2/22/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":727,"Cost":596,"Date":"2/25/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":278,"Cost":176,"Date":"3/8/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":992,"Cost":672,"Date":"4/2/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":19,"Cost":15,"Date":"4/3/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":582,"Cost":321,"Date":"4/9/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":175,"Cost":163,"Date":"4/10/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":565,"Cost":410,"Date":"4/19/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":864,"Cost":456,"Date":"5/17/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":687,"Cost":512,"Date":"5/22/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":728,"Cost":408,"Date":"6/20/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":301,"Cost":213,"Date":"7/1/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":524,"Cost":435,"Date":"7/4/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":992,"Cost":903,"Date":"7/8/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":6,"Cost":6,"Date":"7/9/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":32,"Cost":27,"Date":"7/14/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":530,"Cost":403,"Date":"7/19/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":112,"Cost":64,"Date":"8/1/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":795,"Cost":492,"Date":"8/6/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":999,"Cost":566,"Date":"8/7/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":267,"Cost":251,"Date":"8/22/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":69,"Cost":40,"Date":"8/31/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":484,"Cost":317,"Date":"9/1/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":326,"Cost":303,"Date":"9/1/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":981,"Cost":821,"Date":"9/17/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":257,"Cost":192,"Date":"9/29/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":654,"Cost":451,"Date":"11/7/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":535,"Cost":289,"Date":"11/26/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":290,"Cost":187,"Date":"11/27/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":362,"Cost":264,"Date":"12/5/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":164,"Cost":146,"Date":"12/26/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":33,"Cost":28,"Date":"12/31/2020"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":272,"Cost":157,"Date":"1/20/2021"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":535,"Cost":492,"Date":"2/2/2021"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":642,"Cost":463,"Date":"2/8/2021"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":928,"Cost":685,"Date":"2/27/2021"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":607,"Cost":512,"Date":"3/1/2021"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":877,"Cost":582,"Date":"3/1/2021"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":976,"Cost":768,"Date":"3/19/2021"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":404,"Cost":364,"Date":"3/28/2021"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":256,"Cost":162,"Date":"5/21/2021"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":777,"Cost":440,"Date":"7/21/2021"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":103,"Cost":52,"Date":"8/5/2021"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":411,"Cost":328,"Date":"8/12/2021"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":949,"Cost":683,"Date":"8/21/2021"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":520,"Cost":381,"Date":"8/23/2021"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":321,"Cost":216,"Date":"9/3/2021"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":660,"Cost":511,"Date":"9/5/2021"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":853,"Cost":804,"Date":"10/6/2021"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":499,"Cost":305,"Date":"10/19/2021"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":864,"Cost":762,"Date":"11/15/2021"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":150,"Cost":139,"Date":"12/8/2021"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":467,"Cost":245,"Date":"1/8/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":77,"Cost":60,"Date":"1/14/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":25,"Cost":20,"Date":"1/19/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":937,"Cost":582,"Date":"1/28/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":422,"Cost":316,"Date":"1/31/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":949,"Cost":551,"Date":"3/27/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":894,"Cost":635,"Date":"4/20/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":570,"Cost":318,"Date":"4/24/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":693,"Cost":481,"Date":"4/28/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":314,"Cost":178,"Date":"5/15/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":196,"Cost":151,"Date":"5/16/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":660,"Cost":404,"Date":"5/18/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":771,"Cost":415,"Date":"6/2/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":324,"Cost":264,"Date":"6/3/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":712,"Cost":453,"Date":"6/5/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":960,"Cost":677,"Date":"6/7/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":367,"Cost":199,"Date":"6/14/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":994,"Cost":840,"Date":"6/20/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":553,"Cost":364,"Date":"6/24/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":153,"Cost":125,"Date":"7/4/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":688,"Cost":649,"Date":"7/9/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":936,"Cost":753,"Date":"7/12/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":347,"Cost":198,"Date":"8/14/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":17,"Cost":14,"Date":"8/16/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":179,"Cost":126,"Date":"8/23/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":735,"Cost":679,"Date":"9/2/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":372,"Cost":296,"Date":"9/3/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":277,"Cost":155,"Date":"9/16/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":855,"Cost":484,"Date":"10/4/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":920,"Cost":578,"Date":"11/1/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":924,"Cost":541,"Date":"11/2/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":682,"Cost":525,"Date":"12/17/2022"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":234,"Cost":154,"Date":"2/10/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":880,"Cost":515,"Date":"2/28/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":418,"Cost":288,"Date":"3/4/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":800,"Cost":467,"Date":"3/9/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":823,"Cost":473,"Date":"3/9/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":1000,"Cost":616,"Date":"3/11/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":780,"Cost":392,"Date":"3/17/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":78,"Cost":70,"Date":"3/17/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":540,"Cost":277,"Date":"3/23/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":992,"Cost":747,"Date":"4/1/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":915,"Cost":831,"Date":"5/7/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":459,"Cost":331,"Date":"5/10/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":300,"Cost":210,"Date":"5/20/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":127,"Cost":120,"Date":"6/2/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":809,"Cost":750,"Date":"6/11/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":76,"Cost":71,"Date":"6/16/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":296,"Cost":218,"Date":"6/16/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":429,"Cost":325,"Date":"7/10/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":965,"Cost":584,"Date":"7/11/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":411,"Cost":314,"Date":"8/28/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":264,"Cost":193,"Date":"8/29/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":828,"Cost":743,"Date":"8/31/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":42,"Cost":33,"Date":"9/8/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":777,"Cost":447,"Date":"9/13/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":310,"Cost":265,"Date":"9/14/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":432,"Cost":326,"Date":"9/19/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":550,"Cost":488,"Date":"9/25/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":192,"Cost":180,"Date":"10/4/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":586,"Cost":542,"Date":"10/10/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":872,"Cost":613,"Date":"10/17/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":99,"Cost":83,"Date":"10/28/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":24,"Cost":22,"Date":"10/30/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":309,"Cost":285,"Date":"11/1/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":314,"Cost":281,"Date":"11/15/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":217,"Cost":112,"Date":"11/25/2023"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":489,"Cost":451,"Date":"1/10/2024"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":260,"Cost":193,"Date":"1/14/2024"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":922,"Cost":495,"Date":"1/20/2024"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":962,"Cost":603,"Date":"2/8/2024"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":769,"Cost":389,"Date":"2/25/2024"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":344,"Cost":217,"Date":"3/7/2024"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":615,"Cost":361,"Date":"3/14/2024"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":71,"Cost":52,"Date":"3/27/2024"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":142,"Cost":115,"Date":"4/5/2024"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":540,"Cost":473,"Date":"4/14/2024"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":697,"Cost":356,"Date":"5/3/2024"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":72,"Cost":54,"Date":"5/9/2024"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":355,"Cost":308,"Date":"5/15/2024"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":992,"Cost":524,"Date":"5/25/2024"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":705,"Cost":371,"Date":"5/26/2024"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":289,"Cost":151,"Date":"5/31/2024"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":916,"Cost":847,"Date":"7/27/2024"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":620,"Cost":311,"Date":"9/17/2024"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":42,"Cost":34,"Date":"10/6/2024"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":87,"Cost":43,"Date":"10/8/2024"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":758,"Cost":416,"Date":"10/26/2024"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":194,"Cost":167,"Date":"11/16/2024"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":495,"Cost":303,"Date":"11/18/2024"},{"Store":"VenusFort, Tokyo","Brand":"COS","Country":"Japan","Sale":920,"Cost":649,"Date":"12/1/2024"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":533,"Cost":379,"Date":"2/9/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":777,"Cost":612,"Date":"2/11/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":336,"Cost":178,"Date":"3/10/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":237,"Cost":166,"Date":"3/16/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":272,"Cost":233,"Date":"3/18/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":925,"Cost":814,"Date":"3/20/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":426,"Cost":396,"Date":"3/26/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":799,"Cost":578,"Date":"6/2/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":669,"Cost":614,"Date":"6/10/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":841,"Cost":520,"Date":"6/16/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":540,"Cost":454,"Date":"6/25/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":981,"Cost":892,"Date":"7/19/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":343,"Cost":191,"Date":"7/21/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":648,"Cost":573,"Date":"7/25/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":883,"Cost":501,"Date":"8/4/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":1,"Cost":0,"Date":"9/2/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":11,"Cost":8,"Date":"9/4/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":885,"Cost":642,"Date":"9/19/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":942,"Cost":592,"Date":"9/29/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":881,"Cost":664,"Date":"10/2/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":892,"Cost":650,"Date":"10/15/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":19,"Cost":10,"Date":"10/30/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":606,"Cost":409,"Date":"11/9/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":2,"Cost":1,"Date":"11/23/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":809,"Cost":507,"Date":"11/30/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":241,"Cost":149,"Date":"12/8/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":588,"Cost":448,"Date":"12/11/2018"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":340,"Cost":232,"Date":"1/15/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":431,"Cost":235,"Date":"1/24/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":620,"Cost":479,"Date":"2/3/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":975,"Cost":668,"Date":"2/4/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":705,"Cost":374,"Date":"3/9/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":844,"Cost":484,"Date":"3/12/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":364,"Cost":231,"Date":"4/19/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":477,"Cost":421,"Date":"5/3/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":144,"Cost":106,"Date":"5/4/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":522,"Cost":412,"Date":"6/8/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":274,"Cost":239,"Date":"6/26/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":232,"Cost":121,"Date":"7/4/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":535,"Cost":420,"Date":"7/13/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":168,"Cost":111,"Date":"8/8/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":871,"Cost":603,"Date":"8/26/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":677,"Cost":603,"Date":"9/2/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":703,"Cost":406,"Date":"9/29/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":712,"Cost":489,"Date":"10/12/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":515,"Cost":443,"Date":"11/2/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":388,"Cost":367,"Date":"11/4/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":340,"Cost":243,"Date":"11/7/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":968,"Cost":914,"Date":"12/1/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":776,"Cost":400,"Date":"12/4/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":124,"Cost":94,"Date":"12/7/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":23,"Cost":20,"Date":"12/18/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":623,"Cost":544,"Date":"12/20/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":169,"Cost":129,"Date":"12/20/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":726,"Cost":368,"Date":"12/21/2019"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":683,"Cost":475,"Date":"1/9/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":233,"Cost":167,"Date":"2/5/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":286,"Cost":178,"Date":"2/16/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":766,"Cost":648,"Date":"2/16/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":932,"Cost":676,"Date":"2/18/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":428,"Cost":236,"Date":"2/22/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":566,"Cost":393,"Date":"2/25/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":962,"Cost":641,"Date":"3/8/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":258,"Cost":177,"Date":"4/2/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":195,"Cost":129,"Date":"4/3/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":843,"Cost":636,"Date":"4/9/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":681,"Cost":467,"Date":"4/10/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":446,"Cost":395,"Date":"4/19/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":912,"Cost":595,"Date":"5/17/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":143,"Cost":111,"Date":"5/22/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":238,"Cost":197,"Date":"6/20/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":282,"Cost":204,"Date":"7/1/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":664,"Cost":626,"Date":"7/4/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":697,"Cost":582,"Date":"7/8/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":952,"Cost":634,"Date":"7/9/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":303,"Cost":246,"Date":"7/14/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":717,"Cost":651,"Date":"7/19/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":886,"Cost":657,"Date":"8/1/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":27,"Cost":24,"Date":"8/6/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":865,"Cost":509,"Date":"8/7/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":45,"Cost":29,"Date":"8/22/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":705,"Cost":450,"Date":"8/31/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":496,"Cost":261,"Date":"9/1/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":394,"Cost":207,"Date":"9/1/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":478,"Cost":377,"Date":"9/17/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":684,"Cost":460,"Date":"9/29/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":631,"Cost":377,"Date":"11/7/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":550,"Cost":494,"Date":"11/26/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":450,"Cost":404,"Date":"11/27/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":116,"Cost":96,"Date":"12/5/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":322,"Cost":170,"Date":"12/26/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":206,"Cost":175,"Date":"12/31/2020"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":305,"Cost":218,"Date":"1/20/2021"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":383,"Cost":298,"Date":"2/2/2021"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":462,"Cost":257,"Date":"2/8/2021"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":494,"Cost":371,"Date":"2/27/2021"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":5,"Cost":5,"Date":"3/1/2021"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":839,"Cost":618,"Date":"3/1/2021"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":89,"Cost":56,"Date":"3/19/2021"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":503,"Cost":362,"Date":"3/28/2021"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":226,"Cost":154,"Date":"5/21/2021"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":505,"Cost":287,"Date":"7/21/2021"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":328,"Cost":242,"Date":"8/5/2021"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":853,"Cost":529,"Date":"8/12/2021"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":786,"Cost":609,"Date":"8/21/2021"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":335,"Cost":312,"Date":"8/23/2021"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":97,"Cost":50,"Date":"9/3/2021"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":688,"Cost":649,"Date":"9/5/2021"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":28,"Cost":24,"Date":"10/6/2021"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":373,"Cost":219,"Date":"10/19/2021"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":896,"Cost":791,"Date":"11/15/2021"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":590,"Cost":304,"Date":"12/8/2021"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":453,"Cost":425,"Date":"1/8/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":613,"Cost":479,"Date":"1/14/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":454,"Cost":306,"Date":"1/19/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":981,"Cost":587,"Date":"1/28/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":677,"Cost":511,"Date":"1/31/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":239,"Cost":183,"Date":"3/27/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":469,"Cost":434,"Date":"4/20/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":81,"Cost":57,"Date":"4/24/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":73,"Cost":47,"Date":"4/28/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":946,"Cost":511,"Date":"5/15/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":83,"Cost":69,"Date":"5/16/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":78,"Cost":40,"Date":"5/18/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":217,"Cost":158,"Date":"6/2/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":348,"Cost":294,"Date":"6/3/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":973,"Cost":591,"Date":"6/5/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":867,"Cost":817,"Date":"6/7/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":374,"Cost":265,"Date":"6/14/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":618,"Cost":431,"Date":"6/20/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":220,"Cost":157,"Date":"6/24/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":834,"Cost":679,"Date":"7/4/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":501,"Cost":280,"Date":"7/9/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":440,"Cost":360,"Date":"7/12/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":809,"Cost":445,"Date":"8/14/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":728,"Cost":579,"Date":"8/16/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":752,"Cost":654,"Date":"8/23/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":815,"Cost":442,"Date":"9/2/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":218,"Cost":157,"Date":"9/3/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":113,"Cost":58,"Date":"9/16/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":352,"Cost":240,"Date":"10/4/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":688,"Cost":569,"Date":"11/1/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":887,"Cost":776,"Date":"11/2/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":438,"Cost":364,"Date":"12/17/2022"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":553,"Cost":303,"Date":"2/10/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":226,"Cost":202,"Date":"2/28/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":661,"Cost":582,"Date":"3/4/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":692,"Cost":451,"Date":"3/9/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":823,"Cost":599,"Date":"3/9/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":212,"Cost":156,"Date":"3/11/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":717,"Cost":451,"Date":"3/17/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":757,"Cost":549,"Date":"3/17/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":840,"Cost":439,"Date":"3/23/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":437,"Cost":337,"Date":"4/1/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":290,"Cost":257,"Date":"5/7/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":886,"Cost":765,"Date":"5/10/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":913,"Cost":786,"Date":"5/20/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":830,"Cost":519,"Date":"6/2/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":43,"Cost":41,"Date":"6/11/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":617,"Cost":397,"Date":"6/16/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":36,"Cost":22,"Date":"6/16/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":444,"Cost":346,"Date":"7/10/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":902,"Cost":755,"Date":"7/11/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":174,"Cost":163,"Date":"8/28/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":166,"Cost":139,"Date":"8/29/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":936,"Cost":717,"Date":"8/31/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":552,"Cost":472,"Date":"9/8/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":579,"Cost":426,"Date":"9/13/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":832,"Cost":441,"Date":"9/14/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":667,"Cost":337,"Date":"9/19/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":668,"Cost":439,"Date":"9/25/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":24,"Cost":17,"Date":"10/4/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":259,"Cost":150,"Date":"10/10/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":143,"Cost":83,"Date":"10/17/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":469,"Cost":254,"Date":"10/28/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":370,"Cost":225,"Date":"10/30/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":120,"Cost":91,"Date":"11/1/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":786,"Cost":535,"Date":"11/15/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":839,"Cost":641,"Date":"11/25/2023"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":242,"Cost":167,"Date":"1/10/2024"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":822,"Cost":445,"Date":"1/14/2024"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":660,"Cost":541,"Date":"1/20/2024"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":160,"Cost":132,"Date":"2/8/2024"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":259,"Cost":222,"Date":"2/25/2024"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":899,"Cost":674,"Date":"3/7/2024"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":616,"Cost":505,"Date":"3/14/2024"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":769,"Cost":508,"Date":"3/27/2024"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":83,"Cost":51,"Date":"4/5/2024"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":812,"Cost":653,"Date":"4/14/2024"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":163,"Cost":121,"Date":"5/3/2024"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":268,"Cost":147,"Date":"5/9/2024"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":148,"Cost":137,"Date":"5/15/2024"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":700,"Cost":647,"Date":"5/25/2024"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":505,"Cost":411,"Date":"5/26/2024"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":612,"Cost":423,"Date":"5/31/2024"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":472,"Cost":351,"Date":"7/27/2024"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":494,"Cost":305,"Date":"9/17/2024"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":845,"Cost":583,"Date":"10/6/2024"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":955,"Cost":872,"Date":"10/8/2024"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":292,"Cost":195,"Date":"10/26/2024"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":18,"Cost":17,"Date":"11/16/2024"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":378,"Cost":249,"Date":"11/18/2024"},{"Store":"Grand Front Osaka","Brand":"Sellpy","Country":"Japan","Sale":736,"Cost":398,"Date":"12/1/2024"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":828,"Cost":461,"Date":"2/9/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":124,"Cost":67,"Date":"2/11/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":872,"Cost":680,"Date":"3/10/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":734,"Cost":532,"Date":"3/16/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":76,"Cost":73,"Date":"3/18/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":883,"Cost":668,"Date":"3/20/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":665,"Cost":457,"Date":"3/26/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":92,"Cost":61,"Date":"6/2/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":287,"Cost":268,"Date":"6/10/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":128,"Cost":72,"Date":"6/16/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":982,"Cost":752,"Date":"6/25/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":873,"Cost":645,"Date":"7/19/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":654,"Cost":537,"Date":"7/21/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":939,"Cost":626,"Date":"7/25/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":515,"Cost":317,"Date":"8/4/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":872,"Cost":472,"Date":"9/2/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":37,"Cost":19,"Date":"9/4/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":22,"Cost":21,"Date":"9/19/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":537,"Cost":504,"Date":"9/29/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":756,"Cost":559,"Date":"10/2/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":685,"Cost":537,"Date":"10/15/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":926,"Cost":490,"Date":"10/30/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":642,"Cost":519,"Date":"11/9/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":801,"Cost":556,"Date":"11/23/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":156,"Cost":92,"Date":"11/30/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":576,"Cost":326,"Date":"12/8/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":208,"Cost":130,"Date":"12/11/2018"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":682,"Cost":480,"Date":"1/15/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":891,"Cost":697,"Date":"1/24/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":339,"Cost":178,"Date":"2/3/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":528,"Cost":366,"Date":"2/4/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":707,"Cost":664,"Date":"3/9/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":316,"Cost":233,"Date":"3/12/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":452,"Cost":250,"Date":"4/19/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":128,"Cost":116,"Date":"5/3/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":264,"Cost":186,"Date":"5/4/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":394,"Cost":252,"Date":"6/8/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":113,"Cost":79,"Date":"6/26/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":736,"Cost":676,"Date":"7/4/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":7,"Cost":7,"Date":"7/13/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":73,"Cost":40,"Date":"8/8/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":441,"Cost":229,"Date":"8/26/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":999,"Cost":701,"Date":"9/2/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":745,"Cost":624,"Date":"9/29/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":257,"Cost":189,"Date":"10/12/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":216,"Cost":198,"Date":"11/2/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":938,"Cost":877,"Date":"11/4/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":565,"Cost":493,"Date":"11/7/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":121,"Cost":105,"Date":"12/1/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":282,"Cost":237,"Date":"12/4/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":40,"Cost":26,"Date":"12/7/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":64,"Cost":32,"Date":"12/18/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":598,"Cost":369,"Date":"12/20/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":622,"Cost":552,"Date":"12/20/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":941,"Cost":636,"Date":"12/21/2019"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":908,"Cost":820,"Date":"1/9/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":625,"Cost":570,"Date":"2/5/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":571,"Cost":302,"Date":"2/16/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":51,"Cost":47,"Date":"2/16/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":313,"Cost":244,"Date":"2/18/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":895,"Cost":778,"Date":"2/22/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":372,"Cost":236,"Date":"2/25/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":496,"Cost":337,"Date":"3/8/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":713,"Cost":510,"Date":"4/2/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":46,"Cost":34,"Date":"4/3/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":405,"Cost":350,"Date":"4/9/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":421,"Cost":231,"Date":"4/10/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":232,"Cost":205,"Date":"4/19/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":858,"Cost":432,"Date":"5/17/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":102,"Cost":77,"Date":"5/22/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":306,"Cost":280,"Date":"6/20/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":101,"Cost":75,"Date":"7/1/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":358,"Cost":266,"Date":"7/4/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":46,"Cost":35,"Date":"7/8/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":205,"Cost":130,"Date":"7/9/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":269,"Cost":255,"Date":"7/14/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":954,"Cost":843,"Date":"7/19/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":668,"Cost":340,"Date":"8/1/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":278,"Cost":254,"Date":"8/6/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":534,"Cost":469,"Date":"8/7/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":804,"Cost":508,"Date":"8/22/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":485,"Cost":300,"Date":"8/31/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":961,"Cost":807,"Date":"9/1/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":241,"Cost":192,"Date":"9/1/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":71,"Cost":39,"Date":"9/17/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":54,"Cost":45,"Date":"9/29/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":756,"Cost":473,"Date":"11/7/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":377,"Cost":222,"Date":"11/26/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":107,"Cost":89,"Date":"11/27/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":560,"Cost":412,"Date":"12/5/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":984,"Cost":815,"Date":"12/26/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":811,"Cost":500,"Date":"12/31/2020"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":660,"Cost":514,"Date":"1/20/2021"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":340,"Cost":173,"Date":"2/2/2021"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":213,"Cost":121,"Date":"2/8/2021"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":394,"Cost":312,"Date":"2/27/2021"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":37,"Cost":33,"Date":"3/1/2021"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":770,"Cost":551,"Date":"3/1/2021"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":276,"Cost":186,"Date":"3/19/2021"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":984,"Cost":853,"Date":"3/28/2021"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":51,"Cost":47,"Date":"5/21/2021"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":678,"Cost":571,"Date":"7/21/2021"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":949,"Cost":754,"Date":"8/5/2021"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":190,"Cost":142,"Date":"8/12/2021"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":948,"Cost":596,"Date":"8/21/2021"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":636,"Cost":355,"Date":"8/23/2021"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":27,"Cost":20,"Date":"9/3/2021"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":397,"Cost":278,"Date":"9/5/2021"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":497,"Cost":264,"Date":"10/6/2021"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":461,"Cost":333,"Date":"10/19/2021"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":512,"Cost":411,"Date":"11/15/2021"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":249,"Cost":148,"Date":"12/8/2021"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":702,"Cost":446,"Date":"1/8/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":433,"Cost":309,"Date":"1/14/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":298,"Cost":216,"Date":"1/19/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":175,"Cost":126,"Date":"1/28/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":948,"Cost":880,"Date":"1/31/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":306,"Cost":204,"Date":"3/27/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":839,"Cost":586,"Date":"4/20/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":449,"Cost":239,"Date":"4/24/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":942,"Cost":493,"Date":"4/28/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":655,"Cost":605,"Date":"5/15/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":239,"Cost":195,"Date":"5/16/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":256,"Cost":128,"Date":"5/18/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":104,"Cost":73,"Date":"6/2/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":759,"Cost":408,"Date":"6/3/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":248,"Cost":196,"Date":"6/5/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":34,"Cost":24,"Date":"6/7/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":244,"Cost":197,"Date":"6/14/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":118,"Cost":65,"Date":"6/20/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":36,"Cost":32,"Date":"6/24/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":574,"Cost":511,"Date":"7/4/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":961,"Cost":534,"Date":"7/9/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":5,"Cost":5,"Date":"7/12/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":656,"Cost":529,"Date":"8/14/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":12,"Cost":12,"Date":"8/16/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":343,"Cost":185,"Date":"8/23/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":613,"Cost":560,"Date":"9/2/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":633,"Cost":530,"Date":"9/3/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":898,"Cost":496,"Date":"9/16/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":64,"Cost":61,"Date":"10/4/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":658,"Cost":389,"Date":"11/1/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":991,"Cost":685,"Date":"11/2/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":401,"Cost":249,"Date":"12/17/2022"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":369,"Cost":304,"Date":"2/10/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":755,"Cost":442,"Date":"2/28/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":754,"Cost":578,"Date":"3/4/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":59,"Cost":32,"Date":"3/9/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":409,"Cost":262,"Date":"3/9/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":405,"Cost":336,"Date":"3/11/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":643,"Cost":494,"Date":"3/17/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":170,"Cost":86,"Date":"3/17/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":84,"Cost":62,"Date":"3/23/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":837,"Cost":657,"Date":"4/1/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":31,"Cost":19,"Date":"5/7/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":498,"Cost":343,"Date":"5/10/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":198,"Cost":147,"Date":"5/20/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":252,"Cost":163,"Date":"6/2/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":56,"Cost":30,"Date":"6/11/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":526,"Cost":492,"Date":"6/16/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":210,"Cost":199,"Date":"6/16/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":798,"Cost":647,"Date":"7/10/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":138,"Cost":88,"Date":"7/11/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":241,"Cost":214,"Date":"8/28/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":592,"Cost":533,"Date":"8/29/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":987,"Cost":807,"Date":"8/31/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":337,"Cost":246,"Date":"9/8/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":297,"Cost":241,"Date":"9/13/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":785,"Cost":599,"Date":"9/14/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":916,"Cost":570,"Date":"9/19/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":550,"Cost":504,"Date":"9/25/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":761,"Cost":574,"Date":"10/4/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":566,"Cost":524,"Date":"10/10/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":518,"Cost":349,"Date":"10/17/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":458,"Cost":425,"Date":"10/28/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":789,"Cost":656,"Date":"10/30/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":669,"Cost":614,"Date":"11/1/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":757,"Cost":692,"Date":"11/15/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":811,"Cost":540,"Date":"11/25/2023"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":536,"Cost":304,"Date":"1/10/2024"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":979,"Cost":882,"Date":"1/14/2024"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":367,"Cost":198,"Date":"1/20/2024"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":491,"Cost":414,"Date":"2/8/2024"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":881,"Cost":662,"Date":"2/25/2024"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":900,"Cost":643,"Date":"3/7/2024"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":422,"Cost":365,"Date":"3/14/2024"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":481,"Cost":411,"Date":"3/27/2024"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":705,"Cost":638,"Date":"4/5/2024"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":148,"Cost":126,"Date":"4/14/2024"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":841,"Cost":456,"Date":"5/3/2024"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":568,"Cost":427,"Date":"5/9/2024"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":216,"Cost":128,"Date":"5/15/2024"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":549,"Cost":326,"Date":"5/25/2024"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":232,"Cost":122,"Date":"5/26/2024"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":365,"Cost":216,"Date":"5/31/2024"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":475,"Cost":266,"Date":"7/27/2024"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":939,"Cost":487,"Date":"9/17/2024"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":988,"Cost":572,"Date":"10/6/2024"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":969,"Cost":821,"Date":"10/8/2024"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":171,"Cost":100,"Date":"10/26/2024"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":540,"Cost":436,"Date":"11/16/2024"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":743,"Cost":567,"Date":"11/18/2024"},{"Store":"Grand Front Osaka","Brand":"Jeans","Country":"Japan","Sale":74,"Cost":59,"Date":"12/1/2024"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":652,"Cost":369,"Date":"2/9/2018"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":902,"Cost":822,"Date":"2/11/2018"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":901,"Cost":504,"Date":"3/10/2018"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":463,"Cost":412,"Date":"3/16/2018"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":260,"Cost":195,"Date":"3/18/2018"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":212,"Cost":154,"Date":"3/20/2018"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":525,"Cost":403,"Date":"3/26/2018"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":372,"Cost":333,"Date":"6/2/2018"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":805,"Cost":559,"Date":"6/10/2018"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":918,"Cost":604,"Date":"6/16/2018"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":216,"Cost":161,"Date":"6/25/2018"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":115,"Cost":85,"Date":"7/19/2018"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":364,"Cost":238,"Date":"7/21/2018"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":433,"Cost":364,"Date":"7/25/2018"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":208,"Cost":136,"Date":"8/4/2018"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":739,"Cost":493,"Date":"9/2/2018"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":215,"Cost":166,"Date":"9/4/2018"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":195,"Cost":152,"Date":"9/19/2018"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":77,"Cost":70,"Date":"9/29/2018"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":932,"Cost":473,"Date":"10/2/2018"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":370,"Cost":214,"Date":"10/15/2018"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":778,"Cost":602,"Date":"10/30/2018"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":697,"Cost":375,"Date":"11/9/2018"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":566,"Cost":331,"Date":"11/23/2018"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":916,"Cost":484,"Date":"11/30/2018"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":425,"Cost":360,"Date":"12/8/2018"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":866,"Cost":652,"Date":"12/11/2018"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":784,"Cost":627,"Date":"1/15/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":508,"Cost":453,"Date":"1/24/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":301,"Cost":192,"Date":"2/3/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":618,"Cost":495,"Date":"2/4/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":597,"Cost":373,"Date":"3/9/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":709,"Cost":459,"Date":"3/12/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":146,"Cost":120,"Date":"4/19/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":750,"Cost":576,"Date":"5/3/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":993,"Cost":621,"Date":"5/4/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":162,"Cost":143,"Date":"6/8/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":49,"Cost":27,"Date":"6/26/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":489,"Cost":322,"Date":"7/4/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":949,"Cost":495,"Date":"7/13/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":951,"Cost":549,"Date":"8/8/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":211,"Cost":138,"Date":"8/26/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":391,"Cost":311,"Date":"9/2/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":726,"Cost":369,"Date":"9/29/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":237,"Cost":190,"Date":"10/12/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":858,"Cost":575,"Date":"11/2/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":600,"Cost":404,"Date":"11/4/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":203,"Cost":191,"Date":"11/7/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":20,"Cost":18,"Date":"12/1/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":589,"Cost":315,"Date":"12/4/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":981,"Cost":767,"Date":"12/7/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":877,"Cost":503,"Date":"12/18/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":961,"Cost":816,"Date":"12/20/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":73,"Cost":66,"Date":"12/20/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":435,"Cost":240,"Date":"12/21/2019"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":275,"Cost":245,"Date":"1/9/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":946,"Cost":556,"Date":"2/5/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":315,"Cost":189,"Date":"2/16/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":413,"Cost":368,"Date":"2/16/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":582,"Cost":499,"Date":"2/18/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":430,"Cost":288,"Date":"2/22/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":607,"Cost":396,"Date":"2/25/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":232,"Cost":154,"Date":"3/8/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":672,"Cost":392,"Date":"4/2/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":593,"Cost":312,"Date":"4/3/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":500,"Cost":382,"Date":"4/9/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":447,"Cost":251,"Date":"4/10/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":173,"Cost":143,"Date":"4/19/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":568,"Cost":327,"Date":"5/17/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":140,"Cost":80,"Date":"5/22/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":160,"Cost":87,"Date":"6/20/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":26,"Cost":13,"Date":"7/1/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":929,"Cost":808,"Date":"7/4/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":26,"Cost":17,"Date":"7/8/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":426,"Cost":399,"Date":"7/9/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":276,"Cost":188,"Date":"7/14/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":173,"Cost":129,"Date":"7/19/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":879,"Cost":490,"Date":"8/1/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":919,"Cost":725,"Date":"8/6/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":652,"Cost":540,"Date":"8/7/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":720,"Cost":389,"Date":"8/22/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":802,"Cost":556,"Date":"8/31/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":511,"Cost":397,"Date":"9/1/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":78,"Cost":65,"Date":"9/1/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":681,"Cost":560,"Date":"9/17/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":322,"Cost":258,"Date":"9/29/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":998,"Cost":783,"Date":"11/7/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":676,"Cost":565,"Date":"11/26/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":712,"Cost":536,"Date":"11/27/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":288,"Cost":269,"Date":"12/5/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":410,"Cost":345,"Date":"12/26/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":501,"Cost":389,"Date":"12/31/2020"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":442,"Cost":413,"Date":"1/20/2021"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":71,"Cost":39,"Date":"2/2/2021"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":853,"Cost":524,"Date":"2/8/2021"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":476,"Cost":417,"Date":"2/27/2021"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":491,"Cost":267,"Date":"3/1/2021"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":482,"Cost":324,"Date":"3/1/2021"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":45,"Cost":25,"Date":"3/19/2021"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":393,"Cost":222,"Date":"3/28/2021"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":891,"Cost":597,"Date":"5/21/2021"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":580,"Cost":494,"Date":"7/21/2021"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":845,"Cost":693,"Date":"8/5/2021"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":570,"Cost":306,"Date":"8/12/2021"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":804,"Cost":510,"Date":"8/21/2021"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":544,"Cost":328,"Date":"8/23/2021"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":856,"Cost":808,"Date":"9/3/2021"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":676,"Cost":444,"Date":"9/5/2021"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":388,"Cost":210,"Date":"10/6/2021"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":138,"Cost":100,"Date":"10/19/2021"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":805,"Cost":460,"Date":"11/15/2021"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":551,"Cost":277,"Date":"12/8/2021"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":643,"Cost":396,"Date":"1/8/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":950,"Cost":854,"Date":"1/14/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":214,"Cost":168,"Date":"1/19/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":271,"Cost":232,"Date":"1/28/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":55,"Cost":48,"Date":"1/31/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":560,"Cost":400,"Date":"3/27/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":560,"Cost":349,"Date":"4/20/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":816,"Cost":593,"Date":"4/24/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":453,"Cost":326,"Date":"4/28/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":266,"Cost":237,"Date":"5/15/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":645,"Cost":426,"Date":"5/16/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":739,"Cost":383,"Date":"5/18/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":910,"Cost":741,"Date":"6/2/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":230,"Cost":198,"Date":"6/3/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":185,"Cost":95,"Date":"6/5/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":974,"Cost":669,"Date":"6/7/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":647,"Cost":545,"Date":"6/14/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":398,"Cost":281,"Date":"6/20/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":34,"Cost":27,"Date":"6/24/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":562,"Cost":286,"Date":"7/4/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":232,"Cost":149,"Date":"7/9/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":791,"Cost":556,"Date":"7/12/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":402,"Cost":293,"Date":"8/14/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":974,"Cost":704,"Date":"8/16/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":480,"Cost":396,"Date":"8/23/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":260,"Cost":217,"Date":"9/2/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":986,"Cost":856,"Date":"9/3/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":46,"Cost":35,"Date":"9/16/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":645,"Cost":441,"Date":"10/4/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":454,"Cost":427,"Date":"11/1/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":933,"Cost":621,"Date":"11/2/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":726,"Cost":538,"Date":"12/17/2022"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":347,"Cost":228,"Date":"2/10/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":483,"Cost":303,"Date":"2/28/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":279,"Cost":176,"Date":"3/4/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":381,"Cost":202,"Date":"3/9/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":536,"Cost":496,"Date":"3/9/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":583,"Cost":541,"Date":"3/11/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":585,"Cost":438,"Date":"3/17/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":185,"Cost":106,"Date":"3/17/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":644,"Cost":588,"Date":"3/23/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":305,"Cost":214,"Date":"4/1/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":934,"Cost":808,"Date":"5/7/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":836,"Cost":646,"Date":"5/10/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":197,"Cost":143,"Date":"5/20/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":957,"Cost":646,"Date":"6/2/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":163,"Cost":86,"Date":"6/11/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":970,"Cost":779,"Date":"6/16/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":297,"Cost":156,"Date":"6/16/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":942,"Cost":560,"Date":"7/10/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":477,"Cost":319,"Date":"7/11/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":54,"Cost":41,"Date":"8/28/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":841,"Cost":559,"Date":"8/29/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":795,"Cost":417,"Date":"8/31/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":644,"Cost":376,"Date":"9/8/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":112,"Cost":106,"Date":"9/13/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":448,"Cost":317,"Date":"9/14/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":204,"Cost":122,"Date":"9/19/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":179,"Cost":122,"Date":"9/25/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":80,"Cost":57,"Date":"10/4/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":801,"Cost":549,"Date":"10/10/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":990,"Cost":937,"Date":"10/17/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":827,"Cost":627,"Date":"10/28/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":507,"Cost":401,"Date":"10/30/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":121,"Cost":81,"Date":"11/1/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":225,"Cost":121,"Date":"11/15/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":524,"Cost":359,"Date":"11/25/2023"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":495,"Cost":271,"Date":"1/10/2024"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":692,"Cost":353,"Date":"1/14/2024"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":985,"Cost":866,"Date":"1/20/2024"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":524,"Cost":387,"Date":"2/8/2024"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":15,"Cost":12,"Date":"2/25/2024"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":747,"Cost":698,"Date":"3/7/2024"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":620,"Cost":555,"Date":"3/14/2024"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":711,"Cost":606,"Date":"3/27/2024"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":753,"Cost":663,"Date":"4/5/2024"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":70,"Cost":48,"Date":"4/14/2024"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":674,"Cost":535,"Date":"5/3/2024"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":482,"Cost":354,"Date":"5/9/2024"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":815,"Cost":743,"Date":"5/15/2024"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":929,"Cost":600,"Date":"5/25/2024"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":16,"Cost":13,"Date":"5/26/2024"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":806,"Cost":764,"Date":"5/31/2024"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":821,"Cost":475,"Date":"7/27/2024"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":6,"Cost":4,"Date":"9/17/2024"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":667,"Cost":528,"Date":"10/6/2024"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":740,"Cost":694,"Date":"10/8/2024"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":613,"Cost":424,"Date":"10/26/2024"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":27,"Cost":14,"Date":"11/16/2024"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":424,"Cost":345,"Date":"11/18/2024"},{"Store":"Grand Front Osaka","Brand":"ARKET","Country":"Japan","Sale":842,"Cost":678,"Date":"12/1/2024"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":361,"Cost":321,"Date":"2/9/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":233,"Cost":121,"Date":"2/11/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":805,"Cost":732,"Date":"3/10/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":5,"Cost":3,"Date":"3/16/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":294,"Cost":268,"Date":"3/18/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":660,"Cost":399,"Date":"3/20/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":801,"Cost":481,"Date":"3/26/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":236,"Cost":175,"Date":"6/2/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":88,"Cost":58,"Date":"6/10/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":771,"Cost":413,"Date":"6/16/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":684,"Cost":420,"Date":"6/25/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":212,"Cost":177,"Date":"7/19/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":941,"Cost":563,"Date":"7/21/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":176,"Cost":129,"Date":"7/25/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":664,"Cost":619,"Date":"8/4/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":519,"Cost":407,"Date":"9/2/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":337,"Cost":270,"Date":"9/4/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":335,"Cost":316,"Date":"9/19/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":361,"Cost":296,"Date":"9/29/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":904,"Cost":511,"Date":"10/2/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":136,"Cost":77,"Date":"10/15/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":393,"Cost":338,"Date":"10/30/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":502,"Cost":365,"Date":"11/9/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":608,"Cost":515,"Date":"11/23/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":524,"Cost":497,"Date":"11/30/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":537,"Cost":461,"Date":"12/8/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":252,"Cost":218,"Date":"12/11/2018"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":436,"Cost":298,"Date":"1/15/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":352,"Cost":263,"Date":"1/24/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":829,"Cost":724,"Date":"2/3/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":124,"Cost":78,"Date":"2/4/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":193,"Cost":104,"Date":"3/9/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":716,"Cost":566,"Date":"3/12/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":626,"Cost":541,"Date":"4/19/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":585,"Cost":433,"Date":"5/3/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":115,"Cost":94,"Date":"5/4/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":346,"Cost":296,"Date":"6/8/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":612,"Cost":466,"Date":"6/26/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":34,"Cost":17,"Date":"7/4/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":450,"Cost":266,"Date":"7/13/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":392,"Cost":303,"Date":"8/8/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":867,"Cost":537,"Date":"8/26/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":243,"Cost":128,"Date":"9/2/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":897,"Cost":726,"Date":"9/29/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":817,"Cost":455,"Date":"10/12/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":402,"Cost":339,"Date":"11/2/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":786,"Cost":483,"Date":"11/4/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":522,"Cost":493,"Date":"11/7/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":23,"Cost":13,"Date":"12/1/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":938,"Cost":673,"Date":"12/4/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":521,"Cost":424,"Date":"12/7/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":514,"Cost":331,"Date":"12/18/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":488,"Cost":403,"Date":"12/20/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":722,"Cost":400,"Date":"12/20/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":536,"Cost":329,"Date":"12/21/2019"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":905,"Cost":471,"Date":"1/9/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":297,"Cost":164,"Date":"2/5/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":758,"Cost":505,"Date":"2/16/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":446,"Cost":262,"Date":"2/16/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":391,"Cost":336,"Date":"2/18/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":128,"Cost":66,"Date":"2/22/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":391,"Cost":332,"Date":"2/25/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":549,"Cost":350,"Date":"3/8/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":738,"Cost":538,"Date":"4/2/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":577,"Cost":413,"Date":"4/3/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":402,"Cost":313,"Date":"4/9/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":67,"Cost":52,"Date":"4/10/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":270,"Cost":238,"Date":"4/19/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":192,"Cost":181,"Date":"5/17/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":601,"Cost":419,"Date":"5/22/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":96,"Cost":89,"Date":"6/20/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":630,"Cost":559,"Date":"7/1/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":252,"Cost":181,"Date":"7/4/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":867,"Cost":622,"Date":"7/8/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":460,"Cost":426,"Date":"7/9/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":142,"Cost":128,"Date":"7/14/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":807,"Cost":638,"Date":"7/19/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":463,"Cost":389,"Date":"8/1/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":976,"Cost":829,"Date":"8/6/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":80,"Cost":42,"Date":"8/7/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":117,"Cost":61,"Date":"8/22/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":118,"Cost":101,"Date":"8/31/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":740,"Cost":418,"Date":"9/1/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":630,"Cost":322,"Date":"9/1/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":988,"Cost":843,"Date":"9/17/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":912,"Cost":488,"Date":"9/29/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":844,"Cost":474,"Date":"11/7/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":492,"Cost":350,"Date":"11/26/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":952,"Cost":812,"Date":"11/27/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":862,"Cost":803,"Date":"12/5/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":13,"Cost":8,"Date":"12/26/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":462,"Cost":398,"Date":"12/31/2020"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":807,"Cost":599,"Date":"1/20/2021"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":557,"Cost":408,"Date":"2/2/2021"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":386,"Cost":271,"Date":"2/8/2021"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":888,"Cost":649,"Date":"2/27/2021"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":820,"Cost":530,"Date":"3/1/2021"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":360,"Cost":287,"Date":"3/1/2021"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":488,"Cost":298,"Date":"3/19/2021"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":318,"Cost":293,"Date":"3/28/2021"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":82,"Cost":75,"Date":"5/21/2021"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":831,"Cost":700,"Date":"7/21/2021"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":552,"Cost":457,"Date":"8/5/2021"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":344,"Cost":198,"Date":"8/12/2021"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":746,"Cost":660,"Date":"8/21/2021"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":313,"Cost":209,"Date":"8/23/2021"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":418,"Cost":378,"Date":"9/3/2021"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":583,"Cost":343,"Date":"9/5/2021"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":472,"Cost":415,"Date":"10/6/2021"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":402,"Cost":371,"Date":"10/19/2021"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":337,"Cost":233,"Date":"11/15/2021"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":301,"Cost":168,"Date":"12/8/2021"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":509,"Cost":438,"Date":"1/8/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":193,"Cost":99,"Date":"1/14/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":427,"Cost":293,"Date":"1/19/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":829,"Cost":431,"Date":"1/28/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":972,"Cost":765,"Date":"1/31/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":206,"Cost":157,"Date":"3/27/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":505,"Cost":374,"Date":"4/20/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":16,"Cost":14,"Date":"4/24/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":804,"Cost":646,"Date":"4/28/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":527,"Cost":423,"Date":"5/15/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":975,"Cost":558,"Date":"5/16/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":531,"Cost":370,"Date":"5/18/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":286,"Cost":261,"Date":"6/2/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":781,"Cost":740,"Date":"6/3/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":965,"Cost":622,"Date":"6/5/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":776,"Cost":534,"Date":"6/7/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":757,"Cost":578,"Date":"6/14/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":499,"Cost":402,"Date":"6/20/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":512,"Cost":353,"Date":"6/24/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":342,"Cost":280,"Date":"7/4/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":366,"Cost":248,"Date":"7/9/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":443,"Cost":281,"Date":"7/12/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":208,"Cost":161,"Date":"8/14/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":331,"Cost":265,"Date":"8/16/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":162,"Cost":81,"Date":"8/23/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":773,"Cost":497,"Date":"9/2/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":330,"Cost":226,"Date":"9/3/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":892,"Cost":547,"Date":"9/16/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":651,"Cost":596,"Date":"10/4/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":56,"Cost":34,"Date":"11/1/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":11,"Cost":8,"Date":"11/2/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":371,"Cost":196,"Date":"12/17/2022"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":484,"Cost":320,"Date":"2/10/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":608,"Cost":429,"Date":"2/28/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":954,"Cost":791,"Date":"3/4/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":960,"Cost":652,"Date":"3/9/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":191,"Cost":174,"Date":"3/9/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":204,"Cost":135,"Date":"3/11/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":247,"Cost":131,"Date":"3/17/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":385,"Cost":342,"Date":"3/17/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":811,"Cost":726,"Date":"3/23/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":216,"Cost":176,"Date":"4/1/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":966,"Cost":577,"Date":"5/7/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":201,"Cost":118,"Date":"5/10/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":384,"Cost":244,"Date":"5/20/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":159,"Cost":109,"Date":"6/2/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":617,"Cost":369,"Date":"6/11/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":951,"Cost":529,"Date":"6/16/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":35,"Cost":31,"Date":"6/16/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":557,"Cost":353,"Date":"7/10/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":231,"Cost":213,"Date":"7/11/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":677,"Cost":597,"Date":"8/28/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":374,"Cost":307,"Date":"8/29/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":276,"Cost":141,"Date":"8/31/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":666,"Cost":428,"Date":"9/8/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":461,"Cost":346,"Date":"9/13/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":75,"Cost":57,"Date":"9/14/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":697,"Cost":404,"Date":"9/19/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":717,"Cost":565,"Date":"9/25/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":338,"Cost":269,"Date":"10/4/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":77,"Cost":44,"Date":"10/10/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":911,"Cost":621,"Date":"10/17/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":615,"Cost":435,"Date":"10/28/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":624,"Cost":373,"Date":"10/30/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":435,"Cost":244,"Date":"11/1/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":774,"Cost":627,"Date":"11/15/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":897,"Cost":540,"Date":"11/25/2023"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":247,"Cost":178,"Date":"1/10/2024"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":828,"Cost":603,"Date":"1/14/2024"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":874,"Cost":611,"Date":"1/20/2024"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":106,"Cost":95,"Date":"2/8/2024"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":456,"Cost":297,"Date":"2/25/2024"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":244,"Cost":167,"Date":"3/7/2024"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":590,"Cost":405,"Date":"3/14/2024"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":52,"Cost":31,"Date":"3/27/2024"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":494,"Cost":385,"Date":"4/5/2024"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":549,"Cost":482,"Date":"4/14/2024"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":14,"Cost":9,"Date":"5/3/2024"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":504,"Cost":454,"Date":"5/9/2024"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":50,"Cost":29,"Date":"5/15/2024"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":696,"Cost":599,"Date":"5/25/2024"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":833,"Cost":608,"Date":"5/26/2024"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":563,"Cost":300,"Date":"5/31/2024"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":860,"Cost":780,"Date":"7/27/2024"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":590,"Cost":535,"Date":"9/17/2024"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":127,"Cost":86,"Date":"10/6/2024"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":779,"Cost":676,"Date":"10/8/2024"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":637,"Cost":515,"Date":"10/26/2024"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":375,"Cost":206,"Date":"11/16/2024"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":365,"Cost":226,"Date":"11/18/2024"},{"Store":"Namba Parks, Osaka","Brand":"COS","Country":"Japan","Sale":508,"Cost":455,"Date":"12/1/2024"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":238,"Cost":134,"Date":"2/9/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":402,"Cost":291,"Date":"2/11/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":505,"Cost":297,"Date":"3/10/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":201,"Cost":151,"Date":"3/16/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":206,"Cost":162,"Date":"3/18/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":210,"Cost":181,"Date":"3/20/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":524,"Cost":285,"Date":"3/26/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":510,"Cost":483,"Date":"6/2/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":56,"Cost":48,"Date":"6/10/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":486,"Cost":379,"Date":"6/16/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":183,"Cost":155,"Date":"6/25/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":979,"Cost":879,"Date":"7/19/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":548,"Cost":396,"Date":"7/21/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":758,"Cost":382,"Date":"7/25/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":578,"Cost":500,"Date":"8/4/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":768,"Cost":548,"Date":"9/2/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":265,"Cost":133,"Date":"9/4/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":434,"Cost":273,"Date":"9/19/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":950,"Cost":635,"Date":"9/29/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":380,"Cost":342,"Date":"10/2/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":4,"Cost":4,"Date":"10/15/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":364,"Cost":336,"Date":"10/30/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":991,"Cost":536,"Date":"11/9/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":207,"Cost":157,"Date":"11/23/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":999,"Cost":805,"Date":"11/30/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":491,"Cost":456,"Date":"12/8/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":511,"Cost":421,"Date":"12/11/2018"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":188,"Cost":97,"Date":"1/15/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":552,"Cost":287,"Date":"1/24/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":749,"Cost":512,"Date":"2/3/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":584,"Cost":405,"Date":"2/4/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":371,"Cost":343,"Date":"3/9/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":793,"Cost":468,"Date":"3/12/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":237,"Cost":171,"Date":"4/19/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":113,"Cost":73,"Date":"5/3/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":720,"Cost":651,"Date":"5/4/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":713,"Cost":553,"Date":"6/8/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":596,"Cost":462,"Date":"6/26/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":15,"Cost":11,"Date":"7/4/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":314,"Cost":276,"Date":"7/13/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":430,"Cost":300,"Date":"8/8/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":83,"Cost":75,"Date":"8/26/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":515,"Cost":370,"Date":"9/2/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":130,"Cost":121,"Date":"9/29/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":608,"Cost":339,"Date":"10/12/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":702,"Cost":622,"Date":"11/2/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":523,"Cost":463,"Date":"11/4/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":207,"Cost":182,"Date":"11/7/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":448,"Cost":282,"Date":"12/1/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":613,"Cost":461,"Date":"12/4/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":267,"Cost":229,"Date":"12/7/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":231,"Cost":186,"Date":"12/18/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":43,"Cost":25,"Date":"12/20/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":634,"Cost":484,"Date":"12/20/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":933,"Cost":775,"Date":"12/21/2019"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":289,"Cost":267,"Date":"1/9/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":755,"Cost":426,"Date":"2/5/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":845,"Cost":495,"Date":"2/16/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":827,"Cost":720,"Date":"2/16/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":166,"Cost":99,"Date":"2/18/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":719,"Cost":604,"Date":"2/22/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":143,"Cost":108,"Date":"2/25/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":706,"Cost":430,"Date":"3/8/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":122,"Cost":64,"Date":"4/2/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":269,"Cost":187,"Date":"4/3/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":978,"Cost":513,"Date":"4/9/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":609,"Cost":561,"Date":"4/10/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":306,"Cost":252,"Date":"4/19/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":538,"Cost":442,"Date":"5/17/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":941,"Cost":652,"Date":"5/22/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":438,"Cost":369,"Date":"6/20/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":566,"Cost":474,"Date":"7/1/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":346,"Cost":245,"Date":"7/4/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":241,"Cost":199,"Date":"7/8/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":866,"Cost":609,"Date":"7/9/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":704,"Cost":602,"Date":"7/14/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":550,"Cost":463,"Date":"7/19/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":624,"Cost":477,"Date":"8/1/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":675,"Cost":378,"Date":"8/6/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":230,"Cost":197,"Date":"8/7/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":514,"Cost":257,"Date":"8/22/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":364,"Cost":309,"Date":"8/31/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":26,"Cost":20,"Date":"9/1/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":442,"Cost":416,"Date":"9/1/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":733,"Cost":495,"Date":"9/17/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":653,"Cost":371,"Date":"9/29/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":471,"Cost":295,"Date":"11/7/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":37,"Cost":20,"Date":"11/26/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":740,"Cost":622,"Date":"11/27/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":710,"Cost":648,"Date":"12/5/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":740,"Cost":698,"Date":"12/26/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":102,"Cost":78,"Date":"12/31/2020"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":15,"Cost":13,"Date":"1/20/2021"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":31,"Cost":28,"Date":"2/2/2021"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":422,"Cost":299,"Date":"2/8/2021"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":25,"Cost":17,"Date":"2/27/2021"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":256,"Cost":134,"Date":"3/1/2021"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":301,"Cost":181,"Date":"3/1/2021"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":386,"Cost":363,"Date":"3/19/2021"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":348,"Cost":306,"Date":"3/28/2021"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":668,"Cost":487,"Date":"5/21/2021"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":296,"Cost":167,"Date":"7/21/2021"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":159,"Cost":122,"Date":"8/5/2021"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":17,"Cost":16,"Date":"8/12/2021"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":721,"Cost":410,"Date":"8/21/2021"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":949,"Cost":633,"Date":"8/23/2021"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":130,"Cost":83,"Date":"9/3/2021"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":892,"Cost":553,"Date":"9/5/2021"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":402,"Cost":339,"Date":"10/6/2021"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":80,"Cost":61,"Date":"10/19/2021"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":946,"Cost":697,"Date":"11/15/2021"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":263,"Cost":163,"Date":"12/8/2021"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":733,"Cost":541,"Date":"1/8/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":108,"Cost":88,"Date":"1/14/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":288,"Cost":232,"Date":"1/19/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":302,"Cost":163,"Date":"1/28/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":626,"Cost":518,"Date":"1/31/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":701,"Cost":364,"Date":"3/27/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":206,"Cost":167,"Date":"4/20/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":41,"Cost":39,"Date":"4/24/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":894,"Cost":661,"Date":"4/28/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":267,"Cost":241,"Date":"5/15/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":228,"Cost":139,"Date":"5/16/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":14,"Cost":7,"Date":"5/18/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":762,"Cost":691,"Date":"6/2/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":702,"Cost":475,"Date":"6/3/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":942,"Cost":584,"Date":"6/5/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":260,"Cost":231,"Date":"6/7/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":736,"Cost":532,"Date":"6/14/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":703,"Cost":364,"Date":"6/20/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":552,"Cost":403,"Date":"6/24/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":762,"Cost":681,"Date":"7/4/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":337,"Cost":238,"Date":"7/9/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":800,"Cost":637,"Date":"7/12/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":183,"Cost":145,"Date":"8/14/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":634,"Cost":450,"Date":"8/16/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":985,"Cost":718,"Date":"8/23/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":648,"Cost":455,"Date":"9/2/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":546,"Cost":362,"Date":"9/3/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":442,"Cost":412,"Date":"9/16/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":207,"Cost":107,"Date":"10/4/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":600,"Cost":319,"Date":"11/1/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":618,"Cost":444,"Date":"11/2/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":704,"Cost":595,"Date":"12/17/2022"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":971,"Cost":490,"Date":"2/10/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":54,"Cost":36,"Date":"2/28/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":362,"Cost":337,"Date":"3/4/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":758,"Cost":657,"Date":"3/9/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":320,"Cost":198,"Date":"3/9/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":430,"Cost":234,"Date":"3/11/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":662,"Cost":381,"Date":"3/17/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":987,"Cost":612,"Date":"3/17/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":331,"Cost":167,"Date":"3/23/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":844,"Cost":462,"Date":"4/1/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":964,"Cost":872,"Date":"5/7/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":518,"Cost":435,"Date":"5/10/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":586,"Cost":473,"Date":"5/20/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":231,"Cost":180,"Date":"6/2/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":457,"Cost":339,"Date":"6/11/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":611,"Cost":447,"Date":"6/16/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":499,"Cost":366,"Date":"6/16/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":455,"Cost":330,"Date":"7/10/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":478,"Cost":394,"Date":"7/11/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":540,"Cost":421,"Date":"8/28/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":107,"Cost":84,"Date":"8/29/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":345,"Cost":199,"Date":"8/31/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":460,"Cost":370,"Date":"9/8/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":267,"Cost":197,"Date":"9/13/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":785,"Cost":505,"Date":"9/14/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":520,"Cost":396,"Date":"9/19/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":406,"Cost":225,"Date":"9/25/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":946,"Cost":567,"Date":"10/4/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":818,"Cost":689,"Date":"10/10/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":891,"Cost":469,"Date":"10/17/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":631,"Cost":445,"Date":"10/28/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":233,"Cost":193,"Date":"10/30/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":562,"Cost":503,"Date":"11/1/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":981,"Cost":510,"Date":"11/15/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":274,"Cost":202,"Date":"11/25/2023"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":114,"Cost":89,"Date":"1/10/2024"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":753,"Cost":667,"Date":"1/14/2024"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":663,"Cost":487,"Date":"1/20/2024"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":821,"Cost":768,"Date":"2/8/2024"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":497,"Cost":302,"Date":"2/25/2024"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":405,"Cost":236,"Date":"3/7/2024"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":58,"Cost":38,"Date":"3/14/2024"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":698,"Cost":479,"Date":"3/27/2024"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":684,"Cost":549,"Date":"4/5/2024"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":772,"Cost":702,"Date":"4/14/2024"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":663,"Cost":541,"Date":"5/3/2024"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":308,"Cost":162,"Date":"5/9/2024"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":585,"Cost":321,"Date":"5/15/2024"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":930,"Cost":638,"Date":"5/25/2024"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":835,"Cost":645,"Date":"5/26/2024"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":726,"Cost":499,"Date":"5/31/2024"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":908,"Cost":759,"Date":"7/27/2024"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":889,"Cost":750,"Date":"9/17/2024"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":141,"Cost":77,"Date":"10/6/2024"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":899,"Cost":832,"Date":"10/8/2024"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":682,"Cost":478,"Date":"10/26/2024"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":306,"Cost":258,"Date":"11/16/2024"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":379,"Cost":251,"Date":"11/18/2024"},{"Store":"Namba Parks, Osaka","Brand":"HM","Country":"Japan","Sale":258,"Cost":215,"Date":"12/1/2024"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":310,"Cost":274,"Date":"2/9/2018"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":802,"Cost":683,"Date":"2/11/2018"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":528,"Cost":450,"Date":"3/10/2018"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":754,"Cost":662,"Date":"3/16/2018"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":990,"Cost":526,"Date":"3/18/2018"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":605,"Cost":449,"Date":"3/20/2018"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":276,"Cost":161,"Date":"3/26/2018"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":136,"Cost":97,"Date":"6/2/2018"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":690,"Cost":582,"Date":"6/10/2018"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":985,"Cost":681,"Date":"6/16/2018"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":144,"Cost":123,"Date":"6/25/2018"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":76,"Cost":65,"Date":"7/19/2018"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":377,"Cost":312,"Date":"7/21/2018"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":633,"Cost":469,"Date":"7/25/2018"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":258,"Cost":164,"Date":"8/4/2018"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":289,"Cost":171,"Date":"9/2/2018"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":964,"Cost":548,"Date":"9/4/2018"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":257,"Cost":214,"Date":"9/19/2018"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":50,"Cost":39,"Date":"9/29/2018"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":159,"Cost":103,"Date":"10/2/2018"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":420,"Cost":393,"Date":"10/15/2018"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":372,"Cost":195,"Date":"10/30/2018"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":69,"Cost":48,"Date":"11/9/2018"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":806,"Cost":651,"Date":"11/23/2018"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":942,"Cost":523,"Date":"11/30/2018"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":28,"Cost":18,"Date":"12/8/2018"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":748,"Cost":581,"Date":"12/11/2018"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":787,"Cost":497,"Date":"1/15/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":975,"Cost":506,"Date":"1/24/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":506,"Cost":361,"Date":"2/3/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":605,"Cost":444,"Date":"2/4/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":379,"Cost":234,"Date":"3/9/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":878,"Cost":498,"Date":"3/12/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":777,"Cost":615,"Date":"4/19/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":658,"Cost":528,"Date":"5/3/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":862,"Cost":490,"Date":"5/4/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":951,"Cost":508,"Date":"6/8/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":191,"Cost":100,"Date":"6/26/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":438,"Cost":399,"Date":"7/4/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":238,"Cost":128,"Date":"7/13/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":974,"Cost":821,"Date":"8/8/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":813,"Cost":739,"Date":"8/26/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":406,"Cost":317,"Date":"9/2/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":547,"Cost":514,"Date":"9/29/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":187,"Cost":141,"Date":"10/12/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":889,"Cost":451,"Date":"11/2/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":1000,"Cost":637,"Date":"11/4/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":49,"Cost":27,"Date":"11/7/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":515,"Cost":291,"Date":"12/1/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":165,"Cost":102,"Date":"12/4/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":955,"Cost":490,"Date":"12/7/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":802,"Cost":666,"Date":"12/18/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":557,"Cost":423,"Date":"12/20/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":541,"Cost":278,"Date":"12/20/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":699,"Cost":559,"Date":"12/21/2019"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":830,"Cost":494,"Date":"1/9/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":710,"Cost":535,"Date":"2/5/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":838,"Cost":515,"Date":"2/16/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":348,"Cost":254,"Date":"2/16/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":639,"Cost":372,"Date":"2/18/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":551,"Cost":515,"Date":"2/22/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":812,"Cost":525,"Date":"2/25/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":188,"Cost":173,"Date":"3/8/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":250,"Cost":126,"Date":"4/2/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":679,"Cost":340,"Date":"4/3/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":251,"Cost":223,"Date":"4/9/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":366,"Cost":216,"Date":"4/10/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":934,"Cost":730,"Date":"4/19/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":808,"Cost":550,"Date":"5/17/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":736,"Cost":487,"Date":"5/22/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":523,"Cost":271,"Date":"6/20/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":704,"Cost":614,"Date":"7/1/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":435,"Cost":258,"Date":"7/4/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":129,"Cost":71,"Date":"7/8/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":479,"Cost":375,"Date":"7/9/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":76,"Cost":45,"Date":"7/14/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":134,"Cost":93,"Date":"7/19/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":59,"Cost":41,"Date":"8/1/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":85,"Cost":76,"Date":"8/6/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":516,"Cost":288,"Date":"8/7/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":973,"Cost":590,"Date":"8/22/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":552,"Cost":477,"Date":"8/31/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":752,"Cost":514,"Date":"9/1/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":924,"Cost":810,"Date":"9/1/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":326,"Cost":183,"Date":"9/17/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":888,"Cost":481,"Date":"9/29/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":417,"Cost":290,"Date":"11/7/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":621,"Cost":351,"Date":"11/26/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":943,"Cost":598,"Date":"11/27/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":774,"Cost":496,"Date":"12/5/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":432,"Cost":297,"Date":"12/26/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":825,"Cost":468,"Date":"12/31/2020"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":744,"Cost":578,"Date":"1/20/2021"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":926,"Cost":624,"Date":"2/2/2021"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":222,"Cost":151,"Date":"2/8/2021"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":339,"Cost":265,"Date":"2/27/2021"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":638,"Cost":419,"Date":"3/1/2021"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":133,"Cost":87,"Date":"3/1/2021"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":726,"Cost":453,"Date":"3/19/2021"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":940,"Cost":776,"Date":"3/28/2021"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":35,"Cost":21,"Date":"5/21/2021"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":315,"Cost":208,"Date":"7/21/2021"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":57,"Cost":31,"Date":"8/5/2021"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":403,"Cost":256,"Date":"8/12/2021"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":384,"Cost":233,"Date":"8/21/2021"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":97,"Cost":75,"Date":"8/23/2021"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":951,"Cost":629,"Date":"9/3/2021"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":132,"Cost":92,"Date":"9/5/2021"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":96,"Cost":72,"Date":"10/6/2021"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":835,"Cost":628,"Date":"10/19/2021"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":993,"Cost":869,"Date":"11/15/2021"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":48,"Cost":39,"Date":"12/8/2021"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":402,"Cost":368,"Date":"1/8/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":5,"Cost":4,"Date":"1/14/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":366,"Cost":203,"Date":"1/19/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":585,"Cost":524,"Date":"1/28/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":364,"Cost":255,"Date":"1/31/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":223,"Cost":154,"Date":"3/27/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":831,"Cost":469,"Date":"4/20/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":587,"Cost":515,"Date":"4/24/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":183,"Cost":132,"Date":"4/28/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":560,"Cost":531,"Date":"5/15/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":200,"Cost":108,"Date":"5/16/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":988,"Cost":586,"Date":"5/18/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":831,"Cost":576,"Date":"6/2/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":651,"Cost":557,"Date":"6/3/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":387,"Cost":343,"Date":"6/5/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":877,"Cost":526,"Date":"6/7/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":114,"Cost":80,"Date":"6/14/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":573,"Cost":435,"Date":"6/20/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":243,"Cost":149,"Date":"6/24/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":978,"Cost":791,"Date":"7/4/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":935,"Cost":608,"Date":"7/9/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":236,"Cost":135,"Date":"7/12/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":747,"Cost":388,"Date":"8/14/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":894,"Cost":707,"Date":"8/16/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":629,"Cost":358,"Date":"8/23/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":681,"Cost":626,"Date":"9/2/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":959,"Cost":837,"Date":"9/3/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":747,"Cost":435,"Date":"9/16/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":993,"Cost":831,"Date":"10/4/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":946,"Cost":852,"Date":"11/1/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":145,"Cost":98,"Date":"11/2/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":105,"Cost":64,"Date":"12/17/2022"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":267,"Cost":185,"Date":"2/10/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":771,"Cost":716,"Date":"2/28/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":947,"Cost":681,"Date":"3/4/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":668,"Cost":631,"Date":"3/9/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":393,"Cost":319,"Date":"3/9/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":147,"Cost":116,"Date":"3/11/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":91,"Cost":73,"Date":"3/17/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":126,"Cost":76,"Date":"3/17/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":259,"Cost":240,"Date":"3/23/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":388,"Cost":347,"Date":"4/1/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":427,"Cost":395,"Date":"5/7/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":663,"Cost":338,"Date":"5/10/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":323,"Cost":297,"Date":"5/20/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":309,"Cost":158,"Date":"6/2/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":354,"Cost":253,"Date":"6/11/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":127,"Cost":79,"Date":"6/16/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":570,"Cost":463,"Date":"6/16/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":755,"Cost":499,"Date":"7/10/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":795,"Cost":643,"Date":"7/11/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":247,"Cost":137,"Date":"8/28/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":415,"Cost":248,"Date":"8/29/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":30,"Cost":20,"Date":"8/31/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":236,"Cost":143,"Date":"9/8/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":819,"Cost":774,"Date":"9/13/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":652,"Cost":476,"Date":"9/14/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":770,"Cost":507,"Date":"9/19/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":293,"Cost":185,"Date":"9/25/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":316,"Cost":256,"Date":"10/4/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":223,"Cost":144,"Date":"10/10/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":312,"Cost":201,"Date":"10/17/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":809,"Cost":625,"Date":"10/28/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":263,"Cost":157,"Date":"10/30/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":988,"Cost":643,"Date":"11/1/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":305,"Cost":261,"Date":"11/15/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":509,"Cost":267,"Date":"11/25/2023"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":256,"Cost":159,"Date":"1/10/2024"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":214,"Cost":113,"Date":"1/14/2024"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":405,"Cost":231,"Date":"1/20/2024"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":635,"Cost":563,"Date":"2/8/2024"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":997,"Cost":654,"Date":"2/25/2024"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":269,"Cost":173,"Date":"3/7/2024"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":221,"Cost":176,"Date":"3/14/2024"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":685,"Cost":536,"Date":"3/27/2024"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":750,"Cost":445,"Date":"4/5/2024"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":761,"Cost":408,"Date":"4/14/2024"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":192,"Cost":165,"Date":"5/3/2024"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":770,"Cost":513,"Date":"5/9/2024"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":758,"Cost":681,"Date":"5/15/2024"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":930,"Cost":705,"Date":"5/25/2024"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":369,"Cost":324,"Date":"5/26/2024"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":347,"Cost":243,"Date":"5/31/2024"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":730,"Cost":383,"Date":"7/27/2024"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":478,"Cost":447,"Date":"9/17/2024"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":707,"Cost":454,"Date":"10/6/2024"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":786,"Cost":489,"Date":"10/8/2024"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":194,"Cost":135,"Date":"10/26/2024"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":59,"Cost":44,"Date":"11/16/2024"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":93,"Cost":58,"Date":"11/18/2024"},{"Store":"Namba Parks, Osaka","Brand":"Jeans","Country":"Japan","Sale":144,"Cost":86,"Date":"12/1/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":610,"Cost":463,"Date":"2/9/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":370,"Cost":186,"Date":"2/11/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":623,"Cost":342,"Date":"3/10/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":424,"Cost":264,"Date":"3/16/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":172,"Cost":112,"Date":"3/18/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":198,"Cost":172,"Date":"3/20/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":638,"Cost":443,"Date":"3/26/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":737,"Cost":629,"Date":"6/2/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":173,"Cost":123,"Date":"6/10/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":839,"Cost":514,"Date":"6/16/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":143,"Cost":122,"Date":"6/25/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":480,"Cost":430,"Date":"7/19/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":500,"Cost":468,"Date":"7/21/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":61,"Cost":54,"Date":"7/25/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":137,"Cost":80,"Date":"8/4/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":378,"Cost":326,"Date":"9/2/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":68,"Cost":45,"Date":"9/4/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":631,"Cost":390,"Date":"9/19/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":851,"Cost":465,"Date":"9/29/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":509,"Cost":445,"Date":"10/2/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":3,"Cost":3,"Date":"10/15/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":600,"Cost":419,"Date":"10/30/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":411,"Cost":314,"Date":"11/9/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":512,"Cost":287,"Date":"11/23/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":608,"Cost":490,"Date":"11/30/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":900,"Cost":585,"Date":"12/8/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":275,"Cost":202,"Date":"12/11/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":97,"Cost":78,"Date":"1/15/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":568,"Cost":420,"Date":"1/24/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":118,"Cost":70,"Date":"2/3/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":885,"Cost":502,"Date":"2/4/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":326,"Cost":213,"Date":"3/9/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":893,"Cost":653,"Date":"3/12/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":958,"Cost":558,"Date":"4/19/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":686,"Cost":419,"Date":"5/3/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":97,"Cost":78,"Date":"5/4/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":363,"Cost":226,"Date":"6/8/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":785,"Cost":709,"Date":"6/26/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":195,"Cost":104,"Date":"7/4/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":896,"Cost":710,"Date":"7/13/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":70,"Cost":49,"Date":"8/8/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":250,"Cost":161,"Date":"8/26/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":844,"Cost":774,"Date":"9/2/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":58,"Cost":46,"Date":"9/29/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":564,"Cost":532,"Date":"10/12/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":851,"Cost":533,"Date":"11/2/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":199,"Cost":144,"Date":"11/4/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":125,"Cost":64,"Date":"11/7/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":847,"Cost":718,"Date":"12/1/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":64,"Cost":47,"Date":"12/4/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":729,"Cost":630,"Date":"12/7/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":429,"Cost":390,"Date":"12/18/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":400,"Cost":201,"Date":"12/20/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":819,"Cost":510,"Date":"12/20/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":419,"Cost":395,"Date":"12/21/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":573,"Cost":362,"Date":"1/9/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":33,"Cost":20,"Date":"2/5/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":800,"Cost":400,"Date":"2/16/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":498,"Cost":406,"Date":"2/16/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":921,"Cost":528,"Date":"2/18/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":681,"Cost":373,"Date":"2/22/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":721,"Cost":433,"Date":"2/25/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":283,"Cost":221,"Date":"3/8/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":482,"Cost":454,"Date":"4/2/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":154,"Cost":138,"Date":"4/3/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":968,"Cost":906,"Date":"4/9/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":883,"Cost":780,"Date":"4/10/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":768,"Cost":423,"Date":"4/19/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":399,"Cost":227,"Date":"5/17/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":572,"Cost":323,"Date":"5/22/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":116,"Cost":96,"Date":"6/20/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":318,"Cost":299,"Date":"7/1/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":513,"Cost":385,"Date":"7/4/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":615,"Cost":541,"Date":"7/8/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":311,"Cost":203,"Date":"7/9/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":583,"Cost":320,"Date":"7/14/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":600,"Cost":549,"Date":"7/19/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":483,"Cost":247,"Date":"8/1/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":551,"Cost":483,"Date":"8/6/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":624,"Cost":444,"Date":"8/7/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":390,"Cost":247,"Date":"8/22/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":358,"Cost":238,"Date":"8/31/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":614,"Cost":389,"Date":"9/1/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":805,"Cost":759,"Date":"9/1/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":865,"Cost":455,"Date":"9/17/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":571,"Cost":486,"Date":"9/29/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":950,"Cost":561,"Date":"11/7/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":292,"Cost":155,"Date":"11/26/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":478,"Cost":366,"Date":"11/27/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":541,"Cost":452,"Date":"12/5/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":272,"Cost":176,"Date":"12/26/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":598,"Cost":429,"Date":"12/31/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":257,"Cost":177,"Date":"1/20/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":776,"Cost":414,"Date":"2/2/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":656,"Cost":541,"Date":"2/8/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":144,"Cost":110,"Date":"2/27/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":311,"Cost":205,"Date":"3/1/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":5,"Cost":5,"Date":"3/1/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":900,"Cost":773,"Date":"3/19/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":248,"Cost":135,"Date":"3/28/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":504,"Cost":356,"Date":"5/21/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":891,"Cost":541,"Date":"7/21/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":939,"Cost":596,"Date":"8/5/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":201,"Cost":182,"Date":"8/12/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":100,"Cost":94,"Date":"8/21/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":598,"Cost":516,"Date":"8/23/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":917,"Cost":526,"Date":"9/3/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":464,"Cost":411,"Date":"9/5/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":34,"Cost":28,"Date":"10/6/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":994,"Cost":507,"Date":"10/19/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":46,"Cost":26,"Date":"11/15/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":990,"Cost":526,"Date":"12/8/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":336,"Cost":288,"Date":"1/8/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":703,"Cost":507,"Date":"1/14/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":7,"Cost":5,"Date":"1/19/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":525,"Cost":265,"Date":"1/28/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":253,"Cost":224,"Date":"1/31/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":432,"Cost":222,"Date":"3/27/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":860,"Cost":455,"Date":"4/20/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":614,"Cost":312,"Date":"4/24/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":505,"Cost":275,"Date":"4/28/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":301,"Cost":215,"Date":"5/15/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":714,"Cost":424,"Date":"5/16/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":579,"Cost":429,"Date":"5/18/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":884,"Cost":716,"Date":"6/2/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":686,"Cost":448,"Date":"6/3/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":255,"Cost":220,"Date":"6/5/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":352,"Cost":303,"Date":"6/7/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":783,"Cost":428,"Date":"6/14/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":43,"Cost":25,"Date":"6/20/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":941,"Cost":582,"Date":"6/24/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":91,"Cost":71,"Date":"7/4/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":984,"Cost":899,"Date":"7/9/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":879,"Cost":494,"Date":"7/12/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":95,"Cost":71,"Date":"8/14/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":884,"Cost":708,"Date":"8/16/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":549,"Cost":492,"Date":"8/23/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":630,"Cost":340,"Date":"9/2/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":943,"Cost":636,"Date":"9/3/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":401,"Cost":371,"Date":"9/16/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":266,"Cost":184,"Date":"10/4/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":135,"Cost":82,"Date":"11/1/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":735,"Cost":577,"Date":"11/2/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":72,"Cost":53,"Date":"12/17/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":830,"Cost":727,"Date":"2/10/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":172,"Cost":154,"Date":"2/28/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":404,"Cost":337,"Date":"3/4/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":478,"Cost":454,"Date":"3/9/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":980,"Cost":759,"Date":"3/9/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":346,"Cost":295,"Date":"3/11/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":34,"Cost":19,"Date":"3/17/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":446,"Cost":259,"Date":"3/17/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":25,"Cost":23,"Date":"3/23/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":972,"Cost":654,"Date":"4/1/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":416,"Cost":216,"Date":"5/7/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":466,"Cost":439,"Date":"5/10/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":755,"Cost":567,"Date":"5/20/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":800,"Cost":561,"Date":"6/2/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":261,"Cost":246,"Date":"6/11/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":644,"Cost":357,"Date":"6/16/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":159,"Cost":95,"Date":"6/16/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":583,"Cost":356,"Date":"7/10/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":984,"Cost":747,"Date":"7/11/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":672,"Cost":427,"Date":"8/28/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":3,"Cost":2,"Date":"8/29/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":307,"Cost":247,"Date":"8/31/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":884,"Cost":557,"Date":"9/8/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":513,"Cost":347,"Date":"9/13/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":159,"Cost":146,"Date":"9/14/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":982,"Cost":896,"Date":"9/19/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":395,"Cost":284,"Date":"9/25/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":691,"Cost":561,"Date":"10/4/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":2,"Cost":2,"Date":"10/10/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":814,"Cost":433,"Date":"10/17/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":454,"Cost":237,"Date":"10/28/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":791,"Cost":545,"Date":"10/30/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":97,"Cost":51,"Date":"11/1/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":169,"Cost":91,"Date":"11/15/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":174,"Cost":110,"Date":"11/25/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":882,"Cost":553,"Date":"1/10/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":14,"Cost":10,"Date":"1/14/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":825,"Cost":533,"Date":"1/20/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":682,"Cost":550,"Date":"2/8/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":99,"Cost":84,"Date":"2/25/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":773,"Cost":630,"Date":"3/7/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":177,"Cost":145,"Date":"3/14/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":321,"Cost":215,"Date":"3/27/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":155,"Cost":85,"Date":"4/5/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":412,"Cost":230,"Date":"4/14/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":829,"Cost":716,"Date":"5/3/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":630,"Cost":579,"Date":"5/9/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":236,"Cost":213,"Date":"5/15/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":19,"Cost":13,"Date":"5/25/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":617,"Cost":402,"Date":"5/26/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":159,"Cost":139,"Date":"5/31/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":611,"Cost":555,"Date":"7/27/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":592,"Cost":556,"Date":"9/17/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":24,"Cost":16,"Date":"10/6/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":597,"Cost":542,"Date":"10/8/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":930,"Cost":665,"Date":"10/26/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":63,"Cost":40,"Date":"11/16/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":49,"Cost":36,"Date":"11/18/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"Jeans","Country":"Japan","Sale":32,"Cost":28,"Date":"12/1/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":342,"Cost":286,"Date":"2/9/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":781,"Cost":489,"Date":"2/11/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":518,"Cost":292,"Date":"3/10/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":401,"Cost":301,"Date":"3/16/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":481,"Cost":431,"Date":"3/18/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":352,"Cost":219,"Date":"3/20/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":208,"Cost":176,"Date":"3/26/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":623,"Cost":557,"Date":"6/2/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":295,"Cost":240,"Date":"6/10/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":930,"Cost":805,"Date":"6/16/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":749,"Cost":430,"Date":"6/25/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":358,"Cost":280,"Date":"7/19/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":853,"Cost":620,"Date":"7/21/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":465,"Cost":428,"Date":"7/25/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":785,"Cost":705,"Date":"8/4/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":287,"Cost":172,"Date":"9/2/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":473,"Cost":398,"Date":"9/4/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":995,"Cost":910,"Date":"9/19/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":725,"Cost":586,"Date":"9/29/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":456,"Cost":351,"Date":"10/2/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":723,"Cost":560,"Date":"10/15/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":198,"Cost":135,"Date":"10/30/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":909,"Cost":535,"Date":"11/9/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":810,"Cost":659,"Date":"11/23/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":941,"Cost":876,"Date":"11/30/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":941,"Cost":845,"Date":"12/8/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":14,"Cost":14,"Date":"12/11/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":425,"Cost":400,"Date":"1/15/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":626,"Cost":483,"Date":"1/24/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":613,"Cost":367,"Date":"2/3/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":415,"Cost":286,"Date":"2/4/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":493,"Cost":374,"Date":"3/9/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":269,"Cost":247,"Date":"3/12/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":742,"Cost":639,"Date":"4/19/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":947,"Cost":518,"Date":"5/3/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":939,"Cost":545,"Date":"5/4/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":721,"Cost":552,"Date":"6/8/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":28,"Cost":14,"Date":"6/26/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":862,"Cost":781,"Date":"7/4/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":861,"Cost":760,"Date":"7/13/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":184,"Cost":92,"Date":"8/8/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":811,"Cost":607,"Date":"8/26/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":289,"Cost":181,"Date":"9/2/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":535,"Cost":420,"Date":"9/29/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":380,"Cost":352,"Date":"10/12/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":584,"Cost":548,"Date":"11/2/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":607,"Cost":543,"Date":"11/4/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":355,"Cost":336,"Date":"11/7/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":530,"Cost":379,"Date":"12/1/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":181,"Cost":149,"Date":"12/4/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":37,"Cost":22,"Date":"12/7/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":722,"Cost":463,"Date":"12/18/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":144,"Cost":123,"Date":"12/20/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":684,"Cost":640,"Date":"12/20/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":940,"Cost":745,"Date":"12/21/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":841,"Cost":701,"Date":"1/9/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":4,"Cost":4,"Date":"2/5/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":701,"Cost":665,"Date":"2/16/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":567,"Cost":509,"Date":"2/16/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":831,"Cost":485,"Date":"2/18/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":389,"Cost":335,"Date":"2/22/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":1,"Cost":1,"Date":"2/25/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":860,"Cost":691,"Date":"3/8/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":202,"Cost":137,"Date":"4/2/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":949,"Cost":531,"Date":"4/3/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":22,"Cost":17,"Date":"4/9/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":263,"Cost":171,"Date":"4/10/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":562,"Cost":325,"Date":"4/19/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":614,"Cost":376,"Date":"5/17/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":260,"Cost":186,"Date":"5/22/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":229,"Cost":117,"Date":"6/20/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":842,"Cost":533,"Date":"7/1/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":380,"Cost":203,"Date":"7/4/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":508,"Cost":332,"Date":"7/8/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":137,"Cost":70,"Date":"7/9/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":960,"Cost":674,"Date":"7/14/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":756,"Cost":688,"Date":"7/19/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":866,"Cost":798,"Date":"8/1/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":167,"Cost":118,"Date":"8/6/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":250,"Cost":153,"Date":"8/7/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":588,"Cost":424,"Date":"8/22/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":465,"Cost":257,"Date":"8/31/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":487,"Cost":303,"Date":"9/1/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":503,"Cost":468,"Date":"9/1/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":580,"Cost":499,"Date":"9/17/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":815,"Cost":732,"Date":"9/29/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":26,"Cost":20,"Date":"11/7/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":433,"Cost":274,"Date":"11/26/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":30,"Cost":20,"Date":"11/27/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":468,"Cost":279,"Date":"12/5/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":936,"Cost":533,"Date":"12/26/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":848,"Cost":691,"Date":"12/31/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":483,"Cost":249,"Date":"1/20/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":748,"Cost":394,"Date":"2/2/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":480,"Cost":367,"Date":"2/8/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":29,"Cost":27,"Date":"2/27/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":875,"Cost":798,"Date":"3/1/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":122,"Cost":64,"Date":"3/1/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":293,"Cost":184,"Date":"3/19/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":284,"Cost":181,"Date":"3/28/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":34,"Cost":20,"Date":"5/21/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":588,"Cost":524,"Date":"7/21/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":499,"Cost":343,"Date":"8/5/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":4,"Cost":3,"Date":"8/12/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":115,"Cost":106,"Date":"8/21/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":107,"Cost":63,"Date":"8/23/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":946,"Cost":473,"Date":"9/3/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":183,"Cost":134,"Date":"9/5/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":582,"Cost":493,"Date":"10/6/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":855,"Cost":493,"Date":"10/19/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":799,"Cost":744,"Date":"11/15/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":296,"Cost":185,"Date":"12/8/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":87,"Cost":60,"Date":"1/8/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":845,"Cost":673,"Date":"1/14/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":587,"Cost":471,"Date":"1/19/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":746,"Cost":395,"Date":"1/28/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":457,"Cost":336,"Date":"1/31/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":80,"Cost":57,"Date":"3/27/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":821,"Cost":428,"Date":"4/20/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":941,"Cost":615,"Date":"4/24/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":443,"Cost":278,"Date":"4/28/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":944,"Cost":636,"Date":"5/15/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":562,"Cost":530,"Date":"5/16/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":563,"Cost":392,"Date":"5/18/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":616,"Cost":510,"Date":"6/2/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":714,"Cost":544,"Date":"6/3/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":178,"Cost":94,"Date":"6/5/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":846,"Cost":741,"Date":"6/7/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":255,"Cost":217,"Date":"6/14/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":829,"Cost":673,"Date":"6/20/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":958,"Cost":816,"Date":"6/24/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":677,"Cost":552,"Date":"7/4/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":184,"Cost":135,"Date":"7/9/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":214,"Cost":173,"Date":"7/12/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":639,"Cost":470,"Date":"8/14/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":234,"Cost":158,"Date":"8/16/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":712,"Cost":612,"Date":"8/23/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":663,"Cost":460,"Date":"9/2/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":596,"Cost":370,"Date":"9/3/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":384,"Cost":254,"Date":"9/16/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":685,"Cost":493,"Date":"10/4/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":711,"Cost":591,"Date":"11/1/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":452,"Cost":237,"Date":"11/2/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":391,"Cost":244,"Date":"12/17/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":682,"Cost":395,"Date":"2/10/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":449,"Cost":290,"Date":"2/28/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":252,"Cost":229,"Date":"3/4/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":276,"Cost":150,"Date":"3/9/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":472,"Cost":445,"Date":"3/9/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":681,"Cost":637,"Date":"3/11/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":885,"Cost":712,"Date":"3/17/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":28,"Cost":15,"Date":"3/17/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":193,"Cost":106,"Date":"3/23/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":896,"Cost":545,"Date":"4/1/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":400,"Cost":331,"Date":"5/7/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":894,"Cost":499,"Date":"5/10/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":241,"Cost":181,"Date":"5/20/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":363,"Cost":227,"Date":"6/2/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":449,"Cost":297,"Date":"6/11/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":63,"Cost":32,"Date":"6/16/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":67,"Cost":55,"Date":"6/16/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":955,"Cost":723,"Date":"7/10/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":381,"Cost":245,"Date":"7/11/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":334,"Cost":239,"Date":"8/28/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":921,"Cost":768,"Date":"8/29/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":192,"Cost":159,"Date":"8/31/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":320,"Cost":220,"Date":"9/8/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":963,"Cost":538,"Date":"9/13/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":394,"Cost":212,"Date":"9/14/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":163,"Cost":109,"Date":"9/19/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":662,"Cost":370,"Date":"9/25/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":454,"Cost":227,"Date":"10/4/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":767,"Cost":415,"Date":"10/10/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":23,"Cost":13,"Date":"10/17/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":445,"Cost":283,"Date":"10/28/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":958,"Cost":481,"Date":"10/30/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":578,"Cost":512,"Date":"11/1/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":925,"Cost":691,"Date":"11/15/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":135,"Cost":98,"Date":"11/25/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":581,"Cost":407,"Date":"1/10/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":547,"Cost":453,"Date":"1/14/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":325,"Cost":246,"Date":"1/20/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":177,"Cost":143,"Date":"2/8/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":407,"Cost":364,"Date":"2/25/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":604,"Cost":499,"Date":"3/7/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":839,"Cost":608,"Date":"3/14/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":418,"Cost":224,"Date":"3/27/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":677,"Cost":414,"Date":"4/5/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":97,"Cost":56,"Date":"4/14/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":978,"Cost":493,"Date":"5/3/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":384,"Cost":321,"Date":"5/9/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":860,"Cost":718,"Date":"5/15/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":695,"Cost":553,"Date":"5/25/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":765,"Cost":628,"Date":"5/26/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":452,"Cost":308,"Date":"5/31/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":834,"Cost":514,"Date":"7/27/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":982,"Cost":726,"Date":"9/17/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":174,"Cost":135,"Date":"10/6/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":602,"Cost":449,"Date":"10/8/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":679,"Cost":449,"Date":"10/26/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":687,"Cost":597,"Date":"11/16/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":10,"Cost":8,"Date":"11/18/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"HM Home","Country":"Japan","Sale":360,"Cost":234,"Date":"12/1/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":398,"Cost":215,"Date":"2/9/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":185,"Cost":154,"Date":"2/11/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":477,"Cost":451,"Date":"3/10/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":479,"Cost":247,"Date":"3/16/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":459,"Cost":428,"Date":"3/18/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":967,"Cost":640,"Date":"3/20/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":674,"Cost":590,"Date":"3/26/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":382,"Cost":329,"Date":"6/2/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":553,"Cost":416,"Date":"6/10/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":738,"Cost":604,"Date":"6/16/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":883,"Cost":760,"Date":"6/25/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":314,"Cost":158,"Date":"7/19/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":42,"Cost":36,"Date":"7/21/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":1,"Cost":1,"Date":"7/25/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":407,"Cost":378,"Date":"8/4/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":594,"Cost":402,"Date":"9/2/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":851,"Cost":499,"Date":"9/4/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":963,"Cost":522,"Date":"9/19/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":791,"Cost":462,"Date":"9/29/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":417,"Cost":364,"Date":"10/2/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":550,"Cost":311,"Date":"10/15/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":50,"Cost":36,"Date":"10/30/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":123,"Cost":62,"Date":"11/9/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":501,"Cost":282,"Date":"11/23/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":532,"Cost":384,"Date":"11/30/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":357,"Cost":234,"Date":"12/8/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":787,"Cost":691,"Date":"12/11/2018"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":536,"Cost":410,"Date":"1/15/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":706,"Cost":436,"Date":"1/24/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":273,"Cost":236,"Date":"2/3/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":290,"Cost":152,"Date":"2/4/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":486,"Cost":291,"Date":"3/9/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":441,"Cost":298,"Date":"3/12/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":643,"Cost":526,"Date":"4/19/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":13,"Cost":6,"Date":"5/3/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":738,"Cost":629,"Date":"5/4/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":276,"Cost":213,"Date":"6/8/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":219,"Cost":185,"Date":"6/26/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":69,"Cost":62,"Date":"7/4/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":418,"Cost":272,"Date":"7/13/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":836,"Cost":496,"Date":"8/8/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":196,"Cost":125,"Date":"8/26/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":427,"Cost":223,"Date":"9/2/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":282,"Cost":258,"Date":"9/29/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":530,"Cost":489,"Date":"10/12/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":962,"Cost":761,"Date":"11/2/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":375,"Cost":347,"Date":"11/4/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":230,"Cost":163,"Date":"11/7/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":788,"Cost":511,"Date":"12/1/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":898,"Cost":765,"Date":"12/4/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":582,"Cost":443,"Date":"12/7/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":298,"Cost":158,"Date":"12/18/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":60,"Cost":31,"Date":"12/20/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":17,"Cost":16,"Date":"12/20/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":118,"Cost":67,"Date":"12/21/2019"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":227,"Cost":151,"Date":"1/9/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":458,"Cost":250,"Date":"2/5/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":327,"Cost":251,"Date":"2/16/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":796,"Cost":735,"Date":"2/16/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":533,"Cost":274,"Date":"2/18/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":369,"Cost":264,"Date":"2/22/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":92,"Cost":72,"Date":"2/25/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":770,"Cost":482,"Date":"3/8/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":102,"Cost":73,"Date":"4/2/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":366,"Cost":242,"Date":"4/3/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":165,"Cost":125,"Date":"4/9/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":144,"Cost":118,"Date":"4/10/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":621,"Cost":530,"Date":"4/19/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":358,"Cost":310,"Date":"5/17/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":934,"Cost":480,"Date":"5/22/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":929,"Cost":601,"Date":"6/20/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":785,"Cost":670,"Date":"7/1/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":888,"Cost":631,"Date":"7/4/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":86,"Cost":63,"Date":"7/8/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":857,"Cost":499,"Date":"7/9/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":641,"Cost":435,"Date":"7/14/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":891,"Cost":464,"Date":"7/19/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":854,"Cost":612,"Date":"8/1/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":305,"Cost":185,"Date":"8/6/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":294,"Cost":177,"Date":"8/7/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":654,"Cost":402,"Date":"8/22/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":97,"Cost":52,"Date":"8/31/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":986,"Cost":651,"Date":"9/1/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":360,"Cost":269,"Date":"9/1/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":206,"Cost":191,"Date":"9/17/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":2,"Cost":2,"Date":"9/29/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":337,"Cost":186,"Date":"11/7/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":455,"Cost":228,"Date":"11/26/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":706,"Cost":563,"Date":"11/27/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":597,"Cost":567,"Date":"12/5/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":869,"Cost":484,"Date":"12/26/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":174,"Cost":125,"Date":"12/31/2020"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":272,"Cost":174,"Date":"1/20/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":593,"Cost":478,"Date":"2/2/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":957,"Cost":567,"Date":"2/8/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":139,"Cost":103,"Date":"2/27/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":653,"Cost":525,"Date":"3/1/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":793,"Cost":407,"Date":"3/1/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":889,"Cost":656,"Date":"3/19/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":104,"Cost":52,"Date":"3/28/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":940,"Cost":846,"Date":"5/21/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":802,"Cost":704,"Date":"7/21/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":666,"Cost":518,"Date":"8/5/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":903,"Cost":729,"Date":"8/12/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":336,"Cost":310,"Date":"8/21/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":267,"Cost":147,"Date":"8/23/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":733,"Cost":620,"Date":"9/3/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":213,"Cost":175,"Date":"9/5/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":219,"Cost":170,"Date":"10/6/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":470,"Cost":293,"Date":"10/19/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":451,"Cost":266,"Date":"11/15/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":924,"Cost":734,"Date":"12/8/2021"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":217,"Cost":171,"Date":"1/8/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":975,"Cost":663,"Date":"1/14/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":473,"Cost":253,"Date":"1/19/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":358,"Cost":337,"Date":"1/28/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":814,"Cost":456,"Date":"1/31/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":807,"Cost":456,"Date":"3/27/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":133,"Cost":122,"Date":"4/20/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":730,"Cost":511,"Date":"4/24/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":70,"Cost":58,"Date":"4/28/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":348,"Cost":186,"Date":"5/15/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":996,"Cost":810,"Date":"5/16/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":295,"Cost":155,"Date":"5/18/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":476,"Cost":282,"Date":"6/2/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":288,"Cost":201,"Date":"6/3/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":195,"Cost":134,"Date":"6/5/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":500,"Cost":397,"Date":"6/7/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":61,"Cost":57,"Date":"6/14/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":648,"Cost":380,"Date":"6/20/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":265,"Cost":232,"Date":"6/24/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":323,"Cost":190,"Date":"7/4/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":734,"Cost":632,"Date":"7/9/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":888,"Cost":466,"Date":"7/12/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":16,"Cost":14,"Date":"8/14/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":926,"Cost":490,"Date":"8/16/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":911,"Cost":824,"Date":"8/23/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":435,"Cost":222,"Date":"9/2/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":458,"Cost":318,"Date":"9/3/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":651,"Cost":481,"Date":"9/16/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":370,"Cost":338,"Date":"10/4/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":50,"Cost":44,"Date":"11/1/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":597,"Cost":305,"Date":"11/2/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":419,"Cost":265,"Date":"12/17/2022"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":978,"Cost":823,"Date":"2/10/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":665,"Cost":548,"Date":"2/28/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":807,"Cost":442,"Date":"3/4/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":236,"Cost":172,"Date":"3/9/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":711,"Cost":445,"Date":"3/9/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":194,"Cost":144,"Date":"3/11/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":852,"Cost":547,"Date":"3/17/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":34,"Cost":17,"Date":"3/17/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":87,"Cost":59,"Date":"3/23/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":14,"Cost":13,"Date":"4/1/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":828,"Cost":469,"Date":"5/7/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":726,"Cost":553,"Date":"5/10/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":712,"Cost":391,"Date":"5/20/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":890,"Cost":777,"Date":"6/2/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":411,"Cost":390,"Date":"6/11/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":1000,"Cost":861,"Date":"6/16/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":325,"Cost":284,"Date":"6/16/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":700,"Cost":369,"Date":"7/10/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":2,"Cost":2,"Date":"7/11/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":205,"Cost":135,"Date":"8/28/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":247,"Cost":128,"Date":"8/29/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":99,"Cost":51,"Date":"8/31/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":843,"Cost":436,"Date":"9/8/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":691,"Cost":607,"Date":"9/13/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":456,"Cost":433,"Date":"9/14/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":462,"Cost":394,"Date":"9/19/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":305,"Cost":219,"Date":"9/25/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":921,"Cost":686,"Date":"10/4/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":172,"Cost":122,"Date":"10/10/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":849,"Cost":580,"Date":"10/17/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":92,"Cost":56,"Date":"10/28/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":184,"Cost":93,"Date":"10/30/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":435,"Cost":351,"Date":"11/1/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":402,"Cost":365,"Date":"11/15/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":35,"Cost":30,"Date":"11/25/2023"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":754,"Cost":402,"Date":"1/10/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":761,"Cost":641,"Date":"1/14/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":644,"Cost":606,"Date":"1/20/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":550,"Cost":514,"Date":"2/8/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":126,"Cost":114,"Date":"2/25/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":585,"Cost":545,"Date":"3/7/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":644,"Cost":426,"Date":"3/14/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":107,"Cost":81,"Date":"3/27/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":767,"Cost":714,"Date":"4/5/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":325,"Cost":204,"Date":"4/14/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":195,"Cost":174,"Date":"5/3/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":703,"Cost":614,"Date":"5/9/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":968,"Cost":665,"Date":"5/15/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":321,"Cost":166,"Date":"5/25/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":663,"Cost":410,"Date":"5/26/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":872,"Cost":633,"Date":"5/31/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":210,"Cost":191,"Date":"7/27/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":463,"Cost":424,"Date":"9/17/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":963,"Cost":789,"Date":"10/6/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":741,"Cost":465,"Date":"10/8/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":625,"Cost":432,"Date":"10/26/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":306,"Cost":190,"Date":"11/16/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":793,"Cost":404,"Date":"11/18/2024"},{"Store":"Herbis Plaza, Osaka","Brand":"ARKET","Country":"Japan","Sale":687,"Cost":540,"Date":"12/1/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":482,"Cost":375,"Date":"2/9/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":386,"Cost":319,"Date":"2/11/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":632,"Cost":460,"Date":"3/10/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":662,"Cost":416,"Date":"3/16/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":475,"Cost":288,"Date":"3/18/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":291,"Cost":241,"Date":"3/20/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":64,"Cost":34,"Date":"3/26/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":37,"Cost":20,"Date":"6/2/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":136,"Cost":128,"Date":"6/10/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":118,"Cost":72,"Date":"6/16/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":475,"Cost":396,"Date":"6/25/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":331,"Cost":244,"Date":"7/19/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":209,"Cost":198,"Date":"7/21/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":442,"Cost":257,"Date":"7/25/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":802,"Cost":423,"Date":"8/4/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":79,"Cost":62,"Date":"9/2/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":509,"Cost":265,"Date":"9/4/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":426,"Cost":330,"Date":"9/19/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":942,"Cost":520,"Date":"9/29/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":7,"Cost":6,"Date":"10/2/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":988,"Cost":701,"Date":"10/15/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":624,"Cost":339,"Date":"10/30/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":617,"Cost":421,"Date":"11/9/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":950,"Cost":661,"Date":"11/23/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":279,"Cost":185,"Date":"11/30/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":707,"Cost":424,"Date":"12/8/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":82,"Cost":52,"Date":"12/11/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":831,"Cost":627,"Date":"1/15/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":508,"Cost":352,"Date":"1/24/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":71,"Cost":66,"Date":"2/3/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":937,"Cost":782,"Date":"2/4/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":456,"Cost":263,"Date":"3/9/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":656,"Cost":605,"Date":"3/12/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":110,"Cost":71,"Date":"4/19/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":216,"Cost":139,"Date":"5/3/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":290,"Cost":197,"Date":"5/4/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":122,"Cost":71,"Date":"6/8/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":19,"Cost":12,"Date":"6/26/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":216,"Cost":173,"Date":"7/4/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":197,"Cost":152,"Date":"7/13/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":644,"Cost":595,"Date":"8/8/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":188,"Cost":139,"Date":"8/26/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":612,"Cost":465,"Date":"9/2/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":461,"Cost":322,"Date":"9/29/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":332,"Cost":244,"Date":"10/12/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":571,"Cost":407,"Date":"11/2/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":268,"Cost":162,"Date":"11/4/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":92,"Cost":72,"Date":"11/7/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":310,"Cost":160,"Date":"12/1/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":713,"Cost":458,"Date":"12/4/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":921,"Cost":520,"Date":"12/7/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":534,"Cost":317,"Date":"12/18/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":963,"Cost":857,"Date":"12/20/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":450,"Cost":312,"Date":"12/20/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":829,"Cost":670,"Date":"12/21/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":323,"Cost":165,"Date":"1/9/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":269,"Cost":234,"Date":"2/5/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":316,"Cost":182,"Date":"2/16/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":125,"Cost":79,"Date":"2/16/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":174,"Cost":145,"Date":"2/18/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":178,"Cost":154,"Date":"2/22/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":824,"Cost":612,"Date":"2/25/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":253,"Cost":164,"Date":"3/8/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":570,"Cost":304,"Date":"4/2/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":164,"Cost":142,"Date":"4/3/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":829,"Cost":777,"Date":"4/9/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":788,"Cost":527,"Date":"4/10/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":469,"Cost":416,"Date":"4/19/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":451,"Cost":391,"Date":"5/17/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":138,"Cost":81,"Date":"5/22/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":601,"Cost":482,"Date":"6/20/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":72,"Cost":40,"Date":"7/1/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":869,"Cost":596,"Date":"7/4/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":963,"Cost":579,"Date":"7/8/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":667,"Cost":470,"Date":"7/9/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":830,"Cost":728,"Date":"7/14/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":434,"Cost":321,"Date":"7/19/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":916,"Cost":527,"Date":"8/1/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":277,"Cost":255,"Date":"8/6/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":781,"Cost":610,"Date":"8/7/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":603,"Cost":492,"Date":"8/22/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":401,"Cost":293,"Date":"8/31/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":864,"Cost":743,"Date":"9/1/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":3,"Cost":2,"Date":"9/1/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":597,"Cost":434,"Date":"9/17/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":107,"Cost":74,"Date":"9/29/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":323,"Cost":305,"Date":"11/7/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":300,"Cost":164,"Date":"11/26/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":552,"Cost":368,"Date":"11/27/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":945,"Cost":687,"Date":"12/5/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":991,"Cost":721,"Date":"12/26/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":420,"Cost":352,"Date":"12/31/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":205,"Cost":135,"Date":"1/20/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":694,"Cost":526,"Date":"2/2/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":173,"Cost":130,"Date":"2/8/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":404,"Cost":316,"Date":"2/27/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":374,"Cost":339,"Date":"3/1/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":72,"Cost":41,"Date":"3/1/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":878,"Cost":592,"Date":"3/19/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":12,"Cost":8,"Date":"3/28/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":612,"Cost":487,"Date":"5/21/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":995,"Cost":765,"Date":"7/21/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":698,"Cost":591,"Date":"8/5/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":432,"Cost":353,"Date":"8/12/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":363,"Cost":246,"Date":"8/21/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":382,"Cost":337,"Date":"8/23/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":922,"Cost":795,"Date":"9/3/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":999,"Cost":523,"Date":"9/5/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":177,"Cost":130,"Date":"10/6/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":626,"Cost":498,"Date":"10/19/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":880,"Cost":763,"Date":"11/15/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":170,"Cost":98,"Date":"12/8/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":68,"Cost":55,"Date":"1/8/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":53,"Cost":45,"Date":"1/14/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":549,"Cost":499,"Date":"1/19/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":767,"Cost":563,"Date":"1/28/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":622,"Cost":424,"Date":"1/31/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":849,"Cost":548,"Date":"3/27/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":258,"Cost":212,"Date":"4/20/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":534,"Cost":299,"Date":"4/24/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":746,"Cost":681,"Date":"4/28/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":500,"Cost":289,"Date":"5/15/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":330,"Cost":199,"Date":"5/16/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":362,"Cost":334,"Date":"5/18/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":763,"Cost":722,"Date":"6/2/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":85,"Cost":70,"Date":"6/3/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":981,"Cost":907,"Date":"6/5/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":969,"Cost":522,"Date":"6/7/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":786,"Cost":700,"Date":"6/14/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":785,"Cost":503,"Date":"6/20/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":641,"Cost":441,"Date":"6/24/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":846,"Cost":564,"Date":"7/4/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":732,"Cost":690,"Date":"7/9/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":270,"Cost":210,"Date":"7/12/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":348,"Cost":219,"Date":"8/14/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":722,"Cost":527,"Date":"8/16/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":315,"Cost":254,"Date":"8/23/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":123,"Cost":111,"Date":"9/2/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":978,"Cost":819,"Date":"9/3/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":881,"Cost":515,"Date":"9/16/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":783,"Cost":511,"Date":"10/4/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":72,"Cost":51,"Date":"11/1/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":268,"Cost":200,"Date":"11/2/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":559,"Cost":490,"Date":"12/17/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":494,"Cost":296,"Date":"2/10/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":339,"Cost":213,"Date":"2/28/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":24,"Cost":12,"Date":"3/4/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":237,"Cost":122,"Date":"3/9/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":90,"Cost":85,"Date":"3/9/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":749,"Cost":483,"Date":"3/11/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":543,"Cost":351,"Date":"3/17/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":370,"Cost":196,"Date":"3/17/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":656,"Cost":597,"Date":"3/23/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":802,"Cost":401,"Date":"4/1/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":674,"Cost":563,"Date":"5/7/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":238,"Cost":139,"Date":"5/10/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":113,"Cost":103,"Date":"5/20/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":833,"Cost":746,"Date":"6/2/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":83,"Cost":65,"Date":"6/11/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":713,"Cost":455,"Date":"6/16/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":496,"Cost":427,"Date":"6/16/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":808,"Cost":420,"Date":"7/10/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":603,"Cost":555,"Date":"7/11/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":575,"Cost":361,"Date":"8/28/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":900,"Cost":468,"Date":"8/29/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":130,"Cost":79,"Date":"8/31/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":432,"Cost":224,"Date":"9/8/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":11,"Cost":6,"Date":"9/13/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":217,"Cost":110,"Date":"9/14/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":51,"Cost":41,"Date":"9/19/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":302,"Cost":166,"Date":"9/25/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":837,"Cost":644,"Date":"10/4/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":478,"Cost":350,"Date":"10/10/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":22,"Cost":14,"Date":"10/17/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":148,"Cost":115,"Date":"10/28/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":276,"Cost":161,"Date":"10/30/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":863,"Cost":599,"Date":"11/1/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":527,"Cost":380,"Date":"11/15/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":901,"Cost":849,"Date":"11/25/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":406,"Cost":286,"Date":"1/10/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":431,"Cost":348,"Date":"1/14/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":246,"Cost":171,"Date":"1/20/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":875,"Cost":718,"Date":"2/8/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":760,"Cost":500,"Date":"2/25/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":170,"Cost":131,"Date":"3/7/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":941,"Cost":594,"Date":"3/14/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":636,"Cost":367,"Date":"3/27/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":142,"Cost":122,"Date":"4/5/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":47,"Cost":29,"Date":"4/14/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":931,"Cost":681,"Date":"5/3/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":478,"Cost":454,"Date":"5/9/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":726,"Cost":604,"Date":"5/15/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":194,"Cost":143,"Date":"5/25/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":576,"Cost":534,"Date":"5/26/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":569,"Cost":520,"Date":"5/31/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":227,"Cost":118,"Date":"7/27/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":311,"Cost":161,"Date":"9/17/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":797,"Cost":671,"Date":"10/6/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":483,"Cost":389,"Date":"10/8/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":875,"Cost":748,"Date":"10/26/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":990,"Cost":893,"Date":"11/16/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":774,"Cost":693,"Date":"11/18/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":537,"Cost":392,"Date":"12/1/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":195,"Cost":128,"Date":"2/9/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":603,"Cost":562,"Date":"2/11/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":245,"Cost":146,"Date":"3/10/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":741,"Cost":528,"Date":"3/16/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":218,"Cost":159,"Date":"3/18/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":59,"Cost":56,"Date":"3/20/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":887,"Cost":487,"Date":"3/26/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":389,"Cost":293,"Date":"6/2/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":188,"Cost":124,"Date":"6/10/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":218,"Cost":131,"Date":"6/16/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":295,"Cost":276,"Date":"6/25/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":15,"Cost":7,"Date":"7/19/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":358,"Cost":277,"Date":"7/21/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":187,"Cost":103,"Date":"7/25/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":391,"Cost":279,"Date":"8/4/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":870,"Cost":557,"Date":"9/2/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":43,"Cost":35,"Date":"9/4/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":562,"Cost":377,"Date":"9/19/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":650,"Cost":464,"Date":"9/29/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":779,"Cost":536,"Date":"10/2/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":55,"Cost":48,"Date":"10/15/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":492,"Cost":352,"Date":"10/30/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":571,"Cost":369,"Date":"11/9/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":246,"Cost":191,"Date":"11/23/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":909,"Cost":810,"Date":"11/30/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":204,"Cost":188,"Date":"12/8/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":91,"Cost":49,"Date":"12/11/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":992,"Cost":667,"Date":"1/15/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":122,"Cost":77,"Date":"1/24/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":952,"Cost":700,"Date":"2/3/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":489,"Cost":452,"Date":"2/4/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":546,"Cost":347,"Date":"3/9/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":306,"Cost":291,"Date":"3/12/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":38,"Cost":36,"Date":"4/19/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":273,"Cost":238,"Date":"5/3/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":76,"Cost":69,"Date":"5/4/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":429,"Cost":228,"Date":"6/8/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":310,"Cost":202,"Date":"6/26/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":186,"Cost":155,"Date":"7/4/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":898,"Cost":846,"Date":"7/13/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":654,"Cost":347,"Date":"8/8/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":131,"Cost":120,"Date":"8/26/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":717,"Cost":469,"Date":"9/2/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":239,"Cost":167,"Date":"9/29/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":419,"Cost":355,"Date":"10/12/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":560,"Cost":503,"Date":"11/2/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":173,"Cost":147,"Date":"11/4/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":82,"Cost":72,"Date":"11/7/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":981,"Cost":642,"Date":"12/1/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":109,"Cost":79,"Date":"12/4/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":602,"Cost":366,"Date":"12/7/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":881,"Cost":474,"Date":"12/18/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":921,"Cost":693,"Date":"12/20/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":167,"Cost":117,"Date":"12/20/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":705,"Cost":487,"Date":"12/21/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":454,"Cost":403,"Date":"1/9/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":805,"Cost":521,"Date":"2/5/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":218,"Cost":124,"Date":"2/16/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":964,"Cost":726,"Date":"2/16/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":803,"Cost":579,"Date":"2/18/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":743,"Cost":541,"Date":"2/22/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":80,"Cost":41,"Date":"2/25/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":988,"Cost":576,"Date":"3/8/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":291,"Cost":164,"Date":"4/2/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":72,"Cost":65,"Date":"4/3/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":85,"Cost":42,"Date":"4/9/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":484,"Cost":342,"Date":"4/10/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":800,"Cost":453,"Date":"4/19/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":440,"Cost":391,"Date":"5/17/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":177,"Cost":137,"Date":"5/22/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":771,"Cost":505,"Date":"6/20/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":89,"Cost":72,"Date":"7/1/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":364,"Cost":185,"Date":"7/4/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":989,"Cost":694,"Date":"7/8/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":241,"Cost":207,"Date":"7/9/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":107,"Cost":67,"Date":"7/14/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":395,"Cost":203,"Date":"7/19/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":978,"Cost":770,"Date":"8/1/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":1000,"Cost":633,"Date":"8/6/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":88,"Cost":44,"Date":"8/7/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":789,"Cost":652,"Date":"8/22/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":905,"Cost":504,"Date":"8/31/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":939,"Cost":667,"Date":"9/1/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":147,"Cost":136,"Date":"9/1/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":80,"Cost":75,"Date":"9/17/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":333,"Cost":276,"Date":"9/29/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":334,"Cost":195,"Date":"11/7/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":964,"Cost":851,"Date":"11/26/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":811,"Cost":416,"Date":"11/27/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":617,"Cost":388,"Date":"12/5/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":434,"Cost":352,"Date":"12/26/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":941,"Cost":880,"Date":"12/31/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":998,"Cost":871,"Date":"1/20/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":573,"Cost":412,"Date":"2/2/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":740,"Cost":603,"Date":"2/8/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":910,"Cost":547,"Date":"2/27/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":353,"Cost":276,"Date":"3/1/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":891,"Cost":759,"Date":"3/1/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":951,"Cost":489,"Date":"3/19/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":809,"Cost":636,"Date":"3/28/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":563,"Cost":496,"Date":"5/21/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":568,"Cost":414,"Date":"7/21/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":857,"Cost":534,"Date":"8/5/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":863,"Cost":791,"Date":"8/12/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":960,"Cost":698,"Date":"8/21/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":828,"Cost":610,"Date":"8/23/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":828,"Cost":415,"Date":"9/3/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":510,"Cost":429,"Date":"9/5/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":834,"Cost":536,"Date":"10/6/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":567,"Cost":499,"Date":"10/19/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":745,"Cost":620,"Date":"11/15/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":251,"Cost":189,"Date":"12/8/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":616,"Cost":390,"Date":"1/8/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":386,"Cost":265,"Date":"1/14/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":329,"Cost":233,"Date":"1/19/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":790,"Cost":734,"Date":"1/28/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":109,"Cost":89,"Date":"1/31/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":305,"Cost":172,"Date":"3/27/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":784,"Cost":505,"Date":"4/20/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":922,"Cost":475,"Date":"4/24/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":83,"Cost":42,"Date":"4/28/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":773,"Cost":604,"Date":"5/15/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":293,"Cost":261,"Date":"5/16/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":684,"Cost":482,"Date":"5/18/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":921,"Cost":731,"Date":"6/2/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":981,"Cost":887,"Date":"6/3/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":319,"Cost":174,"Date":"6/5/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":81,"Cost":73,"Date":"6/7/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":772,"Cost":682,"Date":"6/14/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":214,"Cost":127,"Date":"6/20/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":733,"Cost":416,"Date":"6/24/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":839,"Cost":446,"Date":"7/4/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":964,"Cost":899,"Date":"7/9/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":203,"Cost":147,"Date":"7/12/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":755,"Cost":523,"Date":"8/14/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":39,"Cost":25,"Date":"8/16/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":917,"Cost":860,"Date":"8/23/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":160,"Cost":115,"Date":"9/2/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":927,"Cost":494,"Date":"9/3/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":269,"Cost":178,"Date":"9/16/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":910,"Cost":672,"Date":"10/4/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":328,"Cost":188,"Date":"11/1/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":704,"Cost":627,"Date":"11/2/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":12,"Cost":9,"Date":"12/17/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":804,"Cost":522,"Date":"2/10/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":365,"Cost":298,"Date":"2/28/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":702,"Cost":385,"Date":"3/4/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":456,"Cost":377,"Date":"3/9/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":622,"Cost":545,"Date":"3/9/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":178,"Cost":169,"Date":"3/11/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":85,"Cost":72,"Date":"3/17/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":902,"Cost":702,"Date":"3/17/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":429,"Cost":313,"Date":"3/23/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":454,"Cost":429,"Date":"4/1/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":634,"Cost":345,"Date":"5/7/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":510,"Cost":392,"Date":"5/10/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":173,"Cost":88,"Date":"5/20/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":750,"Cost":512,"Date":"6/2/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":405,"Cost":232,"Date":"6/11/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":711,"Cost":624,"Date":"6/16/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":433,"Cost":220,"Date":"6/16/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":539,"Cost":374,"Date":"7/10/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":678,"Cost":505,"Date":"7/11/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":84,"Cost":44,"Date":"8/28/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":203,"Cost":175,"Date":"8/29/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":220,"Cost":172,"Date":"8/31/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":534,"Cost":289,"Date":"9/8/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":561,"Cost":523,"Date":"9/13/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":643,"Cost":601,"Date":"9/14/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":458,"Cost":401,"Date":"9/19/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":584,"Cost":423,"Date":"9/25/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":524,"Cost":458,"Date":"10/4/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":602,"Cost":475,"Date":"10/10/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":714,"Cost":543,"Date":"10/17/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":256,"Cost":155,"Date":"10/28/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":19,"Cost":10,"Date":"10/30/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":799,"Cost":568,"Date":"11/1/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":580,"Cost":343,"Date":"11/15/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":973,"Cost":604,"Date":"11/25/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":373,"Cost":280,"Date":"1/10/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":721,"Cost":537,"Date":"1/14/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":170,"Cost":155,"Date":"1/20/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":771,"Cost":592,"Date":"2/8/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":333,"Cost":201,"Date":"2/25/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":560,"Cost":417,"Date":"3/7/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":211,"Cost":178,"Date":"3/14/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":567,"Cost":355,"Date":"3/27/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":271,"Cost":177,"Date":"4/5/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":546,"Cost":310,"Date":"4/14/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":11,"Cost":8,"Date":"5/3/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":869,"Cost":771,"Date":"5/9/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":405,"Cost":318,"Date":"5/15/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":43,"Cost":23,"Date":"5/25/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":977,"Cost":871,"Date":"5/26/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":195,"Cost":173,"Date":"5/31/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":640,"Cost":371,"Date":"7/27/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":810,"Cost":621,"Date":"9/17/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":68,"Cost":52,"Date":"10/6/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":460,"Cost":256,"Date":"10/8/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":701,"Cost":373,"Date":"10/26/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":706,"Cost":548,"Date":"11/16/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":589,"Cost":400,"Date":"11/18/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"Nova","Country":"Japan","Sale":923,"Cost":515,"Date":"12/1/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":244,"Cost":150,"Date":"2/9/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":553,"Cost":389,"Date":"2/11/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":546,"Cost":334,"Date":"3/10/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":833,"Cost":689,"Date":"3/16/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":586,"Cost":306,"Date":"3/18/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":859,"Cost":465,"Date":"3/20/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":376,"Cost":208,"Date":"3/26/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":752,"Cost":561,"Date":"6/2/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":598,"Cost":477,"Date":"6/10/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":79,"Cost":58,"Date":"6/16/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":202,"Cost":156,"Date":"6/25/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":502,"Cost":389,"Date":"7/19/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":615,"Cost":391,"Date":"7/21/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":647,"Cost":606,"Date":"7/25/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":374,"Cost":194,"Date":"8/4/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":27,"Cost":20,"Date":"9/2/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":117,"Cost":87,"Date":"9/4/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":746,"Cost":502,"Date":"9/19/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":379,"Cost":252,"Date":"9/29/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":1000,"Cost":674,"Date":"10/2/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":553,"Cost":413,"Date":"10/15/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":299,"Cost":151,"Date":"10/30/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":804,"Cost":409,"Date":"11/9/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":471,"Cost":327,"Date":"11/23/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":580,"Cost":524,"Date":"11/30/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":234,"Cost":140,"Date":"12/8/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":670,"Cost":559,"Date":"12/11/2018"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":466,"Cost":279,"Date":"1/15/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":77,"Cost":45,"Date":"1/24/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":237,"Cost":165,"Date":"2/3/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":291,"Cost":275,"Date":"2/4/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":12,"Cost":6,"Date":"3/9/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":584,"Cost":465,"Date":"3/12/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":414,"Cost":366,"Date":"4/19/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":36,"Cost":32,"Date":"5/3/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":88,"Cost":52,"Date":"5/4/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":824,"Cost":456,"Date":"6/8/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":566,"Cost":284,"Date":"6/26/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":566,"Cost":533,"Date":"7/4/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":848,"Cost":452,"Date":"7/13/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":538,"Cost":272,"Date":"8/8/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":862,"Cost":710,"Date":"8/26/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":790,"Cost":479,"Date":"9/2/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":389,"Cost":263,"Date":"9/29/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":508,"Cost":295,"Date":"10/12/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":82,"Cost":57,"Date":"11/2/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":164,"Cost":92,"Date":"11/4/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":581,"Cost":294,"Date":"11/7/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":188,"Cost":111,"Date":"12/1/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":247,"Cost":177,"Date":"12/4/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":826,"Cost":609,"Date":"12/7/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":801,"Cost":718,"Date":"12/18/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":456,"Cost":388,"Date":"12/20/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":330,"Cost":304,"Date":"12/20/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":246,"Cost":191,"Date":"12/21/2019"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":437,"Cost":268,"Date":"1/9/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":77,"Cost":41,"Date":"2/5/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":672,"Cost":403,"Date":"2/16/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":312,"Cost":175,"Date":"2/16/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":60,"Cost":38,"Date":"2/18/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":646,"Cost":390,"Date":"2/22/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":143,"Cost":112,"Date":"2/25/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":721,"Cost":666,"Date":"3/8/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":864,"Cost":573,"Date":"4/2/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":355,"Cost":242,"Date":"4/3/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":229,"Cost":148,"Date":"4/9/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":909,"Cost":647,"Date":"4/10/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":569,"Cost":453,"Date":"4/19/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":921,"Cost":590,"Date":"5/17/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":530,"Cost":430,"Date":"5/22/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":620,"Cost":455,"Date":"6/20/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":435,"Cost":331,"Date":"7/1/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":240,"Cost":123,"Date":"7/4/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":924,"Cost":496,"Date":"7/8/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":120,"Cost":101,"Date":"7/9/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":589,"Cost":453,"Date":"7/14/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":636,"Cost":499,"Date":"7/19/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":203,"Cost":117,"Date":"8/1/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":268,"Cost":153,"Date":"8/6/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":595,"Cost":530,"Date":"8/7/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":289,"Cost":200,"Date":"8/22/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":173,"Cost":129,"Date":"8/31/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":320,"Cost":212,"Date":"9/1/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":113,"Cost":68,"Date":"9/1/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":526,"Cost":346,"Date":"9/17/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":287,"Cost":178,"Date":"9/29/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":398,"Cost":325,"Date":"11/7/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":310,"Cost":260,"Date":"11/26/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":767,"Cost":699,"Date":"11/27/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":832,"Cost":680,"Date":"12/5/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":881,"Cost":512,"Date":"12/26/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":730,"Cost":407,"Date":"12/31/2020"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":714,"Cost":526,"Date":"1/20/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":872,"Cost":807,"Date":"2/2/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":670,"Cost":504,"Date":"2/8/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":624,"Cost":431,"Date":"2/27/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":948,"Cost":519,"Date":"3/1/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":29,"Cost":21,"Date":"3/1/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":952,"Cost":764,"Date":"3/19/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":721,"Cost":491,"Date":"3/28/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":499,"Cost":472,"Date":"5/21/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":257,"Cost":218,"Date":"7/21/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":405,"Cost":359,"Date":"8/5/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":273,"Cost":190,"Date":"8/12/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":3,"Cost":3,"Date":"8/21/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":6,"Cost":3,"Date":"8/23/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":733,"Cost":683,"Date":"9/3/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":626,"Cost":578,"Date":"9/5/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":951,"Cost":895,"Date":"10/6/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":232,"Cost":139,"Date":"10/19/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":369,"Cost":218,"Date":"11/15/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":995,"Cost":941,"Date":"12/8/2021"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":149,"Cost":133,"Date":"1/8/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":274,"Cost":176,"Date":"1/14/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":992,"Cost":926,"Date":"1/19/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":644,"Cost":393,"Date":"1/28/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":409,"Cost":216,"Date":"1/31/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":263,"Cost":210,"Date":"3/27/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":905,"Cost":621,"Date":"4/20/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":116,"Cost":88,"Date":"4/24/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":155,"Cost":87,"Date":"4/28/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":929,"Cost":675,"Date":"5/15/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":40,"Cost":23,"Date":"5/16/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":242,"Cost":229,"Date":"5/18/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":790,"Cost":681,"Date":"6/2/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":198,"Cost":161,"Date":"6/3/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":445,"Cost":367,"Date":"6/5/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":445,"Cost":230,"Date":"6/7/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":634,"Cost":587,"Date":"6/14/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":519,"Cost":480,"Date":"6/20/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":276,"Cost":146,"Date":"6/24/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":854,"Cost":805,"Date":"7/4/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":179,"Cost":149,"Date":"7/9/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":291,"Cost":213,"Date":"7/12/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":255,"Cost":182,"Date":"8/14/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":291,"Cost":229,"Date":"8/16/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":821,"Cost":452,"Date":"8/23/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":7,"Cost":6,"Date":"9/2/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":973,"Cost":699,"Date":"9/3/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":917,"Cost":656,"Date":"9/16/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":671,"Cost":570,"Date":"10/4/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":759,"Cost":707,"Date":"11/1/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":367,"Cost":211,"Date":"11/2/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":260,"Cost":236,"Date":"12/17/2022"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":715,"Cost":556,"Date":"2/10/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":18,"Cost":12,"Date":"2/28/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":834,"Cost":431,"Date":"3/4/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":215,"Cost":159,"Date":"3/9/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":571,"Cost":297,"Date":"3/9/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":433,"Cost":393,"Date":"3/11/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":510,"Cost":385,"Date":"3/17/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":270,"Cost":247,"Date":"3/17/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":947,"Cost":736,"Date":"3/23/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":734,"Cost":495,"Date":"4/1/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":134,"Cost":103,"Date":"5/7/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":506,"Cost":371,"Date":"5/10/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":44,"Cost":41,"Date":"5/20/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":334,"Cost":207,"Date":"6/2/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":224,"Cost":206,"Date":"6/11/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":527,"Cost":366,"Date":"6/16/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":898,"Cost":483,"Date":"6/16/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":902,"Cost":771,"Date":"7/10/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":65,"Cost":34,"Date":"7/11/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":147,"Cost":106,"Date":"8/28/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":408,"Cost":326,"Date":"8/29/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":553,"Cost":366,"Date":"8/31/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":258,"Cost":221,"Date":"9/8/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":839,"Cost":557,"Date":"9/13/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":189,"Cost":101,"Date":"9/14/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":194,"Cost":168,"Date":"9/19/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":498,"Cost":471,"Date":"9/25/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":338,"Cost":276,"Date":"10/4/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":444,"Cost":241,"Date":"10/10/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":239,"Cost":122,"Date":"10/17/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":522,"Cost":338,"Date":"10/28/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":421,"Cost":243,"Date":"10/30/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":114,"Cost":75,"Date":"11/1/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":489,"Cost":295,"Date":"11/15/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":893,"Cost":454,"Date":"11/25/2023"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":229,"Cost":124,"Date":"1/10/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":440,"Cost":344,"Date":"1/14/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":105,"Cost":69,"Date":"1/20/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":173,"Cost":138,"Date":"2/8/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":111,"Cost":84,"Date":"2/25/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":337,"Cost":216,"Date":"3/7/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":895,"Cost":737,"Date":"3/14/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":36,"Cost":30,"Date":"3/27/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":82,"Cost":61,"Date":"4/5/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":475,"Cost":391,"Date":"4/14/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":163,"Cost":128,"Date":"5/3/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":857,"Cost":622,"Date":"5/9/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":406,"Cost":276,"Date":"5/15/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":53,"Cost":46,"Date":"5/25/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":778,"Cost":696,"Date":"5/26/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":688,"Cost":640,"Date":"5/31/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":649,"Cost":334,"Date":"7/27/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":113,"Cost":65,"Date":"9/17/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":229,"Cost":135,"Date":"10/6/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":183,"Cost":109,"Date":"10/8/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":689,"Cost":541,"Date":"10/26/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":286,"Cost":194,"Date":"11/16/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":65,"Cost":56,"Date":"11/18/2024"},{"Store":"Abeno Harukas Kintetsu, Osaka","Brand":"ARKET","Country":"Japan","Sale":919,"Cost":712,"Date":"12/1/2024"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":32,"Cost":25,"Date":"2/9/2018"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":127,"Cost":73,"Date":"2/11/2018"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":673,"Cost":596,"Date":"3/10/2018"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":795,"Cost":424,"Date":"3/16/2018"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":518,"Cost":408,"Date":"3/18/2018"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":436,"Cost":290,"Date":"3/20/2018"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":988,"Cost":530,"Date":"3/26/2018"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":422,"Cost":321,"Date":"6/2/2018"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":666,"Cost":358,"Date":"6/10/2018"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":542,"Cost":346,"Date":"6/16/2018"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":634,"Cost":441,"Date":"6/25/2018"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":749,"Cost":502,"Date":"7/19/2018"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":989,"Cost":698,"Date":"7/21/2018"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":340,"Cost":213,"Date":"7/25/2018"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":436,"Cost":245,"Date":"8/4/2018"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":436,"Cost":277,"Date":"9/2/2018"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":593,"Cost":394,"Date":"9/4/2018"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":427,"Cost":320,"Date":"9/19/2018"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":618,"Cost":482,"Date":"9/29/2018"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":449,"Cost":415,"Date":"10/2/2018"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":897,"Cost":584,"Date":"10/15/2018"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":967,"Cost":816,"Date":"10/30/2018"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":519,"Cost":487,"Date":"11/9/2018"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":969,"Cost":796,"Date":"11/23/2018"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":618,"Cost":570,"Date":"11/30/2018"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":850,"Cost":516,"Date":"12/8/2018"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":988,"Cost":913,"Date":"12/11/2018"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":293,"Cost":196,"Date":"1/15/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":75,"Cost":48,"Date":"1/24/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":29,"Cost":22,"Date":"2/3/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":46,"Cost":38,"Date":"2/4/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":768,"Cost":449,"Date":"3/9/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":512,"Cost":281,"Date":"3/12/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":328,"Cost":202,"Date":"4/19/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":737,"Cost":443,"Date":"5/3/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":944,"Cost":729,"Date":"5/4/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":765,"Cost":658,"Date":"6/8/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":728,"Cost":631,"Date":"6/26/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":675,"Cost":589,"Date":"7/4/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":824,"Cost":439,"Date":"7/13/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":962,"Cost":654,"Date":"8/8/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":86,"Cost":75,"Date":"8/26/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":882,"Cost":635,"Date":"9/2/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":503,"Cost":260,"Date":"9/29/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":963,"Cost":655,"Date":"10/12/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":174,"Cost":158,"Date":"11/2/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":262,"Cost":211,"Date":"11/4/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":828,"Cost":465,"Date":"11/7/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":20,"Cost":15,"Date":"12/1/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":96,"Cost":80,"Date":"12/4/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":763,"Cost":509,"Date":"12/7/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":601,"Cost":389,"Date":"12/18/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":371,"Cost":272,"Date":"12/20/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":466,"Cost":389,"Date":"12/20/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":194,"Cost":108,"Date":"12/21/2019"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":755,"Cost":533,"Date":"1/9/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":130,"Cost":76,"Date":"2/5/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":117,"Cost":79,"Date":"2/16/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":872,"Cost":760,"Date":"2/16/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":754,"Cost":501,"Date":"2/18/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":443,"Cost":253,"Date":"2/22/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":28,"Cost":18,"Date":"2/25/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":575,"Cost":298,"Date":"3/8/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":334,"Cost":245,"Date":"4/2/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":939,"Cost":629,"Date":"4/3/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":557,"Cost":351,"Date":"4/9/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":191,"Cost":107,"Date":"4/10/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":318,"Cost":245,"Date":"4/19/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":965,"Cost":714,"Date":"5/17/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":281,"Cost":172,"Date":"5/22/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":944,"Cost":830,"Date":"6/20/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":891,"Cost":725,"Date":"7/1/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":897,"Cost":512,"Date":"7/4/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":689,"Cost":413,"Date":"7/8/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":680,"Cost":513,"Date":"7/9/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":390,"Cost":214,"Date":"7/14/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":713,"Cost":474,"Date":"7/19/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":379,"Cost":273,"Date":"8/1/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":916,"Cost":489,"Date":"8/6/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":130,"Cost":103,"Date":"8/7/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":183,"Cost":130,"Date":"8/22/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":181,"Cost":152,"Date":"8/31/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":463,"Cost":352,"Date":"9/1/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":380,"Cost":350,"Date":"9/1/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":568,"Cost":373,"Date":"9/17/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":336,"Cost":238,"Date":"9/29/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":971,"Cost":850,"Date":"11/7/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":963,"Cost":613,"Date":"11/26/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":112,"Cost":92,"Date":"11/27/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":160,"Cost":124,"Date":"12/5/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":442,"Cost":312,"Date":"12/26/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":588,"Cost":344,"Date":"12/31/2020"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":983,"Cost":508,"Date":"1/20/2021"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":99,"Cost":49,"Date":"2/2/2021"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":905,"Cost":527,"Date":"2/8/2021"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":298,"Cost":263,"Date":"2/27/2021"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":9,"Cost":7,"Date":"3/1/2021"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":597,"Cost":379,"Date":"3/1/2021"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":108,"Cost":93,"Date":"3/19/2021"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":805,"Cost":576,"Date":"3/28/2021"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":142,"Cost":133,"Date":"5/21/2021"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":666,"Cost":608,"Date":"7/21/2021"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":183,"Cost":149,"Date":"8/5/2021"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":822,"Cost":708,"Date":"8/12/2021"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":862,"Cost":810,"Date":"8/21/2021"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":534,"Cost":403,"Date":"8/23/2021"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":982,"Cost":635,"Date":"9/3/2021"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":971,"Cost":896,"Date":"9/5/2021"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":180,"Cost":109,"Date":"10/6/2021"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":246,"Cost":230,"Date":"10/19/2021"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":911,"Cost":635,"Date":"11/15/2021"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":893,"Cost":819,"Date":"12/8/2021"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":234,"Cost":131,"Date":"1/8/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":160,"Cost":98,"Date":"1/14/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":161,"Cost":116,"Date":"1/19/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":190,"Cost":125,"Date":"1/28/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":293,"Cost":148,"Date":"1/31/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":576,"Cost":485,"Date":"3/27/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":645,"Cost":413,"Date":"4/20/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":988,"Cost":748,"Date":"4/24/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":166,"Cost":128,"Date":"4/28/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":24,"Cost":19,"Date":"5/15/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":854,"Cost":507,"Date":"5/16/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":211,"Cost":175,"Date":"5/18/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":140,"Cost":87,"Date":"6/2/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":121,"Cost":110,"Date":"6/3/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":830,"Cost":490,"Date":"6/5/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":684,"Cost":462,"Date":"6/7/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":178,"Cost":141,"Date":"6/14/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":831,"Cost":744,"Date":"6/20/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":96,"Cost":89,"Date":"6/24/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":515,"Cost":474,"Date":"7/4/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":984,"Cost":753,"Date":"7/9/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":674,"Cost":525,"Date":"7/12/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":786,"Cost":688,"Date":"8/14/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":536,"Cost":336,"Date":"8/16/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":551,"Cost":461,"Date":"8/23/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":544,"Cost":451,"Date":"9/2/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":422,"Cost":235,"Date":"9/3/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":353,"Cost":285,"Date":"9/16/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":288,"Cost":223,"Date":"10/4/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":386,"Cost":237,"Date":"11/1/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":846,"Cost":476,"Date":"11/2/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":377,"Cost":245,"Date":"12/17/2022"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":386,"Cost":231,"Date":"2/10/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":924,"Cost":637,"Date":"2/28/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":238,"Cost":155,"Date":"3/4/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":573,"Cost":479,"Date":"3/9/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":251,"Cost":184,"Date":"3/9/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":396,"Cost":216,"Date":"3/11/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":582,"Cost":300,"Date":"3/17/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":628,"Cost":351,"Date":"3/17/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":533,"Cost":503,"Date":"3/23/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":707,"Cost":603,"Date":"4/1/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":126,"Cost":119,"Date":"5/7/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":478,"Cost":262,"Date":"5/10/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":129,"Cost":123,"Date":"5/20/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":661,"Cost":367,"Date":"6/2/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":9,"Cost":8,"Date":"6/11/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":42,"Cost":35,"Date":"6/16/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":333,"Cost":190,"Date":"6/16/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":561,"Cost":316,"Date":"7/10/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":300,"Cost":214,"Date":"7/11/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":962,"Cost":663,"Date":"8/28/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":735,"Cost":694,"Date":"8/29/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":836,"Cost":678,"Date":"8/31/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":152,"Cost":76,"Date":"9/8/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":88,"Cost":55,"Date":"9/13/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":784,"Cost":659,"Date":"9/14/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":869,"Cost":697,"Date":"9/19/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":584,"Cost":308,"Date":"9/25/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":966,"Cost":633,"Date":"10/4/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":210,"Cost":145,"Date":"10/10/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":683,"Cost":383,"Date":"10/17/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":632,"Cost":576,"Date":"10/28/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":83,"Cost":41,"Date":"10/30/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":2,"Cost":2,"Date":"11/1/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":284,"Cost":246,"Date":"11/15/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":652,"Cost":495,"Date":"11/25/2023"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":917,"Cost":870,"Date":"1/10/2024"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":188,"Cost":178,"Date":"1/14/2024"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":556,"Cost":454,"Date":"1/20/2024"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":903,"Cost":512,"Date":"2/8/2024"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":20,"Cost":17,"Date":"2/25/2024"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":178,"Cost":127,"Date":"3/7/2024"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":337,"Cost":309,"Date":"3/14/2024"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":276,"Cost":213,"Date":"3/27/2024"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":481,"Cost":259,"Date":"4/5/2024"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":768,"Cost":549,"Date":"4/14/2024"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":67,"Cost":34,"Date":"5/3/2024"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":688,"Cost":572,"Date":"5/9/2024"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":587,"Cost":300,"Date":"5/15/2024"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":748,"Cost":667,"Date":"5/25/2024"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":139,"Cost":72,"Date":"5/26/2024"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":464,"Cost":312,"Date":"5/31/2024"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":32,"Cost":28,"Date":"7/27/2024"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":664,"Cost":468,"Date":"9/17/2024"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":803,"Cost":696,"Date":"10/6/2024"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":662,"Cost":448,"Date":"10/8/2024"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":80,"Cost":64,"Date":"10/26/2024"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":881,"Cost":713,"Date":"11/16/2024"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":323,"Cost":216,"Date":"11/18/2024"},{"Store":"Kyoto Station Building","Brand":"Sellpy","Country":"Japan","Sale":130,"Cost":103,"Date":"12/1/2024"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":624,"Cost":463,"Date":"2/9/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":605,"Cost":564,"Date":"2/11/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":410,"Cost":378,"Date":"3/10/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":439,"Cost":344,"Date":"3/16/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":858,"Cost":769,"Date":"3/18/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":410,"Cost":332,"Date":"3/20/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":744,"Cost":623,"Date":"3/26/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":896,"Cost":687,"Date":"6/2/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":765,"Cost":655,"Date":"6/10/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":62,"Cost":41,"Date":"6/16/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":657,"Cost":498,"Date":"6/25/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":383,"Cost":308,"Date":"7/19/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":974,"Cost":548,"Date":"7/21/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":618,"Cost":330,"Date":"7/25/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":101,"Cost":61,"Date":"8/4/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":144,"Cost":74,"Date":"9/2/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":475,"Cost":414,"Date":"9/4/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":961,"Cost":832,"Date":"9/19/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":513,"Cost":384,"Date":"9/29/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":910,"Cost":645,"Date":"10/2/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":728,"Cost":552,"Date":"10/15/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":607,"Cost":419,"Date":"10/30/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":230,"Cost":212,"Date":"11/9/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":877,"Cost":823,"Date":"11/23/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":991,"Cost":505,"Date":"11/30/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":260,"Cost":209,"Date":"12/8/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":955,"Cost":547,"Date":"12/11/2018"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":230,"Cost":168,"Date":"1/15/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":774,"Cost":638,"Date":"1/24/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":780,"Cost":421,"Date":"2/3/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":309,"Cost":238,"Date":"2/4/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":517,"Cost":319,"Date":"3/9/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":208,"Cost":152,"Date":"3/12/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":565,"Cost":523,"Date":"4/19/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":964,"Cost":856,"Date":"5/3/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":899,"Cost":664,"Date":"5/4/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":562,"Cost":398,"Date":"6/8/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":180,"Cost":138,"Date":"6/26/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":1000,"Cost":871,"Date":"7/4/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":502,"Cost":343,"Date":"7/13/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":600,"Cost":548,"Date":"8/8/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":807,"Cost":430,"Date":"8/26/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":614,"Cost":516,"Date":"9/2/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":433,"Cost":357,"Date":"9/29/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":268,"Cost":187,"Date":"10/12/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":484,"Cost":419,"Date":"11/2/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":852,"Cost":550,"Date":"11/4/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":918,"Cost":541,"Date":"11/7/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":780,"Cost":572,"Date":"12/1/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":839,"Cost":704,"Date":"12/4/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":904,"Cost":799,"Date":"12/7/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":11,"Cost":6,"Date":"12/18/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":303,"Cost":284,"Date":"12/20/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":422,"Cost":251,"Date":"12/20/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":442,"Cost":307,"Date":"12/21/2019"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":112,"Cost":69,"Date":"1/9/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":662,"Cost":376,"Date":"2/5/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":740,"Cost":515,"Date":"2/16/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":888,"Cost":520,"Date":"2/16/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":47,"Cost":44,"Date":"2/18/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":216,"Cost":148,"Date":"2/22/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":463,"Cost":238,"Date":"2/25/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":816,"Cost":742,"Date":"3/8/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":959,"Cost":823,"Date":"4/2/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":17,"Cost":13,"Date":"4/3/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":473,"Cost":263,"Date":"4/9/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":683,"Cost":520,"Date":"4/10/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":323,"Cost":262,"Date":"4/19/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":753,"Cost":478,"Date":"5/17/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":446,"Cost":403,"Date":"5/22/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":225,"Cost":123,"Date":"6/20/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":320,"Cost":258,"Date":"7/1/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":58,"Cost":48,"Date":"7/4/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":897,"Cost":717,"Date":"7/8/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":947,"Cost":486,"Date":"7/9/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":780,"Cost":414,"Date":"7/14/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":759,"Cost":696,"Date":"7/19/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":160,"Cost":149,"Date":"8/1/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":250,"Cost":128,"Date":"8/6/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":101,"Cost":62,"Date":"8/7/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":431,"Cost":395,"Date":"8/22/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":45,"Cost":37,"Date":"8/31/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":425,"Cost":320,"Date":"9/1/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":182,"Cost":142,"Date":"9/1/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":648,"Cost":569,"Date":"9/17/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":999,"Cost":859,"Date":"9/29/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":428,"Cost":295,"Date":"11/7/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":439,"Cost":347,"Date":"11/26/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":152,"Cost":144,"Date":"11/27/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":433,"Cost":294,"Date":"12/5/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":734,"Cost":392,"Date":"12/26/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":327,"Cost":291,"Date":"12/31/2020"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":143,"Cost":119,"Date":"1/20/2021"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":611,"Cost":331,"Date":"2/2/2021"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":569,"Cost":488,"Date":"2/8/2021"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":494,"Cost":400,"Date":"2/27/2021"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":927,"Cost":504,"Date":"3/1/2021"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":454,"Cost":375,"Date":"3/1/2021"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":255,"Cost":203,"Date":"3/19/2021"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":703,"Cost":399,"Date":"3/28/2021"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":837,"Cost":535,"Date":"5/21/2021"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":777,"Cost":725,"Date":"7/21/2021"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":864,"Cost":571,"Date":"8/5/2021"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":859,"Cost":645,"Date":"8/12/2021"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":236,"Cost":134,"Date":"8/21/2021"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":99,"Cost":67,"Date":"8/23/2021"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":987,"Cost":763,"Date":"9/3/2021"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":910,"Cost":623,"Date":"9/5/2021"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":383,"Cost":301,"Date":"10/6/2021"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":638,"Cost":347,"Date":"10/19/2021"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":516,"Cost":298,"Date":"11/15/2021"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":612,"Cost":445,"Date":"12/8/2021"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":716,"Cost":505,"Date":"1/8/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":420,"Cost":295,"Date":"1/14/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":674,"Cost":626,"Date":"1/19/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":783,"Cost":567,"Date":"1/28/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":691,"Cost":530,"Date":"1/31/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":355,"Cost":283,"Date":"3/27/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":928,"Cost":769,"Date":"4/20/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":758,"Cost":504,"Date":"4/24/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":338,"Cost":284,"Date":"4/28/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":878,"Cost":639,"Date":"5/15/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":401,"Cost":363,"Date":"5/16/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":317,"Cost":275,"Date":"5/18/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":758,"Cost":650,"Date":"6/2/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":163,"Cost":121,"Date":"6/3/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":302,"Cost":198,"Date":"6/5/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":246,"Cost":172,"Date":"6/7/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":805,"Cost":490,"Date":"6/14/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":347,"Cost":240,"Date":"6/20/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":71,"Cost":51,"Date":"6/24/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":533,"Cost":420,"Date":"7/4/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":233,"Cost":155,"Date":"7/9/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":786,"Cost":674,"Date":"7/12/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":796,"Cost":715,"Date":"8/14/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":889,"Cost":834,"Date":"8/16/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":489,"Cost":458,"Date":"8/23/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":55,"Cost":43,"Date":"9/2/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":278,"Cost":158,"Date":"9/3/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":162,"Cost":91,"Date":"9/16/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":10,"Cost":10,"Date":"10/4/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":233,"Cost":215,"Date":"11/1/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":725,"Cost":425,"Date":"11/2/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":774,"Cost":621,"Date":"12/17/2022"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":773,"Cost":719,"Date":"2/10/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":185,"Cost":136,"Date":"2/28/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":93,"Cost":50,"Date":"3/4/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":164,"Cost":151,"Date":"3/9/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":274,"Cost":158,"Date":"3/9/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":232,"Cost":174,"Date":"3/11/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":597,"Cost":530,"Date":"3/17/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":641,"Cost":494,"Date":"3/17/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":736,"Cost":385,"Date":"3/23/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":112,"Cost":71,"Date":"4/1/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":619,"Cost":533,"Date":"5/7/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":204,"Cost":152,"Date":"5/10/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":685,"Cost":344,"Date":"5/20/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":857,"Cost":508,"Date":"6/2/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":545,"Cost":317,"Date":"6/11/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":150,"Cost":128,"Date":"6/16/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":676,"Cost":639,"Date":"6/16/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":971,"Cost":575,"Date":"7/10/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":388,"Cost":261,"Date":"7/11/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":11,"Cost":8,"Date":"8/28/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":138,"Cost":83,"Date":"8/29/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":349,"Cost":222,"Date":"8/31/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":191,"Cost":126,"Date":"9/8/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":675,"Cost":492,"Date":"9/13/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":401,"Cost":222,"Date":"9/14/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":729,"Cost":397,"Date":"9/19/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":38,"Cost":19,"Date":"9/25/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":216,"Cost":122,"Date":"10/4/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":759,"Cost":671,"Date":"10/10/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":745,"Cost":597,"Date":"10/17/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":58,"Cost":53,"Date":"10/28/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":539,"Cost":471,"Date":"10/30/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":982,"Cost":847,"Date":"11/1/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":901,"Cost":614,"Date":"11/15/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":228,"Cost":184,"Date":"11/25/2023"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":451,"Cost":419,"Date":"1/10/2024"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":822,"Cost":479,"Date":"1/14/2024"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":526,"Cost":352,"Date":"1/20/2024"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":282,"Cost":230,"Date":"2/8/2024"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":192,"Cost":171,"Date":"2/25/2024"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":901,"Cost":567,"Date":"3/7/2024"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":256,"Cost":180,"Date":"3/14/2024"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":731,"Cost":514,"Date":"3/27/2024"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":133,"Cost":78,"Date":"4/5/2024"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":189,"Cost":145,"Date":"4/14/2024"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":891,"Cost":684,"Date":"5/3/2024"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":379,"Cost":203,"Date":"5/9/2024"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":141,"Cost":78,"Date":"5/15/2024"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":407,"Cost":324,"Date":"5/25/2024"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":378,"Cost":269,"Date":"5/26/2024"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":588,"Cost":497,"Date":"5/31/2024"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":557,"Cost":411,"Date":"7/27/2024"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":430,"Cost":357,"Date":"9/17/2024"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":45,"Cost":41,"Date":"10/6/2024"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":605,"Cost":431,"Date":"10/8/2024"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":278,"Cost":156,"Date":"10/26/2024"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":636,"Cost":577,"Date":"11/16/2024"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":121,"Cost":73,"Date":"11/18/2024"},{"Store":"Kyoto Station Building","Brand":"Nova","Country":"Japan","Sale":980,"Cost":801,"Date":"12/1/2024"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":490,"Cost":314,"Date":"2/9/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":450,"Cost":391,"Date":"2/11/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":220,"Cost":133,"Date":"3/10/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":348,"Cost":279,"Date":"3/16/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":89,"Cost":72,"Date":"3/18/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":991,"Cost":526,"Date":"3/20/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":828,"Cost":762,"Date":"3/26/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":756,"Cost":384,"Date":"6/2/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":107,"Cost":83,"Date":"6/10/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":500,"Cost":371,"Date":"6/16/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":142,"Cost":80,"Date":"6/25/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":105,"Cost":65,"Date":"7/19/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":437,"Cost":237,"Date":"7/21/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":586,"Cost":431,"Date":"7/25/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":777,"Cost":404,"Date":"8/4/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":316,"Cost":203,"Date":"9/2/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":161,"Cost":95,"Date":"9/4/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":278,"Cost":229,"Date":"9/19/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":409,"Cost":366,"Date":"9/29/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":453,"Cost":400,"Date":"10/2/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":601,"Cost":378,"Date":"10/15/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":656,"Cost":435,"Date":"10/30/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":488,"Cost":461,"Date":"11/9/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":56,"Cost":50,"Date":"11/23/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":244,"Cost":183,"Date":"11/30/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":702,"Cost":659,"Date":"12/8/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":176,"Cost":142,"Date":"12/11/2018"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":53,"Cost":45,"Date":"1/15/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":189,"Cost":99,"Date":"1/24/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":606,"Cost":470,"Date":"2/3/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":321,"Cost":162,"Date":"2/4/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":89,"Cost":78,"Date":"3/9/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":270,"Cost":176,"Date":"3/12/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":512,"Cost":482,"Date":"4/19/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":650,"Cost":326,"Date":"5/3/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":216,"Cost":121,"Date":"5/4/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":598,"Cost":540,"Date":"6/8/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":658,"Cost":492,"Date":"6/26/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":7,"Cost":7,"Date":"7/4/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":408,"Cost":332,"Date":"7/13/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":208,"Cost":188,"Date":"8/8/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":748,"Cost":635,"Date":"8/26/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":170,"Cost":123,"Date":"9/2/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":1,"Cost":1,"Date":"9/29/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":128,"Cost":101,"Date":"10/12/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":976,"Cost":595,"Date":"11/2/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":621,"Cost":527,"Date":"11/4/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":615,"Cost":559,"Date":"11/7/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":379,"Cost":195,"Date":"12/1/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":673,"Cost":354,"Date":"12/4/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":682,"Cost":491,"Date":"12/7/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":772,"Cost":414,"Date":"12/18/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":520,"Cost":312,"Date":"12/20/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":429,"Cost":271,"Date":"12/20/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":599,"Cost":353,"Date":"12/21/2019"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":191,"Cost":103,"Date":"1/9/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":281,"Cost":171,"Date":"2/5/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":537,"Cost":329,"Date":"2/16/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":972,"Cost":860,"Date":"2/16/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":77,"Cost":63,"Date":"2/18/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":751,"Cost":549,"Date":"2/22/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":487,"Cost":387,"Date":"2/25/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":392,"Cost":234,"Date":"3/8/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":440,"Cost":251,"Date":"4/2/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":487,"Cost":315,"Date":"4/3/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":835,"Cost":582,"Date":"4/9/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":319,"Cost":225,"Date":"4/10/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":581,"Cost":465,"Date":"4/19/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":738,"Cost":494,"Date":"5/17/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":366,"Cost":249,"Date":"5/22/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":604,"Cost":423,"Date":"6/20/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":979,"Cost":593,"Date":"7/1/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":695,"Cost":584,"Date":"7/4/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":782,"Cost":728,"Date":"7/8/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":24,"Cost":20,"Date":"7/9/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":819,"Cost":426,"Date":"7/14/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":574,"Cost":387,"Date":"7/19/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":272,"Cost":223,"Date":"8/1/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":541,"Cost":342,"Date":"8/6/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":107,"Cost":74,"Date":"8/7/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":922,"Cost":570,"Date":"8/22/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":392,"Cost":221,"Date":"8/31/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":938,"Cost":719,"Date":"9/1/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":112,"Cost":97,"Date":"9/1/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":296,"Cost":157,"Date":"9/17/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":778,"Cost":627,"Date":"9/29/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":327,"Cost":248,"Date":"11/7/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":178,"Cost":118,"Date":"11/26/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":842,"Cost":798,"Date":"11/27/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":41,"Cost":29,"Date":"12/5/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":503,"Cost":415,"Date":"12/26/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":103,"Cost":63,"Date":"12/31/2020"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":202,"Cost":122,"Date":"1/20/2021"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":479,"Cost":411,"Date":"2/2/2021"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":42,"Cost":38,"Date":"2/8/2021"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":190,"Cost":149,"Date":"2/27/2021"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":185,"Cost":93,"Date":"3/1/2021"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":288,"Cost":156,"Date":"3/1/2021"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":84,"Cost":49,"Date":"3/19/2021"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":790,"Cost":400,"Date":"3/28/2021"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":959,"Cost":664,"Date":"5/21/2021"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":495,"Cost":400,"Date":"7/21/2021"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":413,"Cost":379,"Date":"8/5/2021"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":530,"Cost":396,"Date":"8/12/2021"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":761,"Cost":660,"Date":"8/21/2021"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":668,"Cost":461,"Date":"8/23/2021"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":102,"Cost":68,"Date":"9/3/2021"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":615,"Cost":382,"Date":"9/5/2021"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":616,"Cost":477,"Date":"10/6/2021"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":755,"Cost":691,"Date":"10/19/2021"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":203,"Cost":163,"Date":"11/15/2021"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":830,"Cost":713,"Date":"12/8/2021"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":480,"Cost":336,"Date":"1/8/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":552,"Cost":517,"Date":"1/14/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":694,"Cost":537,"Date":"1/19/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":275,"Cost":242,"Date":"1/28/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":343,"Cost":204,"Date":"1/31/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":5,"Cost":2,"Date":"3/27/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":831,"Cost":561,"Date":"4/20/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":868,"Cost":517,"Date":"4/24/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":611,"Cost":362,"Date":"4/28/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":685,"Cost":550,"Date":"5/15/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":827,"Cost":714,"Date":"5/16/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":914,"Cost":726,"Date":"5/18/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":286,"Cost":187,"Date":"6/2/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":660,"Cost":556,"Date":"6/3/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":35,"Cost":20,"Date":"6/5/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":428,"Cost":343,"Date":"6/7/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":778,"Cost":421,"Date":"6/14/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":400,"Cost":231,"Date":"6/20/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":655,"Cost":590,"Date":"6/24/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":246,"Cost":154,"Date":"7/4/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":146,"Cost":92,"Date":"7/9/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":298,"Cost":240,"Date":"7/12/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":249,"Cost":203,"Date":"8/14/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":425,"Cost":395,"Date":"8/16/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":849,"Cost":492,"Date":"8/23/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":437,"Cost":233,"Date":"9/2/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":82,"Cost":73,"Date":"9/3/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":666,"Cost":564,"Date":"9/16/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":737,"Cost":462,"Date":"10/4/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":779,"Cost":635,"Date":"11/1/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":659,"Cost":338,"Date":"11/2/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":96,"Cost":65,"Date":"12/17/2022"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":313,"Cost":160,"Date":"2/10/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":428,"Cost":403,"Date":"2/28/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":390,"Cost":297,"Date":"3/4/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":776,"Cost":486,"Date":"3/9/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":470,"Cost":267,"Date":"3/9/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":570,"Cost":508,"Date":"3/11/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":66,"Cost":44,"Date":"3/17/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":397,"Cost":265,"Date":"3/17/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":395,"Cost":289,"Date":"3/23/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":43,"Cost":31,"Date":"4/1/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":901,"Cost":614,"Date":"5/7/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":282,"Cost":260,"Date":"5/10/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":934,"Cost":687,"Date":"5/20/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":176,"Cost":167,"Date":"6/2/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":311,"Cost":289,"Date":"6/11/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":991,"Cost":550,"Date":"6/16/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":69,"Cost":64,"Date":"6/16/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":998,"Cost":739,"Date":"7/10/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":756,"Cost":535,"Date":"7/11/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":621,"Cost":381,"Date":"8/28/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":393,"Cost":276,"Date":"8/29/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":527,"Cost":413,"Date":"8/31/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":345,"Cost":224,"Date":"9/8/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":798,"Cost":638,"Date":"9/13/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":176,"Cost":157,"Date":"9/14/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":398,"Cost":199,"Date":"9/19/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":645,"Cost":503,"Date":"9/25/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":836,"Cost":453,"Date":"10/4/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":423,"Cost":289,"Date":"10/10/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":959,"Cost":525,"Date":"10/17/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":546,"Cost":320,"Date":"10/28/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":18,"Cost":10,"Date":"10/30/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":661,"Cost":428,"Date":"11/1/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":325,"Cost":165,"Date":"11/15/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":789,"Cost":649,"Date":"11/25/2023"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":819,"Cost":599,"Date":"1/10/2024"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":492,"Cost":348,"Date":"1/14/2024"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":33,"Cost":26,"Date":"1/20/2024"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":486,"Cost":324,"Date":"2/8/2024"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":793,"Cost":449,"Date":"2/25/2024"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":666,"Cost":482,"Date":"3/7/2024"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":241,"Cost":215,"Date":"3/14/2024"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":445,"Cost":340,"Date":"3/27/2024"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":590,"Cost":504,"Date":"4/5/2024"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":119,"Cost":85,"Date":"4/14/2024"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":846,"Cost":697,"Date":"5/3/2024"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":683,"Cost":343,"Date":"5/9/2024"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":997,"Cost":514,"Date":"5/15/2024"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":718,"Cost":561,"Date":"5/25/2024"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":453,"Cost":282,"Date":"5/26/2024"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":421,"Cost":324,"Date":"5/31/2024"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":409,"Cost":351,"Date":"7/27/2024"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":71,"Cost":44,"Date":"9/17/2024"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":20,"Cost":15,"Date":"10/6/2024"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":314,"Cost":173,"Date":"10/8/2024"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":662,"Cost":512,"Date":"10/26/2024"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":994,"Cost":849,"Date":"11/16/2024"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":522,"Cost":478,"Date":"11/18/2024"},{"Store":"Kyoto Station Building","Brand":"HM Home","Country":"Japan","Sale":875,"Cost":631,"Date":"12/1/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":109,"Cost":66,"Date":"2/9/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":209,"Cost":114,"Date":"2/11/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":140,"Cost":108,"Date":"3/10/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":619,"Cost":379,"Date":"3/16/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":614,"Cost":581,"Date":"3/18/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":689,"Cost":365,"Date":"3/20/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":965,"Cost":819,"Date":"3/26/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":654,"Cost":342,"Date":"6/2/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":416,"Cost":374,"Date":"6/10/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":277,"Cost":245,"Date":"6/16/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":463,"Cost":312,"Date":"6/25/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":898,"Cost":720,"Date":"7/19/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":642,"Cost":416,"Date":"7/21/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":373,"Cost":266,"Date":"7/25/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":318,"Cost":179,"Date":"8/4/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":941,"Cost":727,"Date":"9/2/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":864,"Cost":486,"Date":"9/4/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":509,"Cost":429,"Date":"9/19/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":832,"Cost":740,"Date":"9/29/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":552,"Cost":335,"Date":"10/2/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":996,"Cost":548,"Date":"10/15/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":811,"Cost":752,"Date":"10/30/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":285,"Cost":171,"Date":"11/9/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":807,"Cost":665,"Date":"11/23/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":938,"Cost":617,"Date":"11/30/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":394,"Cost":211,"Date":"12/8/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":460,"Cost":408,"Date":"12/11/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":110,"Cost":97,"Date":"1/15/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":268,"Cost":141,"Date":"1/24/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":419,"Cost":225,"Date":"2/3/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":953,"Cost":735,"Date":"2/4/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":483,"Cost":425,"Date":"3/9/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":634,"Cost":374,"Date":"3/12/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":339,"Cost":300,"Date":"4/19/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":591,"Cost":365,"Date":"5/3/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":711,"Cost":464,"Date":"5/4/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":187,"Cost":165,"Date":"6/8/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":444,"Cost":413,"Date":"6/26/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":888,"Cost":472,"Date":"7/4/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":923,"Cost":720,"Date":"7/13/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":598,"Cost":485,"Date":"8/8/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":383,"Cost":333,"Date":"8/26/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":652,"Cost":359,"Date":"9/2/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":83,"Cost":58,"Date":"9/29/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":965,"Cost":540,"Date":"10/12/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":808,"Cost":570,"Date":"11/2/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":130,"Cost":112,"Date":"11/4/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":181,"Cost":159,"Date":"11/7/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":225,"Cost":160,"Date":"12/1/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":987,"Cost":789,"Date":"12/4/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":355,"Cost":282,"Date":"12/7/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":655,"Cost":538,"Date":"12/18/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":1,"Cost":1,"Date":"12/20/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":928,"Cost":563,"Date":"12/20/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":361,"Cost":271,"Date":"12/21/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":882,"Cost":544,"Date":"1/9/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":934,"Cost":506,"Date":"2/5/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":310,"Cost":269,"Date":"2/16/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":665,"Cost":438,"Date":"2/16/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":135,"Cost":105,"Date":"2/18/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":231,"Cost":200,"Date":"2/22/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":94,"Cost":61,"Date":"2/25/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":545,"Cost":283,"Date":"3/8/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":462,"Cost":369,"Date":"4/2/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":795,"Cost":575,"Date":"4/3/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":541,"Cost":342,"Date":"4/9/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":537,"Cost":439,"Date":"4/10/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":945,"Cost":492,"Date":"4/19/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":198,"Cost":186,"Date":"5/17/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":949,"Cost":484,"Date":"5/22/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":957,"Cost":576,"Date":"6/20/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":874,"Cost":533,"Date":"7/1/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":145,"Cost":78,"Date":"7/4/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":648,"Cost":377,"Date":"7/8/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":167,"Cost":151,"Date":"7/9/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":384,"Cost":255,"Date":"7/14/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":603,"Cost":413,"Date":"7/19/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":637,"Cost":502,"Date":"8/1/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":10,"Cost":8,"Date":"8/6/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":407,"Cost":252,"Date":"8/7/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":628,"Cost":451,"Date":"8/22/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":117,"Cost":97,"Date":"8/31/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":392,"Cost":222,"Date":"9/1/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":380,"Cost":240,"Date":"9/1/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":242,"Cost":208,"Date":"9/17/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":406,"Cost":289,"Date":"9/29/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":249,"Cost":234,"Date":"11/7/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":948,"Cost":747,"Date":"11/26/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":636,"Cost":496,"Date":"11/27/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":395,"Cost":248,"Date":"12/5/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":219,"Cost":149,"Date":"12/26/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":929,"Cost":635,"Date":"12/31/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":409,"Cost":317,"Date":"1/20/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":812,"Cost":699,"Date":"2/2/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":194,"Cost":102,"Date":"2/8/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":232,"Cost":145,"Date":"2/27/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":985,"Cost":683,"Date":"3/1/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":555,"Cost":482,"Date":"3/1/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":899,"Cost":685,"Date":"3/19/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":42,"Cost":27,"Date":"3/28/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":660,"Cost":595,"Date":"5/21/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":762,"Cost":425,"Date":"7/21/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":136,"Cost":117,"Date":"8/5/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":728,"Cost":387,"Date":"8/12/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":579,"Cost":419,"Date":"8/21/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":810,"Cost":743,"Date":"8/23/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":69,"Cost":56,"Date":"9/3/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":182,"Cost":151,"Date":"9/5/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":107,"Cost":55,"Date":"10/6/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":22,"Cost":14,"Date":"10/19/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":649,"Cost":420,"Date":"11/15/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":877,"Cost":799,"Date":"12/8/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":771,"Cost":427,"Date":"1/8/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":744,"Cost":408,"Date":"1/14/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":793,"Cost":514,"Date":"1/19/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":812,"Cost":712,"Date":"1/28/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":749,"Cost":691,"Date":"1/31/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":947,"Cost":748,"Date":"3/27/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":989,"Cost":865,"Date":"4/20/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":318,"Cost":202,"Date":"4/24/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":167,"Cost":151,"Date":"4/28/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":324,"Cost":276,"Date":"5/15/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":91,"Cost":61,"Date":"5/16/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":554,"Cost":504,"Date":"5/18/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":615,"Cost":415,"Date":"6/2/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":83,"Cost":58,"Date":"6/3/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":646,"Cost":466,"Date":"6/5/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":516,"Cost":453,"Date":"6/7/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":41,"Cost":32,"Date":"6/14/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":472,"Cost":289,"Date":"6/20/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":709,"Cost":494,"Date":"6/24/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":418,"Cost":395,"Date":"7/4/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":880,"Cost":610,"Date":"7/9/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":710,"Cost":567,"Date":"7/12/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":81,"Cost":42,"Date":"8/14/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":493,"Cost":339,"Date":"8/16/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":685,"Cost":447,"Date":"8/23/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":930,"Cost":653,"Date":"9/2/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":14,"Cost":8,"Date":"9/3/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":48,"Cost":36,"Date":"9/16/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":705,"Cost":645,"Date":"10/4/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":656,"Cost":609,"Date":"11/1/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":14,"Cost":13,"Date":"11/2/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":784,"Cost":567,"Date":"12/17/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":450,"Cost":362,"Date":"2/10/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":896,"Cost":846,"Date":"2/28/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":870,"Cost":783,"Date":"3/4/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":575,"Cost":362,"Date":"3/9/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":643,"Cost":414,"Date":"3/9/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":61,"Cost":41,"Date":"3/11/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":945,"Cost":820,"Date":"3/17/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":723,"Cost":584,"Date":"3/17/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":375,"Cost":258,"Date":"3/23/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":10,"Cost":9,"Date":"4/1/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":793,"Cost":481,"Date":"5/7/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":462,"Cost":241,"Date":"5/10/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":42,"Cost":31,"Date":"5/20/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":488,"Cost":273,"Date":"6/2/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":187,"Cost":116,"Date":"6/11/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":488,"Cost":434,"Date":"6/16/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":465,"Cost":272,"Date":"6/16/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":695,"Cost":533,"Date":"7/10/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":31,"Cost":26,"Date":"7/11/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":231,"Cost":182,"Date":"8/28/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":252,"Cost":173,"Date":"8/29/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":145,"Cost":135,"Date":"8/31/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":592,"Cost":370,"Date":"9/8/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":775,"Cost":466,"Date":"9/13/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":869,"Cost":550,"Date":"9/14/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":938,"Cost":524,"Date":"9/19/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":795,"Cost":575,"Date":"9/25/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":449,"Cost":406,"Date":"10/4/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":806,"Cost":522,"Date":"10/10/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":903,"Cost":849,"Date":"10/17/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":718,"Cost":452,"Date":"10/28/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":217,"Cost":121,"Date":"10/30/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":46,"Cost":31,"Date":"11/1/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":184,"Cost":152,"Date":"11/15/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":207,"Cost":172,"Date":"11/25/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":654,"Cost":579,"Date":"1/10/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":567,"Cost":287,"Date":"1/14/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":842,"Cost":421,"Date":"1/20/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":929,"Cost":511,"Date":"2/8/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":762,"Cost":569,"Date":"2/25/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":130,"Cost":104,"Date":"3/7/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":385,"Cost":309,"Date":"3/14/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":911,"Cost":515,"Date":"3/27/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":608,"Cost":387,"Date":"4/5/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":815,"Cost":480,"Date":"4/14/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":660,"Cost":338,"Date":"5/3/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":162,"Cost":111,"Date":"5/9/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":138,"Cost":86,"Date":"5/15/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":439,"Cost":256,"Date":"5/25/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":137,"Cost":127,"Date":"5/26/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":646,"Cost":587,"Date":"5/31/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":44,"Cost":23,"Date":"7/27/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":104,"Cost":62,"Date":"9/17/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":392,"Cost":352,"Date":"10/6/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":219,"Cost":196,"Date":"10/8/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":230,"Cost":178,"Date":"10/26/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":528,"Cost":373,"Date":"11/16/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":902,"Cost":818,"Date":"11/18/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"HM Home","Country":"Japan","Sale":553,"Cost":308,"Date":"12/1/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":467,"Cost":424,"Date":"2/9/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":626,"Cost":511,"Date":"2/11/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":493,"Cost":286,"Date":"3/10/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":308,"Cost":157,"Date":"3/16/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":624,"Cost":397,"Date":"3/18/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":991,"Cost":577,"Date":"3/20/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":888,"Cost":595,"Date":"3/26/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":79,"Cost":60,"Date":"6/2/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":358,"Cost":280,"Date":"6/10/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":354,"Cost":190,"Date":"6/16/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":858,"Cost":693,"Date":"6/25/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":629,"Cost":343,"Date":"7/19/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":927,"Cost":826,"Date":"7/21/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":35,"Cost":28,"Date":"7/25/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":944,"Cost":475,"Date":"8/4/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":316,"Cost":201,"Date":"9/2/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":116,"Cost":63,"Date":"9/4/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":628,"Cost":498,"Date":"9/19/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":936,"Cost":543,"Date":"9/29/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":904,"Cost":538,"Date":"10/2/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":698,"Cost":590,"Date":"10/15/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":180,"Cost":152,"Date":"10/30/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":483,"Cost":353,"Date":"11/9/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":731,"Cost":626,"Date":"11/23/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":880,"Cost":661,"Date":"11/30/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":838,"Cost":464,"Date":"12/8/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":147,"Cost":100,"Date":"12/11/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":467,"Cost":425,"Date":"1/15/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":87,"Cost":66,"Date":"1/24/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":547,"Cost":391,"Date":"2/3/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":765,"Cost":495,"Date":"2/4/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":90,"Cost":79,"Date":"3/9/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":769,"Cost":665,"Date":"3/12/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":829,"Cost":614,"Date":"4/19/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":314,"Cost":175,"Date":"5/3/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":318,"Cost":255,"Date":"5/4/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":626,"Cost":488,"Date":"6/8/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":635,"Cost":588,"Date":"6/26/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":309,"Cost":287,"Date":"7/4/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":733,"Cost":561,"Date":"7/13/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":647,"Cost":591,"Date":"8/8/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":86,"Cost":43,"Date":"8/26/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":103,"Cost":59,"Date":"9/2/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":156,"Cost":141,"Date":"9/29/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":199,"Cost":120,"Date":"10/12/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":76,"Cost":41,"Date":"11/2/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":638,"Cost":572,"Date":"11/4/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":333,"Cost":197,"Date":"11/7/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":827,"Cost":485,"Date":"12/1/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":402,"Cost":255,"Date":"12/4/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":712,"Cost":423,"Date":"12/7/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":525,"Cost":363,"Date":"12/18/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":898,"Cost":720,"Date":"12/20/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":420,"Cost":216,"Date":"12/20/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":308,"Cost":290,"Date":"12/21/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":297,"Cost":259,"Date":"1/9/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":961,"Cost":638,"Date":"2/5/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":700,"Cost":411,"Date":"2/16/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":277,"Cost":232,"Date":"2/16/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":337,"Cost":176,"Date":"2/18/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":930,"Cost":616,"Date":"2/22/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":72,"Cost":38,"Date":"2/25/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":186,"Cost":176,"Date":"3/8/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":120,"Cost":107,"Date":"4/2/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":291,"Cost":267,"Date":"4/3/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":727,"Cost":644,"Date":"4/9/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":243,"Cost":140,"Date":"4/10/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":109,"Cost":67,"Date":"4/19/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":797,"Cost":716,"Date":"5/17/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":854,"Cost":649,"Date":"5/22/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":488,"Cost":453,"Date":"6/20/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":278,"Cost":249,"Date":"7/1/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":836,"Cost":647,"Date":"7/4/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":615,"Cost":461,"Date":"7/8/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":841,"Cost":751,"Date":"7/9/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":176,"Cost":157,"Date":"7/14/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":840,"Cost":488,"Date":"7/19/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":663,"Cost":498,"Date":"8/1/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":119,"Cost":78,"Date":"8/6/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":75,"Cost":64,"Date":"8/7/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":251,"Cost":226,"Date":"8/22/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":873,"Cost":480,"Date":"8/31/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":657,"Cost":464,"Date":"9/1/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":362,"Cost":188,"Date":"9/1/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":691,"Cost":475,"Date":"9/17/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":150,"Cost":113,"Date":"9/29/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":385,"Cost":304,"Date":"11/7/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":656,"Cost":408,"Date":"11/26/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":502,"Cost":444,"Date":"11/27/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":279,"Cost":140,"Date":"12/5/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":152,"Cost":110,"Date":"12/26/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":727,"Cost":599,"Date":"12/31/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":95,"Cost":64,"Date":"1/20/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":110,"Cost":58,"Date":"2/2/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":720,"Cost":588,"Date":"2/8/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":984,"Cost":827,"Date":"2/27/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":861,"Cost":613,"Date":"3/1/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":393,"Cost":308,"Date":"3/1/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":993,"Cost":904,"Date":"3/19/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":984,"Cost":550,"Date":"3/28/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":277,"Cost":255,"Date":"5/21/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":457,"Cost":290,"Date":"7/21/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":41,"Cost":21,"Date":"8/5/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":962,"Cost":795,"Date":"8/12/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":908,"Cost":458,"Date":"8/21/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":449,"Cost":389,"Date":"8/23/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":756,"Cost":505,"Date":"9/3/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":184,"Cost":136,"Date":"9/5/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":737,"Cost":683,"Date":"10/6/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":19,"Cost":11,"Date":"10/19/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":501,"Cost":367,"Date":"11/15/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":980,"Cost":884,"Date":"12/8/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":261,"Cost":175,"Date":"1/8/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":991,"Cost":515,"Date":"1/14/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":311,"Cost":175,"Date":"1/19/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":840,"Cost":442,"Date":"1/28/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":286,"Cost":203,"Date":"1/31/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":267,"Cost":210,"Date":"3/27/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":561,"Cost":400,"Date":"4/20/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":645,"Cost":434,"Date":"4/24/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":126,"Cost":68,"Date":"4/28/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":942,"Cost":629,"Date":"5/15/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":965,"Cost":708,"Date":"5/16/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":649,"Cost":414,"Date":"5/18/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":594,"Cost":386,"Date":"6/2/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":960,"Cost":590,"Date":"6/3/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":859,"Cost":551,"Date":"6/5/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":538,"Cost":325,"Date":"6/7/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":589,"Cost":301,"Date":"6/14/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":889,"Cost":798,"Date":"6/20/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":36,"Cost":19,"Date":"6/24/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":964,"Cost":771,"Date":"7/4/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":112,"Cost":65,"Date":"7/9/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":267,"Cost":164,"Date":"7/12/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":580,"Cost":544,"Date":"8/14/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":266,"Cost":228,"Date":"8/16/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":96,"Cost":60,"Date":"8/23/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":849,"Cost":795,"Date":"9/2/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":504,"Cost":339,"Date":"9/3/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":50,"Cost":30,"Date":"9/16/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":820,"Cost":528,"Date":"10/4/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":178,"Cost":107,"Date":"11/1/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":882,"Cost":589,"Date":"11/2/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":744,"Cost":649,"Date":"12/17/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":924,"Cost":638,"Date":"2/10/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":630,"Cost":322,"Date":"2/28/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":608,"Cost":338,"Date":"3/4/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":491,"Cost":461,"Date":"3/9/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":943,"Cost":679,"Date":"3/9/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":178,"Cost":159,"Date":"3/11/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":150,"Cost":84,"Date":"3/17/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":864,"Cost":745,"Date":"3/17/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":103,"Cost":62,"Date":"3/23/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":937,"Cost":499,"Date":"4/1/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":519,"Cost":272,"Date":"5/7/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":200,"Cost":157,"Date":"5/10/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":422,"Cost":394,"Date":"5/20/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":699,"Cost":405,"Date":"6/2/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":73,"Cost":52,"Date":"6/11/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":852,"Cost":485,"Date":"6/16/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":762,"Cost":544,"Date":"6/16/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":596,"Cost":482,"Date":"7/10/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":316,"Cost":253,"Date":"7/11/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":996,"Cost":788,"Date":"8/28/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":192,"Cost":105,"Date":"8/29/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":418,"Cost":270,"Date":"8/31/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":632,"Cost":561,"Date":"9/8/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":534,"Cost":452,"Date":"9/13/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":569,"Cost":402,"Date":"9/14/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":857,"Cost":707,"Date":"9/19/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":919,"Cost":484,"Date":"9/25/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":549,"Cost":293,"Date":"10/4/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":425,"Cost":225,"Date":"10/10/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":268,"Cost":211,"Date":"10/17/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":112,"Cost":106,"Date":"10/28/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":889,"Cost":839,"Date":"10/30/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":21,"Cost":11,"Date":"11/1/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":469,"Cost":344,"Date":"11/15/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":511,"Cost":276,"Date":"11/25/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":642,"Cost":484,"Date":"1/10/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":283,"Cost":242,"Date":"1/14/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":39,"Cost":21,"Date":"1/20/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":472,"Cost":277,"Date":"2/8/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":734,"Cost":546,"Date":"2/25/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":36,"Cost":20,"Date":"3/7/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":902,"Cost":693,"Date":"3/14/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":301,"Cost":238,"Date":"3/27/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":504,"Cost":457,"Date":"4/5/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":822,"Cost":569,"Date":"4/14/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":289,"Cost":221,"Date":"5/3/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":813,"Cost":533,"Date":"5/9/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":91,"Cost":75,"Date":"5/15/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":676,"Cost":399,"Date":"5/25/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":900,"Cost":491,"Date":"5/26/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":368,"Cost":270,"Date":"5/31/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":271,"Cost":136,"Date":"7/27/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":89,"Cost":71,"Date":"9/17/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":687,"Cost":599,"Date":"10/6/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":130,"Cost":79,"Date":"10/8/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":157,"Cost":79,"Date":"10/26/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":870,"Cost":778,"Date":"11/16/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":816,"Cost":590,"Date":"11/18/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"Sellpy","Country":"Japan","Sale":855,"Cost":736,"Date":"12/1/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":228,"Cost":136,"Date":"2/9/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":712,"Cost":399,"Date":"2/11/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":262,"Cost":158,"Date":"3/10/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":774,"Cost":675,"Date":"3/16/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":352,"Cost":252,"Date":"3/18/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":508,"Cost":403,"Date":"3/20/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":574,"Cost":333,"Date":"3/26/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":19,"Cost":17,"Date":"6/2/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":943,"Cost":742,"Date":"6/10/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":525,"Cost":375,"Date":"6/16/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":330,"Cost":177,"Date":"6/25/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":148,"Cost":136,"Date":"7/19/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":413,"Cost":293,"Date":"7/21/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":35,"Cost":22,"Date":"7/25/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":980,"Cost":694,"Date":"8/4/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":240,"Cost":215,"Date":"9/2/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":614,"Cost":540,"Date":"9/4/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":688,"Cost":596,"Date":"9/19/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":392,"Cost":295,"Date":"9/29/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":440,"Cost":284,"Date":"10/2/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":327,"Cost":210,"Date":"10/15/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":859,"Cost":726,"Date":"10/30/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":308,"Cost":226,"Date":"11/9/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":322,"Cost":238,"Date":"11/23/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":703,"Cost":449,"Date":"11/30/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":800,"Cost":450,"Date":"12/8/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":593,"Cost":330,"Date":"12/11/2018"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":409,"Cost":258,"Date":"1/15/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":545,"Cost":322,"Date":"1/24/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":881,"Cost":467,"Date":"2/3/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":732,"Cost":578,"Date":"2/4/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":978,"Cost":577,"Date":"3/9/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":529,"Cost":367,"Date":"3/12/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":938,"Cost":528,"Date":"4/19/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":726,"Cost":557,"Date":"5/3/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":968,"Cost":599,"Date":"5/4/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":338,"Cost":198,"Date":"6/8/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":663,"Cost":389,"Date":"6/26/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":364,"Cost":209,"Date":"7/4/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":84,"Cost":49,"Date":"7/13/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":664,"Cost":440,"Date":"8/8/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":823,"Cost":480,"Date":"8/26/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":515,"Cost":355,"Date":"9/2/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":472,"Cost":299,"Date":"9/29/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":918,"Cost":739,"Date":"10/12/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":54,"Cost":45,"Date":"11/2/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":628,"Cost":443,"Date":"11/4/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":24,"Cost":19,"Date":"11/7/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":759,"Cost":624,"Date":"12/1/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":876,"Cost":633,"Date":"12/4/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":711,"Cost":532,"Date":"12/7/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":123,"Cost":87,"Date":"12/18/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":643,"Cost":500,"Date":"12/20/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":825,"Cost":634,"Date":"12/20/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":208,"Cost":160,"Date":"12/21/2019"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":583,"Cost":454,"Date":"1/9/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":12,"Cost":10,"Date":"2/5/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":658,"Cost":574,"Date":"2/16/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":85,"Cost":65,"Date":"2/16/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":533,"Cost":332,"Date":"2/18/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":975,"Cost":509,"Date":"2/22/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":828,"Cost":495,"Date":"2/25/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":70,"Cost":66,"Date":"3/8/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":373,"Cost":270,"Date":"4/2/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":556,"Cost":319,"Date":"4/3/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":48,"Cost":24,"Date":"4/9/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":169,"Cost":157,"Date":"4/10/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":741,"Cost":435,"Date":"4/19/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":448,"Cost":355,"Date":"5/17/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":778,"Cost":505,"Date":"5/22/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":25,"Cost":19,"Date":"6/20/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":248,"Cost":157,"Date":"7/1/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":995,"Cost":800,"Date":"7/4/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":690,"Cost":534,"Date":"7/8/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":612,"Cost":550,"Date":"7/9/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":311,"Cost":157,"Date":"7/14/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":24,"Cost":14,"Date":"7/19/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":616,"Cost":424,"Date":"8/1/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":180,"Cost":169,"Date":"8/6/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":413,"Cost":339,"Date":"8/7/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":493,"Cost":441,"Date":"8/22/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":576,"Cost":543,"Date":"8/31/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":981,"Cost":637,"Date":"9/1/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":230,"Cost":190,"Date":"9/1/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":829,"Cost":766,"Date":"9/17/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":350,"Cost":311,"Date":"9/29/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":422,"Cost":288,"Date":"11/7/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":110,"Cost":77,"Date":"11/26/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":152,"Cost":96,"Date":"11/27/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":757,"Cost":566,"Date":"12/5/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":976,"Cost":922,"Date":"12/26/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":920,"Cost":781,"Date":"12/31/2020"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":865,"Cost":740,"Date":"1/20/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":271,"Cost":217,"Date":"2/2/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":707,"Cost":613,"Date":"2/8/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":231,"Cost":195,"Date":"2/27/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":247,"Cost":194,"Date":"3/1/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":443,"Cost":395,"Date":"3/1/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":941,"Cost":831,"Date":"3/19/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":192,"Cost":139,"Date":"3/28/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":481,"Cost":427,"Date":"5/21/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":892,"Cost":450,"Date":"7/21/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":496,"Cost":374,"Date":"8/5/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":378,"Cost":253,"Date":"8/12/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":421,"Cost":384,"Date":"8/21/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":235,"Cost":134,"Date":"8/23/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":653,"Cost":467,"Date":"9/3/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":901,"Cost":566,"Date":"9/5/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":737,"Cost":428,"Date":"10/6/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":365,"Cost":285,"Date":"10/19/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":966,"Cost":510,"Date":"11/15/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":76,"Cost":66,"Date":"12/8/2021"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":380,"Cost":278,"Date":"1/8/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":353,"Cost":226,"Date":"1/14/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":612,"Cost":572,"Date":"1/19/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":751,"Cost":531,"Date":"1/28/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":337,"Cost":219,"Date":"1/31/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":743,"Cost":375,"Date":"3/27/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":347,"Cost":324,"Date":"4/20/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":889,"Cost":715,"Date":"4/24/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":907,"Cost":467,"Date":"4/28/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":782,"Cost":617,"Date":"5/15/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":611,"Cost":457,"Date":"5/16/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":816,"Cost":743,"Date":"5/18/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":948,"Cost":635,"Date":"6/2/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":145,"Cost":113,"Date":"6/3/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":597,"Cost":545,"Date":"6/5/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":313,"Cost":238,"Date":"6/7/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":120,"Cost":77,"Date":"6/14/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":588,"Cost":486,"Date":"6/20/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":744,"Cost":403,"Date":"6/24/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":992,"Cost":671,"Date":"7/4/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":771,"Cost":541,"Date":"7/9/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":665,"Cost":468,"Date":"7/12/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":645,"Cost":326,"Date":"8/14/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":668,"Cost":628,"Date":"8/16/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":967,"Cost":524,"Date":"8/23/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":350,"Cost":239,"Date":"9/2/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":352,"Cost":211,"Date":"9/3/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":785,"Cost":647,"Date":"9/16/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":544,"Cost":312,"Date":"10/4/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":563,"Cost":327,"Date":"11/1/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":724,"Cost":401,"Date":"11/2/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":203,"Cost":114,"Date":"12/17/2022"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":797,"Cost":682,"Date":"2/10/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":941,"Cost":592,"Date":"2/28/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":858,"Cost":792,"Date":"3/4/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":692,"Cost":486,"Date":"3/9/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":557,"Cost":478,"Date":"3/9/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":673,"Cost":414,"Date":"3/11/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":917,"Cost":826,"Date":"3/17/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":149,"Cost":82,"Date":"3/17/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":245,"Cost":172,"Date":"3/23/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":993,"Cost":606,"Date":"4/1/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":942,"Cost":691,"Date":"5/7/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":605,"Cost":479,"Date":"5/10/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":215,"Cost":122,"Date":"5/20/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":190,"Cost":160,"Date":"6/2/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":818,"Cost":518,"Date":"6/11/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":632,"Cost":386,"Date":"6/16/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":400,"Cost":211,"Date":"6/16/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":852,"Cost":512,"Date":"7/10/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":624,"Cost":325,"Date":"7/11/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":374,"Cost":271,"Date":"8/28/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":215,"Cost":171,"Date":"8/29/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":286,"Cost":171,"Date":"8/31/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":2,"Cost":1,"Date":"9/8/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":341,"Cost":181,"Date":"9/13/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":233,"Cost":144,"Date":"9/14/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":145,"Cost":129,"Date":"9/19/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":885,"Cost":692,"Date":"9/25/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":295,"Cost":162,"Date":"10/4/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":504,"Cost":323,"Date":"10/10/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":882,"Cost":650,"Date":"10/17/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":695,"Cost":641,"Date":"10/28/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":113,"Cost":79,"Date":"10/30/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":657,"Cost":337,"Date":"11/1/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":744,"Cost":386,"Date":"11/15/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":401,"Cost":319,"Date":"11/25/2023"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":992,"Cost":575,"Date":"1/10/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":328,"Cost":164,"Date":"1/14/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":321,"Cost":172,"Date":"1/20/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":600,"Cost":552,"Date":"2/8/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":586,"Cost":415,"Date":"2/25/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":630,"Cost":411,"Date":"3/7/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":449,"Cost":289,"Date":"3/14/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":920,"Cost":715,"Date":"3/27/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":248,"Cost":160,"Date":"4/5/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":810,"Cost":430,"Date":"4/14/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":59,"Cost":44,"Date":"5/3/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":475,"Cost":308,"Date":"5/9/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":115,"Cost":86,"Date":"5/15/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":730,"Cost":507,"Date":"5/25/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":486,"Cost":453,"Date":"5/26/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":191,"Cost":116,"Date":"5/31/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":309,"Cost":253,"Date":"7/27/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":480,"Cost":245,"Date":"9/17/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":287,"Cost":268,"Date":"10/6/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":841,"Cost":701,"Date":"10/8/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":939,"Cost":480,"Date":"10/26/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":741,"Cost":689,"Date":"11/16/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":773,"Cost":444,"Date":"11/18/2024"},{"Store":"Canal City Hakata, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":883,"Cost":678,"Date":"12/1/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":900,"Cost":768,"Date":"2/9/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":87,"Cost":46,"Date":"2/11/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":420,"Cost":321,"Date":"3/10/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":811,"Cost":714,"Date":"3/16/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":254,"Cost":154,"Date":"3/18/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":576,"Cost":382,"Date":"3/20/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":569,"Cost":425,"Date":"3/26/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":974,"Cost":507,"Date":"6/2/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":572,"Cost":452,"Date":"6/10/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":848,"Cost":797,"Date":"6/16/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":680,"Cost":517,"Date":"6/25/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":464,"Cost":294,"Date":"7/19/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":61,"Cost":55,"Date":"7/21/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":222,"Cost":193,"Date":"7/25/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":51,"Cost":45,"Date":"8/4/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":332,"Cost":296,"Date":"9/2/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":359,"Cost":247,"Date":"9/4/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":388,"Cost":254,"Date":"9/19/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":403,"Cost":251,"Date":"9/29/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":253,"Cost":211,"Date":"10/2/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":20,"Cost":18,"Date":"10/15/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":850,"Cost":595,"Date":"10/30/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":833,"Cost":521,"Date":"11/9/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":184,"Cost":115,"Date":"11/23/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":153,"Cost":90,"Date":"11/30/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":572,"Cost":392,"Date":"12/8/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":207,"Cost":179,"Date":"12/11/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":483,"Cost":431,"Date":"1/15/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":148,"Cost":110,"Date":"1/24/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":665,"Cost":622,"Date":"2/3/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":131,"Cost":110,"Date":"2/4/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":555,"Cost":360,"Date":"3/9/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":5,"Cost":4,"Date":"3/12/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":591,"Cost":334,"Date":"4/19/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":49,"Cost":46,"Date":"5/3/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":70,"Cost":52,"Date":"5/4/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":119,"Cost":107,"Date":"6/8/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":582,"Cost":401,"Date":"6/26/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":58,"Cost":29,"Date":"7/4/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":903,"Cost":760,"Date":"7/13/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":31,"Cost":17,"Date":"8/8/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":637,"Cost":504,"Date":"8/26/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":917,"Cost":674,"Date":"9/2/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":816,"Cost":641,"Date":"9/29/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":767,"Cost":666,"Date":"10/12/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":756,"Cost":452,"Date":"11/2/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":440,"Cost":406,"Date":"11/4/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":856,"Cost":712,"Date":"11/7/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":661,"Cost":480,"Date":"12/1/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":691,"Cost":444,"Date":"12/4/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":62,"Cost":50,"Date":"12/7/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":948,"Cost":505,"Date":"12/18/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":675,"Cost":414,"Date":"12/20/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":768,"Cost":424,"Date":"12/20/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":737,"Cost":586,"Date":"12/21/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":135,"Cost":97,"Date":"1/9/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":725,"Cost":559,"Date":"2/5/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":440,"Cost":268,"Date":"2/16/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":163,"Cost":85,"Date":"2/16/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":408,"Cost":215,"Date":"2/18/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":751,"Cost":657,"Date":"2/22/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":766,"Cost":563,"Date":"2/25/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":109,"Cost":101,"Date":"3/8/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":395,"Cost":254,"Date":"4/2/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":393,"Cost":345,"Date":"4/3/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":705,"Cost":395,"Date":"4/9/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":9,"Cost":8,"Date":"4/10/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":291,"Cost":222,"Date":"4/19/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":550,"Cost":488,"Date":"5/17/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":263,"Cost":216,"Date":"5/22/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":191,"Cost":182,"Date":"6/20/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":88,"Cost":52,"Date":"7/1/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":323,"Cost":206,"Date":"7/4/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":505,"Cost":301,"Date":"7/8/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":248,"Cost":143,"Date":"7/9/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":876,"Cost":468,"Date":"7/14/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":799,"Cost":561,"Date":"7/19/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":368,"Cost":187,"Date":"8/1/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":20,"Cost":16,"Date":"8/6/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":707,"Cost":638,"Date":"8/7/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":682,"Cost":508,"Date":"8/22/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":478,"Cost":327,"Date":"8/31/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":881,"Cost":567,"Date":"9/1/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":569,"Cost":338,"Date":"9/1/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":274,"Cost":175,"Date":"9/17/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":360,"Cost":265,"Date":"9/29/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":869,"Cost":675,"Date":"11/7/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":720,"Cost":373,"Date":"11/26/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":932,"Cost":853,"Date":"11/27/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":707,"Cost":376,"Date":"12/5/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":260,"Cost":153,"Date":"12/26/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":506,"Cost":387,"Date":"12/31/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":752,"Cost":473,"Date":"1/20/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":699,"Cost":610,"Date":"2/2/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":861,"Cost":573,"Date":"2/8/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":96,"Cost":63,"Date":"2/27/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":272,"Cost":235,"Date":"3/1/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":340,"Cost":230,"Date":"3/1/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":127,"Cost":84,"Date":"3/19/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":51,"Cost":43,"Date":"3/28/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":129,"Cost":105,"Date":"5/21/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":837,"Cost":744,"Date":"7/21/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":623,"Cost":498,"Date":"8/5/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":401,"Cost":205,"Date":"8/12/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":415,"Cost":254,"Date":"8/21/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":419,"Cost":293,"Date":"8/23/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":73,"Cost":52,"Date":"9/3/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":899,"Cost":554,"Date":"9/5/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":198,"Cost":120,"Date":"10/6/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":313,"Cost":180,"Date":"10/19/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":587,"Cost":419,"Date":"11/15/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":321,"Cost":249,"Date":"12/8/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":818,"Cost":476,"Date":"1/8/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":392,"Cost":208,"Date":"1/14/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":959,"Cost":520,"Date":"1/19/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":813,"Cost":601,"Date":"1/28/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":15,"Cost":13,"Date":"1/31/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":451,"Cost":349,"Date":"3/27/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":320,"Cost":285,"Date":"4/20/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":3,"Cost":1,"Date":"4/24/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":562,"Cost":450,"Date":"4/28/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":616,"Cost":347,"Date":"5/15/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":183,"Cost":161,"Date":"5/16/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":953,"Cost":494,"Date":"5/18/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":882,"Cost":490,"Date":"6/2/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":249,"Cost":230,"Date":"6/3/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":932,"Cost":815,"Date":"6/5/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":302,"Cost":275,"Date":"6/7/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":613,"Cost":549,"Date":"6/14/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":231,"Cost":150,"Date":"6/20/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":782,"Cost":696,"Date":"6/24/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":668,"Cost":354,"Date":"7/4/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":747,"Cost":533,"Date":"7/9/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":612,"Cost":435,"Date":"7/12/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":294,"Cost":272,"Date":"8/14/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":263,"Cost":142,"Date":"8/16/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":383,"Cost":232,"Date":"8/23/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":711,"Cost":476,"Date":"9/2/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":313,"Cost":179,"Date":"9/3/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":573,"Cost":488,"Date":"9/16/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":216,"Cost":199,"Date":"10/4/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":389,"Cost":270,"Date":"11/1/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":401,"Cost":262,"Date":"11/2/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":952,"Cost":584,"Date":"12/17/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":948,"Cost":758,"Date":"2/10/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":78,"Cost":64,"Date":"2/28/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":152,"Cost":84,"Date":"3/4/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":376,"Cost":290,"Date":"3/9/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":251,"Cost":221,"Date":"3/9/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":969,"Cost":881,"Date":"3/11/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":509,"Cost":325,"Date":"3/17/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":392,"Cost":351,"Date":"3/17/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":668,"Cost":558,"Date":"3/23/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":276,"Cost":242,"Date":"4/1/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":686,"Cost":471,"Date":"5/7/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":659,"Cost":561,"Date":"5/10/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":55,"Cost":45,"Date":"5/20/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":750,"Cost":391,"Date":"6/2/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":726,"Cost":554,"Date":"6/11/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":277,"Cost":244,"Date":"6/16/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":737,"Cost":594,"Date":"6/16/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":16,"Cost":11,"Date":"7/10/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":487,"Cost":442,"Date":"7/11/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":612,"Cost":310,"Date":"8/28/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":398,"Cost":349,"Date":"8/29/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":336,"Cost":190,"Date":"8/31/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":22,"Cost":11,"Date":"9/8/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":528,"Cost":369,"Date":"9/13/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":495,"Cost":291,"Date":"9/14/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":185,"Cost":154,"Date":"9/19/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":995,"Cost":752,"Date":"9/25/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":904,"Cost":569,"Date":"10/4/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":268,"Cost":230,"Date":"10/10/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":958,"Cost":845,"Date":"10/17/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":159,"Cost":149,"Date":"10/28/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":145,"Cost":80,"Date":"10/30/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":291,"Cost":189,"Date":"11/1/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":85,"Cost":50,"Date":"11/15/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":868,"Cost":509,"Date":"11/25/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":182,"Cost":148,"Date":"1/10/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":984,"Cost":920,"Date":"1/14/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":784,"Cost":653,"Date":"1/20/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":928,"Cost":505,"Date":"2/8/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":317,"Cost":250,"Date":"2/25/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":3,"Cost":3,"Date":"3/7/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":330,"Cost":238,"Date":"3/14/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":520,"Cost":458,"Date":"3/27/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":651,"Cost":358,"Date":"4/5/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":149,"Cost":94,"Date":"4/14/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":664,"Cost":597,"Date":"5/3/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":719,"Cost":421,"Date":"5/9/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":634,"Cost":548,"Date":"5/15/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":490,"Cost":358,"Date":"5/25/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":748,"Cost":636,"Date":"5/26/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":823,"Cost":514,"Date":"5/31/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":8,"Cost":4,"Date":"7/27/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":741,"Cost":429,"Date":"9/17/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":66,"Cost":37,"Date":"10/6/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":214,"Cost":144,"Date":"10/8/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":822,"Cost":588,"Date":"10/26/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":746,"Cost":625,"Date":"11/16/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":397,"Cost":308,"Date":"11/18/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"HM","Country":"Japan","Sale":106,"Cost":85,"Date":"12/1/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":713,"Cost":438,"Date":"2/9/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":796,"Cost":748,"Date":"2/11/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":176,"Cost":121,"Date":"3/10/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":335,"Cost":250,"Date":"3/16/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":507,"Cost":409,"Date":"3/18/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":625,"Cost":465,"Date":"3/20/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":369,"Cost":316,"Date":"3/26/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":99,"Cost":67,"Date":"6/2/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":421,"Cost":291,"Date":"6/10/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":536,"Cost":279,"Date":"6/16/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":902,"Cost":636,"Date":"6/25/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":71,"Cost":59,"Date":"7/19/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":522,"Cost":408,"Date":"7/21/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":981,"Cost":841,"Date":"7/25/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":91,"Cost":52,"Date":"8/4/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":36,"Cost":35,"Date":"9/2/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":855,"Cost":481,"Date":"9/4/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":560,"Cost":377,"Date":"9/19/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":293,"Cost":275,"Date":"9/29/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":575,"Cost":500,"Date":"10/2/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":54,"Cost":36,"Date":"10/15/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":743,"Cost":584,"Date":"10/30/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":305,"Cost":234,"Date":"11/9/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":998,"Cost":862,"Date":"11/23/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":734,"Cost":513,"Date":"11/30/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":897,"Cost":477,"Date":"12/8/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":484,"Cost":458,"Date":"12/11/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":906,"Cost":492,"Date":"1/15/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":69,"Cost":51,"Date":"1/24/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":679,"Cost":475,"Date":"2/3/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":206,"Cost":109,"Date":"2/4/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":168,"Cost":94,"Date":"3/9/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":889,"Cost":679,"Date":"3/12/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":24,"Cost":14,"Date":"4/19/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":868,"Cost":569,"Date":"5/3/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":869,"Cost":553,"Date":"5/4/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":264,"Cost":245,"Date":"6/8/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":277,"Cost":146,"Date":"6/26/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":240,"Cost":143,"Date":"7/4/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":121,"Cost":111,"Date":"7/13/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":391,"Cost":316,"Date":"8/8/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":551,"Cost":483,"Date":"8/26/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":124,"Cost":113,"Date":"9/2/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":575,"Cost":381,"Date":"9/29/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":529,"Cost":452,"Date":"10/12/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":47,"Cost":36,"Date":"11/2/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":708,"Cost":549,"Date":"11/4/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":307,"Cost":231,"Date":"11/7/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":125,"Cost":98,"Date":"12/1/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":386,"Cost":264,"Date":"12/4/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":160,"Cost":94,"Date":"12/7/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":339,"Cost":211,"Date":"12/18/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":143,"Cost":75,"Date":"12/20/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":333,"Cost":213,"Date":"12/20/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":699,"Cost":624,"Date":"12/21/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":276,"Cost":178,"Date":"1/9/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":992,"Cost":675,"Date":"2/5/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":206,"Cost":103,"Date":"2/16/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":959,"Cost":486,"Date":"2/16/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":730,"Cost":634,"Date":"2/18/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":196,"Cost":159,"Date":"2/22/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":202,"Cost":188,"Date":"2/25/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":970,"Cost":506,"Date":"3/8/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":472,"Cost":381,"Date":"4/2/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":869,"Cost":541,"Date":"4/3/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":158,"Cost":131,"Date":"4/9/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":897,"Cost":763,"Date":"4/10/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":188,"Cost":167,"Date":"4/19/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":908,"Cost":577,"Date":"5/17/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":596,"Cost":370,"Date":"5/22/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":504,"Cost":283,"Date":"6/20/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":418,"Cost":301,"Date":"7/1/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":734,"Cost":509,"Date":"7/4/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":504,"Cost":423,"Date":"7/8/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":459,"Cost":408,"Date":"7/9/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":977,"Cost":584,"Date":"7/14/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":885,"Cost":450,"Date":"7/19/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":491,"Cost":442,"Date":"8/1/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":980,"Cost":835,"Date":"8/6/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":767,"Cost":616,"Date":"8/7/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":439,"Cost":259,"Date":"8/22/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":745,"Cost":395,"Date":"8/31/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":459,"Cost":289,"Date":"9/1/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":985,"Cost":597,"Date":"9/1/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":104,"Cost":74,"Date":"9/17/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":992,"Cost":703,"Date":"9/29/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":940,"Cost":844,"Date":"11/7/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":918,"Cost":611,"Date":"11/26/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":902,"Cost":653,"Date":"11/27/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":131,"Cost":107,"Date":"12/5/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":373,"Cost":189,"Date":"12/26/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":132,"Cost":106,"Date":"12/31/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":748,"Cost":602,"Date":"1/20/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":215,"Cost":161,"Date":"2/2/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":889,"Cost":648,"Date":"2/8/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":395,"Cost":326,"Date":"2/27/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":142,"Cost":123,"Date":"3/1/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":438,"Cost":387,"Date":"3/1/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":438,"Cost":412,"Date":"3/19/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":120,"Cost":69,"Date":"3/28/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":276,"Cost":211,"Date":"5/21/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":129,"Cost":94,"Date":"7/21/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":188,"Cost":135,"Date":"8/5/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":487,"Cost":376,"Date":"8/12/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":547,"Cost":398,"Date":"8/21/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":993,"Cost":682,"Date":"8/23/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":127,"Cost":90,"Date":"9/3/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":861,"Cost":810,"Date":"9/5/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":763,"Cost":453,"Date":"10/6/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":83,"Cost":46,"Date":"10/19/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":352,"Cost":186,"Date":"11/15/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":306,"Cost":263,"Date":"12/8/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":985,"Cost":656,"Date":"1/8/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":439,"Cost":242,"Date":"1/14/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":892,"Cost":498,"Date":"1/19/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":247,"Cost":212,"Date":"1/28/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":635,"Cost":586,"Date":"1/31/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":823,"Cost":735,"Date":"3/27/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":543,"Cost":377,"Date":"4/20/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":463,"Cost":405,"Date":"4/24/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":786,"Cost":423,"Date":"4/28/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":998,"Cost":629,"Date":"5/15/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":916,"Cost":720,"Date":"5/16/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":301,"Cost":214,"Date":"5/18/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":338,"Cost":258,"Date":"6/2/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":246,"Cost":125,"Date":"6/3/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":1,"Cost":1,"Date":"6/5/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":22,"Cost":17,"Date":"6/7/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":632,"Cost":585,"Date":"6/14/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":665,"Cost":620,"Date":"6/20/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":300,"Cost":191,"Date":"6/24/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":222,"Cost":155,"Date":"7/4/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":376,"Cost":263,"Date":"7/9/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":284,"Cost":202,"Date":"7/12/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":55,"Cost":35,"Date":"8/14/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":649,"Cost":563,"Date":"8/16/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":708,"Cost":532,"Date":"8/23/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":188,"Cost":171,"Date":"9/2/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":345,"Cost":232,"Date":"9/3/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":909,"Cost":496,"Date":"9/16/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":73,"Cost":62,"Date":"10/4/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":96,"Cost":83,"Date":"11/1/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":787,"Cost":662,"Date":"11/2/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":572,"Cost":391,"Date":"12/17/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":814,"Cost":767,"Date":"2/10/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":249,"Cost":163,"Date":"2/28/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":73,"Cost":54,"Date":"3/4/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":238,"Cost":148,"Date":"3/9/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":434,"Cost":293,"Date":"3/9/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":484,"Cost":433,"Date":"3/11/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":188,"Cost":97,"Date":"3/17/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":89,"Cost":53,"Date":"3/17/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":757,"Cost":522,"Date":"3/23/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":482,"Cost":452,"Date":"4/1/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":545,"Cost":377,"Date":"5/7/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":904,"Cost":562,"Date":"5/10/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":451,"Cost":428,"Date":"5/20/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":253,"Cost":230,"Date":"6/2/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":118,"Cost":81,"Date":"6/11/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":659,"Cost":412,"Date":"6/16/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":196,"Cost":144,"Date":"6/16/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":523,"Cost":397,"Date":"7/10/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":599,"Cost":544,"Date":"7/11/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":87,"Cost":55,"Date":"8/28/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":365,"Cost":317,"Date":"8/29/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":192,"Cost":132,"Date":"8/31/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":916,"Cost":522,"Date":"9/8/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":841,"Cost":595,"Date":"9/13/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":949,"Cost":823,"Date":"9/14/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":678,"Cost":453,"Date":"9/19/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":750,"Cost":605,"Date":"9/25/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":619,"Cost":309,"Date":"10/4/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":225,"Cost":116,"Date":"10/10/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":123,"Cost":67,"Date":"10/17/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":400,"Cost":363,"Date":"10/28/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":53,"Cost":35,"Date":"10/30/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":32,"Cost":21,"Date":"11/1/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":553,"Cost":436,"Date":"11/15/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":786,"Cost":663,"Date":"11/25/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":151,"Cost":123,"Date":"1/10/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":838,"Cost":582,"Date":"1/14/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":538,"Cost":411,"Date":"1/20/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":388,"Cost":222,"Date":"2/8/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":262,"Cost":142,"Date":"2/25/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":822,"Cost":582,"Date":"3/7/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":632,"Cost":560,"Date":"3/14/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":336,"Cost":252,"Date":"3/27/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":404,"Cost":263,"Date":"4/5/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":780,"Cost":422,"Date":"4/14/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":959,"Cost":541,"Date":"5/3/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":751,"Cost":491,"Date":"5/9/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":251,"Cost":164,"Date":"5/15/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":101,"Cost":87,"Date":"5/25/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":884,"Cost":759,"Date":"5/26/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":102,"Cost":80,"Date":"5/31/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":480,"Cost":348,"Date":"7/27/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":931,"Cost":666,"Date":"9/17/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":853,"Cost":534,"Date":"10/6/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":327,"Cost":261,"Date":"10/8/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":700,"Cost":424,"Date":"10/26/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":336,"Cost":303,"Date":"11/16/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":74,"Cost":58,"Date":"11/18/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"Nova","Country":"Japan","Sale":471,"Cost":344,"Date":"12/1/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":693,"Cost":424,"Date":"2/9/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":111,"Cost":94,"Date":"2/11/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":569,"Cost":291,"Date":"3/10/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":314,"Cost":244,"Date":"3/16/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":986,"Cost":883,"Date":"3/18/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":16,"Cost":12,"Date":"3/20/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":535,"Cost":449,"Date":"3/26/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":586,"Cost":507,"Date":"6/2/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":857,"Cost":533,"Date":"6/10/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":300,"Cost":204,"Date":"6/16/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":422,"Cost":322,"Date":"6/25/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":165,"Cost":93,"Date":"7/19/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":809,"Cost":551,"Date":"7/21/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":624,"Cost":422,"Date":"7/25/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":523,"Cost":398,"Date":"8/4/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":234,"Cost":159,"Date":"9/2/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":674,"Cost":441,"Date":"9/4/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":549,"Cost":379,"Date":"9/19/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":199,"Cost":153,"Date":"9/29/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":169,"Cost":151,"Date":"10/2/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":277,"Cost":235,"Date":"10/15/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":729,"Cost":570,"Date":"10/30/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":231,"Cost":144,"Date":"11/9/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":214,"Cost":129,"Date":"11/23/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":166,"Cost":105,"Date":"11/30/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":668,"Cost":491,"Date":"12/8/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":864,"Cost":784,"Date":"12/11/2018"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":388,"Cost":299,"Date":"1/15/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":377,"Cost":283,"Date":"1/24/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":75,"Cost":51,"Date":"2/3/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":895,"Cost":769,"Date":"2/4/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":332,"Cost":262,"Date":"3/9/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":678,"Cost":604,"Date":"3/12/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":263,"Cost":137,"Date":"4/19/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":253,"Cost":164,"Date":"5/3/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":826,"Cost":422,"Date":"5/4/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":495,"Cost":382,"Date":"6/8/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":47,"Cost":42,"Date":"6/26/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":135,"Cost":121,"Date":"7/4/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":150,"Cost":98,"Date":"7/13/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":452,"Cost":311,"Date":"8/8/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":524,"Cost":449,"Date":"8/26/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":254,"Cost":130,"Date":"9/2/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":177,"Cost":111,"Date":"9/29/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":106,"Cost":85,"Date":"10/12/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":366,"Cost":254,"Date":"11/2/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":211,"Cost":135,"Date":"11/4/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":423,"Cost":312,"Date":"11/7/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":210,"Cost":105,"Date":"12/1/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":229,"Cost":126,"Date":"12/4/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":192,"Cost":137,"Date":"12/7/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":865,"Cost":546,"Date":"12/18/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":237,"Cost":167,"Date":"12/20/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":101,"Cost":84,"Date":"12/20/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":571,"Cost":392,"Date":"12/21/2019"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":737,"Cost":441,"Date":"1/9/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":508,"Cost":439,"Date":"2/5/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":938,"Cost":543,"Date":"2/16/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":475,"Cost":390,"Date":"2/16/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":837,"Cost":596,"Date":"2/18/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":663,"Cost":414,"Date":"2/22/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":770,"Cost":453,"Date":"2/25/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":165,"Cost":144,"Date":"3/8/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":809,"Cost":453,"Date":"4/2/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":153,"Cost":100,"Date":"4/3/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":279,"Cost":172,"Date":"4/9/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":897,"Cost":788,"Date":"4/10/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":33,"Cost":23,"Date":"4/19/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":302,"Cost":221,"Date":"5/17/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":507,"Cost":303,"Date":"5/22/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":722,"Cost":580,"Date":"6/20/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":183,"Cost":132,"Date":"7/1/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":379,"Cost":251,"Date":"7/4/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":868,"Cost":756,"Date":"7/8/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":496,"Cost":304,"Date":"7/9/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":402,"Cost":363,"Date":"7/14/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":508,"Cost":301,"Date":"7/19/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":733,"Cost":438,"Date":"8/1/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":149,"Cost":79,"Date":"8/6/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":471,"Cost":285,"Date":"8/7/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":637,"Cost":437,"Date":"8/22/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":671,"Cost":575,"Date":"8/31/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":142,"Cost":95,"Date":"9/1/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":675,"Cost":472,"Date":"9/1/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":327,"Cost":296,"Date":"9/17/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":86,"Cost":68,"Date":"9/29/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":438,"Cost":255,"Date":"11/7/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":126,"Cost":119,"Date":"11/26/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":246,"Cost":124,"Date":"11/27/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":153,"Cost":121,"Date":"12/5/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":540,"Cost":317,"Date":"12/26/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":613,"Cost":580,"Date":"12/31/2020"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":788,"Cost":646,"Date":"1/20/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":750,"Cost":493,"Date":"2/2/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":683,"Cost":501,"Date":"2/8/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":763,"Cost":485,"Date":"2/27/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":829,"Cost":526,"Date":"3/1/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":363,"Cost":342,"Date":"3/1/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":554,"Cost":285,"Date":"3/19/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":68,"Cost":34,"Date":"3/28/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":887,"Cost":554,"Date":"5/21/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":459,"Cost":299,"Date":"7/21/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":168,"Cost":103,"Date":"8/5/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":817,"Cost":559,"Date":"8/12/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":925,"Cost":492,"Date":"8/21/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":340,"Cost":183,"Date":"8/23/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":150,"Cost":75,"Date":"9/3/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":98,"Cost":62,"Date":"9/5/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":70,"Cost":51,"Date":"10/6/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":840,"Cost":420,"Date":"10/19/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":50,"Cost":28,"Date":"11/15/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":696,"Cost":439,"Date":"12/8/2021"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":976,"Cost":592,"Date":"1/8/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":961,"Cost":498,"Date":"1/14/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":416,"Cost":335,"Date":"1/19/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":848,"Cost":533,"Date":"1/28/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":71,"Cost":66,"Date":"1/31/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":86,"Cost":80,"Date":"3/27/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":552,"Cost":315,"Date":"4/20/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":647,"Cost":574,"Date":"4/24/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":601,"Cost":353,"Date":"4/28/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":392,"Cost":303,"Date":"5/15/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":782,"Cost":546,"Date":"5/16/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":987,"Cost":638,"Date":"5/18/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":845,"Cost":771,"Date":"6/2/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":415,"Cost":223,"Date":"6/3/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":268,"Cost":193,"Date":"6/5/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":631,"Cost":350,"Date":"6/7/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":228,"Cost":114,"Date":"6/14/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":156,"Cost":79,"Date":"6/20/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":186,"Cost":167,"Date":"6/24/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":280,"Cost":192,"Date":"7/4/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":554,"Cost":348,"Date":"7/9/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":131,"Cost":105,"Date":"7/12/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":224,"Cost":191,"Date":"8/14/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":431,"Cost":228,"Date":"8/16/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":444,"Cost":242,"Date":"8/23/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":793,"Cost":452,"Date":"9/2/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":636,"Cost":413,"Date":"9/3/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":554,"Cost":413,"Date":"9/16/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":156,"Cost":138,"Date":"10/4/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":433,"Cost":336,"Date":"11/1/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":846,"Cost":523,"Date":"11/2/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":940,"Cost":593,"Date":"12/17/2022"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":437,"Cost":240,"Date":"2/10/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":598,"Cost":498,"Date":"2/28/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":109,"Cost":67,"Date":"3/4/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":20,"Cost":14,"Date":"3/9/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":409,"Cost":275,"Date":"3/9/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":380,"Cost":293,"Date":"3/11/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":415,"Cost":343,"Date":"3/17/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":289,"Cost":223,"Date":"3/17/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":951,"Cost":645,"Date":"3/23/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":175,"Cost":149,"Date":"4/1/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":37,"Cost":26,"Date":"5/7/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":599,"Cost":516,"Date":"5/10/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":527,"Cost":438,"Date":"5/20/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":854,"Cost":459,"Date":"6/2/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":595,"Cost":535,"Date":"6/11/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":545,"Cost":276,"Date":"6/16/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":495,"Cost":417,"Date":"6/16/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":788,"Cost":677,"Date":"7/10/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":774,"Cost":660,"Date":"7/11/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":167,"Cost":110,"Date":"8/28/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":526,"Cost":499,"Date":"8/29/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":8,"Cost":6,"Date":"8/31/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":472,"Cost":434,"Date":"9/8/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":956,"Cost":829,"Date":"9/13/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":578,"Cost":498,"Date":"9/14/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":817,"Cost":482,"Date":"9/19/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":948,"Cost":765,"Date":"9/25/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":2,"Cost":2,"Date":"10/4/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":106,"Cost":72,"Date":"10/10/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":605,"Cost":522,"Date":"10/17/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":444,"Cost":347,"Date":"10/28/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":240,"Cost":225,"Date":"10/30/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":305,"Cost":245,"Date":"11/1/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":570,"Cost":431,"Date":"11/15/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":338,"Cost":244,"Date":"11/25/2023"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":444,"Cost":276,"Date":"1/10/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":590,"Cost":312,"Date":"1/14/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":307,"Cost":202,"Date":"1/20/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":848,"Cost":492,"Date":"2/8/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":935,"Cost":728,"Date":"2/25/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":958,"Cost":531,"Date":"3/7/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":629,"Cost":444,"Date":"3/14/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":137,"Cost":83,"Date":"3/27/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":185,"Cost":122,"Date":"4/5/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":975,"Cost":764,"Date":"4/14/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":464,"Cost":258,"Date":"5/3/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":167,"Cost":101,"Date":"5/9/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":759,"Cost":454,"Date":"5/15/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":105,"Cost":73,"Date":"5/25/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":485,"Cost":346,"Date":"5/26/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":232,"Cost":157,"Date":"5/31/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":619,"Cost":363,"Date":"7/27/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":846,"Cost":668,"Date":"9/17/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":803,"Cost":703,"Date":"10/6/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":88,"Cost":81,"Date":"10/8/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":721,"Cost":651,"Date":"10/26/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":663,"Cost":527,"Date":"11/16/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":978,"Cost":500,"Date":"11/18/2024"},{"Store":"Tenjin Core, Fukuoka","Brand":"ARKET","Country":"Japan","Sale":864,"Cost":461,"Date":"12/1/2024"}] \ No newline at end of file diff --git a/projects/sales-grid/src/app/sales-grid/sales-grid.component.html b/projects/sales-grid/src/app/sales-grid/sales-grid.component.html index 321e0ee..5ce7ffb 100644 --- a/projects/sales-grid/src/app/sales-grid/sales-grid.component.html +++ b/projects/sales-grid/src/app/sales-grid/sales-grid.component.html @@ -26,9 +26,10 @@
diff --git a/projects/sales-grid/src/app/sales-grid/sales-grid.component.ts b/projects/sales-grid/src/app/sales-grid/sales-grid.component.ts index c2a06ad..f06f937 100644 --- a/projects/sales-grid/src/app/sales-grid/sales-grid.component.ts +++ b/projects/sales-grid/src/app/sales-grid/sales-grid.component.ts @@ -1,5 +1,5 @@ import { CommonModule, CurrencyPipe } from '@angular/common'; -import { Component, TemplateRef, ViewChild } from '@angular/core'; +import { Component, OnInit, TemplateRef, ViewChild } from '@angular/core'; import { IgxButtonDirective, IgxDropDownComponent, @@ -31,7 +31,8 @@ import { IgxTooltipTargetDirective } from 'igniteui-angular'; import FLAGS from './data/flags.json' -import SALES_DATA from './data/SalesData.json'; +import { DataService } from '../services/data.service'; +import { BehaviorSubject } from 'rxjs'; enum PivotViews { BrandsSeparate = 'brandsOr', @@ -94,7 +95,7 @@ export class IgxSaleProfitAggregate { ], styleUrl: './sales-grid.component.scss' }) -export class SalesGridComponent { +export class SalesGridComponent implements OnInit { @ViewChild(IgxPivotGridComponent, { static: true }) public pivotGrid!: IgxPivotGridComponent; @@ -312,9 +313,10 @@ export class SalesGridComponent { ]); public flagsData = FLAGS; - public data: any = SALES_DATA; + public data$: BehaviorSubject = new BehaviorSubject([]); + public isLoading = true; - constructor(public excelExporter: IgxExcelExporterService, public csvExporter: IgxCsvExporterService) { + constructor(private dataService: DataService, public excelExporter: IgxExcelExporterService, public csvExporter: IgxCsvExporterService) { var multipleFilters = new FilteringExpressionsTree(FilteringLogic.Or, 'Brand'); multipleFilters.filteringOperands = [ { @@ -338,6 +340,16 @@ export class SalesGridComponent { ] } + public ngOnInit(): void { + this.dataService.getData(); + this.data$ = this.dataService.records; + this.data$.subscribe((data) => { + if (data.length !== 0) { + this.isLoading = false; + } + }); + } + public onViewSelection(event: ISelectionEventArgs) { this.selectedConfig = event.newSelection.id; this.pivotGrid.pivotConfiguration = this.availableConfigs.get(this.selectedConfig)?.config || this.pivotConfigBrands; diff --git a/projects/sales-grid/src/app/services/data.service.ts b/projects/sales-grid/src/app/services/data.service.ts new file mode 100644 index 0000000..718dd71 --- /dev/null +++ b/projects/sales-grid/src/app/services/data.service.ts @@ -0,0 +1,21 @@ +import { Injectable } from '@angular/core'; +import { BehaviorSubject } from 'rxjs'; +import { HttpClient } from '@angular/common/http'; + +const DATA_URL = 'https://www.infragistics.com/grid-examples-data/data/sales/sales.json'; + +@Injectable({ + providedIn: 'root', +}) +export class DataService { + public records: BehaviorSubject; + constructor(private _http: HttpClient) { + this.records = new BehaviorSubject([]); + } + + public getData() { + this._http.get(DATA_URL, { responseType: 'json' }).subscribe((data: any) => { + this.records.next(data); + }); + } +}